forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# 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
- Loading branch information
taca
committed
Dec 16, 2012
1 parent
ab75e24
commit c63c16a
Showing
3 changed files
with
65 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# $NetBSD: Makefile,v 1.16 2012/09/14 16:02:44 taca Exp $ | ||
# $NetBSD: Makefile,v 1.17 2012/12/16 16:20:59 taca Exp $ | ||
|
||
DISTNAME= gettext-2.3.1 | ||
DISTNAME= gettext-2.3.5 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= [email protected] | ||
|
@@ -14,7 +14,6 @@ OVERRIDE_GEMSPEC= :files po/de/gettext.po.bak= po/gettext.pot~= | |
|
||
pre-configure: | ||
cd ${WRKSRC}; ${FIND} . -type f -print | ${XARGS} ${CHMOD} g-w | ||
${RM} -f ${WRKSRC}/po/de/gettext.po.bak ${WRKSRC}/po/gettext.pot~ | ||
|
||
.include "../../lang/ruby/gem.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.12 2012/09/14 16:02:44 taca Exp $ | ||
$NetBSD: distinfo,v 1.13 2012/12/16 16:20:59 taca Exp $ | ||
|
||
SHA1 (gettext-2.3.1.gem) = 16a5ea5a645a4b991773265c68096ab69a0c0e49 | ||
RMD160 (gettext-2.3.1.gem) = 718a91aa439cb8fcf04c0292ff83e7353e4f30f0 | ||
Size (gettext-2.3.1.gem) = 174080 bytes | ||
SHA1 (gettext-2.3.5.gem) = 51db9807fe3c5a24502edf3f051b743606d4575b | ||
RMD160 (gettext-2.3.5.gem) = 8bfc5512bc3f3eba08048af3172b05f0ccc0eedd | ||
Size (gettext-2.3.5.gem) = 208896 bytes |