extensions/spellcheck/hunspell/src/langnum.hxx

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/extensions/spellcheck/hunspell/src/langnum.hxx	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,94 @@
     1.4 +/******* BEGIN LICENSE BLOCK *******
     1.5 + * Version: MPL 1.1/GPL 2.0/LGPL 2.1
     1.6 + * 
     1.7 + * The contents of this file are subject to the Mozilla Public License Version
     1.8 + * 1.1 (the "License"); you may not use this file except in compliance with
     1.9 + * the License. You may obtain a copy of the License at
    1.10 + * http://www.mozilla.org/MPL/
    1.11 + * 
    1.12 + * Software distributed under the License is distributed on an "AS IS" basis,
    1.13 + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    1.14 + * for the specific language governing rights and limitations under the
    1.15 + * License.
    1.16 + * 
    1.17 + * The Initial Developers of the Original Code are Kevin Hendricks (MySpell)
    1.18 + * and László Németh (Hunspell). Portions created by the Initial Developers
    1.19 + * are Copyright (C) 2002-2005 the Initial Developers. All Rights Reserved.
    1.20 + * 
    1.21 + * Contributor(s): Kevin Hendricks (kevin.hendricks@sympatico.ca)
    1.22 + *                 David Einstein (deinst@world.std.com)
    1.23 + *                 László Németh (nemethl@gyorsposta.hu)
    1.24 + *                 Davide Prina
    1.25 + *                 Giuseppe Modugno
    1.26 + *                 Gianluca Turconi
    1.27 + *                 Simon Brouwer
    1.28 + *                 Noll Janos
    1.29 + *                 Biro Arpad
    1.30 + *                 Goldman Eleonora
    1.31 + *                 Sarlos Tamas
    1.32 + *                 Bencsath Boldizsar
    1.33 + *                 Halacsy Peter
    1.34 + *                 Dvornik Laszlo
    1.35 + *                 Gefferth Andras
    1.36 + *                 Nagy Viktor
    1.37 + *                 Varga Daniel
    1.38 + *                 Chris Halls
    1.39 + *                 Rene Engelhard
    1.40 + *                 Bram Moolenaar
    1.41 + *                 Dafydd Jones
    1.42 + *                 Harri Pitkanen
    1.43 + *                 Andras Timar
    1.44 + *                 Tor Lillqvist
    1.45 + * 
    1.46 + * Alternatively, the contents of this file may be used under the terms of
    1.47 + * either the GNU General Public License Version 2 or later (the "GPL"), or
    1.48 + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    1.49 + * in which case the provisions of the GPL or the LGPL are applicable instead
    1.50 + * of those above. If you wish to allow use of your version of this file only
    1.51 + * under the terms of either the GPL or the LGPL, and not to allow others to
    1.52 + * use your version of this file under the terms of the MPL, indicate your
    1.53 + * decision by deleting the provisions above and replace them with the notice
    1.54 + * and other provisions required by the GPL or the LGPL. If you do not delete
    1.55 + * the provisions above, a recipient may use your version of this file under
    1.56 + * the terms of any one of the MPL, the GPL or the LGPL.
    1.57 + *
    1.58 + ******* END LICENSE BLOCK *******/
    1.59 +
    1.60 +#ifndef _LANGNUM_HXX_
    1.61 +#define _LANGNUM_HXX_
    1.62 +
    1.63 +/*
    1.64 + language numbers for language specific codes
    1.65 + see http://l10n.openoffice.org/languages.html
    1.66 +*/
    1.67 +
    1.68 +enum {
    1.69 +LANG_ar=96,
    1.70 +LANG_az=100, // custom number
    1.71 +LANG_bg=41,
    1.72 +LANG_ca=37,
    1.73 +LANG_cs=42,
    1.74 +LANG_da=45,
    1.75 +LANG_de=49,
    1.76 +LANG_el=30,
    1.77 +LANG_en=01,
    1.78 +LANG_es=34,
    1.79 +LANG_eu=10,
    1.80 +LANG_fr=02,
    1.81 +LANG_gl=38,
    1.82 +LANG_hr=78,
    1.83 +LANG_hu=36,
    1.84 +LANG_it=39,
    1.85 +LANG_la=99, // custom number
    1.86 +LANG_lv=101, // custom number
    1.87 +LANG_nl=31,
    1.88 +LANG_pl=48,
    1.89 +LANG_pt=03,
    1.90 +LANG_ru=07,
    1.91 +LANG_sv=50,
    1.92 +LANG_tr=90,
    1.93 +LANG_uk=80,
    1.94 +LANG_xx=999
    1.95 +};
    1.96 +
    1.97 +#endif

mercurial