d505869910
- Languages can now be added to Tidy using standard toolchains. - Tidy's help output is improved with new options and some reorganization.
63 lines
2 KiB
Plaintext
63 lines
2 KiB
Plaintext
#ifndef language_<%= po_content.language %>_h
|
|
#define language_<%= po_content.language %>_h
|
|
/*
|
|
* language_<%= po_content.language %>.h
|
|
* Localization support for HTML Tidy.
|
|
*
|
|
* THIS FILE IS MACHINE GENERATED. It is a localization file for the
|
|
* language (and maybe region) "<%= po_content.language %>" and it should not be
|
|
* edited manually. The source of these strings is a gettext PO file,
|
|
* probably called "language_<%= po_content.language %>.po" in Tidy's source.
|
|
*
|
|
* Tidy's source distribution also includes a script to convert PO files
|
|
* into this file. Because PO files are friendly to translators and a
|
|
* standard industry tool, please translate ONLY the PO files.
|
|
*
|
|
* (c) 2015 HTACG
|
|
* See tidy.h and access.h for the copyright notice.
|
|
*
|
|
* Template Created by Jim Derry on 01/14/2016.
|
|
*
|
|
* Orginating PO file metadata:
|
|
* PO_LAST_TRANSLATOR=<%= po_content.last_translator %>
|
|
* PO_REVISION_DATE=<%= po_content.po_revision_date %>
|
|
*/
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma execution_character_set("utf-8")
|
|
#endif
|
|
|
|
#include "language.h"
|
|
#include "access.h"
|
|
#include "message.h"
|
|
|
|
|
|
/**
|
|
* This language-specific function returns the correct pluralForm
|
|
* to use given n items, and is used as a member of each language
|
|
* definition.
|
|
*/
|
|
static uint whichPluralForm_<%= po_content.language %>(uint n) {
|
|
/* <%= po_content.plural_forms %> */
|
|
return <%= po_content.plural_formula %>
|
|
}
|
|
|
|
|
|
/**
|
|
* This structure specifies all of the strings needed by Tidy for a
|
|
* single language. Static definition in a header file makes it
|
|
* easy to include and exclude languages without tinkering with
|
|
* the build system.
|
|
*/
|
|
static languageDefinition language_<%= po_content.language %> = { whichPluralForm_<%= po_content.language %>, {
|
|
/***************************************
|
|
** This MUST be present and first.
|
|
** Specify the code for this language.
|
|
***************************************/
|
|
<%= report_body %>
|
|
<%= report_body_last %>
|
|
}};
|
|
|
|
|
|
#endif /* language_<%= po_content.language %>_h */
|