Changeset 35
- Timestamp:
- Jul 27, 2020, 7:12:47 AM (5 years ago)
- Location:
- branches/v2.9
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/v2.9/classes/help/es/makefile
r28 r35 3 3 include ../../../make.inc 4 4 5 LANGUAGE = 5 LANGUAGE = 034 6 6 DISTNAME = cwaudio-classes-$(VERSION) 7 7 CC = icc -
branches/v2.9/classes/help/fr/makefile
r29 r35 3 3 include ../../../make.inc 4 4 5 LANGUAGE = 5 LANGUAGE = 033 6 6 DISTNAME = cwaudio-classes-$(VERSION) 7 7 CC = icc -
branches/v2.9/classes/makefile
r23 r35 116 116 HLP_FILES = ./Help/de/cwmm049.hlp \ 117 117 ./Help/en/cwmm.hlp \ 118 ./Help/es/cwmm034.hlp \ 119 ./Help/fr/cwmm033.hlp \ 118 120 ./Help/nl/cwmm031.hlp \ 119 121 ./Help/it/cwmm039.hlp \ … … 197 199 cd ./Help/en && make 198 200 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 199 209 # Dutch 200 210 ./Help/nl/cwmm031.hlp: ./Help/nl/cwmm031.ipf … … 296 306 -cd ./Help/de && make clean 297 307 -cd ./Help/en && make clean 308 -cd ./Help/es && make clean 309 -cd ./Help/fr && make clean 298 310 -cd ./Help/nl && make clean 299 311 -cd ./Help/it && make clean … … 309 321 -cd ./Help/de && make cleaner 310 322 -cd ./Help/en && make cleaner 323 -cd ./Help/es && make cleaner 324 -cd ./Help/fr && make cleaner 311 325 -cd ./Help/nl && make cleaner 312 326 -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 */ 3 19 4 #ifndef OS2_INCLUDED 5 #include <os2.h> 6 #endif 7 #include <sw.h> 20 #include <os2.h> 8 21 9 #include "mmres.h" 10 ;#include "version.h" 11 ;#include "build.h" 22 PSZ queryLanguage() 23 { 24 return "Espa€ol"; 25 } 12 26 13 14 ;Dialog Resources for volume.exe15 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 1 1 # List of languages to be built. 2 LANGUAGES = de en nl it tw2 LANGUAGES = de en es fr nl it tw 3 3 4 4 #define the next makro if compiling a release rather than a beta
Note:
See TracChangeset
for help on using the changeset viewer.