1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

Make FTPParser Labels translatable in plugin.properties

This commit is contained in:
Martin Oberhuber 2007-05-10 16:08:10 +00:00
parent 0c96066b98
commit 330e563896
2 changed files with 13 additions and 6 deletions

View file

@ -26,3 +26,10 @@ FtpSystemDescription=Connection for FTP access to remote systems
Files=Files
FilesDescription=This configuration allows you to work with files on local or remote systems using the FTP protocol.
FTPParser.UNIX=UNIX
FTPParser.MVS=MVS
FTPParser.WinNT=WinNT
FTPParser.OS2=OS2
FTPParser.OS400=OS400
FTPParser.VMS=VMS

View file

@ -50,32 +50,32 @@ Javier Montalvo Orus (Symbian) - Fixing 176216 - [api] FTP sould provide API to
<parser
id="org.eclipse.rse.ftp.parser.Unix"
class="org.apache.commons.net.ftp.parser.UnixFTPEntryParser"
label="UNIX">
label="%FTPParser.UNIX">
</parser>
<parser
id="org.eclipse.rse.ftp.parser.MVS"
class="org.apache.commons.net.ftp.parser.MVSFTPEntryParser"
label="MVS">
label="%FTPParser.MVS">
</parser>
<parser
id="org.eclipse.rse.ftp.parser.WinNT"
class="org.eclipse.rse.internal.subsystems.files.ftp.parser.RSENTFTPEntryParser"
label="WinNT">
label="%FTPParser.WinNT">
</parser>
<parser
id="org.eclipse.rse.ftp.parser.OS2"
class="org.apache.commons.net.ftp.parser.OS2FTPEntryParser"
label="OS2">
label="%FTPParser.OS2">
</parser>
<parser
id="org.eclipse.rse.ftp.parser.OS400"
class="org.apache.commons.net.ftp.parser.OS400FTPEntryParser"
label="OS400">
label="%FTPParser.OS400">
</parser>
<parser
id="org.eclipse.rse.ftp.parser.VMS"
class="org.eclipse.rse.internal.subsystems.files.ftp.parser.RSEVMSFTPEntryParser"
label="VMS">
label="%FTPParser.VMS">
</parser>
</extension>