locale4j 1.1.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News locale4j 1.1.4 (Default branch)
# 1  
Old 05-30-2008
locale4j 1.1.4 (Default branch)

locale4j is a Java library for working with localization data. The library currently supports the TMX file format. Translations can also be stored in memory or in a database for use at runtime. License: Mozilla Public License (MPL) Changes:
This release contains a few minor changes that help when saving out TMX data. Strings with leading and trailing whitespace will now be trimmed, and translation XML entries will be organized in alphabetical order in the output file. Also, tags in the XML output will no longer contain namespaces such as "tmx:" before the tag names.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XML::TMX::FromPO(3pm)					User Contributed Perl Documentation				     XML::TMX::FromPO(3pm)

NAME
XML::TMX::FromPO - Generates a TMX file from a group of PO files SYNOPSIS
use XML::TMX::FromPO; my $conv = new XML::TMX::FromPO(OUTPUT => '%f.tmx'); DESCRIPTION
This module can be used to generate TMX files from a group of PO files. METHODS
The following methods are available: new $tmx = new XML::TMX::FromPO(); Creates a new XML::TMX::FromPO object. Please check the COMMON CONFIGURATION section for details on the options. rec_get_po TODO: Document method parse_dir TODO: Document method create_tmx TODO: Document function clean_tmx TODO: Document method COMMON CONFIGURATION
These configuration options can be passed to all methods in the module: LANG => 'list' A case insensitive list of regular expression separated by whitespaces that matches the code of the languages that are to be processed. Defaults to all. CONVERT => 'iconv -f %t -t utf8 < %f' A string that contains the command to convert a file (%f) from some charset (%t) to Unicode. If none is specified, the module tries to use recode(1), if it fails then the module defaults to iconv(1). OUTPUT => 'x.tmx' The name of the output file. If none is specified it defaults to the standard output. DEBUG => 1 Activate debugging information. Defaults to 0. SEE ALSO
XML::TMX::Writer(3), gettext(1), recode(1), iconv(1) AUTHOR
Paulo Jorge Jesus Silva, <paulojjs@bragatel.pt> COPYRIGHT AND LICENSE
Copyright 2003 by Paulo Jorge Jesus Silva This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-06 XML::TMX::FromPO(3pm)