similar to: Ruby-GetText-Package-1.3.0

Displaying 20 results from an estimated 800 matches similar to: "Ruby-GetText-Package-1.3.0"

2009 May 06
0
gettext-2.0.2, gettext_activerecord-2.0.2, gettext_rails-2.0.2
Hi, Ruby-GetText-Package-2.0.2 and the families (gettext-2.0.2, gettext_activerecord-2.0.2 and gettext_rails-2.0.2) are now available. Ruby-GetText-Package is the library/tools for message localization. * gettext - Message localization libraries and tools for all kind of apps/libs. * gettext_activerecord - ActiveRecord Localization * gettext_rails - Rails support with gettext. Changes
2009 Apr 18
0
gettext-2.0.1, gettext_activerecord-2.0.1, gettext_rails-2.0.1
Hi, Ruby-GetText-Package-2.0.1 and the families (gettext-2.0.1, gettext_activerecord-2.0.1 and gettext_rails-2.0.1) are now available. Ruby-GetText-Package is the library/tools for message localization. * gettext - Message localization libraries and tools for all kind of apps/libs. * gettext_activerecord - ActiveRecord Localization * gettext_rails - Rails support with gettext. Changes
2006 May 07
0
Ruby-GetText-Package-1.5.0
Hi, Ruby-GetText-Package-1.5.0 is now available. Russian is added. Now it supports 11 languages and the screenshot is available. http://www.yotabanana.com/hiki/?ruby-gettext-screenshot Have fun! Changes ------- * Support Russian. * Fix bugs. * Refresh mo option was added. Check mo files and reload it if it''s updated. ruby -d or GetText::TextDomain.check_mo=(true). Or
2006 Jan 14
0
Ruby-GetText-Package-1.1.1
Hi, Ruby-GetText-Package-1.1.1 is now available. And also screenshots page is available. It''s a sample Rails blog in 10 language. Check it out! http://www.yotabanana.com/hiki/?ruby-gettext-screenshot Changes ------- * Bugfixes. Almost of all fixed-bugs are parts of Ruby on Rails supports. * Added Greek locale by damphyr. * Support tests for Ruby on Rails. Thanks to: Kazuhiro
2006 Apr 15
0
Ruby-GetText-Package-1.4.0
Hi, Ruby-GetText-Package-1.4.0 is now available. Changes ------- * Support OpenBSD. * Fix bugs * Enhance supports of Ruby on Rails. * Improved ActionMailer localization support. * Support ActionWebService * test/gettext_test_rails.rb works with Rails-1.1.2. Thanks to: Donald Piret, Nobuhiro IMAI, Nick Snels, John Allard and others. Website -------
2006 Feb 23
0
Ruby-GetText-Package-1.2.0
Hi, Ruby-GetText-Package-1.2.0 is now available. Changes for RoR --------------- * Works with rjs templates. * Add methods to change the error message dialog(?) title/explanation. * Bugfixes. * Added GetText.Nn_(). Website ------- http://rubyforge.org/projects/gettext/ * Download http://rubyforge.org/frs/?group_id=855&release_id=2856 * Ruby-GetText-Package HOWTOs
2006 Jun 09
0
Ruby-GetText-Package-1.6.0
Hi, Ruby-GetText-Package-1.6.0 is now available. Chinese(zh_CN), Italian(it) are supported. Screenshots in 13 language (Sample Rails blog) are: http://www.yotabanana.com/hiki/?ruby-gettext-screenshot Since this release, you can localize your rails plugin easily with gettext. I wrote a small example. If you''re interested in it, check the file in the released tar-ball. # See
2006 Sep 12
0
Ruby-GetText-Package-1.8.0
Hi, Ruby-GetText-Package-1.8.0 is now available. NEWS ---- Takahashi-san[1] has started GettextScaffold plugin project on rubyforge[2]. It''s great scaffold plugin for helping rails localization with GetText. [1] Masayoshi Takahashi is well known as the chairman of Japan Ruby no Kai (Japanese Ruby User Group) and "Takahashi Method". [2]
2006 Jul 17
0
Ruby-GetText-Package-1.7.0
Hi, Ruby-GetText-Package-1.7.0 is now available. Enjoy L10n! Changes ------- * Improve to support Ruby on Rails * Localize ActionView::Helpers::DateHelper.distance_of_time_in_words. * Localize ActionView::Helpers::ActiveRecordHelper.error_message_on. * Add ActiveRecord::Base.untranslate, .untranslate_all to prevend to translate columns. * "ID" fields are ignored as
2008 Sep 15
1
Ruby-GetText-Package-1.93.0
Hi, Ruby-GetText-Package-1.93.0 is now available. Changes ------- * Bulgarian added. * Estonian updated. * French updated. * Japanese updated. * np_, npgettext support. * Fixed bugs. - detect the correct charset on POSIX OS. - updatepo task works again on Windows OS(with broken GNU msgmerge). - Remove BOM from po-files before GNU msgmerge is executed. (GNU msgmerge
2006 Jun 22
2
GetText Question: How not to gather ActiveRecord''s columns?
Hi, Rake''s ''updatepo'' task[1] suggested by Masao(Ruby-GetText maintainer) gather whole model''s columns. I don''t need to translate those column names. So I''d like to give translators the po files without such needless messages. However I wouldn''t like to exclude ''app/models'', because of some useful gettext-ized
2005 Dec 29
5
Ruby-GetText-Package-1.1.0
Hi, Ruby-GetText-Package-1.1.0 is now available. This release enhances many features for Ruby on Rails. I hope this release make your Application support L10n. And thanks for many helps! Highlights ---------- * Added some functions which managed po/mo files easily. * GetText.update_pofiles creates/updates pot/po files. The idea is from Sascha Ebach. * String% is extended to accept
2006 Jul 07
2
Problem with GetText 1.6.0 - undefined method ''N_''
I''m just upgraded GetText from 1.4.0 to 1.6.0, and all my tests got broken. I got this error: ruby/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/base.rb:1129:in `method_missing'': undefined method `N_'' for User:Class (NoMethodError) etc My model user.rb has this line: validates_format_of :login, :with => /^[a-zA-Z0-9_]+$/, :message =>
2006 May 08
4
Gettext not worked in firefox,but done well under IE
Anyone who has met such a kind of problem? I am adding i18n characteristics to my webapp using gettext,it works under IE,while not under firefox. here is my codes: po: po\zh_CN\myapp.po after rake makemo, i have got: locale\zh_CN\LC_MESSAGES\myapp.mo require ''gettext/rails'' class ApplicationController < ActionController::Base init_gettext "myapp" end Then I use
2006 May 09
5
How to use gettext in plugins?
I use rails-engine as a plugin of the application and I want to localize the validate message from the plugin: validates_length_of :login, :within => 3..40, :on => :create, :message => N_("%{fn} is too short (min is %d characters)") It can not display the according language,where should i set it? I have tried to add require ''gettext/rails''
2006 May 02
16
no one cares about i18n (was [OT]: Asking questions on this list)
Do most others in the community agree with this statement? It seems to me that i18n is: 1. Actually important to many people 2. Not really the difficult to implement in concept 3. Something that people like to point out about Rails to say it''s not ready foir "Enterprise" It seems to be that a big part of Rails is encouraging people to do things the "Right Way",
2006 Jan 17
0
Recommended GUI for Speex
On Tue, Jan 17, 2006 at 02:19:17PM -0500, me@sbooth.org wrote: > Hi all, > > I have recently added Speex support to my app (http://sbooth.org/Max/) and > am in the process of creating a GUI for the user to control the codec > parametere. I am new to Speex and as such I am not really sure which > parameters are more important than others, and deserve prominent > placement,
2006 Nov 12
1
[PATCH] Annotate shapes, text and dbus support
Here are my patches to add extra shapes to the annotate plugin. I have also added dbus support and made a few things configurable. The new tools available are Line, Rectangle and Circle, the original is called Brush. There is no selection line at the moment because I do not understand OpenGL yet. Hopefully these patches can be added and something added later. There is an extra action called
2006 Jan 11
8
GetText: Works with en_GB and en_US, but doesn''t with de_DE!
Hi all I''m trying to get GetText to work. I have the following folder structure: |-myapp.pot |-de_DE/: | `-myapp.po |-en_GB/: | `-myapp.po |-en_US/: ` `-myapp.po I run rake updatepo, and then rake makemo. Now I set en-gb as default language in Firefox and run my app >> works! Then I set en-us as default language in Firefox and run my app >> works,
2017 Aug 23
0
bugs in documentation of stats::stl
Dear list, R-core, The documentation of stats::stl explicitly refers to the paper by Cleveland[1] to explain the parameters. However, the description is confusing, with two descriptions seeming to refer to the same parameter in the paper. s.window: [...] the loess window for seasonal extraction, which should be odd and at least 7, according to Cleveland et al --> The phrase 'odd and at