2018-03-13 17:49:03 +01:00
|
|
|
@comment $NetBSD: PLIST,v 1.24 2018/03/13 16:49:03 taca Exp $
|
2015-06-03 15:51:06 +02:00
|
|
|
bin/rmsgcat${RUBY_SUFFIX}
|
|
|
|
bin/rmsgfmt${RUBY_SUFFIX}
|
|
|
|
bin/rmsginit${RUBY_SUFFIX}
|
|
|
|
bin/rmsgmerge${RUBY_SUFFIX}
|
|
|
|
bin/rxgettext${RUBY_SUFFIX}
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_HOME}/cache/${GEM_NAME}.gem
|
2012-09-14 18:02:44 +02:00
|
|
|
${GEM_LIBDIR}/.yardopts
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/README.md
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/Rakefile
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/bin/rmsgcat
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/bin/rmsgfmt
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/bin/rmsginit
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/bin/rmsgmerge
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/bin/rxgettext
|
2013-04-21 14:56:02 +02:00
|
|
|
${GEM_LIBDIR}/doc/text/gpl-2.0.txt
|
|
|
|
${GEM_LIBDIR}/doc/text/lgpl-3.0.txt
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/doc/text/news.md
|
2013-04-21 14:56:02 +02:00
|
|
|
${GEM_LIBDIR}/doc/text/ruby-license.txt
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/gettext.gemspec
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/cgi.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext/class_info.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/locale_path.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/mo.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/po.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/po_entry.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/lib/gettext/po_format.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext/po_parser.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/text_domain.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/text_domain_group.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/text_domain_manager.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/msgcat.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/msgfmt.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/msginit.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/msgmerge.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/parser/erb.rb
|
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/parser/glade.rb
|
2018-03-13 17:49:03 +01:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/parser/haml.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/parser/ruby.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/task.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext/tools/xgettext.rb
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/lib/gettext/version.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/locale/bg/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/bs/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/ca/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/cs/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/de/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/el/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/eo/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/es/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/et/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/fr/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/hr/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/hu/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/it/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/ja/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/ko/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/lv/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/nb/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/nl/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/pt_BR/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/ru/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/sr/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/sv/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/uk/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/vi/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/zh/LC_MESSAGES/gettext.mo
|
|
|
|
${GEM_LIBDIR}/locale/zh_TW/LC_MESSAGES/gettext.mo
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/bg/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/bg/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/bg/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/bs/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/bs/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/bs/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/ca/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/ca/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/ca/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/cs/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/cs/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/cs/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/de/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/de/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/de/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/el/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/el/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/el/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/eo/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/eo/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/eo/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/es/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/es/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/es/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/et/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/et/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/et/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/fr/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/fr/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/fr/gettext.po.time_stamp
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/gettext.pot
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/hr/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/hr/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/hr/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/hu/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/hu/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/hu/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/it/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/it/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/it/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/ja/gettext.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/po/ja/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/ja/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/ko/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/ko/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/ko/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/lv/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/lv/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/lv/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/nb/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/nb/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/nb/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/nl/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/nl/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/nl/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/pt_BR/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/pt_BR/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/pt_BR/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/ru/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/ru/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/ru/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/sr/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/sr/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/sr/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/sv/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/sv/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/sv/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/uk/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/uk/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/uk/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/vi/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/vi/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/vi/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/zh/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/zh/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/zh/gettext.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/po/zh_TW/gettext.edit.po
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/po/zh_TW/gettext.po
|
2014-08-31 10:09:50 +02:00
|
|
|
${GEM_LIBDIR}/po/zh_TW/gettext.po.time_stamp
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/README
|
|
|
|
${GEM_LIBDIR}/samples/cgi/README
|
|
|
|
${GEM_LIBDIR}/samples/cgi/cookie.cgi
|
|
|
|
${GEM_LIBDIR}/samples/cgi/gettext.css
|
|
|
|
${GEM_LIBDIR}/samples/cgi/helloerb.rhtml
|
|
|
|
${GEM_LIBDIR}/samples/cgi/helloerb1.cgi
|
|
|
|
${GEM_LIBDIR}/samples/cgi/helloerb2.cgi
|
|
|
|
${GEM_LIBDIR}/samples/cgi/hellolib.rb
|
|
|
|
${GEM_LIBDIR}/samples/cgi/http.rb
|
|
|
|
${GEM_LIBDIR}/samples/cgi/index.cgi
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bg/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/bs/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ca/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/cs/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/de/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/el/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/eo/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/es/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/fr/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hr/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/hu/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/it/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ja/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ko/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/lv/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nb/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/nl/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/ru/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/sr/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/uk/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/uk/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/uk/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/uk/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/vi/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh/LC_MESSAGES/main.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo
|
|
|
|
${GEM_LIBDIR}/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/other.rhtml
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/helloerb1.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/helloerb2.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/hellolib.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/main.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bg/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/bs/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ca/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/cs/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/de/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/el/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/eo/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/es/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/fr/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/helloerb1.pot
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/helloerb2.pot
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hellolib.pot
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hr/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/hu/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/it/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ja/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ko/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/helloerb1.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/helloerb2.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/hellolib.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/main.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/lv/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/main.pot
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nb/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/nl/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/pt_BR/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/ru/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/helloerb1.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/helloerb2.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/hellolib.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/main.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/sr/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/helloerb1.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/helloerb2.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/hellolib.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/main.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/uk/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/vi/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh/main.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/helloerb1.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/helloerb1.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/helloerb1.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/helloerb2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/helloerb2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/helloerb2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/hellolib.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/hellolib.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/hellolib.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/main.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/main.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/cgi/po/zh_TW/main.po.time_stamp
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/hello.rb
|
|
|
|
${GEM_LIBDIR}/samples/hello2.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/hello_glade2.glade
|
|
|
|
${GEM_LIBDIR}/samples/hello_glade2.rb
|
|
|
|
${GEM_LIBDIR}/samples/hello_gtk2.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/hello_gtk_builder.rb
|
|
|
|
${GEM_LIBDIR}/samples/hello_gtk_builder.ui
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/hello_noop.rb
|
|
|
|
${GEM_LIBDIR}/samples/hello_plural.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/hello_tk.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bg/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/bs/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ca/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/cs/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/de/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/el/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/eo/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/es/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/fr/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hr/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/hu/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/it/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ja/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ko/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/lv/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nb/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/nl/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/pt_BR/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/ru/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sr/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/sv/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/uk/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/vi/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh/LC_MESSAGES/hello_tk.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello_glade2.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello_gtk2.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello_gtk_builder.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo
|
|
|
|
${GEM_LIBDIR}/samples/locale/zh_TW/LC_MESSAGES/hello_tk.mo
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello2.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_noop.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_plural.edit.po
|
2008-09-15 20:09:29 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bg/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/bs/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ca/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/cs/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/de/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/el/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/eo/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/es/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/fr/hello_tk.po.time_stamp
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hello.pot
|
|
|
|
${GEM_LIBDIR}/samples/po/hello2.pot
|
|
|
|
${GEM_LIBDIR}/samples/po/hello_glade2.pot
|
|
|
|
${GEM_LIBDIR}/samples/po/hello_gtk2.pot
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hello_gtk_builder.pot
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hello_noop.pot
|
|
|
|
${GEM_LIBDIR}/samples/po/hello_plural.pot
|
|
|
|
${GEM_LIBDIR}/samples/po/hello_tk.pot
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hr/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/hu/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/it/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ja/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ko/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello2.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_noop.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_plural.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/lv/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nb/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/nl/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/pt_BR/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/ru/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello2.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_noop.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_plural.edit.po
|
Update ruby-gettext package to 1.92.0.
= Ruby-GetText-Package-1.92.0 (2008-08-02)
* Fixed a memory leak(again)
* Fixed bugs.
* Improve to support mo-files.
* Support revision 1 of mo-file format.
* Freeze msgstrs.
* msgctxt - pgettext(msgctxt, msgid) support
(eg)
p_("File", "Open") #=> "Open" is shown in English.
* Update translations
* Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German,
Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian,
Spanish, Ukrainian, Vietnamese,
* Rails Support
* Support rubyonrails-2.1.0 (2.0.0 or later).
* Add new validations for activerecord-2.1.0.
(:greater_than, :greater_than_or_equal_to, :equal_to,
:less_than, :less_than_or_equal_to,:odd, :even)
* validates_(format|inclusion)_of accepts %{val} as the value
(eg)
validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}")
* Work Fragment caching on rails-2.1.0.
* Support ActiveRecord::Base.abstract_class.
* Work ActiveRecord::Errors#[]
* Work render_partial.
Thanks to:
Translators:
Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada,
Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr,
Ramon Salvado, Alex Rootoff, Aivars Akots
Bug reports, suggestions and patches:
Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel
= Ruby-GetText-Package-1.91.0 (2008-05-11)
* Works again on Win32 + JRuby-1.1.1
* Fixed memory leaks.
* Fixed bugs.
* Speed up.
* Support Serbian(sr)
* Rails Support
* rubyonrails-1.2.x isn't supported(2.0.0 or later are supported).
* Localize ActionView::Helpers::FormBuilder#label.
e.g.)
<% form_for(@article) do |f| %>
<p><%= f.label :lastupdate %></p>
<% end %>
=> msgid "Article|Lastupdate" is used as the label string.
Thanks to:
Translators:
Slobodan Paunovic
Bug reports, suggestions and patches:
Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog,
Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15 10:52:44 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sr/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/sv/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello2.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_glade2.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_noop.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_plural.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_tk.edit.po
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/uk/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/vi/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh/hello_tk.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello2.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_glade2.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_glade2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_glade2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_gtk2.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_gtk2.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_gtk2.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_gtk_builder.edit.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_gtk_builder.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_gtk_builder.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_noop.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_noop.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_noop.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_plural.edit.po
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_plural.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_tk.edit.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_tk.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/samples/po/zh_TW/hello_tk.po.time_stamp
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/src/po_parser.ry
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/_.rb
|
2017-08-18 12:43:04 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/_/block_parameter.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/_/double_quote_in_double_quote.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/_/double_quote_in_single_quote.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/_/literal_concatenation_with_continuation_line.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/_/middle_new_line.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/_/multiple_lines_literal.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/_/multiple_messages_in_same_line.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/_/multiple_same_messages.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/_/one_line.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/_/one_new_line.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/backslash.rb
|
2012-09-14 18:02:44 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/erb/ascii.rhtml
|
|
|
|
${GEM_LIBDIR}/test/fixtures/erb/ascii.rxml
|
|
|
|
${GEM_LIBDIR}/test/fixtures/erb/non_ascii.rhtml
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/gladeparser.glade
|
2015-10-04 14:14:13 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/hello.rb
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/lower_n_.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/multi_text_domain.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/non_ascii.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/np_.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/ns_.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/ns_/custom.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/p_.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/s_.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/s_/custom.rb
|
|
|
|
${GEM_LIBDIR}/test/fixtures/simple.rb
|
2012-09-14 18:02:44 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/untranslated.rb
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/fixtures/upper_n_.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/gettext-test-utils.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/locale/cr/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/da/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/da/LC_MESSAGES/plural_error.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/plural_error.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/test1.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/fr/LC_MESSAGES/test2.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ir/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/_.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/backslash.mo
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/hello.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/non_ascii.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/np_.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/ns_.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/p_.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/plural_error.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/rubyparser.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/s_.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/test1.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/test2.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/test3.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/ja/LC_MESSAGES/untranslated.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/la/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/la/LC_MESSAGES/plural_error.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/li/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/li/LC_MESSAGES/plural_error.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/po/LC_MESSAGES/plural.mo
|
|
|
|
${GEM_LIBDIR}/test/locale/sl/LC_MESSAGES/plural.mo
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/locale/zh_Hant/LC_MESSAGES/test1.mo
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/po/_.pot
|
|
|
|
${GEM_LIBDIR}/test/po/backslash.pot
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/cr/plural.po
|
|
|
|
${GEM_LIBDIR}/test/po/da/plural.po
|
|
|
|
${GEM_LIBDIR}/test/po/da/plural_error.po
|
|
|
|
${GEM_LIBDIR}/test/po/fr/plural.po
|
|
|
|
${GEM_LIBDIR}/test/po/fr/plural_error.po
|
|
|
|
${GEM_LIBDIR}/test/po/fr/test1.po
|
|
|
|
${GEM_LIBDIR}/test/po/fr/test2.po
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/po/hello.pot
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ir/plural.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/_.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/_.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/_.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/test/po/ja/backslash.edit.po
|
2012-06-02 02:37:25 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/backslash.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/backslash.po.time_stamp
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/hello.edit.po
|
2015-10-04 14:14:13 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/hello.po
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/hello.po.time_stamp
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/non_ascii.edit.po
|
2012-06-02 02:37:25 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/non_ascii.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/non_ascii.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/test/po/ja/np_.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/np_.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/np_.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/test/po/ja/ns_.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/ns_.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/ns_.po.time_stamp
|
|
|
|
${GEM_LIBDIR}/test/po/ja/p_.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/p_.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/p_.po.time_stamp
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/plural.po
|
|
|
|
${GEM_LIBDIR}/test/po/ja/plural_error.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/rubyparser.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/s_.edit.po
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/s_.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/s_.po.time_stamp
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/test1.po
|
|
|
|
${GEM_LIBDIR}/test/po/ja/test2.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/test3.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/untranslated.edit.po
|
2012-09-14 18:02:44 +02:00
|
|
|
${GEM_LIBDIR}/test/po/ja/untranslated.po
|
2015-02-01 15:26:25 +01:00
|
|
|
${GEM_LIBDIR}/test/po/ja/untranslated.po.time_stamp
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/la/plural.po
|
|
|
|
${GEM_LIBDIR}/test/po/la/plural_error.po
|
|
|
|
${GEM_LIBDIR}/test/po/li/plural.po
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/po/li/plural_error.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/po/non_ascii.pot
|
|
|
|
${GEM_LIBDIR}/test/po/np_.pot
|
|
|
|
${GEM_LIBDIR}/test/po/ns_.pot
|
|
|
|
${GEM_LIBDIR}/test/po/p_.pot
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/po/plural.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/po/s_.pot
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/po/sl/plural.po
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/po/untranslated.pot
|
2016-10-09 16:10:04 +02:00
|
|
|
${GEM_LIBDIR}/test/po/zh_Hant/test1.po
|
2012-06-02 02:37:25 +02:00
|
|
|
${GEM_LIBDIR}/test/run-test.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/test_class_info.rb
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/test_gettext.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/test_locale_path.rb
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/test/test_mo.rb
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/test_parser.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/test_po.rb
|
Update ruby-gettext to 2.3.5.
# News
## <a id="2-3-5">2.3.5</a>: 2012-12-11
This is a bug fix release.
### Fixes
* [POParser] Fixed the class name for backward compatibility.
## <a id="2-3-4">2.3.4</a>: 2012-12-11
This is a many changes and new implements release.
### Improvements
* [Merger] Implemented "fuzzy-match" with Levenshtein distance.
* Added the class "PO" for management PO entries. Please use PO
instead of PoData. (see details in
http://rubydoc.info/gems/gettext/GetText/PO.html)
* [POEntry (renamed from PoMessages)] Supported to specify msgstr.
* [POEntry] Stored comments each type
(translator\_comment, extracted\_comment, flag, previous).
see
http://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
for details of comment type.
* [POEntry] Checked if specified type is valid in #type=.
* [PoParser][MO] Concatenated msgctxt, msgid, msgid\_plural to
"#{msgctxt}\004#{msgid}\000"{msgid\_plural}" by MO instead of
PoParser. PoData and MO treat a concatenated string as msgid, but
PO doesn't.
* [PoParser] Parsed each type comment from whole comment.
### Changes
* Rename some classes and methods.
* PoMessage to PoEntry. This isn't "message" but "entry".
(See http://www.gnu.org/software/gettext/manual/gettext.html#PO-Files)
* PoMessages#== to POEntry#mergeable?.
* PoMessages#to\_po\_str to POEntry#to\_s.
* PoMessages#sources(sources=) to POEntry#references(references=)
* MoFile to MO. For backword compatible, MoFile can be used now.
* PoParser to POParser. For backword compatible, PoParser can be used now.
* Raised no error when POEntry doesn't have references.
It is useful for no references in .PO file.
# News
## <a id="2-3-3">2.3.3</a>: 2012-10-18
It's a package fix and msginit improvement release.
### Improvements
* [msginit] Supported plural forms for Bosnian, Catalan, Norwegian
Bokmal and Chinese.
### Fixes
* Fixed the bug that messages (i.e. the help message for rmsgfmt)
aren't localized in each environment. However, some
messages aren't tranlated or resolved fuzzy. Please
help us to translate or resolve them.
[Github #12][Reported by mtasaka]
* Used String#% to localize some messages.
### Thanks
* mtasaka
## <a id="2-3-2">2.3.2</a>: 2012-09-20
It's a bug fix release.
### Fixes
* Fixed the bug that untranslated messages are included in a .mo file.
[Github #11][Reported by Ramón Cahenzli]
### Thanks
* Ramón Cahenzli
2012-12-16 17:20:59 +01:00
|
|
|
${GEM_LIBDIR}/test/test_po_entry.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/test_po_parser.rb
|
2008-04-04 17:17:08 +02:00
|
|
|
${GEM_LIBDIR}/test/test_string.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/test_text_domain.rb
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/test/test_text_domain_bind.rb
|
|
|
|
${GEM_LIBDIR}/test/test_text_domain_multi.rb
|
|
|
|
${GEM_LIBDIR}/test/test_text_domain_toplevel.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/test_thread.rb
|
|
|
|
${GEM_LIBDIR}/test/tools/files/app.pot
|
|
|
|
${GEM_LIBDIR}/test/tools/files/de/app.po
|
|
|
|
${GEM_LIBDIR}/test/tools/files/en/app.po
|
|
|
|
${GEM_LIBDIR}/test/tools/files/en/test.po
|
|
|
|
${GEM_LIBDIR}/test/tools/files/simple_1.po
|
|
|
|
${GEM_LIBDIR}/test/tools/files/simple_2.po
|
|
|
|
${GEM_LIBDIR}/test/tools/files/simple_translation.rb
|
|
|
|
${GEM_LIBDIR}/test/tools/files/version.po
|
2013-09-15 11:59:08 +02:00
|
|
|
${GEM_LIBDIR}/test/tools/parser/test_ruby.rb
|
2009-12-07 13:09:20 +01:00
|
|
|
${GEM_LIBDIR}/test/tools/test.pot
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/tools/test_msgcat.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/tools/test_msginit.rb
|
|
|
|
${GEM_LIBDIR}/test/tools/test_msgmerge.rb
|
2014-03-11 11:00:21 +01:00
|
|
|
${GEM_LIBDIR}/test/tools/test_task.rb
|
Update ruby-gettext to 2.3.0.
# News
## 2.3.0: 2012-08-28
Various improvements, changes and fixes release.
### Improvements
* Improved TextDomain#translate\_singluar\_message performance.
[Base idea is provided by @angelf]
* Added msginit command.
* [xgettext] Added command line options for package name, version,
copyright holder and msgid bugs address.[Github#8]
[Reported by Francesco Poli (wintermute) and 375gnu, and patch by 375gnu]
* [xgettext] Supported s\_ and ns\_ with parameter.
* [poparser] Reported warnings when fuzzy message is used.
[Reported by Michael Grosser]
* Used %{...} to check the availability of String#% with hash and
raise Error if this syntax isn't supported.
* Searched mo files under LC_MESSAGES/ directory.
* Updated documents for tools.
### Changes
* Renamed the package name from "Ruby-GetText-Package" to "gettext".
* Renamed RGetText to XGetText, RMsgMerge to MsgMerge, RMsgFmt to MsgFmt.
* Renamed rgettext to rxgettext, rmsgmerge to msgmerge, rmsgfmt to msgfmt.
* Defined tools(XGetText, MsgMerge, MsgFmt) as Class under GetText::Tools
module.
* Removed shortcuts for tools in GetText module.
Please use GetText::Tools:XXX.run instead of GetText.xxx.
* Changed API of tools.
e.g.) Before: GetText.rsmgfmt(targetfile, output\_path)
Now: GetText::Tools::MsgFmt.run(targetfile, "-o", output\_path)
* [xgettext] Used relative path for source path.
This path appears in generated pot file.
* [xgettext] Returned the pot header instead of "" as the translation of
"" msgid.
* [poparser] Treated not translated msgid when parsing po file.
A translation of no translated msgid is msgid itself even now.
* [xgettext] Removed descriptions of ruby in information by "-v" option.
### Fixes
* Included msgctxt when generating .po file. [Patch by 3dd13]
* Fixed a typo in msgmerge. [Patch by Yves-Eric Martin]
* [msgmerge] Followed PoParser API change.
* [ruby-parser] Reseted the last comment when po message is stored.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [ruby-parser] Processed RubyToken::TkDSTRING too.[Github#6]
[Reported by 375gnu and Francesco Poli (wintermute), and Patch by 375gnu]
* [msgmerge] Fixed not to add fuzzy to header message.
* [msgmerge] Escaped backslash and "\n".
### Thanks
* @angelf
* Francesco Poli (wintermute)
* 375gnu
* Michael Grosser
* 3dd13
* Yves-Eric Martin
2012-08-29 18:24:18 +02:00
|
|
|
${GEM_LIBDIR}/test/tools/test_xgettext.rb
|
2012-03-12 16:41:37 +01:00
|
|
|
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|