Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
03a257b40d | ||
|
|
58875dc119 | ||
|
|
a6937bb7f0 | ||
|
|
cfe01e8aea | ||
|
|
14bad962eb | ||
|
|
ff0e5655f9 | ||
|
|
bb56f6e34c | ||
|
|
f035affef6 | ||
|
|
18a4cc0cb5 | ||
|
|
0fcff887fe |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pofile",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.9",
|
||||
"authors": [
|
||||
"Ruben Vermeersch <ruben@rocketeer.be>"
|
||||
],
|
||||
|
||||
22
dist/pofile.js
vendored
22
dist/pofile.js
vendored
@@ -23,12 +23,12 @@ PO.prototype.toString = function () {
|
||||
|
||||
if (this.comments) {
|
||||
this.comments.forEach(function (comment) {
|
||||
lines.push('# ' + comment);
|
||||
lines.push(('# ' + comment).trim());
|
||||
});
|
||||
}
|
||||
if (this.extractedComments) {
|
||||
this.extractedComments.forEach(function (comment) {
|
||||
lines.push('#. ' + comment);
|
||||
lines.push(('#. ' + comment).trim());
|
||||
});
|
||||
}
|
||||
|
||||
@@ -316,6 +316,15 @@ PO.Item.prototype.toString = function () {
|
||||
return lines;
|
||||
};
|
||||
|
||||
//handle \n in single-line texts (can not be handled in _escape)
|
||||
var _processLineBreak = function (keyword, text, index) {
|
||||
var processed = _process(keyword, text, index);
|
||||
for (var i = 1; i < processed.length - 1; i++) {
|
||||
processed[i] = processed[i].slice(0, -1) + '\\n"';
|
||||
}
|
||||
return processed;
|
||||
};
|
||||
|
||||
// https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
|
||||
// says order is translator-comments, extracted-comments, references, flags
|
||||
|
||||
@@ -351,7 +360,8 @@ PO.Item.prototype.toString = function () {
|
||||
|
||||
if (Array.isArray(text) && text.length > 1) {
|
||||
text.forEach(function (t, i) {
|
||||
lines = lines.concat(mkObsolete + _process(keyword, t, i));
|
||||
var processed = _processLineBreak(keyword, t, i);
|
||||
lines = lines.concat(mkObsolete + processed.join('\n' + mkObsolete));
|
||||
});
|
||||
} else if (self.msgid_plural && keyword === 'msgstr' && !hasTranslation) {
|
||||
for (var pluralIndex = 0; pluralIndex < self.nplurals; pluralIndex++) {
|
||||
@@ -362,11 +372,7 @@ PO.Item.prototype.toString = function () {
|
||||
0 :
|
||||
undefined;
|
||||
text = Array.isArray(text) ? text.join() : text;
|
||||
var processed = _process(keyword, text, index);
|
||||
//handle \n in single-line texts (can not be handled in _escape)
|
||||
for (var i = 1; i < processed.length - 1; i++) {
|
||||
processed[i] = processed[i].slice(0, -1) + '\\n"';
|
||||
}
|
||||
var processed = _processLineBreak(keyword, text, index);
|
||||
lines = lines.concat(mkObsolete + processed.join('\n' + mkObsolete));
|
||||
}
|
||||
}
|
||||
|
||||
2
dist/pofile.min.js
vendored
2
dist/pofile.min.js
vendored
File diff suppressed because one or more lines are too long
22
lib/po.js
22
lib/po.js
@@ -20,12 +20,12 @@ PO.prototype.toString = function () {
|
||||
|
||||
if (this.comments) {
|
||||
this.comments.forEach(function (comment) {
|
||||
lines.push('# ' + comment);
|
||||
lines.push(('# ' + comment).trim());
|
||||
});
|
||||
}
|
||||
if (this.extractedComments) {
|
||||
this.extractedComments.forEach(function (comment) {
|
||||
lines.push('#. ' + comment);
|
||||
lines.push(('#. ' + comment).trim());
|
||||
});
|
||||
}
|
||||
|
||||
@@ -313,6 +313,15 @@ PO.Item.prototype.toString = function () {
|
||||
return lines;
|
||||
};
|
||||
|
||||
//handle \n in single-line texts (can not be handled in _escape)
|
||||
var _processLineBreak = function (keyword, text, index) {
|
||||
var processed = _process(keyword, text, index);
|
||||
for (var i = 1; i < processed.length - 1; i++) {
|
||||
processed[i] = processed[i].slice(0, -1) + '\\n"';
|
||||
}
|
||||
return processed;
|
||||
};
|
||||
|
||||
// https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
|
||||
// says order is translator-comments, extracted-comments, references, flags
|
||||
|
||||
@@ -348,7 +357,8 @@ PO.Item.prototype.toString = function () {
|
||||
|
||||
if (Array.isArray(text) && text.length > 1) {
|
||||
text.forEach(function (t, i) {
|
||||
lines = lines.concat(mkObsolete + _process(keyword, t, i));
|
||||
var processed = _processLineBreak(keyword, t, i);
|
||||
lines = lines.concat(mkObsolete + processed.join('\n' + mkObsolete));
|
||||
});
|
||||
} else if (self.msgid_plural && keyword === 'msgstr' && !hasTranslation) {
|
||||
for (var pluralIndex = 0; pluralIndex < self.nplurals; pluralIndex++) {
|
||||
@@ -359,11 +369,7 @@ PO.Item.prototype.toString = function () {
|
||||
0 :
|
||||
undefined;
|
||||
text = Array.isArray(text) ? text.join() : text;
|
||||
var processed = _process(keyword, text, index);
|
||||
//handle \n in single-line texts (can not be handled in _escape)
|
||||
for (var i = 1; i < processed.length - 1; i++) {
|
||||
processed[i] = processed[i].slice(0, -1) + '\\n"';
|
||||
}
|
||||
var processed = _processLineBreak(keyword, text, index);
|
||||
lines = lines.concat(mkObsolete + processed.join('\n' + mkObsolete));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "pofile",
|
||||
"description": "Parse and serialize Gettext PO files.",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.9",
|
||||
"author": {
|
||||
"name": "Ruben Vermeersch",
|
||||
"email": "ruben@savanne.be",
|
||||
|
||||
12
pofile.d.ts
vendored
12
pofile.d.ts
vendored
@@ -1,8 +1,8 @@
|
||||
declare module "pofile" {
|
||||
class PO {
|
||||
public static parse(data: string): PO;
|
||||
public static load(fileName: string, callback: (err: NodeJS.ErrnoException | null, po: PO) => void): void;
|
||||
declare module pofile {
|
||||
function parse(data: string): PO;
|
||||
function load(fileName: string, callback: (err: NodeJS.ErrnoException | null, po: PO) => void): void;
|
||||
|
||||
class PO {
|
||||
public comments: string[];
|
||||
public extractedComments: string[];
|
||||
public items: Item[];
|
||||
@@ -39,6 +39,6 @@ declare module "pofile" {
|
||||
|
||||
public toString(): string;
|
||||
}
|
||||
|
||||
export = PO;
|
||||
}
|
||||
|
||||
export = pofile
|
||||
|
||||
14
test/fixtures/c-strings.po
vendored
14
test/fixtures/c-strings.po
vendored
@@ -57,3 +57,17 @@ msgid ""
|
||||
msgstr ""
|
||||
"\a\b\t\n"
|
||||
"\v\f\r"
|
||||
|
||||
# plural text must suport \n
|
||||
msgid ""
|
||||
"Test.\n"
|
||||
" multiline."
|
||||
msgid_plural ""
|
||||
"Test\n"
|
||||
" multiline plural."
|
||||
msgstr[0] ""
|
||||
"Test.\n"
|
||||
" mehrzeilig."
|
||||
msgstr[1] ""
|
||||
"Test.\n"
|
||||
" mehrzeilig Plural."
|
||||
|
||||
@@ -2,12 +2,13 @@ var assert = require('assert');
|
||||
var fs = require('fs');
|
||||
var PO = require('..');
|
||||
|
||||
function assertHasLine(str, line) {
|
||||
function assertHasLine(str, line, doNotTrim) {
|
||||
var lines = str.split('\n');
|
||||
var found = false;
|
||||
|
||||
for (var i = 0; i < lines.length; i++) {
|
||||
if (lines[i].trim() === line) {
|
||||
var lineToCompare = doNotTrim ? lines[i] : lines[i].trim();
|
||||
if (lineToCompare === line) {
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
@@ -53,6 +54,13 @@ describe('Write', function () {
|
||||
assertHasLine(str, '#, fuzzy');
|
||||
});
|
||||
|
||||
it('write empty comment without an unecessary space', function () {
|
||||
var input = fs.readFileSync(__dirname + '/fixtures/fuzzy.po', 'utf8');
|
||||
var po = PO.parse(input);
|
||||
var str = po.toString();
|
||||
assertHasLine(str, '#', true);
|
||||
});
|
||||
|
||||
it('write flags only when true', function () {
|
||||
var input = fs.readFileSync(__dirname + '/fixtures/fuzzy.po', 'utf8');
|
||||
var po = PO.parse(input);
|
||||
|
||||
Reference in New Issue
Block a user