Japanese translation of message catalog for Sawfish Window-Manager
Revision | 6d9909d555baf87493da53d20029866238ea1a1c (tree) |
---|---|
Time | 2012-04-06 05:14:11 |
Author | Christopher Roy Bratusek <nano@tuxf...> |
Commiter | Christopher Roy Bratusek |
Merge branch 'master' into local-master
Conflicts:
ChangeLog
scripts/sawfish-about.jl.in
@@ -20,6 +20,12 @@ | ||
20 | 20 | |
21 | 21 | * configure.in: bump version to 1.8.99 "Housenation" |
22 | 22 | |
23 | + * configure.in | |
24 | + * Makdefs.in | |
25 | + * scripts/Makefile.in | |
26 | + * scripts/sawfish-about.jl.in: update copyright notice // show | |
27 | + codename in the about-dialog | |
28 | + | |
23 | 29 | 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org> |
24 | 30 | * lisp/sawfish/wm/ext/match-window.jl |
25 | 31 | * lisp/sawfish/wm/ext/window-history.jl |
@@ -20,6 +20,7 @@ | ||
20 | 20 | # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
21 | 21 | |
22 | 22 | version=@version@ |
23 | +codename=@codename@ | |
23 | 24 | subversion=@subversion@ |
24 | 25 | rep_version=@REP_VERSION@ |
25 | 26 | SHELL=/bin/sh |
@@ -2,9 +2,9 @@ | ||
2 | 2 | # Attempt to guess a canonical system name. |
3 | 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
4 | 4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, |
5 | -# 2011 Free Software Foundation, Inc. | |
5 | +# 2011, 2012 Free Software Foundation, Inc. | |
6 | 6 | |
7 | -timestamp='2011-05-11' | |
7 | +timestamp='2012-02-10' | |
8 | 8 | |
9 | 9 | # This file is free software; you can redistribute it and/or modify it |
10 | 10 | # under the terms of the GNU General Public License as published by |
@@ -17,9 +17,7 @@ timestamp='2011-05-11' | ||
17 | 17 | # General Public License for more details. |
18 | 18 | # |
19 | 19 | # You should have received a copy of the GNU General Public License |
20 | -# along with this program; if not, write to the Free Software | |
21 | -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA | |
22 | -# 02110-1301, USA. | |
20 | +# along with this program; if not, see <http://www.gnu.org/licenses/>. | |
23 | 21 | # |
24 | 22 | # As a special exception to the GNU General Public License, if you |
25 | 23 | # distribute this file as part of a program that contains a |
@@ -57,8 +55,8 @@ GNU config.guess ($timestamp) | ||
57 | 55 | |
58 | 56 | Originally written by Per Bothner. |
59 | 57 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
60 | -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free | |
61 | -Software Foundation, Inc. | |
58 | +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 | |
59 | +Free Software Foundation, Inc. | |
62 | 60 | |
63 | 61 | This is free software; see the source for copying conditions. There is NO |
64 | 62 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
@@ -145,7 +143,7 @@ UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown | ||
145 | 143 | case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in |
146 | 144 | *:NetBSD:*:*) |
147 | 145 | # NetBSD (nbsd) targets should (where applicable) match one or |
148 | - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, | |
146 | + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, | |
149 | 147 | # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently |
150 | 148 | # switched to ELF, *-*-netbsd* would select the old |
151 | 149 | # object file format. This provides both forward |
@@ -792,13 +790,12 @@ EOF | ||
792 | 790 | echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} |
793 | 791 | exit ;; |
794 | 792 | *:FreeBSD:*:*) |
795 | - case ${UNAME_MACHINE} in | |
796 | - pc98) | |
797 | - echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; | |
793 | + UNAME_PROCESSOR=`/usr/bin/uname -p` | |
794 | + case ${UNAME_PROCESSOR} in | |
798 | 795 | amd64) |
799 | 796 | echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; |
800 | 797 | *) |
801 | - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; | |
798 | + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; | |
802 | 799 | esac |
803 | 800 | exit ;; |
804 | 801 | i*:CYGWIN*:*) |
@@ -807,6 +804,9 @@ EOF | ||
807 | 804 | *:MINGW*:*) |
808 | 805 | echo ${UNAME_MACHINE}-pc-mingw32 |
809 | 806 | exit ;; |
807 | + i*:MSYS*:*) | |
808 | + echo ${UNAME_MACHINE}-pc-msys | |
809 | + exit ;; | |
810 | 810 | i*:windows32*:*) |
811 | 811 | # uname -m includes "-pc" on this system. |
812 | 812 | echo ${UNAME_MACHINE}-mingw32 |
@@ -861,6 +861,13 @@ EOF | ||
861 | 861 | i*86:Minix:*:*) |
862 | 862 | echo ${UNAME_MACHINE}-pc-minix |
863 | 863 | exit ;; |
864 | + aarch64:Linux:*:*) | |
865 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
866 | + exit ;; | |
867 | + aarch64_be:Linux:*:*) | |
868 | + UNAME_MACHINE=aarch64_be | |
869 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
870 | + exit ;; | |
864 | 871 | alpha:Linux:*:*) |
865 | 872 | case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in |
866 | 873 | EV5) UNAME_MACHINE=alphaev5 ;; |
@@ -895,13 +902,16 @@ EOF | ||
895 | 902 | echo ${UNAME_MACHINE}-unknown-linux-gnu |
896 | 903 | exit ;; |
897 | 904 | cris:Linux:*:*) |
898 | - echo cris-axis-linux-gnu | |
905 | + echo ${UNAME_MACHINE}-axis-linux-gnu | |
899 | 906 | exit ;; |
900 | 907 | crisv32:Linux:*:*) |
901 | - echo crisv32-axis-linux-gnu | |
908 | + echo ${UNAME_MACHINE}-axis-linux-gnu | |
902 | 909 | exit ;; |
903 | 910 | frv:Linux:*:*) |
904 | - echo frv-unknown-linux-gnu | |
911 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
912 | + exit ;; | |
913 | + hexagon:Linux:*:*) | |
914 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
905 | 915 | exit ;; |
906 | 916 | i*86:Linux:*:*) |
907 | 917 | LIBC=gnu |
@@ -943,7 +953,7 @@ EOF | ||
943 | 953 | test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } |
944 | 954 | ;; |
945 | 955 | or32:Linux:*:*) |
946 | - echo or32-unknown-linux-gnu | |
956 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
947 | 957 | exit ;; |
948 | 958 | padre:Linux:*:*) |
949 | 959 | echo sparc-unknown-linux-gnu |
@@ -978,13 +988,13 @@ EOF | ||
978 | 988 | echo ${UNAME_MACHINE}-unknown-linux-gnu |
979 | 989 | exit ;; |
980 | 990 | tile*:Linux:*:*) |
981 | - echo ${UNAME_MACHINE}-tilera-linux-gnu | |
991 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
982 | 992 | exit ;; |
983 | 993 | vax:Linux:*:*) |
984 | 994 | echo ${UNAME_MACHINE}-dec-linux-gnu |
985 | 995 | exit ;; |
986 | 996 | x86_64:Linux:*:*) |
987 | - echo x86_64-unknown-linux-gnu | |
997 | + echo ${UNAME_MACHINE}-unknown-linux-gnu | |
988 | 998 | exit ;; |
989 | 999 | xtensa*:Linux:*:*) |
990 | 1000 | echo ${UNAME_MACHINE}-unknown-linux-gnu |
@@ -1315,6 +1325,9 @@ EOF | ||
1315 | 1325 | i*86:AROS:*:*) |
1316 | 1326 | echo ${UNAME_MACHINE}-pc-aros |
1317 | 1327 | exit ;; |
1328 | + x86_64:VMkernel:*:*) | |
1329 | + echo ${UNAME_MACHINE}-unknown-esx | |
1330 | + exit ;; | |
1318 | 1331 | esac |
1319 | 1332 | |
1320 | 1333 | #echo '(No uname command or uname output not recognized.)' 1>&2 |
@@ -2,9 +2,9 @@ | ||
2 | 2 | # Configuration validation subroutine script. |
3 | 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
4 | 4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, |
5 | -# 2011 Free Software Foundation, Inc. | |
5 | +# 2011, 2012 Free Software Foundation, Inc. | |
6 | 6 | |
7 | -timestamp='2011-03-23' | |
7 | +timestamp='2012-02-10' | |
8 | 8 | |
9 | 9 | # This file is (in principle) common to ALL GNU software. |
10 | 10 | # The presence of a machine in this file suggests that SOME GNU software |
@@ -21,9 +21,7 @@ timestamp='2011-03-23' | ||
21 | 21 | # GNU General Public License for more details. |
22 | 22 | # |
23 | 23 | # You should have received a copy of the GNU General Public License |
24 | -# along with this program; if not, write to the Free Software | |
25 | -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA | |
26 | -# 02110-1301, USA. | |
24 | +# along with this program; if not, see <http://www.gnu.org/licenses/>. | |
27 | 25 | # |
28 | 26 | # As a special exception to the GNU General Public License, if you |
29 | 27 | # distribute this file as part of a program that contains a |
@@ -76,8 +74,8 @@ version="\ | ||
76 | 74 | GNU config.sub ($timestamp) |
77 | 75 | |
78 | 76 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
79 | -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free | |
80 | -Software Foundation, Inc. | |
77 | +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 | |
78 | +Free Software Foundation, Inc. | |
81 | 79 | |
82 | 80 | This is free software; see the source for copying conditions. There is NO |
83 | 81 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
@@ -132,6 +130,10 @@ case $maybe_os in | ||
132 | 130 | os=-$maybe_os |
133 | 131 | basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` |
134 | 132 | ;; |
133 | + android-linux) | |
134 | + os=-linux-android | |
135 | + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown | |
136 | + ;; | |
135 | 137 | *) |
136 | 138 | basic_machine=`echo $1 | sed 's/-[^-]*$//'` |
137 | 139 | if [ $basic_machine != $1 ] |
@@ -247,17 +249,22 @@ case $basic_machine in | ||
247 | 249 | # Some are omitted here because they have special meanings below. |
248 | 250 | 1750a | 580 \ |
249 | 251 | | a29k \ |
252 | + | aarch64 | aarch64_be \ | |
250 | 253 | | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ |
251 | 254 | | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ |
252 | 255 | | am33_2.0 \ |
253 | 256 | | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ |
257 | + | be32 | be64 \ | |
254 | 258 | | bfin \ |
255 | 259 | | c4x | clipper \ |
256 | 260 | | d10v | d30v | dlx | dsp16xx \ |
261 | + | epiphany \ | |
257 | 262 | | fido | fr30 | frv \ |
258 | 263 | | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ |
264 | + | hexagon \ | |
259 | 265 | | i370 | i860 | i960 | ia64 \ |
260 | 266 | | ip2k | iq2000 \ |
267 | + | le32 | le64 \ | |
261 | 268 | | lm32 \ |
262 | 269 | | m32c | m32r | m32rle | m68000 | m68k | m88k \ |
263 | 270 | | maxq | mb | microblaze | mcore | mep | metag \ |
@@ -291,7 +298,7 @@ case $basic_machine in | ||
291 | 298 | | pdp10 | pdp11 | pj | pjl \ |
292 | 299 | | powerpc | powerpc64 | powerpc64le | powerpcle \ |
293 | 300 | | pyramid \ |
294 | - | rx \ | |
301 | + | rl78 | rx \ | |
295 | 302 | | score \ |
296 | 303 | | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ |
297 | 304 | | sh64 | sh64le \ |
@@ -300,7 +307,7 @@ case $basic_machine in | ||
300 | 307 | | spu \ |
301 | 308 | | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ |
302 | 309 | | ubicom32 \ |
303 | - | v850 | v850e \ | |
310 | + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | |
304 | 311 | | we32k \ |
305 | 312 | | x86 | xc16x | xstormy16 | xtensa \ |
306 | 313 | | z8k | z80) |
@@ -315,8 +322,7 @@ case $basic_machine in | ||
315 | 322 | c6x) |
316 | 323 | basic_machine=tic6x-unknown |
317 | 324 | ;; |
318 | - m6811 | m68hc11 | m6812 | m68hc12 | picochip) | |
319 | - # Motorola 68HC11/12. | |
325 | + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) | |
320 | 326 | basic_machine=$basic_machine-unknown |
321 | 327 | os=-none |
322 | 328 | ;; |
@@ -329,7 +335,10 @@ case $basic_machine in | ||
329 | 335 | strongarm | thumb | xscale) |
330 | 336 | basic_machine=arm-unknown |
331 | 337 | ;; |
332 | - | |
338 | + xgate) | |
339 | + basic_machine=$basic_machine-unknown | |
340 | + os=-none | |
341 | + ;; | |
333 | 342 | xscaleeb) |
334 | 343 | basic_machine=armeb-unknown |
335 | 344 | ;; |
@@ -352,11 +361,13 @@ case $basic_machine in | ||
352 | 361 | # Recognize the basic CPU types with company name. |
353 | 362 | 580-* \ |
354 | 363 | | a29k-* \ |
364 | + | aarch64-* | aarch64_be-* \ | |
355 | 365 | | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ |
356 | 366 | | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ |
357 | 367 | | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ |
358 | 368 | | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ |
359 | 369 | | avr-* | avr32-* \ |
370 | + | be32-* | be64-* \ | |
360 | 371 | | bfin-* | bs2000-* \ |
361 | 372 | | c[123]* | c30-* | [cjt]90-* | c4x-* \ |
362 | 373 | | clipper-* | craynv-* | cydra-* \ |
@@ -365,8 +376,10 @@ case $basic_machine in | ||
365 | 376 | | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ |
366 | 377 | | h8300-* | h8500-* \ |
367 | 378 | | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ |
379 | + | hexagon-* \ | |
368 | 380 | | i*86-* | i860-* | i960-* | ia64-* \ |
369 | 381 | | ip2k-* | iq2000-* \ |
382 | + | le32-* | le64-* \ | |
370 | 383 | | lm32-* \ |
371 | 384 | | m32c-* | m32r-* | m32rle-* \ |
372 | 385 | | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ |
@@ -400,7 +413,7 @@ case $basic_machine in | ||
400 | 413 | | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ |
401 | 414 | | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ |
402 | 415 | | pyramid-* \ |
403 | - | romp-* | rs6000-* | rx-* \ | |
416 | + | rl78-* | romp-* | rs6000-* | rx-* \ | |
404 | 417 | | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ |
405 | 418 | | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ |
406 | 419 | | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ |
@@ -408,10 +421,11 @@ case $basic_machine in | ||
408 | 421 | | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ |
409 | 422 | | tahoe-* \ |
410 | 423 | | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ |
411 | - | tile-* | tilegx-* \ | |
424 | + | tile*-* \ | |
412 | 425 | | tron-* \ |
413 | 426 | | ubicom32-* \ |
414 | - | v850-* | v850e-* | vax-* \ | |
427 | + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | |
428 | + | vax-* \ | |
415 | 429 | | we32k-* \ |
416 | 430 | | x86-* | x86_64-* | xc16x-* | xps100-* \ |
417 | 431 | | xstormy16-* | xtensa*-* \ |
@@ -711,7 +725,6 @@ case $basic_machine in | ||
711 | 725 | i370-ibm* | ibm*) |
712 | 726 | basic_machine=i370-ibm |
713 | 727 | ;; |
714 | -# I'm not sure what "Sysv32" means. Should this be sysv3.2? | |
715 | 728 | i*86v32) |
716 | 729 | basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` |
717 | 730 | os=-sysv32 |
@@ -808,10 +821,18 @@ case $basic_machine in | ||
808 | 821 | ms1-*) |
809 | 822 | basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` |
810 | 823 | ;; |
824 | + msys) | |
825 | + basic_machine=i386-pc | |
826 | + os=-msys | |
827 | + ;; | |
811 | 828 | mvs) |
812 | 829 | basic_machine=i370-ibm |
813 | 830 | os=-mvs |
814 | 831 | ;; |
832 | + nacl) | |
833 | + basic_machine=le32-unknown | |
834 | + os=-nacl | |
835 | + ;; | |
815 | 836 | ncr3000) |
816 | 837 | basic_machine=i486-ncr |
817 | 838 | os=-sysv4 |
@@ -1120,13 +1141,8 @@ case $basic_machine in | ||
1120 | 1141 | basic_machine=t90-cray |
1121 | 1142 | os=-unicos |
1122 | 1143 | ;; |
1123 | - # This must be matched before tile*. | |
1124 | - tilegx*) | |
1125 | - basic_machine=tilegx-unknown | |
1126 | - os=-linux-gnu | |
1127 | - ;; | |
1128 | 1144 | tile*) |
1129 | - basic_machine=tile-unknown | |
1145 | + basic_machine=$basic_machine-unknown | |
1130 | 1146 | os=-linux-gnu |
1131 | 1147 | ;; |
1132 | 1148 | tx39) |
@@ -1336,7 +1352,7 @@ case $os in | ||
1336 | 1352 | | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ |
1337 | 1353 | | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ |
1338 | 1354 | | -chorusos* | -chorusrdb* | -cegcc* \ |
1339 | - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | |
1355 | + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | |
1340 | 1356 | | -mingw32* | -linux-gnu* | -linux-android* \ |
1341 | 1357 | | -linux-newlib* | -linux-uclibc* \ |
1342 | 1358 | | -uxpv* | -beos* | -mpeix* | -udk* \ |
@@ -1548,9 +1564,6 @@ case $basic_machine in | ||
1548 | 1564 | ;; |
1549 | 1565 | m68000-sun) |
1550 | 1566 | os=-sunos3 |
1551 | - # This also exists in the configure program, but was not the | |
1552 | - # default. | |
1553 | - # os=-sunos4 | |
1554 | 1567 | ;; |
1555 | 1568 | m68*-cisco) |
1556 | 1569 | os=-aout |
@@ -408,6 +408,7 @@ AC_SUBST(LINGUAS) | ||
408 | 408 | AC_SUBST(KDE4_SESSION) |
409 | 409 | AC_SUBST(GNOME2_SESSION) |
410 | 410 | AC_SUBST(XDM_SESSION) |
411 | +AC_SUBST(codename) | |
411 | 412 | |
412 | 413 | dnl Build all files |
413 | 414 | AC_CONFIG_FILES([ |
@@ -33,6 +33,7 @@ REP_ENVIRON := $(REP_ENVIRON) REP_LOAD_PATH=$(top_srcdir)/lisp:$(top_builddir)/l | ||
33 | 33 | SUBSTS := -e "s|__lispdir__|$(lispdir)|" \ |
34 | 34 | -e "s|__localedir__|$(localedir)|" \ |
35 | 35 | -e "s|__version__|$(version)|" \ |
36 | + -e "s|__codename__|$(codename)|" \ | |
36 | 37 | -e "s|__sawfishdir__|$(sawfishdir)|" |
37 | 38 | |
38 | 39 | %.jlc : %.jl |
@@ -31,11 +31,11 @@ exec rep --batch "$0" "$@" | ||
31 | 31 | |
32 | 32 | (define dialog (gtk-about-dialog-new)) |
33 | 33 | (gtk-about-dialog-set-program-name dialog "Sawfish") |
34 | - (gtk-about-dialog-set-version dialog "__version__") | |
34 | + (gtk-about-dialog-set-version dialog "__version__ \"__codename__\"") | |
35 | 35 | (gtk-about-dialog-set-copyright dialog "© 1999-2000 John Harper\ |
36 | 36 | \n© 2000 Eazel, Inc\ |
37 | 37 | \n© 2007-2008 Janek Kozicki\ |
38 | - \n© 2008-2010 Christopher Bratusek") | |
38 | + \n© 2008-2012 Christopher Bratusek et all") | |
39 | 39 | (gtk-about-dialog-set-license dialog "Sawfish is released under the terms of the\ |
40 | 40 | \n\n\tGNU General Public License version 2, or (at your option) any later version.\ |
41 | 41 | \n\nSee the `COPYING' file in the source tree for the full license.\ |
@@ -46,10 +46,10 @@ exec rep --batch "$0" "$@" | ||
46 | 46 | (gtk-about-dialog-set-website dialog "http://sawfish.wikia.com") |
47 | 47 | (gtk-about-dialog-set-website-label dialog "Sawfish Wiki") |
48 | 48 | (gtk-about-dialog-set-authors dialog '("1999-2007: John Harper\ |
49 | - \n2007-2011: Janek 'Re-Animator' Kozicki, Timo Korvola, Andrea Vetorello, Guillermo S. Romero\ | |
50 | - \n2008-2011: Christopher 'Flashrider' Bratusek, Teika 'Mister X' Kazura\ | |
51 | - \n2009-2011: Jeremy Hankins, Matthew Love, Fuchur 'Mister Y'\ | |
52 | - \n1999-2011: All the brave contributors (see `THANKS' in `CONTRIBUTING')")) | |
49 | + \n2007-2012: Janek 'Re-Animator' Kozicki, Timo Korvola, Andrea Vetorello, Guillermo S. Romero\ | |
50 | + \n2008-2012: Christopher 'Flashrider' Bratusek, Teika 'Mister X' Kazura\ | |
51 | + \n2009-2012: Jeremy Hankins, Matthew Love\ | |
52 | + \n1999-2012: All the brave contributors (see `THANKS' in `CONTRIBUTING')")) | |
53 | 53 | (gtk-about-dialog-set-translator-credits dialog "de: Christian Kirbach, Mario Blättermann\ |
54 | 54 | \nes: Jorge Gonzalez Gonzalez, Jacinto Capote Robles\ |
55 | 55 | \neu: Inaki Larranaga Murgoitio\ |
@@ -58,14 +58,14 @@ exec rep --batch "$0" "$@" | ||
58 | 58 | (gtk-about-dialog-set-logo dialog (gdk-pixbuf-new-from-file "__sawfishdir__/sawfish.png")) |
59 | 59 | (g-signal-connect dialog "delete_event" (lambda () (throw 'quit 0))) |
60 | 60 | (gtk-widget-show-all dialog) |
61 | - | |
61 | + | |
62 | 62 | (g-signal-connect dialog "response" |
63 | 63 | (lambda () (throw 'out))) |
64 | 64 | |
65 | 65 | (catch 'out |
66 | 66 | (setq interrupt-mode 'exit) |
67 | 67 | (recursive-edit)) |
68 | - | |
68 | + | |
69 | 69 | ) |
70 | 70 | |
71 | 71 | ;; Emacs support |