92b80bdba5
Previously, it was hardcoded to the english convention of units-last, so "100%" would be voiced as "one hundred percent". This adds a new language flag that makes the units be voiced first, ie "100%" will be voiced as "percent one hundred". So far only the Chinese-traditional and Chinese-simplified languages utilize this feature (taken from an old ticket, FS#10340) but I'm sure others would want this feature too. Change-Id: Idf825ec9299dc0ed09921cf67aec61b1ab262fc6
42 lines
1.7 KiB
C
42 lines
1.7 KiB
C
#ifndef __LANGUAGE_H
|
|
#define __LANGUAGE_H
|
|
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2002, 2008 Daniel Stenberg
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/* Initialize language array with the builtin strings */
|
|
void lang_init(const unsigned char *builtin, unsigned char **dest, int count);
|
|
|
|
/* load a given language file */
|
|
int lang_core_load(const char *filename);
|
|
|
|
int lang_load(const char *filename, const unsigned char *builtin,
|
|
unsigned char **dest, unsigned char *buffer,
|
|
unsigned int user_num, int max_lang_size,
|
|
unsigned int max_id);
|
|
|
|
/* get the ID of an english string so it can be localised */
|
|
int lang_english_to_id(const char *english);
|
|
|
|
/* returns whether the loaded language is a right-to-left language */
|
|
int lang_is_rtl(void);
|
|
/* returns whether the loaded language needs units spoken before the value */
|
|
int lang_units_first(void);
|
|
#endif
|