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.605 Times

Locale Object freeware
Filter: All | Freeware | Demo
 

Locale Object

1 2 3 4 5 > 
Added: June 04, 2010 | Visits: 1.102

Locale::Object::Language Locale::Object::Language Perl module contains language information objects. Locale::Object::Language allows you to create objects containing information about languages such as their ISO codes, the countries theyre used in and so on. SYNOPSIS use Locale::Object::Language; my $eng =... Platforms: *nix

License: Freeware Size: 47.1 KB Download (92): Locale::Object::Language Download

Released: September 04, 2012  |  Added: September 04, 2012 | Visits: 871

EasyNLS The EasyNLS component provides a few needed objects and functions, which allows Visual Basic programmers to easily master the hassles of National Language Support (NLS). The following 3 items are covered by EasyNLS: - The Locale object wraps the Locale specific functions in Windows. - A locale... Platforms: Windows

License: Freeware Download (55): EasyNLS Download

Added: November 16, 2010 | Visits: 810

Locale::Framework Locale::Framework is a Perl module for internationalization. SYNOPSIS use Locale::Framework; use Locale::Framework::SQL; Locale::Framework::init(new Locale::Framework::SQL( DSN => "dbi:Pg:dbname=zclass;host=localhost", DBUSER => "test", DBPASS => "testpass", [TABLE => "testtrans"]));... Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): Locale::Framework Download

Added: June 15, 2013 | Visits: 1.324

Open Object Rexx Home of the Open Object Rexx Project. ooRexx is the open source version of IBM's Object REXX Interpreter. It is upwardly compatible with classic REXX and will execute classic REXX programs unchanged. The project is managed by the Rexx Language Assoc. Platforms: *nix

License: Freeware Size: 14.54 MB Download (134): Open Object Rexx Download

Added: January 27, 2010 | Visits: 1.207

Color::Object Color::Object is a OO-Color Module. A module for manipulation Colors within RGB, HSV and HSL color-spaces for usage within PDF-Documents especially with the Text::PDF::API modules. SYNOPSIS use Color::Object; $cl = Color::Object->new; $cl = Color::Object->newRGB($r,$g,$b); $cl =... Platforms: *nix

License: Freeware Size: 3.07 KB Download (103): Color::Object Download

Added: September 24, 2010 | Visits: 859

Locale::Maketext::Lexicon::Gettext Locale::Maketext::Lexicon::Gettext is a Perl module for PO and MO file parser for Maketext. SYNOPSIS Called via Locale::Maketext::Lexicon: package Hello::I18N; use base Locale::Maketext; use Locale::Maketext::Lexicon { de => [Gettext => hello/de.mo], }; Directly calling parse(): use... Platforms: *nix

License: Freeware Size: 83.97 KB Download (96): Locale::Maketext::Lexicon::Gettext Download

Added: February 02, 2010 | Visits: 864

Locale::Maketext::Lexicon::Tie Locale::Maketext::Lexicon::Tie is a Perl module to use tied hashes as lexicons for Maketext. SYNOPSIS package Hello::I18N; use base Locale::Maketext; use Locale::Maketext::Lexicon { en => [ Tie => [ DB_File => en.db ] ], }; This module lets you easily tie the %Lexicon hash to a database... Platforms: *nix

License: Freeware Size: 83.97 KB Download (96): Locale::Maketext::Lexicon::Tie Download

Added: January 27, 2010 | Visits: 659

Locale::Maketext::Lexicon::Msgcat Locale::Maketext::Lexicon::Msgcat is a Msgcat catalog parser Maketext. SYNOPSIS package Hello::I18N; use base Locale::Maketext; use Locale::Maketext::Lexicon { en => [Msgcat, en_US/hello.pl.m], }; package main; my $lh = Hello::I18N->get_handle(en); print $lh->maketext(1,2); # set 1,... Platforms: *nix

License: Freeware Size: 83.97 KB Download (90): Locale::Maketext::Lexicon::Msgcat Download

Added: August 15, 2010 | Visits: 717

Locale::Maketext::Lexicon Locale::Maketext::Lexicon is a Perl module to use other catalog formats in Maketext. SYNOPSIS As part of a localization class, automatically glob for available lexicons: package Hello::I18N; use base Locale::Maketext; use Locale::Maketext::Lexicon { * => [Gettext =>... Platforms: *nix

License: Freeware Size: 83.97 KB Download (92): Locale::Maketext::Lexicon Download

Added: October 25, 2010 | Visits: 1.003

Locale::Maketext::Extract Locale::Maketext::Extract is a Perl module used to extract translatable strings from source. SYNOPSIS my $Ext = Locale::Maketext::Extract->new; $Ext->read_po(messages.po); $Ext->extract_file($_) for <*.pl>; # Set $entries_are_in_gettext_format if the .pl files above use # loc(%1) instead... Platforms: *nix

License: Freeware Size: 83.97 KB Download (94): Locale::Maketext::Extract Download

Added: September 06, 2010 | Visits: 880

Locale::Maketext::Extract::Run Locale::Maketext::Extract::Run is a Perl module interface to xgettext.pl. SYNOPSIS use Locale::Maketext::Extract::Run xgettext; xgettext(@ARGV);. Platforms: *nix

License: Freeware Size: 83.97 KB Download (96): Locale::Maketext::Extract::Run Download

Added: July 01, 2010 | Visits: 855

Locale::Maketext::Simple Locale::Maketext::Simple is a simple interface to Locale::Maketext::Lexicon. SYNOPSIS Minimal setup (looks for auto/Foo/*.po and auto/Foo/*.mo): package Foo; use Locale::Maketext::Simple; # exports loc loc_lang(fr); # set language to French sub hello { print loc("Hello, [_1]!",... Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Locale::Maketext::Simple Download

Added: October 08, 2010 | Visits: 841

Object::Declare Object::Declare is a Perl module for declarative object constructor. SYNOPSIS use Object::Declare [MyApp::Column, MyApp::Param]; my %objects = declare { param foo => !is global, is immutable, valid_values are qw( more values ); column bar => field1 is value, field2 is... Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Object::Declare Download

Added: August 09, 2010 | Visits: 786

Locale::Maketext::Fuzzy Locale::Maketext::Fuzzy is a Perl module for Maketext from already interpolated strings. SYNOPSIS package MyApp::L10N; use base Locale::Maketext::Fuzzy; # instead of Locale::Maketext package MyApp::L10N::de; use base MyApp::L10N; our %Lexicon = ( # Exact match should always be preferred... Platforms: *nix

License: Freeware Size: 6.14 KB Download (95): Locale::Maketext::Fuzzy Download

Added: September 24, 2010 | Visits: 943

Bio::Root::Object Bio::Root::Object is a core Perl 5 object. SYNOPSIS # Use this module as the root of your inheritance tree. Object Creation require Bio::Root::Object; $dad = new Bio::Root::Object(); $son = new Bio::Root::Object(-name => Junior, -parent => $dad, -make => full); See the new() method... Platforms: *nix

License: Freeware Size: 4.7 MB Download (102): Bio::Root::Object Download

Added: January 01, 2010 | Visits: 1.731

The Object Oriented Database Kit The Object Oriented Database Kit is a set of tools to help database applications developers to handle database communication, reporting, and printing. It has a solid, stable, and easy to use API. The project is also GUI toolkit agnostic and portable.. Platforms: *nix

License: Freeware Size: 18.43 KB Download (114): The Object Oriented Database Kit Download

Added: February 25, 2010 | Visits: 774

Object::LocalVars Object::LocalVars is a Perl module with outside-in objects with local aliasing of $self and object variables. SYNOPSIS package My::Object; use strict; use Object::LocalVars; give_methods our $self; # this exact line is required our $field1 : Prop; our $field2 : Prop; sub as_string :... Platforms: *nix

License: Freeware Size: 40.96 KB Download (94): Object::LocalVars Download

Added: March 14, 2010 | Visits: 827

Locale::KeyedText Locale::KeyedText is a Perl module that refers to user messages in programs by keys. It also describes the same-number versions of Locale::KeyedText::Message ("Message") and Locale::KeyedText::Translator ("Translator"). Note that the "Locale::KeyedText" package serves only as the name-sake... Platforms: *nix

License: Freeware Size: 35.84 KB Download (89): Locale::KeyedText Download

Added: February 17, 2010 | Visits: 930

Object::Transaction Object::Transaction is a virtual base class for transactions on files containing serialized hash objects. SYNOPSIS use Object::Transaction; transaction($coderef, @codeargs); commit(); abandon(); $there_is_a_pending_transaction = transaction_pending() package Pkg; @ISA =... Platforms: *nix

License: Freeware Size: 17.41 KB Download (90): Object::Transaction Download

Added: April 07, 2010 | Visits: 989

Object Relational Membrane Object Relational Membrane is a Python package that provides the functionality of an object relational layer like EJB or other persistence storage systems. Object Relational Membrane is a thin compatibility layer between SQL table layouts and Object Oriented Python. While providing a good deal... Platforms: *nix

License: Freeware Size: 174.08 KB Download (89): Object Relational Membrane Download

1 2 3 4 5 >