Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.479.691 Times

Sub Translation software
Filter: All | Freeware | Demo
 

Sub Translation

1 2 3 4 5 > 
Released: November 08, 2009  |  Added: December 10, 2009 | Visits: 3.853

Subtitle Translation Wizard Still looking for a software for srt translation, sub(MicroDVD) translation or Sami(.smi) translation and editing easily? Still looking for a software for playing subtitle for movie that have none subtitle or playing your subtitle for movie that you don't satisfied with it's subtitle? Still... Platforms: Windows

License: Shareware Cost: $29.00 USD Size: 2.39 MB Download (561): Subtitle Translation Wizard Download

Released: February 16, 2012  |  Added: March 10, 2012 | Visits: 2.985

Translation Office 3000 Translation Office 3000 is the first and leading translation management system designed specifically for freelance translators and small translation agencies. TO3000 easily and seamlessly integrates into the business life of professional freelance translators. TO3000 transforms the complex and... Platforms: Windows

License: Shareware Cost: $49.00 USD Size: 112.57 MB Download (150): Translation Office 3000 Download

Released: August 12, 2008  |  Added: August 18, 2008 | Visits: 3.136

Translation Pad Translation Pad is a simple internet machine language translation software. Translation Pad supports the following language pairs: english to german, english to spanish, english to french, english to portuguese, english to italian, german to english, french to english, spanish to english,... Platforms: Windows

License: Shareware Cost: $29.95 USD Size: 529.58 KB Download (370): Translation Pad Download

Released: November 01, 2007  |  Added: September 22, 2008 | Visits: 2.229

IdiomaX Translation Suite This suite of translation software tools lets you translate virtually anything that crosses your desk: web pages, emails, documents, slide presentations, spreadsheets, databases and more. Throw Out Those Language Textbooks. No more language classes, memorization and conjugation... IdiomaX... Platforms: Windows

License: Shareware Cost: $145.95 USD Size: 17.26 MB Download (133): IdiomaX Translation Suite Download

Released: November 01, 2007  |  Added: September 22, 2008 | Visits: 1.596

IdiomaX Translation Assistant You'll never be stuck for words again with this translation software installed on your computer. It's like having a multilingual assistant at your side at all times, instantly translating words, phrases and segments of text – regardless of what application you happen to be using. Whether you... Platforms: Windows

License: Shareware Cost: $49.95 USD Size: 11.36 MB Download (136): IdiomaX Translation Assistant Download

Added: January 18, 2010 | Visits: 829

Sub::PatMat Sub::PatMat can call a version of subroutine depending on its arguments. SYNOPSIS use Sub::PatMat; # basics: sub fact : when($_[0] <= 1) { 1 } sub fact { my ($n) = @_; $n*fact($n-1) } print fact(6); # referring to things other than @_: sub mysort : when($a < $b) { -1 } sub mysort :... Platforms: *nix

License: Freeware Size: 14.34 KB Download (92): Sub::PatMat Download

Added: November 16, 2010 | Visits: 790

Sub::Curry Sub::Curry is a Perl module to create curried subroutines. SYNOPSIS use Sub::Curry; use Sub::Curry qw/ :CONST curry /; # Import spice constants # and the &curry function. #my $f1 = Sub::Curry::->new(&foo, 1, 2); # Same as below. my $f1 = curry(&foo, 1, 2); my $f2 = $cb1->new(3, 4); my... Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Sub::Curry Download

Added: May 18, 2010 | Visits: 1.281

Sub::Slice::Manual Sub::Slice::Manual is a Perl module with user guide for Sub::Slice. USING Sub::Slice Sub::Slice is a way of breaking down a long-running process and maintaining state across a stateless protocol. This allows the client to draw a progress bar or abort the process part-way through. The... Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Sub::Slice::Manual Download

Added: November 02, 2010 | Visits: 1.213

Bio::LiveSeq::Translation Bio::LiveSeq::Translation is a translation class for LiveSeq. This stores informations about aminoacids translations of transcripts. The implementation is that a Translation object is the translation of a Transcript object, with different possibilities of manipulation, different coordinate... Platforms: *nix

License: Freeware Size: 4.7 MB Download (104): Bio::LiveSeq::Translation Download

Added: October 06, 2010 | Visits: 633

Sub::Timebound Sub::Timebound is a Perl extension for timebound computations. SYNOPSIS use Sub::Timebound; sub fun { my $i = shift; if ($i =~ /7$/) { die "Simulated internal errorn"; } while ($i) { $i--; } return "All is well"; } my $x = timeboundretry(10, 3, 5, &fun, 10); ### Returns { value... Platforms: *nix

License: Freeware Size: 4.1 KB Download (87): Sub::Timebound Download

Added: June 18, 2010 | Visits: 860

Sub::Assert Sub::Assert - Design-by-contract like pre- and postconditions, etc. SYNOPSIS use Sub::Assert; sub squareroot { my $x = shift; return $x**0.5; } assert pre => $PARAM[0] >= 1, # for the sake of simplicity post => $VOID or $RETURN <= $PARAM[0], sub => squareroot, context => novoid,... Platforms: *nix

License: Freeware Size: 6.14 KB Download (92): Sub::Assert Download

Added: July 16, 2010 | Visits: 943

Sub::Quotelike Sub::Quotelike is a Perl module that allows to define quotelike functions. SYNOPSIS use Sub::Quotelike; sub myq () { my $s = shift; # Do something with $s... return $s; } sub myqq (") { my $s = shift; # Do something with $s... return $s; } print myq/abc def/; print myqq{abc... Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Sub::Quotelike Download

Added: February 26, 2010 | Visits: 851

Sub::DeferredPartial Sub::DeferredPartial is a deferred evaluation / partial application. SYNOPSIS use Sub::DeferredPartial def; $S = def sub : P1 P2 P3 { %_=@_; join , @_{qw(P1 P2 P3)} }; print $S->( P1 => 1, P2 => 2, P3 => 3 )->(); # 123 $A = $S->( P3 => 1 ); # partial application $B = $S->( P3 => 2 );... Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Sub::DeferredPartial Download

Added: February 27, 2010 | Visits: 731

Sub::Regex Sub::Regex is a Perl module to create synonymous subroutines. SYNOPSIS use Sub::Regex; sub /look(s|ing)?_for/ ($){ foobar blah blah } look_for(Amanda); looks_for(Amanda); looking_for(Amanda); lOoKiNg_fOr(Amanda); Sub::Regex is a small tool for users to create a subroutine with... Platforms: *nix

License: Freeware Size: 2.05 KB Download (102): Sub::Regex Download

Released: January 12, 2011  |  Added: January 20, 2011 | Visits: 1.980

Professional Translation Agency Professional translation agency that gives you the choice of the mothertongue translator. tradoweb.com is the only translation agency that lets you choose the translator for professional translations high-quality translations for a lower price. Join our website to try it free from obligation.... Platforms: OS/2, Windows, Mac, *nix, Palm OS, Windows CE, Pocket PC, Other,Android,BlackBerry,iPhone,iPod,iTouch,Palm,Palm OS 6.0,Not Applicable,Handheld/Mobile Other,Java

License: Freeware Size: 541.33 KB Download (343): Professional Translation Agency Download

Released: September 25, 2012  |  Added: September 25, 2012 | Visits: 689

WhiteSmoke Translation Software WhiteSmoke Translator is a full software solution for translation Platforms: Windows, Unix, Linux

License: Shareware Cost: $95.95 USD Download (46): WhiteSmoke Translation Software Download

Released: June 02, 2012  |  Added: June 02, 2012 | Visits: 821

Translation Services Working with a translation company makes it easier to translate a small or large batch of documents in one simple step, but there are some steps you need to take in order to ensure you're working with a professional, well-established business for your services. It can take days before you stumble... Platforms: Windows

License: Freeware Size: 23 KB Download (50): Translation Services Download

Released: August 06, 2012  |  Added: August 06, 2012 | Visits: 628

AnyMem: Translation Memory Software AnyMem is a user-friendly translation memory software. AnyMem uses portable translation memory format. It also supports import and export of TMX, standard translation memory exchange file format (TMX Platforms: Windows

License: Shareware Cost: $127.00 USD Size: 10.33 MB Download (499): AnyMem: Translation Memory Software Download

Added: May 10, 2013 | Visits: 817

PHP/JavaScript Data Translation This project provides a PHP class for facilitating the translation of data variables and objects into JavaScript code for client-side processing on a website. Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (61): PHP/JavaScript Data Translation Download

Data Translation DT9837 and MATLAB DAQ Adaptor with MATLAB Data Acq Toolbox Use IEPE accelerometers with Data Translation high-performance DT9837 USB Modules, MathWorksdlT« Data Acq Toolboxd-OC?D?,and Data Translation free MATLABdlT« DAQ Adaptor to measure vibration data,and present results. Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (49): Data Translation DT9837 and MATLAB DAQ Adaptor with MATLAB Data Acq Toolbox Download

1 2 3 4 5 >