Changeset 35


Ignore:
Timestamp:
Jul 27, 2020, 7:12:47 AM (5 years ago)
Author:
dryeo
Message:

Fix compiling of new NLS files, Spanish and French

Location:
branches/v2.9
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/v2.9/classes/help/es/makefile

    r28 r35  
    33include ../../../make.inc
    44
    5 LANGUAGE        =
     5LANGUAGE        = 034
    66DISTNAME        =       cwaudio-classes-$(VERSION)
    77CC           = icc
  • branches/v2.9/classes/help/fr/makefile

    r29 r35  
    33include ../../../make.inc
    44
    5 LANGUAGE        =
     5LANGUAGE        = 033
    66DISTNAME        =       cwaudio-classes-$(VERSION)
    77CC           = icc
  • branches/v2.9/classes/makefile

    r23 r35  
    116116HLP_FILES       =       ./Help/de/cwmm049.hlp \
    117117                        ./Help/en/cwmm.hlp \
     118                        ./Help/es/cwmm034.hlp \
     119                        ./Help/fr/cwmm033.hlp \
    118120                        ./Help/nl/cwmm031.hlp \
    119121                        ./Help/it/cwmm039.hlp \
     
    197199        cd ./Help/en && make
    198200
     201# Spanish
     202./Help/es/cwmm034.hlp:  ./Help/es/cwmm034.ipf
     203        cd ./Help/es && make
     204
     205# French
     206./Help/fr/cwmm033.hlp:  ./Help/fr/cwmm033.ipf
     207        cd ./Help/fr && make
     208
    199209# Dutch
    200210./Help/nl/cwmm031.hlp:  ./Help/nl/cwmm031.ipf
     
    296306        -cd ./Help/de && make clean
    297307        -cd ./Help/en && make clean
     308        -cd ./Help/es && make clean
     309        -cd ./Help/fr && make clean
    298310        -cd ./Help/nl && make clean
    299311        -cd ./Help/it && make clean
     
    309321        -cd ./Help/de && make cleaner
    310322        -cd ./Help/en && make cleaner
     323        -cd ./Help/es && make cleaner
     324        -cd ./Help/fr && make cleaner
    311325        -cd ./Help/nl && make cleaner
    312326        -cd ./Help/it && make cleaner
  • branches/v2.9/classes/res/es/mmres_es.c

    r28 r35  
    1 #define  INCL_GRAPHICBUTTON   /* need this for the graphic buttons control */
    2 #define  INCL_BITMAP
     1/*
     2 * This file is (C) Chris Wohlgemuth 2003
     3 */
     4/*
     5 * This program is free software; you can redistribute it and/or modify
     6 * it under the terms of the GNU General Public License as published by
     7 * the Free Software Foundation; either version 2, or (at your option)
     8 * any later version.
     9 *
     10 * This program is distributed in the hope that it will be useful,
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 * GNU General Public License for more details.
     14 *
     15 * You should have received a copy of the GNU General Public License
     16 * along with this program; see the file COPYING.  If not, write to
     17 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
     18 */
    319
    4 #ifndef OS2_INCLUDED
    5    #include <os2.h>
    6 #endif
    7 #include <sw.h>
     20#include <os2.h>
    821
    9 #include "mmres.h"
    10 ;#include "version.h"
    11 ;#include "build.h"
     22PSZ queryLanguage()
     23{
     24  return "Espa€ol";
     25}
    1226
    13 
    14 ;Dialog Resources for volume.exe
    15 rcinclude "volume_es.rc"
    16 rcinclude "volume_es.dlg"
    17 
    18 rcinclude "audioconv_es.rc"
    19 rcinclude "audioconv_es.dlg"
    20 
    21 rcinclude "imageconv_es.rc"
    22 rcinclude "imageconv_es.dlg"
    23 
    24 rcinclude "audioplayer_es.rc"
    25 rcinclude "audioplayer_es.dlg"
    26 
    27 rcinclude "classvolume_es.dlg"
    28 
    29 rcinclude "cwaudio_es.rc"
    30 rcinclude "cwaudio_es.dlg"
    31 
    32 rcinclude "cwimage_es.rc"
    33 rcinclude "cwvideo_es.rc"
    34 
    35 rcinclude "mmfind_es.rc"
    36 rcinclude "mmfind_es.dlg"
  • branches/v2.9/make.inc

    r23 r35  
    11# List of languages to be built.
    2 LANGUAGES       =       de en nl it tw
     2LANGUAGES       =       de en es fr nl it tw
    33
    44#define the next makro if compiling a release rather than a beta
Note: See TracChangeset for help on using the changeset viewer.