Merge pull request #27 from ma2ciek/master
Add support for the typescript projects and IDE-s.
This commit is contained in:
commit
5cbb657f20
@ -20,6 +20,7 @@
|
||||
"url": "http://github.com/rubenv/pofile.git"
|
||||
},
|
||||
"main": "./lib/po",
|
||||
"types": "./pofile.d.ts",
|
||||
"keywords": [
|
||||
"i18n",
|
||||
"l10n",
|
||||
|
44
pofile.d.ts
vendored
Normal file
44
pofile.d.ts
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
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;
|
||||
|
||||
public comments: string[];
|
||||
public extractedComments: string[];
|
||||
public items: Item[];
|
||||
public headers: Partial<IHeaders>
|
||||
|
||||
public save(filename: string, callback: (err?: NodeJS.ErrnoException) => void): void;
|
||||
public toString(): string;
|
||||
}
|
||||
|
||||
interface IHeaders {
|
||||
'Project-Id-Version': string;
|
||||
'Report-Msgid-Bugs-To': string;
|
||||
'POT-Creation-Date': string;
|
||||
'PO-Revision-Date': string;
|
||||
'Last-Translator': string;
|
||||
'Language': string;
|
||||
'Language-Team': string;
|
||||
'Content-Type': string;
|
||||
'Content-Transfer-Encoding': string;
|
||||
'Plural-Forms': string;
|
||||
}
|
||||
|
||||
class Item {
|
||||
public msgid: string;
|
||||
public msgctxt?: string;
|
||||
public references: string[];
|
||||
public msgid_plural?: string;
|
||||
public msgstr: string[];
|
||||
public comments: string[];
|
||||
public extractedComments: string[];
|
||||
public flags: { [flag: string]: boolean | undefined }
|
||||
private nplurals: number;
|
||||
private obsolete: boolean;
|
||||
|
||||
public toString(): string;
|
||||
}
|
||||
|
||||
export = PO;
|
||||
}
|
Loading…
Reference in New Issue
Block a user