tilda-1.5.0/0000755000175000017500000000000013617635040007620 500000000000000tilda-1.5.0/tilda.png0000664000175000001440000000255712016635120011341 00000000000000PNG  IHDR00WbKGD pHYs B(xtIME+ pIDATh_hSw?1bݚ%RźÐhq@/yأl KAl)`j]fjJmhS&i=tfj{.Bp~|sAYdE?tD%***,t뇆l-@;@¼v@ ܹ/b4rr=z48%K<}ݞq 0x8j! ڵky P(6X,ƈboT*9p@DdHpŵk׈F %IfN:(~c^/IPܽ{(ip8B!466 !ә ^Z-K>gW,<Ff\.DQT*&͛7@k?B󔖖bXp\>|NdTUUxZ377G0kUCCp\Fj5fjjj$ t:ٻw/===_^H$IT* BŘf7:`0gɮVe$ vرz9hZ;w-} 4`8#s_oelٲ{P(())偫WRUUUΏ_cɇ£#&q !/g֭Teƍ B2t:taS4W#-˝9==Mkk+H^ (ׁ9906 m] `߾}IaV+fGqq1|ȣGZAos8R e }Ŷh 6n܈(HcxxL\W]] BwUYz{{ sr%˳ ޒB\r7o)//OBhK.a6 k>544pA`aa!uϟs E'O҂ ,^s7lc8~8KHn%"mmmI MP*'7`~?(JJ%yyyhdϞ=&+, =pk۷oh4R[[KEEEEE57!={6aHNNN3^(%.\6Bh۶mw3'4C d$IK&bܺu+1/^̞8q ~!)^dE>(핌ĤIENDB`tilda-1.5.0/build-aux/0000755000175000017500000000000013617635040011512 500000000000000tilda-1.5.0/build-aux/config.guess0000755000175000017500000012637313244306071013761 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2018 Free Software Foundation, Inc. timestamp='2018-02-24' # This file 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 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > "$dummy.c" ; for c in cc gcc c89 c99 ; do if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval "$set_cc_for_build" cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" # If ldd exists, use it to detect musl libc. if command -v ldd >/dev/null && \ ldd --version 2>&1 | grep -q ^musl then LIBC=musl fi ;; esac # Note: order is significant - the case branches are not exclusive. case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ "/sbin/$sysctl" 2>/dev/null || \ "/usr/sbin/$sysctl" 2>/dev/null || \ echo unknown)` case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` machine="${arch}${endian}"-unknown ;; *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval "$set_cc_for_build" if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # Determine ABI tags. case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "$machine-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" exit ;; *:MidnightBSD:*:*) echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:Sortix:*:*) echo "$UNAME_MACHINE"-unknown-sortix exit ;; *:Redox:*:*) echo "$UNAME_MACHINE"-unknown-redox exit ;; mips:OSF1:*.*) echo mips-dec-osf1 exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE=alpha ;; "EV4.5 (21064)") UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") UNAME_MACHINE=alpha ;; "EV5 (21164)") UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval "$set_cc_for_build" SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH=x86_64 fi fi echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval "$set_cc_for_build" sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ [ "$TARGET_BINARY_INTERFACE"x = x ] then echo m88k-dg-dgux"$UNAME_RELEASE" else echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval "$set_cc_for_build" sed 's/^ //' << EOF > "$dummy.c" #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` case "$UNAME_MACHINE" in 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "$sc_cpu_version" in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "$sc_kernel_bits" in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi if [ "$HP_ARCH" = "" ]; then eval "$set_cc_for_build" sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ "$HP_ARCH" = hppa2.0w ] then eval "$set_cc_for_build" # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH=hppa2.0w else HP_ARCH=hppa64 fi fi echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) eval "$set_cc_for_build" sed 's/^ //' << EOF > "$dummy.c" #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo "$UNAME_MACHINE"-unknown-osf1mk else echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case "$UNAME_PROCESSOR" in amd64) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) case "$UNAME_MACHINE" in x86) echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; i*:UWIN*:*) echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) eval "$set_cc_for_build" if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval "$set_cc_for_build" sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; mips64el:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) if objdump -f /bin/sh | grep -q elf32-x86-64; then echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 else echo "$UNAME_MACHINE"-pc-linux-"$LIBC" fi exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; i*86:*:4.*:*) UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv"$UNAME_RELEASE" else echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux"$UNAME_RELEASE" exit ;; SX-ACE:SUPER-UX:*:*) echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_PPC >/dev/null then UNAME_PROCESSOR=powerpc fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-*:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk"$UNAME_RELEASE" exit ;; NSR-*:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk"$UNAME_RELEASE" exit ;; NSV-*:NONSTOP_KERNEL:*:*) echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; NSX-*:NONSTOP_KERNEL:*:*) echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) echo "$UNAME_MACHINE"-unknown-esx exit ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; esac echo "$0: unable to guess system type" >&2 case "$UNAME_MACHINE:$UNAME_SYSTEM" in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 <&2 </dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = "$UNAME_MACHINE" UNAME_RELEASE = "$UNAME_RELEASE" UNAME_SYSTEM = "$UNAME_SYSTEM" UNAME_VERSION = "$UNAME_VERSION" EOF exit 1 # Local variables: # eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: tilda-1.5.0/build-aux/depcomp0000755000175000017500000005601713256032133013011 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2016-01-11.22; # UTC # Copyright (C) 1999-2017 Free Software Foundation, Inc. # 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, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: tilda-1.5.0/build-aux/install-sh0000755000175000017500000003546313256032133013442 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2014-09-12.12; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) # $RANDOM is not portable (e.g. dash); use it when possible to # lower collision chance tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 # As "mkdir -p" follows symlinks and we work in /tmp possibly; so # create the $tmpdir first (and fail if unsuccessful) to make sure # that nobody tries to guess the $tmpdir name. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tilda-1.5.0/build-aux/config.rpath0000755000175000017500000004401213046302062013732 00000000000000#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2010 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's _LT_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; darwin*) case $cc_basename in xlc*) wl='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux* | k*bsd*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; pgcc | pgf77 | pgf90) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) wl='-Wl,' ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's _LT_LINKER_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no case "$host_os" in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' case "$host_os" in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we cannot use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if test "$GCC" = yes ; then : else case $cc_basename in xlc*) ;; *) ld_shlibs=no ;; esac fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd1*) ld_shlibs=no ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; hpux10*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no ;; *) hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix[4-9]*) library_names_spec='$libname$shrext' ;; amigaos*) library_names_spec='$libname.a' ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32* | cegcc*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd1*) ;; freebsd* | dragonfly*) case "$host_os" in freebsd[123]*) library_names_spec='$libname$shrext$versuffix' ;; *) library_names_spec='$libname$shrext' ;; esac ;; gnu*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; nto-qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo "$1" exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ kopensolaris*-gnu* | cloudabi*-eabi* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo "$1" | sed 's/-[^-]*$//'` if [ "$basic_machine" != "$1" ] then os=`echo "$1" | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia16 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pru \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | wasm32 \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pru-* \ | pyramid-* \ | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ | wasm32-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-pc os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; asmjs) basic_machine=asmjs-unknown ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2*) basic_machine=m68k-bull os=-sysv3 ;; e500v[12]) basic_machine=powerpc-unknown os=$os"spe" ;; e500v[12]-*) basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=$os"spe" ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; nsv-tandem) basic_machine=nsv-tandem ;; nsx-tandem) basic_machine=nsx-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh5el) basic_machine=sh5le-unknown ;; simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; x64) basic_machine=x86_64-pc ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases that might get confused # with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # es1800 is here to avoid being matched by es* (a different OS) -es1800*) os=-ose ;; # Now accept the basic system types. # The portable systems comes first. # Each alternative MUST end in a * to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ | -midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -xray | -os68k* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo "$os" | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo "$os" | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo "$os" | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4*) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -pikeos*) # Until real need of OS specific support for # particular features comes up, bare metal # configurations are quite functional. case $basic_machine in arm*) os=-eabi ;; *) os=-elf ;; esac ;; -nacl*) ;; -ios) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; pru-*) os=-elf ;; *-be) os=-beos ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` ;; esac echo "$basic_machine$os" exit # Local variables: # eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: tilda-1.5.0/build-aux/compile0000755000175000017500000001624513256032133013011 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tilda-1.5.0/build-aux/missing0000755000175000017500000001533013256032133013024 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # 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, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tilda-1.5.0/aclocal.m40000644000175000017500000015442713617635023011416 00000000000000# generated automatically by aclocal 1.15.1 -*- Autoconf -*- # Copyright (C) 1996-2017 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- dnl serial 11 (pkg-config-0.29.1) dnl dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. dnl dnl As a special exception to the GNU General Public License, if you dnl distribute this file as part of a program that contains a dnl configuration script generated by Autoconf, you may include it under dnl the same distribution terms that you use for the rest of that dnl program. dnl PKG_PREREQ(MIN-VERSION) dnl ----------------------- dnl Since: 0.29 dnl dnl Verify that the version of the pkg-config macros are at least dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's dnl installed version of pkg-config, this checks the developer's version dnl of pkg.m4 when generating configure. dnl dnl To ensure that this macro is defined, also add: dnl m4_ifndef([PKG_PREREQ], dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) dnl dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], [m4_define([PKG_MACROS_VERSION], [0.29.1]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) dnl ---------------------------------- dnl Since: 0.16 dnl dnl Search for the pkg-config tool and set the PKG_CONFIG variable to dnl first found in the path. Checks that the version of pkg-config found dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is dnl used since that's the first version where most current features of dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])dnl PKG_PROG_PKG_CONFIG dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------------------------------- dnl Since: 0.18 dnl dnl Check to see whether a particular set of modules exists. Similar to dnl PKG_CHECK_MODULES(), but does not set variables or print errors. dnl dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) dnl only at the first occurence in configure.ac, so if the first place dnl it's called might be skipped (such as if it is within an "if", you dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) dnl --------------------------------------------- dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])dnl _PKG_CONFIG dnl _PKG_SHORT_ERRORS_SUPPORTED dnl --------------------------- dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])dnl _PKG_SHORT_ERRORS_SUPPORTED dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl -------------------------------------------------------------- dnl Since: 0.4.0 dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES might not happen, you should be sure to include an dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])dnl PKG_CHECK_MODULES dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl --------------------------------------------------------------------- dnl Since: 0.29 dnl dnl Checks for existence of MODULES and gathers its build flags with dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags dnl and VARIABLE-PREFIX_LIBS from --libs. dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to dnl include an explicit call to PKG_PROG_PKG_CONFIG in your dnl configure.ac. AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl _save_PKG_CONFIG=$PKG_CONFIG PKG_CONFIG="$PKG_CONFIG --static" PKG_CHECK_MODULES($@) PKG_CONFIG=$_save_PKG_CONFIG[]dnl ])dnl PKG_CHECK_MODULES_STATIC dnl PKG_INSTALLDIR([DIRECTORY]) dnl ------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable pkgconfigdir as the location where a module dnl should install pkg-config .pc files. By default the directory is dnl $libdir/pkgconfig, but the default can be changed by passing dnl DIRECTORY. The user can override through the --with-pkgconfigdir dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_INSTALLDIR dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) dnl -------------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable noarch_pkgconfigdir as the location where a dnl module should install arch-independent pkg-config .pc files. By dnl default the directory is $datadir/pkgconfig, but the default can be dnl changed by passing DIRECTORY. The user can override through the dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_NOARCH_INSTALLDIR dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------- dnl Since: 0.28 dnl dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR # Copyright (C) 2002-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.15.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless 'enable' is passed literally. # For symmetry, 'disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], am_maintainer_other[ make rules and dependencies not useful (and sometimes confusing) to the casual installer])], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Copyright (C) 2003-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for 'mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl FIXME we are no longer going to remove this! adjust warning dnl FIXME message accordingly. AC_DIAGNOSE([obsolete], [$0: this macro is deprecated, and will soon be removed. You should use the Autoconf-provided 'AC][_PROG_MKDIR_P' macro instead, and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.]) dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/gettext.m4]) m4_include([m4/iconv.m4]) m4_include([m4/intlmacosx.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/progtest.m4]) tilda-1.5.0/tilda.desktop.in0000664000175000001440000000022012552462014012621 00000000000000[Desktop Entry] Name=Tilda Exec=@BINDIR@/tilda Icon=tilda Terminal=false Type=Application Categories=GNOME;GTK;System;Utility;TerminalEmulator; tilda-1.5.0/COPYING0000664000175000001440000003543312627350706010604 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS tilda-1.5.0/src/0000755000175000017500000000000013617635040010407 500000000000000tilda-1.5.0/src/debug.h0000644000175000017500000000450613615541755011602 00000000000000/* vim: set ts=4 sts=4 sw=4 expandtab textwidth=92: */ /* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef DEBUG_H #define DEBUG_H #include "tilda-config.h" #include #include #include /* Debug Macros * * Add -DDEBUG to your compile options to turn on assert()s. * * If you do not have the DEBUG symbol defined, then asserts will * be turned off and compiled into a noop. */ #if DEBUG /* Enable asserts */ #undef NDEBUG #include #define DEBUG_ASSERT assert #define DEBUG_ERROR(ERRMSG) g_printerr("*** DEVELOPER ERROR *** at %s:%d" \ " -> %s\n", __FILE__, __LINE__, (ERRMSG)) #else /* Disable asserts */ #define NDEBUG #include #define DEBUG_ASSERT assert #define DEBUG_ERROR(ERRMSG) {} #endif /* Function tracing * * Add -DDEBUG_FUNCTIONS to your compile options to turn on function tracing. * * If you do not have the DEBUG_FUNCTIONS symbol defined, then function tracing will * be turned off and compiled into a noop. */ #if DEBUG_FUNCTIONS #define DEBUG_FUNCTION(NAME) g_debug("%s: FUNCTION ENTERED: %s", basename(__FILE__), (NAME)) #define DEBUG_FUNCTION_MESSAGE(NAME,FORMAT,args...) { \ gchar *message = g_strdup_printf ((FORMAT), ##args); \ g_debug("%s: FUNCTION ENTERED: %s: %s", basename(__FILE__), (NAME), message); \ g_free (message); \ } #else #define DEBUG_FUNCTION(NAME) {} #define DEBUG_FUNCTION_MESSAGE(NAME,FORMAT,args...) {} #endif /* A macro that calls perror() with a consistent header string */ #define TILDA_PERROR() perror("Tilda encountered an error") #endif /* DEBUG_H */ tilda-1.5.0/src/glade-resources.h0000644000175000017500000000024313617633223013564 00000000000000#ifndef __RESOURCE_glade_resources_H__ #define __RESOURCE_glade_resources_H__ #include extern GResource *glade_resources_get_resource (void); #endif tilda-1.5.0/src/configsys.h0000644000175000017500000000557613615541755012530 00000000000000/* vim: set ts=8 sts=8 sw=8 noexpandtab textwidth=112: */ /* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef CONFIGSYS_H #define CONFIGSYS_H #include #include #define DEFAULT_WORD_CHARS "-A-Za-z0-9,./?%&#:_" /** * Computes the size of pixels relative to max_pixels and * returns them as a ratio with a range of 0 to 1. */ #define pixels_absolute_to_ratio(max_pixels, pixels) \ (((gdouble) pixels) / ((gdouble) max_pixels)) /** * Computes the absolute number of pixels given a ratio with a range * of 0 to 1 and a size. */ #define pixels_ratio_to_absolute(ratio, size) \ (gint) ((ratio) * (size)) /** * Macro to convert a long value to a double by scaling it * with G_MAXINT. */ #define GLONG_TO_DOUBLE(value) ((value) / (double) G_MAXINT) /** * Macro to convert a double to a long value by scaling it with G_MAXINT. */ #define GLONG_FROM_DOUBLE(value) ((long) ((value) * G_MAXINT)) /* Initialize and free the config system's private variables */ gint config_init (const gchar *config_file); gint config_free (const gchar *config_file); /* Write to disk (generally discouraged) */ gint config_write (const gchar *config_file); /* Set values in the config system */ gint config_setint (const gchar *key, const glong val); gint config_setstr (const gchar *key, const gchar *val); gint config_setbool (const gchar *key, const gboolean val); gint config_setnint (const gchar *key, const glong val, const guint idx); gint config_setdouble (const gchar *key, const gdouble val); gint config_setndouble (const gchar *key, const gdouble vat, const guint idx); /* Get values from the config system */ glong config_getint (const gchar *key); gchar* config_getstr (const gchar *key); gboolean config_getbool (const gchar *key); glong config_getnint (const gchar *key, const guint idx); gdouble config_getdouble (const gchar *key); gdouble config_getndouble (const gchar *key, const guint idx); /** * This function uses the configured relative ratio of the window size and * applies it to the current workarea size to compute the desired absolute * size in pixels. * * @param rectangle A GdkRectangle with the configured window size in pixes. */ void config_get_configured_window_size (GdkRectangle *rectangle); #endif /* CONFIGSYS_H */ tilda-1.5.0/src/xerror.c0000644000175000017500000000236113276007273012020 00000000000000/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- vim: set ts=4 sts=4 sw=4 expandtab textwidth=92: xerror.c for the Openbox window manager Copyright (c) 2006 Mikael Magnusson Copyright (c) 2003 Ben Jansens 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 program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include "xerror.h" #include "debug.h" #include gint xerror_handler(Display *d, XErrorEvent *e) { DEBUG_FUNCTION ("xerror_handler"); gchar errtxt[128]; if (e->error_code != BadWindow) { XGetErrorText(d, e->error_code, errtxt, 127); g_error(_("X Error: %s"), errtxt); } return 0; } tilda-1.5.0/src/tilda-palettes.h0000644000175000017500000000333113615541755013423 00000000000000#ifndef TILDA_PALETTES_H #define TILDA_PALETTES_H #include G_BEGIN_DECLS /** * The number of colors contained in a #TildaColorPalette. */ #define TILDA_COLOR_PALETTE_SIZE 16 /** * A color scheme links a color scheme name to its corresponding * color palette. */ typedef struct _TildaColorPaletteScheme { const char *name; const GdkRGBA *palette; } TildaColorScheme; /** * Gets a list of color schemes. Use * tilda_palettes_get_n_palette_schemes to * determine the number of color schemes. * * @return A pointer to an array of color schemes. */ TildaColorScheme *tilda_palettes_get_palette_schemes (void); /** * Gets the number of palette schemes. * * @return The number of color schemes contained in * #tilda_palettes_get_palette_schemes. */ gint tilda_palettes_get_n_palette_schemes (void); /** * Get the currently active color palette. * * @return A pointer to a color palette of size TILDA_COLOR_PALETTE_SIZE * with GdkRGBA colors. The color palette is owned by tilda * and must not be freed. */ GdkRGBA *tilda_palettes_get_current_palette (void); /** * Sets the currently active color palette. * * @param palette A pointer to a color palette of size TILDA_COLOR_PALETTE_SIZE. */ void tilda_palettes_set_current_palette (const GdkRGBA *palette); /** * Gets the color at the specified position from the palette. * * @param palette A TildaColorPalette of size TILDA_COLOR_PALETTE_SIZE. * @param color_num Position of the color in the palette. * @return A pointer to a GdkRGBA color struct. */ const GdkRGBA *tilda_palettes_get_palette_color (const GdkRGBA *palette, int color_num); G_END_DECLS #endif //TILDA_PALETTES_H tilda-1.5.0/src/tilda-keybinding.h0000664000175000017500000000122713046633203013715 00000000000000#ifndef TILDA_KEYBINDING_H #define TILDA_KEYBINDING_H #include #include "tilda_window.h" typedef struct _TildaKeybindingTreeView TildaKeybindingTreeView; void tilda_keybinding_apply (TildaKeybindingTreeView *keybinding); TildaKeybindingTreeView * tilda_keybinding_init (GtkBuilder *builder); void tilda_keybinding_free (TildaKeybindingTreeView *keybinding); gboolean tilda_keybinding_save (TildaKeybindingTreeView *keybinding, tilda_window *tw); void tilda_keybinding_show_invalid_keybinding_dialog (GtkWindow *parent, const gchar* message); #endif //TILDA_KEYBINDING_H tilda-1.5.0/src/tilda-search-box.h0000644000175000017500000000277113555642145013642 00000000000000/* * Copyright (C) 2016 Sebastian Geiger * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef TILDA_SEARCH_BOX_H #define TILDA_SEARCH_BOX_H #include #include G_BEGIN_DECLS #define TILDA_TYPE_SEARCH_BOX tilda_search_box_get_type () G_DECLARE_FINAL_TYPE (TildaSearchBox, tilda_search_box, TILDA, SEARCH_BOX, GtkBox); typedef enum { SEARCH_FORWARD, SEARCH_BACKWARD } TildaSearchDirection; GtkWidget *tilda_search_box_new (void); /** * Toggles the visibility of the search box. * * If this causes the search box to be made visible, then the search entry * widget will be focused. * * Otherwise if the search box was visible and will be hidden now, then the * ::focus-out signal will be emitted. Users of this widget can connect to * the ::focus-out signal and use it focus another widget instead. */ void tilda_search_box_toggle (TildaSearchBox *box); G_END_DECLS #endif tilda-1.5.0/src/tilda-cli-options.c0000644000175000017500000001055013617620115014024 00000000000000#include "tilda-cli-options.h" #include #include #include #include #include "debug.h" gboolean tilda_cli_options_parse_options (tilda_cli_options *cli_options, gint argc, gchar *argv[], gchar **config_file) { DEBUG_FUNCTION ("parse_cli"); DEBUG_ASSERT (argc != 0); DEBUG_ASSERT (argv != NULL); // *config_file must be non-null only if a configuration file path has been parsed DEBUG_ASSERT (*config_file == NULL); /* All of the various command-line options */ GOptionEntry cl_opts[] = { { "background-color", 'b', 0, G_OPTION_ARG_STRING, &(cli_options->background_color), N_("Set the background color"), NULL }, { "command", 'c', 0, G_OPTION_ARG_STRING, &(cli_options->command), N_("Run a command at startup"), NULL }, { "hidden", 'h', 0, G_OPTION_ARG_NONE, &(cli_options->hidden), N_("Start Tilda hidden"), NULL }, { "font", 'f', 0, G_OPTION_ARG_STRING, &(cli_options->font), N_("Set the font to the following string"), NULL }, { "config-file", 'g', 0, G_OPTION_ARG_STRING, config_file, N_("Configuration file"), NULL }, { "lines", 'l', 0, G_OPTION_ARG_INT, &(cli_options->lines), N_("Scrollback Lines"), NULL }, { "scrollbar", 's', 0, G_OPTION_ARG_NONE, &(cli_options->scrollbar), N_("Use Scrollbar"), NULL }, { "version", 'v', 0, G_OPTION_ARG_NONE, &(cli_options->version), N_("Print the version, then exit"), NULL }, { "working-dir", 'w', 0, G_OPTION_ARG_STRING, &(cli_options->working_dir), N_("Set Initial Working Directory"), NULL }, { "x-pos", 'x', 0, G_OPTION_ARG_INT, &(cli_options->x_pos), N_("X Position"), NULL }, { "y-pos", 'y', 0, G_OPTION_ARG_INT, &(cli_options->y_pos), N_("Y Position"), NULL }, { "background-alpha", 't', 0, G_OPTION_ARG_INT, &(cli_options->back_alpha), N_("Opaqueness: 0-100%"), NULL }, { "config", 'C', 0, G_OPTION_ARG_NONE, &(cli_options->show_config), N_("Show Configuration Wizard"), NULL }, { NULL } }; /* Set up the command-line parser */ GError *error = NULL; GOptionContext *context = g_option_context_new (NULL); g_option_context_add_main_entries (context, cl_opts, NULL); g_option_context_add_group (context, gtk_get_option_group (FALSE)); g_option_context_parse (context, &argc, &argv, &error); g_option_context_free (context); /* Check for unknown options, and give a nice message if there are some */ if (error) { g_printerr (_("Error parsing command-line options. Try \"tilda --help\"\nto see all possible options.\n\nError message: %s\n"), error->message); exit (EXIT_FAILURE); } /* If we need to show the version, show it then exit normally */ if (cli_options->version) { g_print ("%s\n\n", PACKAGE_STRING); g_print ("Copyright (c) 2012-2020 Sebastian Geiger (lanoxx@gmx.net)\n"); g_print ("Copyright (c) 2005-2009 Tristan Sloughter (sloutri@iit.edu)\n"); g_print ("Copyright (c) 2005-2009 Ira W. Snyder (tilda@irasnyder.com)\n\n"); g_print ("General Information: https://github.com/lanoxx/tilda\n"); g_print ("Bug Reports: https://github.com/lanoxx/tilda/issues?state=open\n\n"); g_print ("This program comes with ABSOLUTELY NO WARRANTY.\n"); g_print ("This is free software, and you are welcome to redistribute it\n"); g_print ("under certain conditions. See the file COPYING for details.\n"); exit (EXIT_SUCCESS); } /* TRUE if we should show the config wizard, FALSE otherwize */ return cli_options->show_config; } tilda_cli_options *tilda_cli_options_new () { tilda_cli_options *options = g_malloc0(sizeof(tilda_cli_options)); if (!options) { g_printerr (_("Error allocating memory for a new tilda_cli_options structure.\n")); exit (EXIT_FAILURE); } return options; } tilda-1.5.0/src/configsys.c0000644000175000017500000004737113617620115012510 00000000000000/* vim: set ts=4 sts=4 sw=4 expandtab textwidth=112: */ /* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #define _POSIX_SOURCE /* feature test macro for fileno */ #define _XOPEN_SOURCE /* feature test macro for fsync */ #include #include "debug.h" #include #include #include #include /* atoi */ #include /* fsync */ #include "configsys.h" #include static cfg_t *tc; /* CONFIGURATION OPTIONS * In this array we set the default configuration options for the * configuration file. */ static cfg_opt_t config_opts[] = { /* strings */ CFG_STR("tilda_config_version", PACKAGE_VERSION, CFGF_NONE), CFG_STR("command", "", CFGF_NONE), CFG_STR("font", "Monospace 11", CFGF_NONE), CFG_STR("key", NULL, CFGF_NONE), CFG_STR("addtab_key", "t", CFGF_NONE), CFG_STR("fullscreen_key", "F11", CFGF_NONE), CFG_STR("toggle_transparency_key", "F12", CFGF_NONE), CFG_STR("toggle_searchbar_key", "f", CFGF_NONE), CFG_STR("closetab_key", "w", CFGF_NONE), CFG_STR("nexttab_key", "Page_Down", CFGF_NONE), CFG_STR("prevtab_key", "Page_Up", CFGF_NONE), CFG_STR("movetableft_key", "Page_Up", CFGF_NONE), CFG_STR("movetabright_key", "Page_Down", CFGF_NONE), CFG_STR("gototab_1_key", "1", CFGF_NONE), CFG_STR("gototab_2_key", "2", CFGF_NONE), CFG_STR("gototab_3_key", "3", CFGF_NONE), CFG_STR("gototab_4_key", "4", CFGF_NONE), CFG_STR("gototab_5_key", "5", CFGF_NONE), CFG_STR("gototab_6_key", "6", CFGF_NONE), CFG_STR("gototab_7_key", "7", CFGF_NONE), CFG_STR("gototab_8_key", "8", CFGF_NONE), CFG_STR("gototab_9_key", "9", CFGF_NONE), CFG_STR("gototab_10_key", "0", CFGF_NONE), CFG_STR("copy_key", "c", CFGF_NONE), CFG_STR("paste_key", "v", CFGF_NONE), CFG_STR("quit_key", "q", CFGF_NONE), CFG_STR("title", "Tilda", CFGF_NONE), CFG_STR("background_color", "white", CFGF_NONE), CFG_STR("working_dir", NULL, CFGF_NONE), CFG_STR("web_browser", "xdg-open", CFGF_NONE), CFG_STR("increase_font_size_key", "equal", CFGF_NONE), CFG_STR("decrease_font_size_key", "minus", CFGF_NONE), CFG_STR("normalize_font_size_key", "0", CFGF_NONE), CFG_STR("show_on_monitor", "", CFGF_NONE), CFG_STR("word_chars", DEFAULT_WORD_CHARS, CFGF_NONE), /* ints */ CFG_INT("lines", 5000, CFGF_NONE), CFG_INT("x_pos", 0, CFGF_NONE), CFG_INT("y_pos", 0, CFGF_NONE), CFG_INT("tab_pos", 0, CFGF_NONE), CFG_BOOL("expand_tabs", FALSE, CFGF_NONE), CFG_BOOL("show_single_tab", FALSE, CFGF_NONE), CFG_INT("backspace_key", 0, CFGF_NONE), CFG_INT("delete_key", 1, CFGF_NONE), CFG_INT("d_set_title", 3, CFGF_NONE), CFG_INT("command_exit", 2, CFGF_NONE), /* Timeout in milliseconds to spawn a shell or command */ CFG_INT("command_timeout_ms", 3000, CFGF_NONE), CFG_INT("scheme", 3, CFGF_NONE), CFG_INT("slide_sleep_usec", 20000, CFGF_NONE), CFG_INT("animation_orientation", 0, CFGF_NONE), CFG_INT("timer_resolution", 200, CFGF_NONE), CFG_INT("auto_hide_time", 2000, CFGF_NONE), CFG_INT("on_last_terminal_exit", 0, CFGF_NONE), CFG_BOOL("prompt_on_exit", TRUE, CFGF_NONE), CFG_INT("palette_scheme", 1, CFGF_NONE), CFG_INT("non_focus_pull_up_behaviour", 0, CFGF_NONE), CFG_INT("cursor_shape", 0, CFGF_NONE), /* The length of a tab title */ CFG_INT("title_max_length", 25, CFGF_NONE), /* int list */ CFG_INT_LIST("palette", "{\ 0x2e2e, 0x3434, 0x3636,\ 0xcccc, 0x0000, 0x0000,\ 0x4e4e, 0x9a9a, 0x0606,\ 0xc4c4, 0xa0a0, 0x0000,\ 0x3434, 0x6565, 0xa4a4,\ 0x7575, 0x5050, 0x7b7b,\ 0x0606, 0x9820, 0x9a9a,\ 0xd3d3, 0xd7d7, 0xcfcf,\ 0x5555, 0x5757, 0x5353,\ 0xefef, 0x2929, 0x2929,\ 0x8a8a, 0xe2e2, 0x3434,\ 0xfcfc, 0xe9e9, 0x4f4f,\ 0x7272, 0x9f9f, 0xcfcf,\ 0xadad, 0x7f7f, 0xa8a8,\ 0x3434, 0xe2e2, 0xe2e2,\ 0xeeee, 0xeeee, 0xecec}", CFGF_NONE), /* guint16 */ CFG_INT("scrollbar_pos", 2, CFGF_NONE), CFG_INT("back_red", 0x0000, CFGF_NONE), CFG_INT("back_green", 0x0000, CFGF_NONE), CFG_INT("back_blue", 0x0000, CFGF_NONE), CFG_INT("text_red", 0xffff, CFGF_NONE), CFG_INT("text_green", 0xffff, CFGF_NONE), CFG_INT("text_blue", 0xffff, CFGF_NONE), CFG_INT("cursor_red", 0xffff, CFGF_NONE), CFG_INT("cursor_green", 0xffff, CFGF_NONE), CFG_INT("cursor_blue", 0xffff, CFGF_NONE), /* floats, libconfuse has a bug with floats on non english systems, * see: https://github.com/martinh/libconfuse/issues/119, so we * need to emulate floats by scaling values to a long value. */ CFG_INT ("width_percentage", G_MAXINT, CFGF_NONE), CFG_INT ("height_percentage", G_MAXINT, CFGF_NONE), /* booleans */ CFG_BOOL("scroll_history_infinite", FALSE, CFGF_NONE), CFG_BOOL("scroll_on_output", FALSE, CFGF_NONE), CFG_BOOL("notebook_border", FALSE, CFGF_NONE), CFG_BOOL("scrollbar", FALSE, CFGF_NONE), CFG_BOOL("grab_focus", TRUE, CFGF_NONE), CFG_BOOL("above", TRUE, CFGF_NONE), CFG_BOOL("notaskbar", TRUE, CFGF_NONE), CFG_BOOL("blinks", TRUE, CFGF_NONE), CFG_BOOL("scroll_on_key", TRUE, CFGF_NONE), CFG_BOOL("bell", FALSE, CFGF_NONE), CFG_BOOL("run_command", FALSE, CFGF_NONE), CFG_BOOL("pinned", TRUE, CFGF_NONE), CFG_BOOL("animation", FALSE, CFGF_NONE), CFG_BOOL("hidden", FALSE, CFGF_NONE), CFG_BOOL("set_as_desktop", FALSE, CFGF_NONE), CFG_BOOL("centered_horizontally", FALSE, CFGF_NONE), CFG_BOOL("centered_vertically", FALSE, CFGF_NONE), CFG_BOOL("enable_transparency", FALSE, CFGF_NONE), CFG_BOOL("auto_hide_on_focus_lost", FALSE, CFGF_NONE), CFG_BOOL("auto_hide_on_mouse_leave", FALSE, CFGF_NONE), /* Whether and how we limit the length of a tab title */ CFG_INT("title_behaviour", 2, CFGF_NONE), /* Whether to set a new tab's working dir to the current tab's */ CFG_BOOL("inherit_working_dir", TRUE, CFGF_NONE), CFG_BOOL("command_login_shell", FALSE, CFGF_NONE), CFG_BOOL("start_fullscreen", FALSE, CFGF_NONE), /* Whether closing a tab shows a confirmation dialog. */ CFG_BOOL("confirm_close_tab", TRUE, CFGF_NONE), CFG_INT("back_alpha", 0xffff, CFGF_NONE), /* Whether to show the full tab title as a tooltip */ CFG_BOOL("show_title_tooltip", FALSE, CFGF_NONE), /** * Deprecated tilda options. These options be commented out in the * configuration file and will not be initialized with default values * if the option is missing in the config file. **/ CFG_INT("max_width", 0, CFGF_NODEFAULT), CFG_INT("max_height", 0, CFGF_NODEFAULT), CFG_STR("image", NULL, CFGF_NODEFAULT), CFG_INT("show_on_monitor_number", 0, CFGF_NODEFAULT), CFG_INT("transparency", 0, CFGF_NODEFAULT), CFG_BOOL("bold", TRUE, CFGF_NODEFAULT), CFG_BOOL("title_max_length_flag", FALSE, CFGF_NODEFAULT), CFG_BOOL("antialias", TRUE, CFGF_NODEFAULT), CFG_BOOL("double_buffer", FALSE, CFGF_NODEFAULT), CFG_BOOL("scroll_background", FALSE, CFGF_NODEFAULT), CFG_BOOL("use_image", FALSE, CFGF_NODEFAULT), CFG_INT("min_width", 0, CFGF_NODEFAULT), CFG_INT("min_height", 0, CFGF_NODEFAULT), /* End deprecated tilda options */ CFG_END() }; /* Define these here, so that we can enable a non-threadsafe version * without changing the code below. */ #ifndef NO_THREADSAFE static GMutex mutex; #define config_mutex_lock() g_mutex_lock (&mutex) #define config_mutex_unlock() g_mutex_unlock (&mutex) #else #define config_mutex_lock() #define config_mutex_unlock() #endif #define CONFIG1_OLDER -1 #define CONFIGS_SAME 0 #define CONFIG1_NEWER 1 static gboolean compare_config_versions (const gchar *config1, const gchar *config2) G_GNUC_UNUSED; static void invoke_deprecation_function(const gchar *const *deprecated_config_options, guint size); static void remove_deprecated_config_options(const gchar *const *deprecated_config_options, guint size); /* Note: set config_file to NULL to just free the * data structures, and not write out the state to * a file. */ gint config_free (const gchar *config_file) { gint ret = 0; if (config_file != NULL) ret = config_write (config_file); cfg_free (tc); return ret; } gint config_setint (const gchar *key, const glong val) { config_mutex_lock (); cfg_setint (tc, key, val); config_mutex_unlock (); return 0; } gint config_setnint(const gchar *key, const glong val, const guint idx) { config_mutex_lock (); cfg_setnint (tc, key, val, idx); config_mutex_unlock (); return 0; } gint config_setdouble (const gchar *key, const gdouble val) { config_mutex_lock (); cfg_setfloat (tc, key, val); config_mutex_unlock (); return 0; } gint config_setndouble (const gchar *key, const gdouble val, const guint idx) { config_mutex_lock (); cfg_setnfloat (tc, key, val, idx); config_mutex_unlock (); return 0; } gint config_setstr (const gchar *key, const gchar *val) { config_mutex_lock (); cfg_setstr (tc, key, val); config_mutex_unlock (); return 0; } gint config_setbool(const gchar *key, const gboolean val) { config_mutex_lock (); cfg_setbool (tc, key, val); config_mutex_unlock (); return 0; } glong config_getint (const gchar *key) { glong temp; config_mutex_lock (); temp = cfg_getint (tc, key); config_mutex_unlock (); return temp; } glong config_getnint(const gchar *key, const guint idx) { glong temp; config_mutex_lock (); temp = cfg_getnint (tc, key, idx); config_mutex_unlock (); return temp; } gdouble config_getdouble (const gchar* key) { gdouble temp; config_mutex_lock (); temp = cfg_getfloat (tc, key); config_mutex_unlock (); return temp; } gdouble config_getndouble (const gchar* key, const guint idx) { gdouble temp; config_mutex_lock (); temp = cfg_getnfloat (tc, key, idx); config_mutex_unlock (); return temp; } gchar* config_getstr (const gchar *key) { gchar *temp; config_mutex_lock (); temp = cfg_getstr (tc, key); config_mutex_unlock (); return temp; } gboolean config_getbool(const gchar *key) { gboolean temp; config_mutex_lock (); temp = cfg_getbool (tc, key); config_mutex_unlock (); return temp; } /* This will write out the current state of the config file to the disk. * It's use is generally discouraged, since config_free() will also write * out the configuration to disk. */ gint config_write (const gchar *config_file) { DEBUG_FUNCTION ("config_write"); DEBUG_ASSERT (config_file != NULL); gint ret = 0; FILE *fp; char *temp_config_file = g_strdup_printf ("%s.tmp", config_file); fp = fopen(temp_config_file, "w"); if (fp != NULL) { config_mutex_lock (); cfg_print (tc, fp); config_mutex_unlock (); if (fsync (fileno(fp))) { // Error occurred during sync TILDA_PERROR (); DEBUG_ERROR ("Unable to sync file"); g_printerr (_("Unable to sync the config file to disk\n")); ret = 2; } if (fclose (fp)) { // An error occurred TILDA_PERROR (); DEBUG_ERROR ("Unable to close config file"); g_printerr (_("Unable to close the config file\n")); ret = 3; } if (rename(temp_config_file, config_file)) { TILDA_PERROR (); DEBUG_ERROR ("Unable to rename temporary config file to final config file."); } } else { TILDA_PERROR (); DEBUG_ERROR ("Unable to write config file"); g_printerr (_("Unable to write the config file to %s\n"), config_file); ret = 4; } return ret; } /** * Start up the configuration system, using the configuration file given * to get the current values. If the configuration file given does not exist, * go ahead and write out the default config to the file. */ gint config_init (const gchar *config_file) { DEBUG_FUNCTION ("config_init"); gint ret = 0; // Can we use a more descriptive name than tc? tc = cfg_init (config_opts, 0); if (g_file_test (config_file, G_FILE_TEST_IS_REGULAR)) { /* Read in the existing configuration options */ ret = cfg_parse (tc, config_file); if (ret == CFG_PARSE_ERROR) { DEBUG_ERROR ("Problem parsing config"); return ret; } else if (ret != CFG_SUCCESS) { DEBUG_ERROR ("Problem parsing config."); return ret; } } /* Deprecate old config settings. * This is a lame work around until we get a permanent solution to * libconfuse lacking for this functionality */ const gchar *deprecated_tilda_config_options[] = {"show_on_monitor_number", "bold", "title_max_length_flag", "double_buffer", "antialias", "image", "transparency", "scroll_background", "use_image", "min_width", "min_height", "max_width", "max_height" }; invoke_deprecation_function (deprecated_tilda_config_options, G_N_ELEMENTS(deprecated_tilda_config_options)); remove_deprecated_config_options(deprecated_tilda_config_options, G_N_ELEMENTS(deprecated_tilda_config_options)); #ifndef NO_THREADSAFE g_mutex_init(&mutex); #endif return ret; } static GdkMonitor *config_get_configured_monitor () { gint x_pos = (gint) config_getint ("x_pos"); gint y_pos = (gint) config_getint ("y_pos"); GdkDisplay *display = gdk_display_get_default (); return gdk_display_get_monitor_at_point (display, x_pos, y_pos); } void config_get_configured_window_size (GdkRectangle *rectangle) { gdouble relative_width = GLONG_TO_DOUBLE (config_getint ("width_percentage")); gdouble relative_height = GLONG_TO_DOUBLE (config_getint ("height_percentage")); GdkMonitor *monitor = config_get_configured_monitor (); GdkRectangle workarea; gdk_monitor_get_workarea (monitor, &workarea); rectangle->width = pixels_ratio_to_absolute (relative_width, workarea.width); rectangle->height = pixels_ratio_to_absolute (relative_height, workarea.height); } static void config_get_configured_percentage (gdouble *width_percentage, gdouble *height_percentage) { glong windowWidth = config_getint ("max_width"); glong windowHeight = config_getint ("max_height"); GdkMonitor *monitor = config_get_configured_monitor (); GdkRectangle workarea; gdk_monitor_get_workarea (monitor, &workarea); if (width_percentage) { *width_percentage = pixels_absolute_to_ratio (workarea.width, windowWidth); } if (height_percentage) { *height_percentage = pixels_absolute_to_ratio (workarea.height, windowHeight); } } static void print_migration_info (const gchar *old_option_name, const gchar *new_option_name) { g_print ("Migrated deprecated value in option '%s' to '%s'.\n", old_option_name, new_option_name); } void invoke_deprecation_function (const gchar *const *deprecated_config_options, guint size) { for (guint i = 0; i < size; i++) { const char *const option_name = deprecated_config_options[i]; /* This will still return the option even if its * commented out in the config file, so we perform the extra check * using `cfg_opt_size` below to determine if the option has a valid * value. We do this to ensure that we only execute the migration * code once. */ cfg_opt_t *option = cfg_getopt (tc, option_name); if (option == NULL || cfg_opt_size (option) == 0) { continue; } gdouble width_percentage; gdouble height_percentage; config_get_configured_percentage (&width_percentage, &height_percentage); if (strncmp(option_name, "max_width", sizeof("max_width")) == 0) { print_migration_info (option_name, "width_percentage"); config_setint ("width_percentage", GLONG_FROM_DOUBLE (width_percentage)); } if (strncmp(option_name, "max_height", sizeof("max_height")) == 0) { print_migration_info (option_name, "height_percentage"); config_setint ("height_percentage", GLONG_FROM_DOUBLE (height_percentage)); } } } void remove_deprecated_config_options(const gchar *const *deprecated_config_options, guint size) { cfg_opt_t *opt; for (guint i =0; i < size; i++) { opt = cfg_getopt(tc, deprecated_config_options[i]); if (opt->nvalues != 0) { g_info("'%s' is no longer a valid config option in the current version of Tilda and has been removed from the config file.", deprecated_config_options[i]); cfg_free_value(opt); } } } /* * Compares two config versions together. * * Returns -1 if config1 is older than config2 (UPDATE REQUIRED) * Returns 0 if config1 is equal to config2 (NORMAL USAGE) * Returns 1 if config1 is newer than config2 (DISABLE WRITE) */ static gboolean compare_config_versions (const gchar *config1, const gchar *config2) { DEBUG_FUNCTION ("compare_config_versions"); DEBUG_ASSERT (config1 != NULL); DEBUG_ASSERT (config2 != NULL); /* * 1) Split apart both strings using the .'s * 2) Compare the major-major version * 3) Compare the major version * 4) Compare the minor version */ gchar **config1_tokens; gchar **config2_tokens; gint config1_version[3]; gint config2_version[3]; gint i; config1_tokens = g_strsplit (config1, ".", 3); config2_tokens = g_strsplit (config2, ".", 3); for (i=0; i<3; i++) { config1_version[i] = atoi (config1_tokens[i]); config2_version[i] = atoi (config2_tokens[i]); } g_strfreev (config1_tokens); g_strfreev (config2_tokens); /* We're done splitting things, so compare now */ for (i=0; i<3; i++) { if (config1_version[i] > config2_version[i]) return CONFIG1_NEWER; if (config1_version[i] < config2_version[i]) return CONFIG1_OLDER; } return CONFIGS_SAME; } tilda-1.5.0/src/tilda_terminal.h0000644000175000017500000000526213617620115013472 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef TILDA_TERMINALN_H #define TILDA_TERMINALN_H #include "tilda_window.h" #include "tilda-palettes.h" #include G_BEGIN_DECLS typedef struct tilda_term_ tilda_term; struct tilda_term_ { GtkWidget *vte_term; GtkWidget *hbox; GtkWidget *scrollbar; GRegex *http_regexp; GPid pid; /* We remember if we have already dropped to the default * shell before, if so, then we know that this time we can * exit the program. */ gboolean dropped_to_default_shell; gchar *initial_working_dir; struct tilda_window_ *tw; }; enum tilda_term_scrollbar_positions { RIGHT, LEFT, DISABLED }; enum delete_keys { ASCII_DELETE, DELETE_SEQUENCE, ASCII_BACKSPACE, AUTO }; /** * tilda_term_init () * * Initialize and return a new struct tilda_term_. * * @param tw The main tilda window, which must be initialized. * * Success: return a non-NULL struct tilda_term_ *. * Failure: return NULL. * * Notes: you must call tilda_term_free() on the returned struct tilda_term_ * when you are finished using it, and it has been removed from all GTK * structures, such as the notebook. */ struct tilda_term_ *tilda_term_init (struct tilda_window_ *tw); /** * tilda_term_free () * * Free a struct tilda_term_* created with tilda_term_init (). This will * clean up any memory allocations that were made to create the object. It * should only be called when there is no more need to access the object. * * Success: return 0 * Failure: return non-zero */ gint tilda_term_free (struct tilda_term_ *term); void tilda_term_set_scrollbar_position (tilda_term *tt, enum tilda_term_scrollbar_positions pos); char* tilda_term_get_cwd(tilda_term* tt); /* Adjust the font-size scale for the terminal */ void tilda_term_adjust_font_scale(tilda_term *term, gdouble scale); gchar * tilda_terminal_get_full_title (tilda_term *tt); gchar * tilda_terminal_get_title (tilda_term *tt); #define TILDA_TERM(tt) ((tilda_term *)(tt)) G_END_DECLS /* vim: set ts=4 sts=4 sw=4 expandtab: */ #endif /* TILDA_TERMINALN_H */ tilda-1.5.0/src/tilda-cli-options.h0000644000175000017500000000260313615541755014043 00000000000000#ifndef TILDA_OPTIONS_H #define TILDA_OPTIONS_H #include typedef struct tilda_cli_options tilda_cli_options; struct tilda_cli_options { gchar *background_color; gchar *command; gchar *font; gchar *working_dir; gint back_alpha; gint lines; gint x_pos; gint y_pos; gboolean scrollbar; gboolean show_config; gboolean version; gboolean hidden; }; /** * Creates a new tilda_cli_option instance. * * @return returns * a pointer to a newly allocated tilda_cli_options structure, we * should be freed when no longer needed. */ tilda_cli_options *tilda_cli_options_new (void); /** * Parse all of the Command-Line Options given to tilda. * This can modify argv and argc, and will set values in the config. * * @param cli_options pointer to a struct to store command-line options into * @param argc argc from main * @param argv argv from main * @param config_file pointer which will be used to store the config file path if it was specified via command-line * @return TRUE if we should show the configuration wizard, FALSE otherwise */ gboolean tilda_cli_options_parse_options (tilda_cli_options *options, gint argc, gchar **argv, gchar **config_file); #endif //TILDA_OPTIONS_H tilda-1.5.0/src/screen-size.h0000644000175000017500000000026213615541755012736 00000000000000#ifndef TILDA_SCREEN_SIZE_H #define TILDA_SCREEN_SIZE_H #include void screen_size_get_dimensions (gint *width, gint *height); #endif tilda-1.5.0/src/tilda-palettes.c0000644000175000017500000001646413617620115013417 00000000000000#include "tilda.h" #include "tilda-palettes.h" #include static GdkRGBA tilda_palettes_current_palette[TILDA_COLOR_PALETTE_SIZE]; static const GdkRGBA terminal_palette_tango[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0x2e2e, 0x3434, 0x3636) }, { RGB(0xcccc, 0x0000, 0x0000) }, { RGB(0x4e4e, 0x9a9a, 0x0606) }, { RGB(0xc4c4, 0xa0a0, 0x0000) }, { RGB(0x3434, 0x6565, 0xa4a4) }, { RGB(0x7575, 0x5050, 0x7b7b) }, { RGB(0x0606, 0x9820, 0x9a9a) }, { RGB(0xd3d3, 0xd7d7, 0xcfcf) }, { RGB(0x5555, 0x5757, 0x5353) }, { RGB(0xefef, 0x2929, 0x2929) }, { RGB(0x8a8a, 0xe2e2, 0x3434) }, { RGB(0xfcfc, 0xe9e9, 0x4f4f) }, { RGB(0x7272, 0x9f9f, 0xcfcf) }, { RGB(0xadad, 0x7f7f, 0xa8a8) }, { RGB(0x3434, 0xe2e2, 0xe2e2) }, { RGB(0xeeee, 0xeeee, 0xecec) } }; static const GdkRGBA terminal_palette_zenburn[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0x2222, 0x2222, 0x2222) }, //black { RGB(0x8080, 0x3232, 0x3232) }, //darkred { RGB(0x5b5b, 0x7676, 0x2f2f) }, //darkgreen { RGB(0xaaaa, 0x9999, 0x4343) }, //brown { RGB(0x3232, 0x4c4c, 0x8080) }, //darkblue { RGB(0x7070, 0x6c6c, 0x9a9a) }, //darkmagenta { RGB(0x9292, 0xb1b1, 0x9e9e) }, //darkcyan { RGB(0xffff, 0xffff, 0xffff) }, //lightgrey { RGB(0x2222, 0x2222, 0x2222) }, //darkgrey { RGB(0x9898, 0x2b2b, 0x2b2b) }, //red { RGB(0x8989, 0xb8b8, 0x3f3f) }, //green { RGB(0xefef, 0xefef, 0x6060) }, //yellow { RGB(0x2b2b, 0x4f4f, 0x9898) }, //blue { RGB(0x8282, 0x6a6a, 0xb1b1) }, //magenta { RGB(0xa1a1, 0xcdcd, 0xcdcd) }, //cyan { RGB(0xdede, 0xdede, 0xdede) }, //white} }; static const GdkRGBA terminal_palette_linux[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0x0000, 0x0000, 0x0000) }, { RGB(0xaaaa, 0x0000, 0x0000) }, { RGB(0x0000, 0xaaaa, 0x0000) }, { RGB(0xaaaa, 0x5555, 0x0000) }, { RGB(0x0000, 0x0000, 0xaaaa) }, { RGB(0xaaaa, 0x0000, 0xaaaa) }, { RGB(0x0000, 0xaaaa, 0xaaaa) }, { RGB(0xaaaa, 0xaaaa, 0xaaaa) }, { RGB(0x5555, 0x5555, 0x5555) }, { RGB(0xffff, 0x5555, 0x5555) }, { RGB(0x5555, 0xffff, 0x5555) }, { RGB(0xffff, 0xffff, 0x5555) }, { RGB(0x5555, 0x5555, 0xffff) }, { RGB(0xffff, 0x5555, 0xffff) }, { RGB(0x5555, 0xffff, 0xffff) }, { RGB(0xffff, 0xffff, 0xffff) } }; static const GdkRGBA terminal_palette_xterm[TILDA_COLOR_PALETTE_SIZE] = { {RGB(0x0000, 0x0000, 0x0000) }, {RGB(0xcdcb, 0x0000, 0x0000) }, {RGB(0x0000, 0xcdcb, 0x0000) }, {RGB(0xcdcb, 0xcdcb, 0x0000) }, {RGB(0x1e1a, 0x908f, 0xffff) }, {RGB(0xcdcb, 0x0000, 0xcdcb) }, {RGB(0x0000, 0xcdcb, 0xcdcb) }, {RGB(0xe5e2, 0xe5e2, 0xe5e2) }, {RGB(0x4ccc, 0x4ccc, 0x4ccc) }, {RGB(0xffff, 0x0000, 0x0000) }, {RGB(0x0000, 0xffff, 0x0000) }, {RGB(0xffff, 0xffff, 0x0000) }, {RGB(0x4645, 0x8281, 0xb4ae) }, {RGB(0xffff, 0x0000, 0xffff) }, {RGB(0x0000, 0xffff, 0xffff) }, {RGB(0xffff, 0xffff, 0xffff) } }; static const GdkRGBA terminal_palette_rxvt[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0x0000, 0x0000, 0x0000) }, { RGB(0xcdcd, 0x0000, 0x0000) }, { RGB(0x0000, 0xcdcd, 0x0000) }, { RGB(0xcdcd, 0xcdcd, 0x0000) }, { RGB(0x0000, 0x0000, 0xcdcd) }, { RGB(0xcdcd, 0x0000, 0xcdcd) }, { RGB(0x0000, 0xcdcd, 0xcdcd) }, { RGB(0xfafa, 0xebeb, 0xd7d7) }, { RGB(0x4040, 0x4040, 0x4040) }, { RGB(0xffff, 0x0000, 0x0000) }, { RGB(0x0000, 0xffff, 0x0000) }, { RGB(0xffff, 0xffff, 0x0000) }, { RGB(0x0000, 0x0000, 0xffff) }, { RGB(0xffff, 0x0000, 0xffff) }, { RGB(0x0000, 0xffff, 0xffff) }, { RGB(0xffff, 0xffff, 0xffff) } }; static const GdkRGBA terminal_palette_solarizedL[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0xeeee, 0xe8e8, 0xd5d5) }, { RGB(0xdcdc, 0x3232, 0x2f2f) }, { RGB(0x8585, 0x9999, 0x0000) }, { RGB(0xb5b5, 0x8989, 0x0000) }, { RGB(0x2626, 0x8b8b, 0xd2d2) }, { RGB(0xd3d3, 0x3636, 0x8282) }, { RGB(0x2a2a, 0xa1a1, 0x9898) }, { RGB(0x0707, 0x3636, 0x4242) }, { RGB(0xfdfd, 0xf6f6, 0xe3e3) }, { RGB(0xcbcb, 0x4b4b, 0x1616) }, { RGB(0x9393, 0xa1a1, 0xa1a1) }, { RGB(0x8383, 0x9494, 0x9696) }, { RGB(0x6565, 0x7b7b, 0x8383) }, { RGB(0x6c6c, 0x7171, 0xc4c4) }, { RGB(0x5858, 0x6e6e, 0x7575) }, { RGB(0x0000, 0x2b2b, 0x3636) } }; static const GdkRGBA terminal_palette_solarizedD[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0x0707, 0x3636, 0x4242) }, { RGB(0xdcdc, 0x3232, 0x2f2f) }, { RGB(0x8585, 0x9999, 0x0000) }, { RGB(0xb5b5, 0x8989, 0x0000) }, { RGB(0x2626, 0x8b8b, 0xd2d2) }, { RGB(0xd3d3, 0x3636, 0x8282) }, { RGB(0x2a2a, 0xa1a1, 0x9898) }, { RGB(0xeeee, 0xe8e8, 0xd5d5) }, { RGB(0x0000, 0x2b2b, 0x3636) }, { RGB(0xcbcb, 0x4b4b, 0x1616) }, { RGB(0x5858, 0x6e6e, 0x7575) }, { RGB(0x8383, 0x9494, 0x9696) }, { RGB(0x6565, 0x7b7b, 0x8383) }, { RGB(0x6c6c, 0x7171, 0xc4c4) }, { RGB(0x9393, 0xa1a1, 0xa1a1) }, { RGB(0xfdfd, 0xf6f6, 0xe3e3) } }; static const GdkRGBA terminal_palette_snazzy[TILDA_COLOR_PALETTE_SIZE] = { { RGB(0x2828, 0x2a2a, 0x3636) }, { RGB(0xffff, 0x5c5c, 0x5757) }, { RGB(0x5a5a, 0xf7f7, 0x8e8e) }, { RGB(0xf3f3, 0xf9f9, 0x9d9d) }, { RGB(0x5757, 0xc7c7, 0xffff) }, { RGB(0xffff, 0x6a6a, 0xc1c1) }, { RGB(0x9a9a, 0xeded, 0xfefe) }, { RGB(0xf1f1, 0xf1f1, 0xf0f0) }, { RGB(0x6868, 0x6868, 0x6868) }, { RGB(0xffff, 0x5c5c, 0x5757) }, { RGB(0x5a5a, 0xf7f7, 0x8e8e) }, { RGB(0xf3f3, 0xf9f9, 0x9d9d) }, { RGB(0x5757, 0xc7c7, 0xffff) }, { RGB(0xffff, 0x6a6a, 0xc1c1) }, { RGB(0x9a9a, 0xeded, 0xfefe) }, { RGB(0xf1f1, 0xf1f1, 0xf0f0) } }; static TildaColorScheme palette_schemes[] = { { N_("Custom"), NULL }, { N_("Tango"), terminal_palette_tango }, { N_("Linux console"), terminal_palette_linux }, { N_("XTerm"), terminal_palette_xterm }, { N_("Rxvt"), terminal_palette_rxvt }, { N_("Zenburn"), terminal_palette_zenburn }, { N_("Solarized Light (deprecated)"), terminal_palette_solarizedL }, { N_("Solarized"), terminal_palette_solarizedD }, { N_("Snazzy"), terminal_palette_snazzy } }; gint tilda_palettes_get_n_palette_schemes () { return G_N_ELEMENTS (palette_schemes); } TildaColorScheme * tilda_palettes_get_palette_schemes () { return palette_schemes; } void tilda_palettes_set_current_palette (const GdkRGBA *palette) { memcpy (tilda_palettes_current_palette, palette, TILDA_COLOR_PALETTE_SIZE); } GdkRGBA *tilda_palettes_get_current_palette () { return tilda_palettes_current_palette; } const GdkRGBA *tilda_palettes_get_palette_color (const GdkRGBA *palette, int color_num) { g_return_val_if_fail (color_num >= 0 && color_num < TILDA_COLOR_PALETTE_SIZE, NULL); return palette + color_num; } tilda-1.5.0/src/eggaccelerators.h0000644000175000017500000000447513276007273013646 00000000000000/* eggaccelerators.h * Copyright (C) 2002 Red Hat, Inc. * Developed by Havoc Pennington * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef __EGG_ACCELERATORS_H__ #define __EGG_ACCELERATORS_H__ #include G_BEGIN_DECLS /* Where a value is also in GdkModifierType we coincide, * otherwise we don't overlap. */ typedef enum { EGG_VIRTUAL_SHIFT_MASK = 1 << 0, EGG_VIRTUAL_LOCK_MASK = 1 << 1, EGG_VIRTUAL_CONTROL_MASK = 1 << 2, EGG_VIRTUAL_ALT_MASK = 1 << 3, /* fixed as Mod1 */ EGG_VIRTUAL_MOD2_MASK = 1 << 4, EGG_VIRTUAL_MOD3_MASK = 1 << 5, EGG_VIRTUAL_MOD4_MASK = 1 << 6, EGG_VIRTUAL_MOD5_MASK = 1 << 7, #if 0 GDK_BUTTON1_MASK = 1 << 8, GDK_BUTTON2_MASK = 1 << 9, GDK_BUTTON3_MASK = 1 << 10, GDK_BUTTON4_MASK = 1 << 11, GDK_BUTTON5_MASK = 1 << 12, /* 13, 14 are used by Xkb for the keyboard group */ #endif EGG_VIRTUAL_META_MASK = 1 << 24, EGG_VIRTUAL_SUPER_MASK = 1 << 25, EGG_VIRTUAL_HYPER_MASK = 1 << 26, EGG_VIRTUAL_MODE_SWITCH_MASK = 1 << 27, EGG_VIRTUAL_NUM_LOCK_MASK = 1 << 28, EGG_VIRTUAL_SCROLL_LOCK_MASK = 1 << 29, /* Also in GdkModifierType */ EGG_VIRTUAL_RELEASE_MASK = 1 << 30, /* 28-31 24-27 20-23 16-19 12-15 8-11 4-7 0-3 * 7 f 0 0 0 0 f f */ EGG_VIRTUAL_MODIFIER_MASK = 0x7f0000ff } EggVirtualModifierType; void egg_keymap_resolve_virtual_modifiers (GdkKeymap *keymap, EggVirtualModifierType virtual_mods, GdkModifierType *concrete_mods); G_END_DECLS #endif /* __EGG_ACCELERATORS_H__ */ tilda-1.5.0/src/menu.ui0000664000175000017500000000277613046625160011646 00000000000000
_New Tab window.new-tab _Close Tab window.close-tab
_Copy window.copy _Paste window.paste
_Toggle Fullscreen window.fullscreen _Toggle Searchbar window.searchbar
_Preferences window.preferences
_Quit window.quit
tilda-1.5.0/src/glade-resources.c0000644000175000017500000020755413617633223013575 00000000000000#include #if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)) # define SECTION __attribute__ ((section (".gresource.glade_resources"), aligned (8))) #else # define SECTION #endif static const SECTION union { const guint8 data[10047]; const double alignment; void * const ptr;} glade_resources_resource_data = { { 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xc2, 0x84, 0x46, 0xe4, 0x03, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x08, 0x00, 0x76, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xdf, 0x20, 0x00, 0x00, 0x4b, 0x50, 0x90, 0x0b, 0x02, 0x00, 0x00, 0x00, 0xdf, 0x20, 0x00, 0x00, 0x04, 0x00, 0x4c, 0x00, 0xe4, 0x20, 0x00, 0x00, 0xe8, 0x20, 0x00, 0x00, 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x20, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00, 0xec, 0x20, 0x00, 0x00, 0xf0, 0x20, 0x00, 0x00, 0x68, 0x81, 0x1b, 0x4e, 0x01, 0x00, 0x00, 0x00, 0xf0, 0x20, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00, 0xf8, 0x20, 0x00, 0x00, 0x04, 0x21, 0x00, 0x00, 0x9b, 0xfe, 0xb1, 0xb3, 0x03, 0x00, 0x00, 0x00, 0x04, 0x21, 0x00, 0x00, 0x13, 0x00, 0x76, 0x00, 0x18, 0x21, 0x00, 0x00, 0x27, 0x25, 0x00, 0x00, 0x09, 0x45, 0xeb, 0xe2, 0x03, 0x00, 0x00, 0x00, 0x27, 0x25, 0x00, 0x00, 0x07, 0x00, 0x76, 0x00, 0x30, 0x25, 0x00, 0x00, 0x3f, 0x27, 0x00, 0x00, 0x74, 0x69, 0x6c, 0x64, 0x61, 0x2e, 0x75, 0x69, 0x24, 0x9a, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x78, 0xda, 0xed, 0x5d, 0xdb, 0x92, 0xdb, 0x38, 0x92, 0x7d, 0xef, 0xaf, 0xc0, 0xea, 0x61, 0x7a, 0x66, 0x76, 0xe5, 0x12, 0x75, 0xa9, 0x2a, 0xf7, 0xd8, 0x35, 0x51, 0x37, 0xb7, 0x1d, 0xed, 0xb6, 0x1d, 0x56, 0xb9, 0x7b, 0x77, 0x5f, 0x18, 0x10, 0x09, 0x49, 0xe8, 0xa2, 0x08, 0x36, 0x49, 0x95, 0x4a, 0x8e, 0xf9, 0x87, 0x7d, 0xdc, 0xff, 0xdb, 0x2f, 0x59, 0x00, 0xa4, 0x6e, 0x25, 0x92, 0xe2, 0x4d, 0x12, 0x09, 0x65, 0x74, 0x84, 0xbb, 0x28, 0x89, 0x49, 0x02, 0xc8, 0x4c, 0xe4, 0xe5, 0x20, 0xf3, 0xcd, 0x3f, 0x9f, 0x27, 0x16, 0x7a, 0x22, 0xae, 0x47, 0x99, 0xfd, 0xb6, 0xa1, 0xbd, 0x6a, 0x35, 0x10, 0xb1, 0x0d, 0x66, 0x52, 0x7b, 0xf4, 0xb6, 0xf1, 0xed, 0xe1, 0x5d, 0xf3, 0xb2, 0xf1, 0xcf, 0xab, 0x1f, 0xde, 0xfc, 0x5b, 0xb3, 0x89, 0x7e, 0x26, 0x36, 0x71, 0xb1, 0x4f, 0x4c, 0x34, 0xa3, 0xfe, 0x18, 0x8d, 0x2c, 0x6c, 0x12, 0xd4, 0x79, 0xd5, 0x6e, 0xbf, 0xd2, 0x50, 0xb3, 0xc9, 0x7f, 0x44, 0x6d, 0x9f, 0xb8, 0x43, 0x6c, 0x90, 0xab, 0x1f, 0x10, 0x7a, 0xe3, 0x92, 0x3f, 0xa7, 0xd4, 0x25, 0x1e, 0xb2, 0xe8, 0xe0, 0x6d, 0x63, 0xe4, 0x3f, 0xfe, 0x7b, 0x63, 0xf5, 0xa0, 0xce, 0x2b, 0xad, 0xd5, 0x38, 0x93, 0xbf, 0x63, 0x83, 0x3f, 0x88, 0xe1, 0x23, 0xc3, 0xc2, 0x9e, 0xf7, 0xb6, 0xf1, 0xb3, 0xff, 0x78, 0x6d, 0xfe, 0x31, 0xf5, 0xfc, 0x09, 0xb1, 0xfd, 0x06, 0xa2, 0xe6, 0xdb, 0x06, 0x5e, 0x5e, 0x6b, 0x0d, 0x71, 0x07, 0xbf, 0xc7, 0x71, 0x99, 0x43, 0x5c, 0x7f, 0x8e, 0x6c, 0x3c, 0x21, 0x6f, 0x1b, 0x53, 0x87, 0x5f, 0x35, 0xae, 0xb4, 0x56, 0xeb, 0xcd, 0xd9, 0xe2, 0xab, 0xe8, 0x5f, 0x7a, 0x3e, 0x71, 0x74, 0x6a, 0x1b, 0x2e, 0x91, 0xf4, 0xaf, 0xb4, 0x5d, 0x37, 0x38, 0x78, 0x44, 0x36, 0x6e, 0x78, 0xf1, 0x88, 0x37, 0x67, 0xc1, 0xfb, 0x67, 0x1e, 0x4a, 0x2b, 0x79, 0x2c, 0x6d, 0xad, 0x7b, 0xd1, 0xbd, 0xec, 0x9c, 0x77, 0x2f, 0xea, 0x33, 0x24, 0x85, 0x96, 0xa7, 0xad, 0xce, 0x50, 0x3a, 0xea, 0x0c, 0xa5, 0xab, 0xce, 0x50, 0x7a, 0xea, 0x0c, 0xe5, 0x5c, 0x9d, 0xa1, 0x5c, 0xa8, 0x33, 0x94, 0x4b, 0x75, 0x86, 0xf2, 0x3a, 0x66, 0x28, 0x16, 0x9b, 0xc9, 0xa1, 0xec, 0x7a, 0xaf, 0xcc, 0x5b, 0xea, 0x13, 0xb6, 0xa6, 0x24, 0x05, 0xe1, 0x03, 0xcf, 0xd0, 0x47, 0xea, 0xf9, 0x7d, 0x9f, 0xb9, 0x24, 0x98, 0x20, 0x8b, 0x5f, 0x7a, 0xe2, 0x72, 0xb9, 0xef, 0x1a, 0xcc, 0x9a, 0x4e, 0x6c, 0x2f, 0xb8, 0xe2, 0xd7, 0xc2, 0x6a, 0x0b, 0x3e, 0x6b, 0x8a, 0xe7, 0xa3, 0x91, 0x31, 0xc6, 0x2e, 0x76, 0x5d, 0x3c, 0x0f, 0x2c, 0xb6, 0xf0, 0x67, 0xc1, 0x4f, 0x90, 0x3f, 0x77, 0xf8, 0x2b, 0xae, 0x7e, 0x13, 0xd8, 0x67, 0xe2, 0xa5, 0x36, 0xe8, 0xbe, 0x31, 0xb1, 0x8f, 0x97, 0xf7, 0xba, 0x6c, 0xb6, 0xf8, 0x3b, 0xa0, 0x24, 0x5f, 0x8d, 0x5b, 0x91, 0xbe, 0x8b, 0x6d, 0xcf, 0xe2, 0x3f, 0x1d, 0x58, 0x9c, 0xea, 0x9c, 0x78, 0x8d, 0xab, 0x5b, 0x8b, 0x79, 0x04, 0x3d, 0x50, 0xcb, 0xc4, 0x92, 0xe6, 0x92, 0xc8, 0xd9, 0x1a, 0x95, 0x4c, 0x14, 0x3f, 0x3b, 0xc4, 0x46, 0x18, 0xd9, 0x64, 0x86, 0xb8, 0xe9, 0x39, 0xa1, 0x36, 0xb6, 0xf6, 0x47, 0x19, 0x61, 0xdb, 0x44, 0x63, 0x6a, 0x92, 0xb8, 0x47, 0xbc, 0x39, 0x5b, 0x4c, 0x4d, 0xa6, 0x75, 0x9c, 0x30, 0x93, 0x58, 0x39, 0xd6, 0xf0, 0x18, 0x4b, 0xf8, 0xc0, 0x9c, 0x92, 0x26, 0xf8, 0x86, 0xf9, 0x3e, 0x9b, 0x94, 0x44, 0xec, 0x23, 0x19, 0xfa, 0x25, 0x91, 0xfa, 0x4a, 0x47, 0xe3, 0xb2, 0x68, 0xbd, 0xa7, 0xa6, 0x49, 0xec, 0xbd, 0xb0, 0x4b, 0xab, 0x1e, 0xfc, 0xf2, 0x8e, 0x19, 0x53, 0x0f, 0x3d, 0x94, 0x2b, 0x9b, 0x7c, 0x5a, 0xc9, 0x4e, 0x9a, 0x85, 0x66, 0xb7, 0x26, 0xd2, 0x78, 0x63, 0x31, 0xe3, 0x11, 0xdd, 0x4e, 0x5d, 0x8f, 0xb9, 0x25, 0xcd, 0xed, 0x87, 0x1b, 0x82, 0x27, 0xe5, 0x92, 0xfc, 0x66, 0x9b, 0xc4, 0xb5, 0xa8, 0x4d, 0x76, 0x90, 0x2d, 0xb4, 0x62, 0xed, 0x7a, 0xac, 0x58, 0x7f, 0xcc, 0x66, 0x68, 0x36, 0x66, 0x16, 0x41, 0xfc, 0x63, 0xe4, 0x53, 0xdf, 0x22, 0x25, 0x4d, 0xb3, 0x24, 0x3d, 0xa4, 0xae, 0xe7, 0x23, 0x1b, 0x89, 0x11, 0x78, 0x88, 0x0d, 0xcb, 0x7f, 0x02, 0x5f, 0x86, 0xf4, 0x0f, 0x28, 0xb2, 0xa4, 0x35, 0x59, 0xd1, 0x0f, 0x9e, 0xfd, 0xa3, 0x8f, 0x4c, 0xea, 0x39, 0x16, 0x9e, 0x13, 0xb3, 0xa4, 0xa9, 0xfe, 0x99, 0x11, 0x0f, 0xe1, 0x21, 0x37, 0x3d, 0x10, 0xb5, 0xa9, 0x4f, 0xb9, 0xf5, 0x51, 0xe6, 0x4a, 0x4a, 0xf2, 0x03, 0x32, 0xe4, 0x33, 0xbe, 0x17, 0xfa, 0x5f, 0x09, 0x9f, 0x0d, 0x23, 0x25, 0xed, 0x22, 0x4c, 0xd2, 0xa9, 0x07, 0x93, 0xdc, 0x71, 0x1b, 0x1f, 0xf9, 0x0c, 0xf9, 0x63, 0x82, 0x4c, 0x32, 0xc4, 0x53, 0xcb, 0x47, 0xde, 0x98, 0x58, 0x56, 0x69, 0xf3, 0xed, 0xf9, 0xd8, 0xf5, 0x25, 0x7d, 0x83, 0x4d, 0x26, 0xdc, 0x52, 0x2d, 0x89, 0xf2, 0xfd, 0x33, 0x0d, 0xc8, 0xfa, 0x7b, 0xdc, 0x6f, 0xbb, 0x60, 0xfc, 0xd6, 0xc0, 0xf8, 0x2d, 0xb2, 0xc2, 0xbd, 0x7a, 0xac, 0xf0, 0xed, 0xd4, 0x2b, 0x6f, 0x5d, 0x7e, 0x76, 0x09, 0xf7, 0x21, 0x99, 0x8d, 0x6e, 0xb8, 0x2e, 0x7c, 0x2c, 0x8b, 0x73, 0x04, 0x2d, 0x41, 0xf4, 0xf7, 0x31, 0xf5, 0xcb, 0x52, 0xd7, 0x92, 0x56, 0xd9, 0x6f, 0xfa, 0xdf, 0xc4, 0x1e, 0x4c, 0x5d, 0xbb, 0x2c, 0xdb, 0x83, 0x59, 0xd8, 0xa5, 0xdf, 0x89, 0x89, 0x3e, 0x96, 0xe8, 0xa0, 0xad, 0xa8, 0xde, 0x61, 0xb7, 0xac, 0x81, 0xf7, 0x6d, 0xfc, 0xfd, 0xfb, 0x7c, 0x1f, 0x52, 0x74, 0xae, 0x82, 0x14, 0x15, 0x99, 0x80, 0x8b, 0x7a, 0x4c, 0xc0, 0x67, 0x5b, 0x6e, 0x99, 0x25, 0x2a, 0xe6, 0x90, 0x62, 0x99, 0xc1, 0x89, 0x3b, 0xea, 0x89, 0x2b, 0x73, 0x1f, 0xeb, 0x74, 0x59, 0x8f, 0x75, 0xba, 0xee, 0xdf, 0x7e, 0xf8, 0x80, 0xee, 0xee, 0x3f, 0x96, 0x65, 0x2c, 0x79, 0x06, 0x76, 0x08, 0xf2, 0xc8, 0x9f, 0x53, 0x62, 0x1b, 0x65, 0x69, 0xe7, 0x5b, 0x66, 0xfb, 0x2e, 0xb3, 0x9a, 0xef, 0xf7, 0xb1, 0x52, 0xaf, 0x61, 0xa5, 0xea, 0xb0, 0x52, 0xdc, 0x8f, 0x62, 0xae, 0x2e, 0x22, 0xfe, 0xba, 0x0c, 0xf9, 0xa7, 0x5d, 0xb5, 0xc5, 0x9d, 0x8e, 0x35, 0x1d, 0xe9, 0xf2, 0x93, 0xf4, 0x8b, 0x17, 0x41, 0xce, 0x9e, 0x4e, 0x06, 0xdc, 0x25, 0x8d, 0xa5, 0x41, 0x6d, 0x3f, 0xe1, 0xee, 0xd0, 0x49, 0xce, 0xfa, 0x1e, 0x1b, 0x4c, 0x94, 0x3c, 0x6f, 0x77, 0xdc, 0xd9, 0x64, 0xa3, 0x60, 0xd2, 0x66, 0xf4, 0x3b, 0x76, 0x4d, 0x7d, 0x46, 0x6d, 0x93, 0xcd, 0x62, 0x32, 0x48, 0x06, 0xb6, 0xf5, 0xa1, 0x08, 0x51, 0x36, 0xae, 0xde, 0x61, 0xcb, 0x23, 0xbb, 0xf2, 0x37, 0x03, 0xe6, 0x9a, 0xc4, 0xe5, 0x34, 0x4d, 0x7f, 0xdc, 0xb8, 0xea, 0xed, 0xfa, 0xb9, 0x74, 0x7b, 0xa3, 0x5d, 0x09, 0x91, 0x04, 0x41, 0x9c, 0x5f, 0x86, 0x74, 0xb4, 0x8b, 0x4a, 0x30, 0x02, 0xdd, 0x61, 0x1e, 0x77, 0xa6, 0x99, 0xdd, 0xb8, 0x32, 0x88, 0x00, 0xda, 0xec, 0x7c, 0x38, 0x9f, 0x4e, 0x7d, 0x2c, 0x56, 0xe4, 0xca, 0x66, 0xee, 0x44, 0x78, 0x6e, 0x2f, 0x6e, 0xf0, 0xe8, 0x48, 0xa4, 0x35, 0x82, 0x9f, 0x9b, 0xdc, 0x85, 0x74, 0xd9, 0xbc, 0x81, 0xc6, 0xdc, 0x79, 0xb4, 0x88, 0xcb, 0x07, 0x3b, 0xe5, 0x4e, 0x8a, 0xad, 0x87, 0xf3, 0x68, 0x88, 0xe4, 0x0d, 0xff, 0x97, 0x1a, 0x8f, 0x84, 0x5f, 0x0d, 0x1a, 0xc8, 0x9b, 0x61, 0xc7, 0x21, 0x7c, 0xa6, 0x6d, 0xb6, 0x5c, 0x2a, 0x63, 0xcc, 0x07, 0xb6, 0x5c, 0x58, 0x19, 0x04, 0x18, 0x33, 0x8b, 0xcf, 0xd9, 0x6a, 0x2d, 0x57, 0xbf, 0x08, 0x7e, 0x8d, 0x24, 0x6c, 0x88, 0xbf, 0x48, 0x53, 0x5e, 0xbe, 0x6d, 0x3c, 0x0d, 0xd8, 0x73, 0x63, 0x49, 0x63, 0x6b, 0x8d, 0x6f, 0xf8, 0xb7, 0x72, 0x81, 0x4d, 0xb9, 0xd8, 0x4d, 0xf1, 0x73, 0xad, 0xb1, 0x26, 0xa3, 0x2f, 0x93, 0x79, 0xd4, 0xa3, 0x7c, 0xe2, 0xf9, 0x9c, 0xbb, 0xd3, 0xad, 0x05, 0xce, 0xc3, 0x14, 0x51, 0xf7, 0x90, 0x27, 0xbe, 0x26, 0xc2, 0xe6, 0xbf, 0xfb, 0x45, 0xff, 0xf2, 0xf9, 0xc3, 0xa7, 0x87, 0xfb, 0xaf, 0xfa, 0xaf, 0x9f, 0x1f, 0x3e, 0x7c, 0xfe, 0xa4, 0xff, 0x7a, 0xdd, 0xff, 0x05, 0xfd, 0x0b, 0x45, 0x7c, 0xf3, 0x9e, 0x5f, 0xad, 0x7f, 0x7d, 0xf3, 0xed, 0xe1, 0x81, 0x7f, 0xfc, 0xe5, 0xeb, 0x7d, 0xbf, 0x1f, 0xf1, 0xf9, 0xd7, 0xfb, 0x8f, 0xf7, 0xd7, 0xfd, 0x7b, 0xf9, 0x4d, 0x9a, 0x77, 0x62, 0x2e, 0xe5, 0x2f, 0x85, 0x03, 0x9e, 0x79, 0xe2, 0x5f, 0x50, 0x63, 0x9b, 0x09, 0x22, 0xd3, 0x9a, 0x0e, 0x36, 0xa8, 0x3d, 0x6a, 0x5c, 0xb5, 0x23, 0x7f, 0x1d, 0xbd, 0x6a, 0xd8, 0x10, 0x0f, 0xd2, 0xb1, 0x4b, 0xf0, 0xda, 0x62, 0x44, 0x2e, 0xa0, 0xe4, 0xab, 0x97, 0xcb, 0xb8, 0x76, 0xbf, 0xb6, 0x41, 0x20, 0xc7, 0x8a, 0xe6, 0x5d, 0xd5, 0xaa, 0xae, 0x6c, 0x64, 0xf2, 0x1b, 0xcf, 0xd9, 0x54, 0xec, 0x06, 0x73, 0x31, 0x13, 0x44, 0x04, 0x7c, 0x62, 0x6e, 0xdc, 0x90, 0xc9, 0x15, 0xb9, 0x2d, 0xd9, 0x5c, 0x7e, 0x75, 0x16, 0x71, 0x47, 0x0c, 0x95, 0x98, 0xc5, 0x0d, 0x56, 0x36, 0x42, 0x81, 0x34, 0x5e, 0x52, 0x88, 0x1a, 0xd8, 0x80, 0x58, 0x8d, 0xab, 0x91, 0xff, 0xd8, 0x94, 0xb7, 0xc4, 0x8d, 0x2b, 0x37, 0x67, 0x14, 0xe1, 0x8e, 0xa8, 0x7b, 0x5d, 0x62, 0x10, 0xfa, 0x44, 0x3c, 0x3d, 0x8c, 0xec, 0xe5, 0x20, 0x31, 0xe5, 0xaa, 0x95, 0xef, 0xeb, 0xc6, 0x63, 0x8a, 0x37, 0xdf, 0xd0, 0xda, 0xa1, 0x3e, 0x2e, 0xa6, 0xb5, 0xd7, 0x97, 0x7e, 0xb5, 0xbb, 0x6e, 0xbe, 0x2f, 0x36, 0x1e, 0xb9, 0x4a, 0xd8, 0x3d, 0x12, 0xf2, 0xec, 0xf0, 0x37, 0xc9, 0x31, 0x05, 0x43, 0x6a, 0x59, 0xd9, 0xd7, 0x6d, 0xb5, 0x29, 0x6a, 0xf1, 0xb7, 0xf1, 0x6f, 0xa2, 0x5e, 0x3f, 0x82, 0xcf, 0xa3, 0xc6, 0x1f, 0x3d, 0xf6, 0x5c, 0xe3, 0xce, 0x3e, 0xe6, 0x6d, 0x00, 0x89, 0xf1, 0xa8, 0x8b, 0x9d, 0x3d, 0x59, 0xe4, 0x63, 0x67, 0xa9, 0x15, 0x7d, 0x4b, 0xc4, 0x0c, 0x6d, 0xcd, 0xce, 0xb6, 0x06, 0xd8, 0x96, 0xfe, 0x4f, 0xcc, 0x27, 0x03, 0xc6, 0x1e, 0x37, 0x2c, 0x30, 0x7b, 0xf1, 0xe1, 0x31, 0xb5, 0x7a, 0x4a, 0xf5, 0xf5, 0xb3, 0x4b, 0xcd, 0xe0, 0xe5, 0x47, 0xfc, 0x2f, 0x7d, 0x24, 0x21, 0xcf, 0x56, 0xa3, 0xa2, 0x9a, 0x27, 0xb0, 0x8b, 0xf5, 0x31, 0x9b, 0x30, 0xf1, 0xa6, 0x4c, 0x10, 0xd9, 0xf9, 0xfc, 0xc8, 0x99, 0x88, 0x9e, 0x8d, 0x77, 0x2e, 0x7f, 0x4c, 0x30, 0x1d, 0x43, 0xf1, 0x67, 0x68, 0x4c, 0xeb, 0xa1, 0x21, 0xdf, 0x88, 0xa2, 0x52, 0x60, 0x6a, 0x8a, 0x4e, 0x4f, 0xd4, 0xfd, 0x13, 0xec, 0x72, 0xaf, 0x44, 0xb7, 0xc8, 0xd0, 0x8f, 0x30, 0xd8, 0x53, 0xde, 0xed, 0x8a, 0xb0, 0x4b, 0xfe, 0xdb, 0x7d, 0xe6, 0xe4, 0xbf, 0x79, 0x20, 0x53, 0x05, 0x39, 0xee, 0x1f, 0x2f, 0x54, 0x52, 0x9e, 0x69, 0x97, 0x9b, 0xb0, 0xfe, 0x8c, 0x2d, 0xbe, 0xd9, 0xc4, 0x6a, 0x8d, 0x34, 0x4c, 0x15, 0xcd, 0x58, 0xd7, 0x82, 0xee, 0x1a, 0xd4, 0x6f, 0x71, 0xa9, 0x35, 0xe2, 0x68, 0x14, 0x64, 0xab, 0x32, 0x58, 0xab, 0x38, 0x7b, 0x95, 0xc0, 0x62, 0x85, 0xd9, 0x2c, 0x72, 0xb5, 0xf9, 0xeb, 0xeb, 0x0e, 0x36, 0x4d, 0x69, 0xf5, 0x6b, 0xed, 0x54, 0x34, 0x12, 0x97, 0x3c, 0x95, 0x76, 0x4d, 0xa5, 0x4d, 0x4a, 0x5b, 0xfe, 0xb2, 0x58, 0x20, 0x41, 0x11, 0x2f, 0x1d, 0xa7, 0x5e, 0x41, 0x42, 0x99, 0x34, 0x7a, 0xb6, 0x55, 0x89, 0x5e, 0x99, 0xdb, 0x31, 0x31, 0x36, 0x6c, 0x77, 0x43, 0x7c, 0xa0, 0xcb, 0xac, 0xb2, 0xee, 0x8b, 0x60, 0x85, 0x3e, 0x96, 0x60, 0xb6, 0xc6, 0x2e, 0xda, 0x71, 0x06, 0x7d, 0x64, 0xa6, 0x44, 0x26, 0xad, 0x83, 0x58, 0xc8, 0x38, 0xc4, 0xca, 0xa5, 0x1b, 0x67, 0x69, 0x1c, 0xb1, 0x83, 0x2b, 0x8a, 0x92, 0xca, 0xe1, 0x1b, 0xec, 0x22, 0x99, 0x5a, 0x29, 0x27, 0x11, 0x31, 0x5d, 0x3c, 0xd3, 0xb9, 0xf8, 0x51, 0x03, 0xfb, 0xcc, 0xcd, 0x3a, 0xce, 0x38, 0x37, 0x61, 0xfb, 0xa9, 0x71, 0x6e, 0x43, 0x2a, 0x8d, 0x84, 0x7d, 0x1f, 0x1b, 0xe3, 0x44, 0xd3, 0x7e, 0x37, 0x25, 0xae, 0x15, 0xf3, 0x10, 0x8a, 0xf1, 0x19, 0xb6, 0x7f, 0x96, 0x42, 0xe0, 0x4a, 0x16, 0x4a, 0x6c, 0xcd, 0xf0, 0xdc, 0xd3, 0x59, 0xa8, 0xf1, 0x4b, 0x94, 0xc7, 0x6b, 0x49, 0x59, 0x24, 0x82, 0x7d, 0x01, 0x75, 0x00, 0x51, 0x04, 0x51, 0xdc, 0x97, 0x28, 0xb6, 0x94, 0x10, 0xc5, 0x45, 0x46, 0x43, 0x04, 0x2e, 0x2d, 0x4b, 0x9f, 0x31, 0xf7, 0x51, 0xd8, 0x00, 0x42, 0x96, 0x4a, 0x14, 0xcb, 0xbb, 0xe0, 0x29, 0x42, 0x2e, 0xf9, 0x53, 0xd0, 0xea, 0x29, 0x20, 0xa2, 0x20, 0xa2, 0x5b, 0x22, 0xda, 0x2a, 0x4b, 0x44, 0xbb, 0x6a, 0x88, 0x28, 0x13, 0x01, 0x28, 0xdd, 0x1b, 0x33, 0xb1, 0x84, 0xba, 0x8f, 0xbd, 0xc7, 0x01, 0x76, 0xcb, 0x95, 0x4f, 0x86, 0xf8, 0x23, 0x90, 0x78, 0x04, 0xa2, 0x7c, 0xef, 0x0c, 0x1e, 0x01, 0xc2, 0x09, 0xc2, 0xb9, 0x3f, 0xe1, 0x54, 0xc3, 0x94, 0x95, 0x52, 0xb9, 0x88, 0x0f, 0xeb, 0x41, 0x76, 0xbd, 0x5c, 0x0f, 0x53, 0xc8, 0xe4, 0x22, 0x2a, 0x8d, 0x6e, 0xe4, 0x03, 0x40, 0x30, 0x41, 0x30, 0xf7, 0x27, 0x98, 0x6a, 0x18, 0xb6, 0x1e, 0xe1, 0x53, 0x23, 0x38, 0xca, 0x7b, 0x2c, 0xdb, 0xc9, 0xec, 0x13, 0x1f, 0x61, 0x0f, 0xdd, 0x05, 0xa4, 0x51, 0x10, 0x04, 0x2c, 0x32, 0xfb, 0x22, 0x79, 0xba, 0x40, 0x0f, 0x38, 0x0e, 0xc1, 0xfc, 0x91, 0x06, 0x29, 0x41, 0x08, 0x40, 0xd6, 0xc1, 0x89, 0x3d, 0x05, 0x0b, 0x39, 0x08, 0xf2, 0x0e, 0xa7, 0x96, 0xe5, 0x19, 0xe2, 0xc8, 0xc2, 0x1e, 0x42, 0xbc, 0xdc, 0x2a, 0x5e, 0xd1, 0x07, 0x99, 0x04, 0x99, 0xdc, 0xdf, 0xfe, 0xdb, 0xae, 0x97, 0x4c, 0xf6, 0x89, 0xc3, 0x37, 0x2c, 0xb1, 0x3e, 0x52, 0x22, 0xbd, 0xc5, 0xa5, 0xd6, 0xa8, 0x86, 0x70, 0x14, 0x66, 0xe5, 0xcc, 0xc9, 0xc9, 0xb2, 0xf2, 0xe1, 0xf5, 0x67, 0xe5, 0x4e, 0x11, 0x42, 0x21, 0x46, 0xb9, 0x66, 0xe2, 0xf0, 0x31, 0xd8, 0x48, 0x64, 0x79, 0x9b, 0x81, 0xc5, 0x5d, 0xc3, 0x90, 0x11, 0x75, 0x87, 0x6f, 0x1f, 0xfa, 0xd4, 0xd1, 0x07, 0x64, 0x8c, 0x9f, 0x28, 0x9b, 0xba, 0xaa, 0xc8, 0x47, 0xfc, 0xd6, 0xf9, 0x89, 0xd9, 0x4d, 0xf9, 0x14, 0xf4, 0x85, 0x0f, 0x1e, 0x7d, 0x73, 0xd0, 0xcd, 0x62, 0xf0, 0x3f, 0x15, 0x79, 0x22, 0xb1, 0x2c, 0xea, 0x78, 0xf4, 0x7b, 0x32, 0x86, 0x2c, 0x35, 0x8f, 0xe9, 0xb2, 0x14, 0x40, 0x41, 0xb6, 0x5f, 0x6c, 0x78, 0x9a, 0xfa, 0x52, 0x7d, 0x5e, 0x33, 0xa3, 0x91, 0x4d, 0x06, 0x6c, 0x09, 0xd6, 0x36, 0xc4, 0xd5, 0x29, 0x88, 0xa5, 0x3c, 0x1c, 0xd5, 0xb8, 0x0a, 0x8b, 0xed, 0x64, 0xa2, 0x94, 0x6a, 0xa2, 0x63, 0x26, 0x9b, 0xcb, 0xe6, 0x57, 0x22, 0xea, 0xa5, 0x10, 0xf7, 0x81, 0x3c, 0x87, 0xf0, 0x28, 0x37, 0xfc, 0x44, 0xd3, 0xb6, 0x11, 0xbb, 0x91, 0x74, 0x39, 0xab, 0xb9, 0x74, 0x30, 0xf5, 0x89, 0x97, 0xe6, 0xe7, 0xeb, 0x37, 0x2c, 0xf8, 0x55, 0x3c, 0x5b, 0xb0, 0xfc, 0xf2, 0x8b, 0x54, 0xcf, 0x3d, 0xcb, 0xf2, 0xe0, 0x54, 0x5c, 0x5b, 0x5f, 0xdf, 0xf0, 0x5c, 0x0d, 0x3b, 0xb4, 0x0d, 0x76, 0xe8, 0xc9, 0xdb, 0xa1, 0x3d, 0xe5, 0xed, 0xd0, 0xf8, 0xc3, 0x30, 0x39, 0x9e, 0xba, 0x7b, 0x99, 0x77, 0x10, 0x49, 0x26, 0x90, 0x78, 0x73, 0x78, 0x38, 0x2b, 0x38, 0x4a, 0x19, 0x9e, 0xa4, 0x49, 0x8d, 0xca, 0x5d, 0x37, 0xbe, 0xc5, 0x9f, 0x9d, 0xba, 0xa1, 0x71, 0xe3, 0x6d, 0xe9, 0xbf, 0x58, 0xfe, 0x3f, 0x06, 0x7f, 0x19, 0xf9, 0xff, 0xf8, 0x5d, 0x86, 0x9b, 0x51, 0x08, 0xa9, 0x10, 0x1f, 0x9f, 0xc9, 0xcf, 0xf3, 0x3c, 0x4e, 0x04, 0x9e, 0xb9, 0x36, 0x78, 0x9c, 0x3a, 0x69, 0x87, 0x9d, 0x7b, 0x65, 0x93, 0x6e, 0x4c, 0x56, 0x17, 0xc5, 0x54, 0x44, 0x81, 0x4c, 0x47, 0x82, 0x18, 0xc7, 0x0e, 0xb4, 0xd0, 0xe1, 0x84, 0x45, 0x85, 0x22, 0x38, 0x9e, 0x00, 0xc7, 0x13, 0xb2, 0xec, 0x02, 0xe9, 0x8f, 0x27, 0xb4, 0xe1, 0x78, 0xc2, 0x31, 0x8e, 0x27, 0xe4, 0xb1, 0xb8, 0x2a, 0x72, 0xc4, 0x21, 0xa5, 0x4e, 0x2a, 0xd5, 0x92, 0xde, 0xd7, 0x21, 0x07, 0x97, 0xcd, 0x56, 0x27, 0x1c, 0xba, 0x65, 0x1d, 0x95, 0xe8, 0x2a, 0x72, 0x54, 0xc2, 0x90, 0xb5, 0x4d, 0xf5, 0x81, 0x45, 0xed, 0xc7, 0x72, 0xe1, 0x9f, 0x41, 0xd5, 0x54, 0x74, 0x23, 0x29, 0x43, 0xf2, 0x0c, 0x92, 0x67, 0x80, 0xca, 0x4e, 0x16, 0xc5, 0xa5, 0xd2, 0xe5, 0x12, 0x65, 0x95, 0x7b, 0x40, 0x62, 0x6a, 0x0a, 0x09, 0x5a, 0x16, 0x9f, 0x46, 0x37, 0xb2, 0x86, 0x27, 0x88, 0x24, 0x88, 0x24, 0xe0, 0xc9, 0x22, 0x63, 0x08, 0xfa, 0x93, 0x4f, 0x16, 0x7b, 0xa3, 0x37, 0xc6, 0x0e, 0x51, 0x3f, 0x6f, 0x17, 0xee, 0xd7, 0x7d, 0x31, 0xda, 0x9f, 0x10, 0x64, 0xea, 0x00, 0x63, 0x7d, 0x8c, 0x4c, 0x9d, 0xaa, 0x72, 0xb7, 0x91, 0x98, 0xd3, 0x2a, 0x92, 0x98, 0xbb, 0x80, 0xc4, 0x5c, 0x6d, 0x6c, 0xdc, 0xa3, 0x48, 0xb5, 0x32, 0x39, 0x81, 0xae, 0x82, 0x39, 0x81, 0xa5, 0x35, 0x0f, 0x59, 0x81, 0xe2, 0x59, 0x01, 0xad, 0x62, 0x59, 0x81, 0x21, 0x13, 0x15, 0x30, 0x21, 0x13, 0x00, 0x99, 0x80, 0x32, 0x33, 0x01, 0x1d, 0xc8, 0x04, 0x40, 0x26, 0x20, 0x53, 0x26, 0x20, 0x41, 0x0f, 0xd5, 0x2f, 0xfa, 0xdf, 0x3b, 0xd9, 0x42, 0x49, 0x5b, 0xf1, 0x8d, 0x14, 0xeb, 0xaa, 0x40, 0x4c, 0xe3, 0x1d, 0x1f, 0xe5, 0x4f, 0x10, 0x36, 0x50, 0x31, 0x62, 0x27, 0x96, 0x36, 0xa2, 0x6a, 0x6f, 0x85, 0xf8, 0xba, 0xfc, 0x80, 0x76, 0x51, 0x8a, 0xc1, 0xe4, 0xf4, 0xb9, 0x98, 0x20, 0xad, 0x5d, 0x84, 0x90, 0xe3, 0x92, 0x27, 0x4a, 0x66, 0xba, 0xf4, 0xeb, 0xcf, 0xb2, 0xdf, 0x2f, 0x0f, 0xd0, 0x2f, 0x88, 0x70, 0xbb, 0xc4, 0x9d, 0x67, 0x56, 0x03, 0x90, 0xab, 0x3a, 0x45, 0x3f, 0xbe, 0xa7, 0xa0, 0x1f, 0x2f, 0x34, 0x19, 0xf8, 0xee, 0x05, 0x7c, 0xf7, 0x76, 0xc5, 0x7c, 0xf7, 0xb0, 0x40, 0x28, 0x9e, 0xfa, 0x4c, 0x94, 0x9f, 0x24, 0xe0, 0xc7, 0x83, 0x1f, 0x5f, 0xb2, 0x1f, 0x0f, 0x8e, 0x3c, 0x38, 0xf2, 0xd9, 0x1c, 0x79, 0x3c, 0x35, 0x13, 0xb5, 0x51, 0x6d, 0xbc, 0xf9, 0xfc, 0xbe, 0x73, 0x45, 0x7c, 0xf1, 0xbe, 0x43, 0xed, 0x75, 0xcf, 0xc5, 0xe3, 0xd7, 0xab, 0xcd, 0x42, 0xf7, 0xe9, 0x84, 0x28, 0xe2, 0xc1, 0x50, 0x3b, 0x7c, 0x2b, 0x99, 0xc2, 0x6f, 0x5c, 0xfd, 0xdf, 0xff, 0xfe, 0x4f, 0x11, 0x72, 0xd8, 0xfc, 0x63, 0xea, 0xf9, 0x52, 0x1d, 0x5e, 0xad, 0xfe, 0xd6, 0xc0, 0x67, 0xa8, 0x5a, 0x46, 0x3f, 0xa6, 0x00, 0xf0, 0x92, 0xc5, 0xb9, 0x9f, 0x3e, 0x61, 0xc2, 0x68, 0xb5, 0x08, 0x7e, 0x22, 0xa5, 0x42, 0xdd, 0xde, 0x73, 0xfa, 0x61, 0x69, 0xee, 0xd9, 0x98, 0xd8, 0x48, 0x3e, 0x07, 0xc9, 0xe7, 0x78, 0x88, 0xfa, 0x00, 0x7a, 0x4b, 0x1d, 0xf2, 0x02, 0x1c, 0xaa, 0xea, 0xc8, 0x9b, 0x97, 0xce, 0x75, 0x5b, 0x99, 0x53, 0xb3, 0xdc, 0xa2, 0xe7, 0x06, 0xbd, 0xd6, 0xda, 0x4f, 0x54, 0xf9, 0x9a, 0x2b, 0x32, 0x24, 0x15, 0xcd, 0x1d, 0xb1, 0xf0, 0x1c, 0x02, 0xcc, 0x27, 0xbb, 0x8b, 0x05, 0xd5, 0x24, 0x2c, 0xe6, 0xf9, 0xe5, 0x6f, 0x62, 0x72, 0xfb, 0x0a, 0x76, 0x32, 0xd1, 0x0d, 0xcd, 0x43, 0xf2, 0x61, 0xb0, 0x81, 0xc1, 0x06, 0xa6, 0x18, 0x74, 0x54, 0x99, 0xe0, 0x74, 0xbb, 0xa5, 0x60, 0x74, 0x7a, 0xb9, 0xd9, 0x41, 0x88, 0xba, 0x40, 0x88, 0xba, 0x53, 0xb1, 0x10, 0x35, 0x7f, 0x99, 0x11, 0xff, 0x43, 0x27, 0xcf, 0x14, 0x60, 0x66, 0x10, 0x9e, 0x2e, 0x39, 0x3c, 0xdd, 0xee, 0x42, 0x78, 0x1a, 0xc2, 0xd3, 0x59, 0xc2, 0xd3, 0x1a, 0xb4, 0xd1, 0xab, 0x10, 0x3a, 0xac, 0x7d, 0xae, 0x3e, 0x34, 0xec, 0x77, 0xe1, 0x5e, 0xf1, 0x19, 0xf0, 0xd1, 0xe2, 0xdc, 0x2d, 0xa2, 0x1e, 0x92, 0x8d, 0xa7, 0x4d, 0xf0, 0xe8, 0xd5, 0xf4, 0xe8, 0x23, 0x6a, 0x42, 0x72, 0x27, 0x5e, 0x30, 0xc1, 0xea, 0xf0, 0x75, 0x82, 0x45, 0x54, 0x3b, 0xee, 0x0f, 0x0f, 0x9d, 0x59, 0xd4, 0xf3, 0x3d, 0xee, 0xc5, 0x92, 0xaa, 0x9c, 0x3b, 0x6b, 0xc1, 0xb9, 0x33, 0xc8, 0x3d, 0x1d, 0x34, 0x6a, 0xc7, 0x87, 0x30, 0x71, 0x7c, 0x21, 0xed, 0x39, 0xe5, 0x7b, 0x67, 0xf7, 0xc9, 0xe0, 0x09, 0xa2, 0xd9, 0x9d, 0x78, 0x02, 0x84, 0xe9, 0x20, 0x4c, 0x77, 0xaa, 0x79, 0x26, 0xa8, 0x4a, 0x19, 0x65, 0x53, 0x6b, 0x2a, 0x42, 0x57, 0xbf, 0x04, 0x61, 0x24, 0x74, 0xcf, 0x55, 0x1e, 0xc4, 0x07, 0x0b, 0xc4, 0x07, 0xbb, 0xc7, 0x8d, 0x0f, 0x6e, 0x1d, 0x0f, 0x72, 0x89, 0x6c, 0xaf, 0x23, 0x1a, 0x44, 0x52, 0xa3, 0x16, 0x00, 0xd6, 0x42, 0x71, 0xb2, 0xa7, 0x22, 0x37, 0x07, 0xc9, 0xe6, 0xcc, 0x81, 0xbd, 0x79, 0xbe, 0xdb, 0x92, 0xa5, 0xd2, 0x9b, 0x60, 0xcb, 0x12, 0x32, 0x28, 0x2e, 0xe8, 0xe2, 0x0f, 0x29, 0x95, 0xa2, 0x9d, 0xe0, 0x4f, 0x2b, 0x21, 0x45, 0x7d, 0x36, 0x21, 0x88, 0x39, 0xa2, 0x01, 0x99, 0x87, 0x5c, 0xf2, 0xe7, 0x94, 0xba, 0x04, 0xf9, 0x63, 0xcc, 0x1d, 0x62, 0x99, 0x74, 0xa4, 0xe2, 0x53, 0xc9, 0x05, 0xc4, 0x7c, 0x25, 0xef, 0x5b, 0xd2, 0x3b, 0x5b, 0x3e, 0x26, 0xeb, 0xdb, 0x67, 0x15, 0xf3, 0x97, 0xf7, 0x0b, 0xd0, 0x17, 0x1d, 0xce, 0x1b, 0x57, 0x06, 0xb1, 0xfd, 0xdd, 0x3d, 0x11, 0x73, 0xdb, 0x1c, 0x5b, 0x8b, 0x95, 0xce, 0xa9, 0xaf, 0xa2, 0x6a, 0xe9, 0x95, 0xad, 0x5a, 0xa2, 0x07, 0x19, 0xf9, 0xe3, 0x8d, 0x1d, 0x94, 0xf3, 0xea, 0x96, 0x22, 0x49, 0x54, 0x45, 0xf6, 0x40, 0x0f, 0xb4, 0x91, 0x08, 0x86, 0xb9, 0x38, 0x6a, 0xf7, 0xcd, 0xad, 0x82, 0x8a, 0xa8, 0x9f, 0xf4, 0x22, 0xf9, 0x73, 0xf0, 0xe2, 0xf1, 0xc4, 0xe2, 0x18, 0x26, 0x9e, 0x59, 0xb6, 0x96, 0x1a, 0x0f, 0xf4, 0x21, 0x15, 0x05, 0xe3, 0x76, 0xbc, 0x77, 0xcc, 0x42, 0x27, 0xac, 0xdb, 0xee, 0xc5, 0x7a, 0x59, 0x36, 0x94, 0xfa, 0x16, 0xd1, 0xb9, 0x22, 0xd5, 0x0d, 0x36, 0x99, 0x48, 0x85, 0x5a, 0xcd, 0x15, 0xdb, 0x08, 0xf7, 0x77, 0x73, 0xdc, 0x19, 0x86, 0xf9, 0xf3, 0xdc, 0x2a, 0xc3, 0xfb, 0x79, 0x6e, 0x5c, 0x84, 0xf5, 0x33, 0xdd, 0x9b, 0xbe, 0xfa, 0x69, 0x19, 0xc1, 0xe8, 0x62, 0xc7, 0x66, 0x98, 0x6b, 0x2e, 0x6a, 0x7d, 0x55, 0xdf, 0xde, 0x20, 0x4f, 0x7c, 0x07, 0x12, 0x22, 0x7e, 0xf7, 0x8b, 0xfe, 0xe5, 0xf3, 0x87, 0x4f, 0x0f, 0xf7, 0x5f, 0xf5, 0x5f, 0x3f, 0x3f, 0x7c, 0xf8, 0xfc, 0x49, 0xff, 0xf5, 0xba, 0xff, 0x0b, 0xfa, 0x17, 0x8a, 0xf8, 0xe6, 0x3d, 0xbf, 0x5a, 0xff, 0xfa, 0xe6, 0xdb, 0xc3, 0x03, 0xff, 0xf8, 0xcb, 0xd7, 0xfb, 0x7e, 0x3f, 0xe2, 0xf3, 0xaf, 0xf7, 0x1f, 0xef, 0xaf, 0xfb, 0xf7, 0xf2, 0x9b, 0x9a, 0xa4, 0xfe, 0xea, 0xe7, 0xe6, 0x54, 0x6d, 0x21, 0xab, 0x93, 0x94, 0xd3, 0x3d, 0x62, 0xf1, 0xef, 0xf5, 0xc1, 0x5c, 0xca, 0x66, 0x9d, 0x53, 0x74, 0x55, 0x5c, 0xe4, 0x62, 0x1b, 0x53, 0x49, 0x9b, 0x54, 0x29, 0x1b, 0x56, 0x59, 0x9b, 0x57, 0x39, 0x1b, 0x59, 0x96, 0x54, 0x6d, 0xb7, 0xf6, 0xa9, 0xda, 0x8e, 0x2a, 0xc9, 0xaa, 0xaa, 0x8a, 0x68, 0xc6, 0xb4, 0x32, 0x57, 0x94, 0xe8, 0x96, 0x1b, 0x31, 0xd8, 0xe0, 0xfe, 0xa9, 0x07, 0x99, 0x64, 0x25, 0xb3, 0x4c, 0xf7, 0xb2, 0x64, 0x85, 0x94, 0x42, 0x59, 0xbd, 0x62, 0xb7, 0xed, 0x5a, 0xb7, 0x84, 0x4f, 0x75, 0xa5, 0x11, 0x12, 0xa9, 0xa7, 0x98, 0x3e, 0xa9, 0x1f, 0xa4, 0xb0, 0x16, 0x7e, 0xc5, 0xee, 0x14, 0x4f, 0x5f, 0xfa, 0x00, 0x68, 0x30, 0x47, 0x62, 0x6b, 0x83, 0x24, 0x8f, 0x42, 0x20, 0xf0, 0xa9, 0x6b, 0x41, 0xa4, 0xa5, 0xbe, 0x91, 0x96, 0x36, 0x68, 0x44, 0x65, 0x22, 0x2d, 0x5c, 0x14, 0xf5, 0x31, 0xb6, 0x4d, 0x4b, 0x3e, 0x16, 0xe2, 0x2c, 0x10, 0x67, 0x81, 0x38, 0xcb, 0x51, 0xe3, 0x2c, 0xdb, 0x1e, 0x1e, 0x19, 0xe8, 0x03, 0x3e, 0x39, 0x1e, 0x71, 0xc1, 0xc5, 0x03, 0x17, 0x4f, 0xc5, 0xa6, 0x47, 0xda, 0x6b, 0x88, 0x25, 0x56, 0x2a, 0x96, 0x48, 0x06, 0xe8, 0x26, 0x50, 0x39, 0xe8, 0xef, 0x10, 0x49, 0x84, 0x30, 0xcb, 0x01, 0x50, 0xaa, 0x97, 0xe0, 0x54, 0x1c, 0x25, 0xcc, 0xf2, 0xed, 0xeb, 0x47, 0xf4, 0x3e, 0x74, 0x00, 0x20, 0xc8, 0xa2, 0x50, 0x31, 0x58, 0x89, 0x89, 0xaa, 0x43, 0x98, 0xe5, 0x48, 0x61, 0x8c, 0xfa, 0x75, 0x66, 0x3a, 0x52, 0x4b, 0xee, 0x04, 0x3e, 0xaa, 0x45, 0x68, 0x00, 0x5c, 0x6e, 0x70, 0xb9, 0x33, 0xd9, 0x22, 0x3a, 0xb5, 0xa9, 0x4f, 0xb1, 0x95, 0x8a, 0xf5, 0x6b, 0xe3, 0x9a, 0xc4, 0xdb, 0x02, 0x1f, 0x82, 0xe1, 0xa2, 0x07, 0x31, 0x5c, 0x30, 0xf7, 0x4f, 0x03, 0x38, 0x50, 0x25, 0xde, 0x86, 0x66, 0xf1, 0x35, 0x08, 0xd2, 0x84, 0x20, 0xfb, 0x09, 0x7e, 0xe6, 0x5b, 0xa9, 0x3d, 0xf2, 0xc7, 0xea, 0x2b, 0x46, 0xa9, 0x10, 0xd1, 0xaf, 0xf8, 0x19, 0x7d, 0x94, 0x23, 0x06, 0xdd, 0x58, 0x4a, 0xbe, 0xb9, 0x6a, 0x9c, 0x1e, 0x59, 0x17, 0xbd, 0xa2, 0xdc, 0x5e, 0x8f, 0xca, 0xe8, 0x27, 0x50, 0x1a, 0xbd, 0x53, 0xff, 0x12, 0x34, 0xe6, 0x9c, 0x0f, 0x8b, 0x1a, 0xd8, 0xb2, 0xe6, 0xba, 0x47, 0xfc, 0x1a, 0x9b, 0x04, 0xc9, 0x6d, 0xcf, 0xdb, 0xd5, 0xa8, 0x3e, 0xd3, 0x86, 0xe2, 0x33, 0xb5, 0x91, 0xee, 0x9a, 0x17, 0x54, 0x7f, 0x29, 0xda, 0xea, 0x9b, 0x6a, 0x77, 0xab, 0x01, 0x37, 0xf9, 0x80, 0xc1, 0x97, 0x3d, 0x25, 0x6e, 0x0f, 0x6c, 0xb5, 0x01, 0x19, 0xe3, 0x27, 0xca, 0xa6, 0xee, 0xa9, 0x38, 0x26, 0x37, 0x8b, 0x01, 0x03, 0x9f, 0x97, 0x92, 0xa2, 0xa9, 0x83, 0xcd, 0xa6, 0x28, 0xab, 0xaf, 0x9b, 0x6b, 0x5a, 0x45, 0xec, 0x35, 0xed, 0x12, 0x0c, 0xb6, 0xda, 0x18, 0x6c, 0x6d, 0x40, 0x5f, 0x14, 0x40, 0x5f, 0x9c, 0x2b, 0x58, 0x22, 0x4c, 0xee, 0x91, 0x80, 0x68, 0x28, 0x80, 0x68, 0x68, 0x55, 0x0c, 0xd1, 0x10, 0x5f, 0xdb, 0x05, 0x30, 0x0d, 0xc1, 0x65, 0x0f, 0x30, 0x0d, 0xa9, 0x30, 0x0d, 0xc9, 0x9c, 0x04, 0xa8, 0x06, 0x40, 0x35, 0x94, 0x87, 0x6a, 0x50, 0xa2, 0x75, 0x6c, 0x94, 0x2b, 0x12, 0x0a, 0x51, 0x95, 0x0a, 0x97, 0x97, 0x19, 0x35, 0xee, 0x54, 0xc3, 0x0b, 0xe9, 0x80, 0x13, 0x02, 0x4e, 0xc8, 0x81, 0x30, 0x21, 0x5c, 0x86, 0xb8, 0xea, 0x4d, 0xb9, 0x3b, 0x02, 0x38, 0xe4, 0x84, 0x13, 0x0e, 0x31, 0xd5, 0xee, 0xdd, 0xa9, 0x5d, 0x9c, 0x89, 0xe2, 0x7d, 0xbb, 0xaf, 0x53, 0x1b, 0x61, 0x14, 0x3c, 0x00, 0x85, 0x0f, 0x40, 0xd4, 0xf6, 0x7c, 0x82, 0x4d, 0xc4, 0x86, 0xc8, 0x1f, 0x13, 0xe4, 0x8d, 0xb9, 0x3a, 0xad, 0x5a, 0x15, 0xfc, 0xc2, 0xf1, 0x31, 0x28, 0x83, 0x0f, 0xd8, 0xbf, 0xf2, 0xf2, 0x25, 0x95, 0xd4, 0xf3, 0x7b, 0x4c, 0x97, 0xdc, 0x06, 0x1a, 0xe3, 0x36, 0x18, 0x2f, 0x64, 0x4b, 0x4e, 0x23, 0x2b, 0x58, 0x41, 0xff, 0x64, 0xdf, 0x6d, 0xc5, 0x42, 0x0e, 0x97, 0x6d, 0x11, 0xa0, 0x04, 0x9c, 0xa2, 0x59, 0xc1, 0x68, 0xd3, 0x6b, 0xc1, 0xed, 0x16, 0x13, 0x41, 0x14, 0x69, 0x05, 0x95, 0x6a, 0x7b, 0x7d, 0xf3, 0x08, 0x12, 0x0d, 0xc1, 0x39, 0xf5, 0x6a, 0xda, 0x58, 0xd0, 0x69, 0x48, 0x25, 0xa1, 0xec, 0x9c, 0x4e, 0xa7, 0x21, 0xe8, 0x6f, 0x54, 0x28, 0x77, 0x79, 0xa1, 0x60, 0xee, 0x32, 0xdc, 0xc7, 0x21, 0x7b, 0x59, 0x20, 0x7b, 0xa9, 0x1d, 0x37, 0x7b, 0xd9, 0x37, 0x5c, 0x66, 0x59, 0xc4, 0xfc, 0x9d, 0xab, 0x6e, 0x36, 0x0b, 0x0f, 0x16, 0x84, 0x9f, 0xcd, 0xe4, 0x67, 0xda, 0x81, 0x13, 0x99, 0x79, 0x6e, 0x5f, 0x36, 0x37, 0xca, 0x95, 0x05, 0x2d, 0xd4, 0xdd, 0xc8, 0x1b, 0x63, 0x3e, 0x49, 0xba, 0x50, 0x12, 0x8d, 0x2b, 0x6a, 0x97, 0x9d, 0x42, 0xfd, 0x8d, 0x92, 0x99, 0xc3, 0xdc, 0x30, 0xda, 0xfe, 0x14, 0x5e, 0x69, 0x75, 0x53, 0x26, 0x1b, 0xb3, 0x64, 0x33, 0x9b, 0xec, 0x2b, 0x83, 0xba, 0xe5, 0x5e, 0x85, 0x35, 0xa9, 0xb8, 0x69, 0x32, 0x64, 0x75, 0x4e, 0xa4, 0x66, 0x62, 0xd2, 0xec, 0x3a, 0xfd, 0xef, 0xe8, 0x1a, 0x3d, 0x71, 0x3b, 0xd0, 0x5c, 0x06, 0x2c, 0x65, 0xab, 0x2b, 0xfe, 0xf6, 0x88, 0x53, 0x10, 0xf1, 0xcc, 0x70, 0x22, 0xd1, 0x64, 0xea, 0xf9, 0x68, 0x40, 0x90, 0x6c, 0x30, 0x45, 0x4c, 0x34, 0xe6, 0xff, 0xbe, 0x42, 0x1f, 0x7c, 0xd1, 0x10, 0xcb, 0x61, 0x9e, 0x9c, 0x32, 0xe4, 0x33, 0xc4, 0xf5, 0xba, 0x8c, 0x74, 0x8a, 0x27, 0x8b, 0xa8, 0x27, 0x46, 0x9e, 0x43, 0x0c, 0x3a, 0xa4, 0xc6, 0x92, 0x94, 0x37, 0x35, 0xc6, 0x08, 0x7b, 0xe8, 0xc7, 0x21, 0x75, 0xc9, 0x90, 0x3d, 0xff, 0x88, 0xc4, 0x83, 0x7f, 0x1c, 0x31, 0x36, 0xb2, 0x48, 0xd3, 0x18, 0xbb, 0x6c, 0x42, 0x7e, 0x44, 0xcc, 0x5d, 0x27, 0x27, 0x7b, 0x1d, 0x71, 0x1a, 0xe1, 0x6b, 0xf2, 0x9b, 0x9f, 0x9b, 0xb3, 0xd9, 0xac, 0x19, 0xd2, 0x0c, 0x49, 0x3c, 0x9b, 0xa3, 0xa6, 0x78, 0xef, 0x1f, 0x5f, 0xa1, 0x07, 0x7e, 0xd3, 0x80, 0xf0, 0x77, 0x5e, 0x0c, 0x6c, 0x82, 0xe7, 0xe2, 0xfd, 0x4d, 0x3a, 0x1c, 0xf2, 0x57, 0xb7, 0x7d, 0x64, 0x12, 0xfe, 0x4b, 0x91, 0xda, 0x17, 0xdd, 0x49, 0x65, 0x70, 0x76, 0xee, 0xf9, 0x64, 0xf2, 0x2a, 0xef, 0x2c, 0xcf, 0x5c, 0xec, 0x14, 0x5b, 0xa7, 0xcc, 0x16, 0x79, 0x5c, 0x3f, 0xae, 0x94, 0x04, 0x8e, 0x67, 0x65, 0x9d, 0x44, 0x47, 0xb0, 0xa2, 0x80, 0x22, 0xd1, 0x74, 0x5d, 0x8f, 0x6a, 0x0f, 0x06, 0x90, 0xa2, 0x65, 0xb5, 0x57, 0x0d, 0x30, 0x45, 0xe9, 0x30, 0x45, 0x3b, 0x98, 0x09, 0x50, 0x45, 0x80, 0x2a, 0xaa, 0x7f, 0xad, 0x94, 0xd8, 0xe8, 0xa3, 0xcd, 0x4d, 0x8d, 0x49, 0x6a, 0x21, 0xc8, 0x66, 0x43, 0xf5, 0xc7, 0x6c, 0x86, 0xc2, 0x47, 0x60, 0xd1, 0x37, 0x94, 0xdb, 0x18, 0xd8, 0x62, 0x23, 0x34, 0x13, 0x41, 0x6f, 0xf1, 0x4c, 0x61, 0x63, 0xf0, 0x3b, 0x20, 0x26, 0x09, 0x31, 0x49, 0xa8, 0xf0, 0x58, 0xcd, 0x38, 0x9d, 0xa6, 0x4e, 0x9c, 0xee, 0x56, 0x68, 0x39, 0x74, 0x6d, 0x08, 0x55, 0x94, 0x8a, 0x72, 0x3a, 0x8c, 0xdc, 0x16, 0x24, 0x6f, 0x46, 0xe4, 0x0e, 0x2a, 0xfc, 0xc7, 0x29, 0xbf, 0x1c, 0x30, 0xcb, 0x4c, 0x42, 0x03, 0xa6, 0xc1, 0xe2, 0x41, 0xf3, 0xf2, 0xa4, 0x81, 0x16, 0xef, 0x8a, 0xcb, 0x1d, 0x75, 0x2a, 0xd8, 0x22, 0x31, 0xfe, 0x98, 0xbd, 0x23, 0x6e, 0xe1, 0x4e, 0xc6, 0xb5, 0xe9, 0x90, 0xbb, 0xeb, 0xd0, 0xab, 0x08, 0x34, 0x84, 0xe1, 0xf1, 0x7d, 0x76, 0x37, 0x4e, 0xb5, 0x8e, 0xd5, 0x6e, 0x8a, 0x8c, 0x1d, 0x87, 0x60, 0x3e, 0x8d, 0x06, 0x81, 0x6e, 0xc8, 0x7b, 0xe8, 0x86, 0xdc, 0x3b, 0x68, 0x37, 0xe4, 0x9a, 0xb4, 0x52, 0x1e, 0x07, 0x3b, 0x16, 0x84, 0x53, 0xe2, 0xc2, 0x29, 0xe7, 0x10, 0x4d, 0x49, 0xa5, 0xbc, 0x12, 0x19, 0x09, 0x42, 0x29, 0x10, 0x4a, 0x81, 0x03, 0x5a, 0xc9, 0xe9, 0xb9, 0x40, 0x80, 0x74, 0xfe, 0x48, 0x83, 0xab, 0x1d, 0x3c, 0x3a, 0x81, 0x3a, 0xb6, 0x5f, 0x96, 0x63, 0x05, 0xe4, 0x63, 0x75, 0x03, 0x1a, 0x25, 0xd7, 0x69, 0xac, 0x2a, 0x9f, 0x17, 0x25, 0x15, 0x5d, 0x59, 0xb1, 0x5d, 0x28, 0x6a, 0x47, 0x47, 0x54, 0x74, 0xac, 0x68, 0x43, 0xad, 0xdd, 0x8a, 0x71, 0x76, 0xac, 0xf6, 0xa6, 0xcf, 0xc4, 0xf2, 0x4e, 0xa1, 0x02, 0x39, 0xfa, 0x22, 0x87, 0xaa, 0xb6, 0xe2, 0x6e, 0x83, 0xe2, 0xde, 0x56, 0xdc, 0x55, 0x62, 0xf1, 0xfd, 0x28, 0xed, 0x4e, 0x65, 0x19, 0xb2, 0x03, 0xa9, 0x91, 0x2a, 0xa4, 0x46, 0x2e, 0x15, 0x84, 0x30, 0xbf, 0x97, 0xe2, 0x0d, 0x08, 0xe6, 0xfa, 0x22, 0x98, 0xb7, 0x82, 0x7b, 0x9e, 0xec, 0xc8, 0xae, 0x4f, 0x98, 0x4d, 0x65, 0xd6, 0x17, 0x82, 0x7c, 0x31, 0x41, 0xbe, 0xce, 0x25, 0x44, 0xf9, 0xd2, 0x44, 0xf9, 0xda, 0x10, 0xdf, 0x83, 0xf8, 0x1e, 0xc4, 0xf7, 0xf2, 0x98, 0x0c, 0xed, 0xd7, 0xea, 0x7b, 0x85, 0xbf, 0x06, 0x1b, 0x0d, 0x9c, 0x63, 0x56, 0xd2, 0x29, 0x8c, 0x2c, 0x29, 0x36, 0x66, 0x02, 0x3f, 0x98, 0x6c, 0x61, 0xd4, 0x8e, 0xc3, 0x97, 0x55, 0xc5, 0xe4, 0xa8, 0x74, 0x8b, 0x7a, 0xbe, 0xee, 0xf1, 0xbf, 0xc8, 0x71, 0x2b, 0x8c, 0x19, 0xfc, 0xd3, 0x45, 0x95, 0x31, 0x51, 0xfc, 0x4b, 0x6b, 0xa4, 0xac, 0x1c, 0xf6, 0x52, 0xc4, 0xb8, 0xdd, 0xc0, 0x05, 0xac, 0x97, 0x65, 0x34, 0xe9, 0xa5, 0x2c, 0x03, 0x7e, 0x2a, 0x01, 0x49, 0xb5, 0xf0, 0x22, 0xda, 0x50, 0xde, 0xec, 0x64, 0x83, 0xaa, 0x9d, 0x56, 0x3d, 0x15, 0x0a, 0xc4, 0x84, 0x8e, 0xc3, 0x2e, 0x1a, 0xb0, 0x8b, 0xf2, 0x31, 0x6d, 0x65, 0x42, 0x88, 0x6d, 0x15, 0x63, 0x88, 0x7d, 0x19, 0x70, 0x42, 0xa1, 0xe1, 0x04, 0xb1, 0x44, 0x85, 0x6a, 0xb9, 0xcf, 0xa8, 0x19, 0xdb, 0x53, 0x11, 0x42, 0x88, 0xb6, 0x7f, 0x01, 0x11, 0xc4, 0x34, 0x11, 0xc4, 0x44, 0x3e, 0x82, 0x30, 0x22, 0x84, 0x11, 0x21, 0x8c, 0x98, 0x0c, 0x34, 0x91, 0xf2, 0x03, 0x28, 0x41, 0x88, 0x2b, 0xaa, 0x8b, 0xa5, 0x0a, 0x59, 0x1c, 0xa0, 0x54, 0x2a, 0x71, 0x37, 0x40, 0xa9, 0xd6, 0xa0, 0x54, 0x15, 0x55, 0xe2, 0xfb, 0x41, 0x53, 0x75, 0x01, 0x02, 0x7b, 0x6a, 0x8c, 0xad, 0x3e, 0x44, 0xb0, 0x07, 0xe1, 0x60, 0x88, 0xef, 0x25, 0x59, 0x31, 0xaf, 0x15, 0x0c, 0xef, 0xfd, 0x2e, 0xa4, 0x1b, 0xa2, 0x7a, 0x05, 0xa2, 0x7a, 0xed, 0x8a, 0x45, 0xf5, 0x56, 0xa7, 0xe6, 0x21, 0xb0, 0x17, 0x13, 0xd8, 0x03, 0x68, 0x60, 0xba, 0xc0, 0xde, 0x0e, 0x56, 0x82, 0xd8, 0x5e, 0xad, 0x63, 0x7b, 0xd9, 0xea, 0x0a, 0xc7, 0x2e, 0x76, 0x29, 0x54, 0x20, 0xce, 0x58, 0xbe, 0x35, 0x1f, 0x57, 0x26, 0x2e, 0xac, 0x6d, 0xcb, 0x5f, 0xc8, 0xa5, 0xdf, 0x19, 0x77, 0x56, 0x2d, 0x6b, 0x5e, 0x6a, 0xa9, 0xb8, 0xdb, 0x45, 0xf5, 0xdc, 0xf7, 0x6b, 0x4f, 0x80, 0x76, 0x60, 0xe9, 0x43, 0x3e, 0x85, 0xc2, 0x86, 0xd8, 0xf0, 0xf9, 0x6b, 0x15, 0x9f, 0xab, 0x62, 0xf5, 0xe5, 0x38, 0x3d, 0x8f, 0x8f, 0x05, 0x5b, 0x4b, 0x8b, 0x69, 0x34, 0xb2, 0x08, 0xdf, 0x5c, 0xc6, 0x5c, 0x59, 0x58, 0xc4, 0x4d, 0xe4, 0x46, 0x3d, 0xfc, 0xb5, 0x6e, 0x0c, 0x1a, 0xc8, 0x9b, 0x89, 0x22, 0x3a, 0xa2, 0x8e, 0x12, 0xdb, 0xdd, 0x86, 0x13, 0xe2, 0xbb, 0xc7, 0x89, 0xef, 0xce, 0xd3, 0xda, 0x0a, 0x0a, 0x44, 0x77, 0xff, 0x0b, 0x7d, 0x09, 0xc7, 0x0a, 0xe1, 0xdd, 0x54, 0xcc, 0xad, 0x29, 0x10, 0x05, 0x7b, 0xae, 0x1a, 0x83, 0xef, 0x27, 0x06, 0x76, 0x0e, 0x5d, 0x5e, 0xeb, 0xc0, 0x8d, 0xf3, 0xd3, 0xe0, 0xc6, 0x0b, 0xf5, 0x23, 0xb2, 0x75, 0x6f, 0xf0, 0xf8, 0x7c, 0x42, 0x1b, 0xff, 0x7f, 0x9e, 0xc8, 0xc6, 0xdf, 0x82, 0x86, 0xda, 0x91, 0x0e, 0xf3, 0x13, 0x1f, 0x08, 0xf7, 0x86, 0xf6, 0xe6, 0x2e, 0xff, 0xb6, 0xa4, 0x0f, 0xce, 0x32, 0x38, 0xcb, 0x49, 0xce, 0xf2, 0x8a, 0x13, 0x6b, 0xe3, 0x2a, 0x9f, 0x08, 0x58, 0x04, 0xba, 0x52, 0x56, 0xa8, 0xda, 0x7d, 0x4b, 0xc1, 0x84, 0xed, 0xc2, 0x04, 0x81, 0x9c, 0x6d, 0x81, 0x9c, 0x6d, 0xa7, 0x62, 0x39, 0x5b, 0xbe, 0xd2, 0x1e, 0xe4, 0x6b, 0x63, 0xf3, 0xb5, 0xaf, 0x21, 0x5f, 0x9b, 0x2a, 0x5f, 0x9b, 0xc0, 0x46, 0x90, 0xab, 0x85, 0x5c, 0x2d, 0xe4, 0x6a, 0x2b, 0x9b, 0xab, 0xdd, 0x8a, 0xab, 0x88, 0x26, 0x16, 0x0e, 0x3b, 0x01, 0xac, 0xfc, 0xc2, 0x9e, 0x11, 0x5d, 0x54, 0x1f, 0xb8, 0xfe, 0x82, 0x4a, 0x33, 0x4a, 0x66, 0x0c, 0xa3, 0x2a, 0xcd, 0x28, 0xc6, 0xe3, 0xcb, 0x12, 0x33, 0xfc, 0x7f, 0xda, 0x71, 0xcb, 0xca, 0x2c, 0x4a, 0xca, 0x68, 0xbb, 0xc3, 0x00, 0x92, 0x6c, 0xe1, 0xda, 0x2e, 0xa2, 0x76, 0x8d, 0xe4, 0x49, 0xa8, 0xec, 0x72, 0x2a, 0x02, 0x1d, 0x1d, 0x2c, 0x0d, 0x2c, 0x8c, 0x34, 0x96, 0x68, 0xb6, 0x6d, 0xe2, 0x5e, 0xd2, 0x95, 0x3b, 0x04, 0x04, 0x47, 0x0f, 0x14, 0x1c, 0x3d, 0xcd, 0x0e, 0x93, 0x6a, 0x24, 0x2d, 0xbc, 0xb1, 0xb0, 0xd2, 0xf9, 0xab, 0x59, 0x7b, 0x6a, 0x05, 0x1b, 0xd0, 0x16, 0x02, 0x09, 0xf2, 0x08, 0xf2, 0x08, 0x78, 0x8d, 0x34, 0xf2, 0x18, 0x34, 0x80, 0xf4, 0x19, 0xb3, 0x7c, 0xea, 0x94, 0x2a, 0x92, 0x77, 0xd4, 0x73, 0x2c, 0x3c, 0x47, 0x41, 0x7f, 0x46, 0x6a, 0xa3, 0x87, 0xe0, 0x21, 0xd0, 0x8c, 0x19, 0x44, 0x73, 0x7f, 0x5b, 0x65, 0xfb, 0x74, 0x52, 0x71, 0xca, 0x24, 0xc5, 0xba, 0x3d, 0x05, 0x93, 0x62, 0xc2, 0x2d, 0x80, 0x84, 0x58, 0x95, 0xba, 0x38, 0x17, 0x4c, 0x88, 0x91, 0x67, 0xbe, 0xdc, 0x90, 0x12, 0x8b, 0x4f, 0x89, 0xd5, 0x30, 0xb7, 0x7d, 0x9c, 0x9c, 0x58, 0x22, 0x27, 0x41, 0x56, 0x0c, 0xb2, 0x62, 0x90, 0x15, 0xab, 0x6c, 0x56, 0x2c, 0x12, 0xfb, 0x6e, 0x91, 0x27, 0xae, 0x70, 0xd9, 0x50, 0x97, 0x06, 0x81, 0x83, 0x5d, 0x62, 0x1b, 0x73, 0xa5, 0x61, 0xf0, 0x97, 0x50, 0x01, 0xaa, 0x62, 0x4e, 0xfe, 0x56, 0xba, 0x16, 0xdb, 0x74, 0x82, 0x45, 0x1a, 0x93, 0x3b, 0xa6, 0xdc, 0x0f, 0x57, 0x3f, 0x6d, 0x7b, 0xbd, 0x18, 0x30, 0xba, 0x13, 0x03, 0x46, 0x7f, 0xe5, 0x06, 0xb4, 0xf1, 0x37, 0xb5, 0x73, 0xb7, 0x1a, 0x1c, 0xfa, 0x78, 0xc9, 0xed, 0xcc, 0xa5, 0xa2, 0xdc, 0xd9, 0x69, 0x9c, 0xff, 0x58, 0xf1, 0xfc, 0xe7, 0xd5, 0xb0, 0x81, 0xe5, 0x15, 0x08, 0x15, 0xa5, 0xb3, 0x3c, 0xaa, 0xa9, 0xe4, 0xf7, 0x63, 0x73, 0xbc, 0x86, 0x63, 0xc9, 0x35, 0x40, 0xd0, 0x28, 0xad, 0x88, 0xd7, 0xf1, 0x34, 0xdd, 0x6a, 0xe0, 0x69, 0xba, 0x80, 0xa7, 0xa9, 0x8d, 0x78, 0xb7, 0x95, 0xc8, 0x1b, 0x06, 0x12, 0x4e, 0x4c, 0xdd, 0x99, 0x5a, 0x96, 0xc9, 0x66, 0x76, 0xa3, 0x7c, 0x8b, 0x86, 0x98, 0xe8, 0x4b, 0x48, 0x1d, 0x72, 0xf9, 0x90, 0x30, 0x04, 0x6c, 0x4d, 0xac, 0xe3, 0x53, 0xe5, 0xd8, 0xd3, 0x1e, 0x1d, 0x9f, 0x8f, 0x62, 0xd8, 0x12, 0xa0, 0xbd, 0x36, 0x6c, 0x70, 0x7c, 0x54, 0x8c, 0x6c, 0xc5, 0xc1, 0x3a, 0x6d, 0xc1, 0x0e, 0x45, 0xd9, 0x3e, 0x01, 0xde, 0x29, 0xe9, 0x97, 0xc6, 0x5f, 0xb0, 0x15, 0xc1, 0x56, 0x84, 0xe0, 0x18, 0xb9, 0x6a, 0xd8, 0x15, 0x4d, 0x53, 0x10, 0xbb, 0x72, 0x2f, 0x13, 0xd4, 0x80, 0x5e, 0x29, 0x80, 0x5e, 0xe9, 0x95, 0x8d, 0x5e, 0x89, 0x1b, 0x64, 0xfc, 0x00, 0x5f, 0xbe, 0xde, 0xaa, 0x2a, 0x52, 0x82, 0x1f, 0x1a, 0xf3, 0x62, 0x91, 0x2f, 0xb5, 0x21, 0x48, 0x51, 0x88, 0xee, 0x44, 0xf1, 0xb1, 0x07, 0x7a, 0x18, 0xba, 0x77, 0x1c, 0x82, 0x39, 0x37, 0x1a, 0x51, 0x0d, 0x4a, 0x72, 0x8b, 0x50, 0x11, 0xd1, 0xc9, 0xe0, 0xad, 0x2e, 0xdf, 0x3d, 0x69, 0x4a, 0x0f, 0xb2, 0x72, 0x11, 0xfc, 0x88, 0x07, 0xfa, 0x90, 0x5a, 0xd6, 0xce, 0x11, 0x67, 0x5f, 0xf4, 0xdd, 0x2b, 0xfd, 0x02, 0xf3, 0x62, 0x30, 0x8b, 0xb9, 0x5e, 0x55, 0x17, 0x38, 0x3d, 0x9e, 0xa5, 0x00, 0x86, 0x25, 0x37, 0x6e, 0xa5, 0x08, 0x56, 0x25, 0x3f, 0xb2, 0x24, 0x3f, 0x9a, 0xa4, 0x10, 0x82, 0xa4, 0x0c, 0xa0, 0x47, 0x21, 0x9c, 0x5f, 0x2c, 0xa7, 0x16, 0xde, 0xd1, 0x6b, 0x86, 0xf3, 0x7b, 0x21, 0xc1, 0xc3, 0x41, 0xf2, 0xd4, 0x54, 0xd6, 0xe0, 0xc9, 0x0e, 0x56, 0x2b, 0x01, 0xa8, 0x56, 0x18, 0xa4, 0x56, 0x06, 0x40, 0xad, 0x38, 0x38, 0xad, 0x38, 0x30, 0xad, 0x38, 0x28, 0xad, 0x14, 0x40, 0x5a, 0x99, 0xf8, 0xb1, 0x3c, 0x10, 0xd0, 0x3e, 0x71, 0xb8, 0x9d, 0x20, 0x9c, 0x59, 0x29, 0x51, 0x63, 0x6f, 0x71, 0xad, 0xd5, 0x07, 0x07, 0x9a, 0xc6, 0xaf, 0x4e, 0xe7, 0x53, 0x97, 0xe3, 0x4f, 0x97, 0x12, 0xd6, 0x7d, 0x49, 0x24, 0xec, 0x1c, 0xdc, 0x4e, 0x3b, 0x25, 0x3b, 0xc7, 0xbb, 0xd3, 0x1b, 0xce, 0xc3, 0x4e, 0x51, 0x99, 0xd7, 0x40, 0x3b, 0x1b, 0x63, 0x32, 0x21, 0xf5, 0x06, 0x17, 0xaf, 0x25, 0x59, 0x7b, 0x7b, 0xef, 0x48, 0x91, 0x98, 0x5c, 0xed, 0xa5, 0xa8, 0x59, 0x98, 0x29, 0xbf, 0x59, 0x3c, 0xa9, 0x9a, 0x3e, 0xa1, 0x5a, 0x4a, 0x18, 0xa6, 0x14, 0x89, 0xd6, 0xca, 0x90, 0xe8, 0x56, 0xb5, 0x25, 0x72, 0x2b, 0x31, 0x63, 0x4c, 0x5d, 0x8f, 0xb9, 0x81, 0x54, 0xd6, 0x59, 0x1c, 0x13, 0xaa, 0xc4, 0xca, 0x11, 0xa2, 0x5b, 0x31, 0xc2, 0xbc, 0xd4, 0x33, 0xa6, 0x5d, 0xea, 0xb4, 0x05, 0x75, 0xab, 0xbe, 0x85, 0xf0, 0x65, 0xdb, 0x48, 0xab, 0x88, 0x0f, 0x06, 0xf2, 0x83, 0x90, 0x79, 0x8f, 0xcc, 0xb6, 0x45, 0xc8, 0x14, 0xcc, 0x6c, 0x6c, 0x91, 0x1b, 0x0d, 0x70, 0xe3, 0x8a, 0xff, 0xfb, 0xd7, 0xd6, 0x7f, 0xf0, 0xff, 0xfe, 0x56, 0x29, 0x6e, 0xd5, 0x4e, 0x9d, 0x5b, 0x83, 0x5d, 0x14, 0x78, 0xf5, 0x54, 0x78, 0xb5, 0x5d, 0x63, 0x5e, 0x1d, 0xf0, 0x57, 0x02, 0x5e, 0x3d, 0x1d, 0x5e, 0xed, 0xd4, 0xcc, 0x6c, 0x15, 0xba, 0x54, 0x65, 0xa3, 0x55, 0x38, 0x79, 0x60, 0xb2, 0xd6, 0x53, 0xb1, 0x6e, 0x31, 0xab, 0x50, 0xa6, 0x23, 0x97, 0x4d, 0x6d, 0x53, 0x65, 0x96, 0xbd, 0x59, 0x8e, 0x12, 0x18, 0x57, 0x11, 0x2d, 0x3b, 0x98, 0x52, 0xcb, 0xa7, 0xb6, 0xa2, 0xfc, 0x2a, 0x06, 0xd7, 0xa4, 0x36, 0xea, 0x07, 0xc1, 0x48, 0xe0, 0xd7, 0xe3, 0x05, 0xb3, 0x2a, 0x83, 0x93, 0x6a, 0x2b, 0x88, 0x93, 0x7a, 0xc7, 0x5c, 0x12, 0x2a, 0x66, 0x51, 0x09, 0xf4, 0xa5, 0x9e, 0x06, 0x04, 0x55, 0x11, 0x04, 0x55, 0xab, 0x62, 0xf5, 0x7f, 0x1c, 0x6c, 0x11, 0xdf, 0x27, 0x00, 0x0c, 0x78, 0x09, 0x0c, 0x48, 0x9e, 0x18, 0x80, 0x05, 0x54, 0x1e, 0x16, 0x50, 0xdf, 0xa4, 0x7e, 0x09, 0xa6, 0x58, 0xb7, 0x5b, 0x67, 0x23, 0xac, 0x4a, 0xe5, 0x86, 0x92, 0x37, 0x4c, 0x6f, 0x82, 0x2d, 0x4b, 0x6c, 0x85, 0xe2, 0x82, 0x2e, 0xfe, 0x90, 0x9b, 0xe3, 0x27, 0xe6, 0x93, 0x9f, 0x56, 0x7b, 0x25, 0x7a, 0x20, 0xee, 0x84, 0x8a, 0xd6, 0x73, 0xd8, 0x71, 0x2c, 0x71, 0x04, 0x80, 0x32, 0xdb, 0x43, 0x63, 0xfc, 0x44, 0x90, 0x3f, 0x26, 0x1e, 0x41, 0x41, 0xa6, 0x1b, 0xe1, 0x27, 0x4c, 0x2d, 0x79, 0x48, 0xc3, 0x67, 0xe2, 0x9b, 0xc9, 0x2b, 0x49, 0x64, 0x49, 0xfc, 0x6c, 0xf9, 0xcc, 0xbc, 0x43, 0xca, 0xbe, 0x05, 0x47, 0xd3, 0x11, 0x47, 0xd8, 0xe9, 0x70, 0xde, 0xb8, 0x0a, 0xda, 0xe5, 0xe5, 0xc6, 0x26, 0xb8, 0xb8, 0xe0, 0x8b, 0x64, 0x3c, 0x9d, 0xa1, 0xa0, 0x49, 0x5d, 0x77, 0xc4, 0xc7, 0x0a, 0xa4, 0x10, 0xa0, 0x3e, 0xc2, 0xdd, 0x57, 0x0f, 0x80, 0x1f, 0xb5, 0xd2, 0x65, 0x7b, 0x81, 0x6c, 0x9c, 0x03, 0x64, 0xa3, 0x32, 0xb1, 0x6f, 0xad, 0xda, 0x22, 0x15, 0x6d, 0xc7, 0xee, 0x46, 0xb9, 0x56, 0x1f, 0x41, 0x55, 0xa5, 0x8a, 0x88, 0x15, 0xab, 0x42, 0x78, 0xac, 0xc2, 0x81, 0x89, 0x49, 0xc1, 0x05, 0xeb, 0x69, 0xdd, 0x06, 0x14, 0x45, 0x8f, 0x55, 0x2c, 0xb2, 0x7c, 0x7c, 0x98, 0xec, 0xbf, 0x1d, 0x33, 0xb6, 0xb0, 0x04, 0x91, 0xd6, 0x2b, 0x44, 0x58, 0x14, 0xa8, 0x8f, 0x06, 0x38, 0x05, 0x0f, 0xb9, 0x0d, 0x1e, 0xd2, 0xad, 0xec, 0x09, 0xd4, 0xf3, 0x93, 0xad, 0x3f, 0x94, 0x46, 0xa6, 0x3a, 0x20, 0x53, 0x79, 0x64, 0xaa, 0x7b, 0x08, 0x99, 0xea, 0x54, 0x56, 0xa6, 0x7a, 0x20, 0x53, 0x09, 0x32, 0xd5, 0x03, 0x99, 0xca, 0x23, 0x53, 0xe7, 0x87, 0x90, 0xa9, 0x5e, 0x65, 0x65, 0xea, 0x02, 0x64, 0x2a, 0x41, 0xa6, 0xda, 0x20, 0x53, 0x79, 0x64, 0xaa, 0x73, 0x08, 0x99, 0x6a, 0x57, 0x56, 0xa6, 0xba, 0x20, 0x53, 0x09, 0x32, 0xd5, 0x02, 0x99, 0xca, 0x23, 0x53, 0xda, 0x21, 0x64, 0xaa, 0x05, 0xf5, 0x5c, 0x6b, 0x29, 0x53, 0x1a, 0xc8, 0x54, 0x1e, 0x99, 0x6a, 0x1f, 0x42, 0xa6, 0xaa, 0x5b, 0xbd, 0xae, 0x03, 0x32, 0x15, 0x2f, 0x53, 0xaf, 0x41, 0xa4, 0xf2, 0x88, 0x54, 0xeb, 0x00, 0x22, 0xf5, 0x1a, 0x7a, 0x3f, 0xd4, 0x51, 0xa2, 0x2e, 0x40, 0xa2, 0x72, 0x48, 0xd4, 0xe5, 0x01, 0x04, 0xea, 0x42, 0xfd, 0xf0, 0x44, 0x4b, 0x41, 0x81, 0x3a, 0x07, 0x81, 0xca, 0x21, 0x50, 0x17, 0x07, 0x10, 0xa8, 0x73, 0xf5, 0xf3, 0x52, 0x2a, 0x0a, 0x14, 0x84, 0xd0, 0xf3, 0x08, 0xd4, 0x21, 0x22, 0xe8, 0x3d, 0xf5, 0x93, 0x52, 0x2a, 0x0a, 0x14, 0x60, 0x27, 0xf2, 0x08, 0xd4, 0x21, 0xa0, 0x13, 0x5d, 0xf5, 0xa3, 0xe7, 0x2a, 0x0a, 0x14, 0x00, 0x27, 0xf2, 0x08, 0xd4, 0x21, 0x70, 0x13, 0x1d, 0xf5, 0xc3, 0x7c, 0x2a, 0x0a, 0x14, 0x64, 0x78, 0xf3, 0x08, 0xd4, 0x21, 0x12, 0xbc, 0x6d, 0xe8, 0x67, 0x5c, 0xcb, 0x5c, 0x14, 0x08, 0x54, 0x0e, 0x81, 0x3a, 0x48, 0x26, 0x0a, 0xda, 0x28, 0xd5, 0x51, 0xa0, 0x00, 0x2f, 0x91, 0x2b, 0x11, 0x75, 0x00, 0x81, 0x2a, 0x94, 0xeb, 0xca, 0x57, 0x66, 0xeb, 0x08, 0xc2, 0xd9, 0x02, 0xe1, 0x8c, 0x17, 0xce, 0x4b, 0x10, 0xce, 0x1c, 0xc2, 0xf9, 0xfa, 0x00, 0xc2, 0x79, 0x09, 0x7d, 0x32, 0xf7, 0x22, 0x50, 0x50, 0x94, 0x32, 0xa7, 0x96, 0x49, 0xac, 0x7b, 0x10, 0xea, 0x93, 0x26, 0x73, 0xc4, 0xc9, 0xfa, 0x09, 0xb1, 0xa7, 0xcd, 0xe4, 0xf2, 0x3e, 0x25, 0xaa, 0x96, 0x23, 0x56, 0xa3, 0x0a, 0x4b, 0xe3, 0xff, 0x54, 0xa4, 0x18, 0xc0, 0x54, 0x1c, 0x32, 0xb6, 0xa8, 0x4d, 0x2a, 0x51, 0x0f, 0x60, 0x62, 0x93, 0x09, 0xb3, 0xa9, 0xa1, 0xcf, 0xa8, 0x39, 0x22, 0x5c, 0xf1, 0x45, 0x1d, 0x09, 0x87, 0x52, 0x01, 0x75, 0x3b, 0x97, 0xbc, 0x55, 0xa2, 0xa4, 0xa3, 0x68, 0xfd, 0x78, 0xb9, 0x77, 0x86, 0xdc, 0xaa, 0x90, 0x58, 0x2a, 0x2c, 0x39, 0xed, 0x53, 0xab, 0x5b, 0xd7, 0xee, 0x29, 0x58, 0xb7, 0xee, 0x4b, 0x20, 0x72, 0x50, 0x9e, 0xae, 0x40, 0x79, 0x3a, 0xad, 0xca, 0x0d, 0x3e, 0x3b, 0x95, 0x6a, 0xf0, 0x59, 0xed, 0xde, 0x8f, 0x3b, 0xf6, 0x27, 0xef, 0x30, 0x8d, 0x3d, 0x3b, 0x75, 0x6d, 0xec, 0xe9, 0x19, 0x2e, 0xb3, 0x2c, 0x59, 0x93, 0x03, 0x7a, 0x7b, 0x1e, 0xb7, 0xb7, 0xe7, 0xa9, 0x74, 0xe8, 0x4c, 0x62, 0xb9, 0xc2, 0xdb, 0x72, 0xbd, 0x6b, 0x71, 0x2e, 0xa7, 0x46, 0x0f, 0x9c, 0xfb, 0x7a, 0x37, 0xeb, 0x4c, 0x77, 0x66, 0x0a, 0xca, 0x72, 0x16, 0x57, 0x08, 0xa5, 0x28, 0x86, 0x22, 0x3e, 0x6f, 0x54, 0x43, 0xc3, 0x80, 0x99, 0x07, 0xd8, 0xd5, 0x57, 0xfb, 0xe4, 0xa9, 0x97, 0xea, 0x5c, 0x6f, 0x8e, 0x78, 0x71, 0xdc, 0x4a, 0x7b, 0x17, 0x50, 0x69, 0x0f, 0x9a, 0x23, 0xe6, 0xf3, 0xaa, 0x37, 0x45, 0xbb, 0xd6, 0x52, 0x1d, 0x6e, 0xec, 0x5c, 0x26, 0xca, 0x0f, 0x90, 0xf5, 0x17, 0xb3, 0x84, 0x68, 0xda, 0xb0, 0x35, 0x34, 0x41, 0x28, 0x6f, 0x4b, 0x1a, 0x13, 0xe3, 0x71, 0x23, 0x27, 0x2b, 0x3e, 0xd0, 0xa9, 0x3d, 0xa4, 0x36, 0xf5, 0xc9, 0x92, 0x87, 0x33, 0xf7, 0xf3, 0x8a, 0x5f, 0xf0, 0x8f, 0x74, 0x42, 0x7d, 0xb4, 0x22, 0x8c, 0x7c, 0x96, 0x3b, 0x2e, 0xaa, 0x70, 0xd7, 0xb0, 0x8d, 0x6c, 0x6f, 0xd4, 0x3c, 0x7e, 0xb3, 0x3d, 0x62, 0x89, 0xd5, 0x1c, 0x32, 0x17, 0x4d, 0x6d, 0x4b, 0x4c, 0x2b, 0x31, 0xd7, 0x26, 0xf6, 0xd5, 0x11, 0xe5, 0x3d, 0x63, 0x78, 0x78, 0x9b, 0x80, 0xe9, 0xe2, 0x19, 0x67, 0x43, 0x53, 0x94, 0xc6, 0x16, 0x3d, 0x8f, 0xd2, 0xaf, 0x0c, 0x24, 0x69, 0xf6, 0xad, 0x1d, 0x02, 0x16, 0xd3, 0x99, 0xad, 0xb3, 0xa9, 0xef, 0x4c, 0xfd, 0x46, 0xb9, 0x7b, 0x01, 0x62, 0x36, 0xfa, 0x2c, 0x09, 0x57, 0x45, 0x2d, 0x14, 0x6b, 0xff, 0x57, 0xae, 0x5e, 0x00, 0xc9, 0x52, 0x01, 0xa9, 0xb0, 0x53, 0xb2, 0x1e, 0xc9, 0xdc, 0xf3, 0x5d, 0xf6, 0x48, 0xf6, 0x20, 0x5c, 0xbf, 0x2c, 0x68, 0x83, 0x7c, 0x81, 0x7c, 0xe5, 0x94, 0xaf, 0x4e, 0x9d, 0xca, 0x9e, 0xf7, 0xea, 0xec, 0x7d, 0xe5, 0xaf, 0x0a, 0x9e, 0x33, 0x22, 0xd2, 0x77, 0xa8, 0xbd, 0xae, 0x9a, 0x3c, 0x7e, 0xbd, 0xe6, 0x08, 0xe8, 0x78, 0xc2, 0xa6, 0xb6, 0xaf, 0x08, 0x4e, 0x33, 0x5f, 0xc4, 0x2a, 0x52, 0x3a, 0xe2, 0x0c, 0xf5, 0x42, 0xf0, 0x44, 0x6c, 0x0a, 0xc0, 0xc6, 0x84, 0x88, 0x09, 0x5f, 0xfd, 0x5d, 0xe1, 0xba, 0x72, 0xa7, 0x8a, 0x6e, 0x8e, 0x0d, 0xff, 0x70, 0x89, 0x11, 0xa8, 0x1d, 0xaf, 0x22, 0x02, 0x53, 0x98, 0xcf, 0xe3, 0x2d, 0x0c, 0x39, 0xcc, 0x22, 0xa4, 0x33, 0xef, 0xbd, 0x70, 0xb0, 0x46, 0xd9, 0x68, 0x6f, 0xb5, 0x5c, 0x63, 0xc7, 0xc2, 0x06, 0x19, 0x33, 0xcb, 0x24, 0xee, 0x59, 0x0d, 0x9e, 0x54, 0x99, 0x8e, 0xa8, 0x1d, 0x05, 0x91, 0x65, 0xfd, 0x45, 0xfe, 0xf9, 0xd0, 0xd8, 0xb2, 0x6d, 0x1a, 0xf3, 0xf4, 0x0a, 0x13, 0xfa, 0xa6, 0x1e, 0x0a, 0x98, 0xd6, 0xad, 0x08, 0xcc, 0xa9, 0x30, 0xa6, 0xad, 0xf2, 0xb0, 0xa7, 0x5d, 0xc1, 0x0e, 0xfe, 0xea, 0x87, 0x41, 0xb6, 0x75, 0xeb, 0x8a, 0x6c, 0x33, 0xd8, 0xc4, 0xc1, 0x3e, 0x1d, 0x50, 0x8b, 0xfa, 0x73, 0x40, 0xb7, 0x01, 0xba, 0xed, 0x30, 0xe8, 0xb6, 0x5d, 0x6c, 0x77, 0xe2, 0x08, 0xb7, 0x8d, 0xe9, 0x01, 0x94, 0x1b, 0xa0, 0xdc, 0x8e, 0x86, 0x72, 0x2b, 0xb1, 0xb1, 0x60, 0x19, 0x98, 0x9a, 0x4e, 0x5b, 0xcd, 0x53, 0x62, 0x59, 0x9b, 0x47, 0xcb, 0x0e, 0xd1, 0xa1, 0x5e, 0x40, 0x13, 0x3c, 0x47, 0x06, 0xe6, 0xee, 0x04, 0xf2, 0xd8, 0x84, 0x6c, 0x36, 0x94, 0xf6, 0x19, 0x1a, 0x10, 0xd9, 0x55, 0x9a, 0xda, 0x06, 0x73, 0x5d, 0x3e, 0xbd, 0xd6, 0xfc, 0x15, 0x12, 0x14, 0xe6, 0x08, 0xbb, 0x9c, 0x88, 0x6d, 0xcd, 0xd1, 0x98, 0xb8, 0xb2, 0xbf, 0x34, 0x7f, 0x01, 0x36, 0x43, 0x73, 0x36, 0x15, 0x17, 0x33, 0xe6, 0x3e, 0xf2, 0x9f, 0xb0, 0xa9, 0x6d, 0x22, 0x83, 0x8f, 0x02, 0x53, 0x7b, 0x93, 0x36, 0xe7, 0x68, 0x24, 0xc6, 0xc7, 0x2f, 0xed, 0x11, 0xf2, 0xe6, 0x9e, 0x4f, 0x26, 0xfc, 0x89, 0x63, 0xec, 0x23, 0xce, 0xef, 0x62, 0x21, 0x4d, 0x3a, 0x1c, 0x72, 0xd2, 0xb6, 0x8f, 0xfc, 0x45, 0xbb, 0x6b, 0xf9, 0x36, 0x94, 0xb9, 0x95, 0x6d, 0x63, 0x7d, 0xf0, 0xfe, 0xd3, 0xf1, 0x5e, 0xdd, 0xc5, 0xab, 0x6e, 0xaf, 0xd5, 0xbb, 0x6c, 0x69, 0xbd, 0xf6, 0x65, 0xa7, 0x7b, 0xae, 0x5d, 0x76, 0x48, 0xb3, 0xf5, 0x1a, 0xba, 0x5a, 0xd7, 0xac, 0xab, 0xf5, 0x9a, 0x12, 0x13, 0xd1, 0x60, 0xa1, 0x81, 0x49, 0x73, 0x20, 0x32, 0x84, 0xf6, 0xa8, 0x29, 0x51, 0xc0, 0x03, 0xf6, 0xac, 0xf2, 0xe9, 0x74, 0xfd, 0x66, 0x31, 0x6c, 0xf4, 0xc8, 0xd5, 0x8e, 0xd8, 0x39, 0xb8, 0xd2, 0x50, 0xea, 0x94, 0x3a, 0x1c, 0x24, 0xaf, 0x80, 0x74, 0x99, 0xc4, 0x22, 0xfe, 0x89, 0x89, 0xd6, 0x9d, 0x1c, 0x33, 0xc8, 0x15, 0x20, 0x94, 0x4a, 0x96, 0xab, 0x75, 0x04, 0x40, 0x58, 0xa3, 0xc9, 0xe5, 0x56, 0xa7, 0x9f, 0xd9, 0x39, 0xcd, 0xc8, 0xd0, 0x5f, 0xc5, 0x43, 0xd0, 0xed, 0xfa, 0x43, 0xd0, 0x67, 0x67, 0x69, 0xcd, 0xde, 0x05, 0x20, 0x1f, 0x0f, 0x10, 0xc3, 0xe5, 0x49, 0x2f, 0xe0, 0x8e, 0xca, 0xc3, 0xf5, 0x45, 0x1c, 0xf1, 0x0a, 0xb6, 0x25, 0x3d, 0xdc, 0x96, 0xea, 0xbc, 0x0f, 0xad, 0x1f, 0xcc, 0x7a, 0x7d, 0xdc, 0x83, 0x59, 0x5a, 0x1b, 0x4e, 0x66, 0x41, 0x59, 0xb0, 0xfc, 0x42, 0xb9, 0xf4, 0xc4, 0x54, 0x93, 0xcb, 0xcb, 0x23, 0xcb, 0x65, 0x07, 0xe4, 0x12, 0x30, 0x34, 0xea, 0x23, 0x5b, 0x3a, 0x2a, 0x22, 0x5b, 0x36, 0xac, 0x6e, 0xa8, 0x9c, 0xa4, 0x2a, 0x40, 0xa5, 0x57, 0xb1, 0xca, 0x49, 0x35, 0x80, 0x20, 0x24, 0x15, 0x50, 0x5a, 0x7b, 0xfd, 0xc3, 0xa0, 0x4d, 0x7a, 0x35, 0x45, 0x9b, 0x74, 0xaa, 0xba, 0xba, 0x87, 0x82, 0x5d, 0x14, 0x81, 0x4c, 0x3c, 0x92, 0x79, 0x68, 0xa9, 0x7a, 0x75, 0x00, 0x4c, 0x2c, 0xcf, 0x55, 0xe4, 0x79, 0xf8, 0x53, 0x91, 0x9b, 0xf7, 0x0c, 0xd5, 0xb8, 0x16, 0x74, 0xe5, 0x79, 0x0c, 0xb9, 0x38, 0x78, 0x71, 0x99, 0x62, 0x81, 0x2a, 0x6b, 0x1a, 0x88, 0x9d, 0xcb, 0xc1, 0xa6, 0x99, 0x1f, 0x18, 0x10, 0xc0, 0x23, 0x0a, 0x12, 0x91, 0xdb, 0xef, 0x92, 0x44, 0x3e, 0xc8, 0x88, 0xc4, 0x8a, 0x64, 0x7d, 0x8f, 0x1c, 0x3e, 0x65, 0x00, 0x30, 0x24, 0xe6, 0xef, 0x7c, 0xc9, 0xd9, 0x2c, 0x3c, 0x28, 0x15, 0x7e, 0xa6, 0xcf, 0xe4, 0x87, 0x29, 0x39, 0xa2, 0xea, 0x51, 0x4a, 0x6f, 0x8c, 0xc5, 0x60, 0xc4, 0x36, 0xdf, 0xb8, 0xa2, 0xf6, 0xbe, 0xdd, 0xcb, 0x07, 0x97, 0x90, 0xdf, 0x28, 0x09, 0xa7, 0xd4, 0xe7, 0x57, 0xfa, 0x13, 0xbf, 0xcc, 0x30, 0x99, 0xa5, 0x4d, 0x68, 0x89, 0x93, 0xba, 0x66, 0x2f, 0x51, 0x91, 0x0f, 0xb1, 0xb1, 0xd5, 0x94, 0x97, 0x7c, 0x7e, 0x65, 0x15, 0x87, 0xdd, 0x85, 0x9f, 0x92, 0x26, 0xac, 0xbf, 0xa4, 0xb1, 0x9c, 0x35, 0x31, 0x69, 0xcd, 0x15, 0xed, 0xb3, 0x14, 0xef, 0x77, 0x96, 0x6e, 0xc9, 0x52, 0x9d, 0xb8, 0x29, 0xc5, 0x93, 0xae, 0x89, 0x2f, 0x58, 0x67, 0xd5, 0x5f, 0x09, 0x7c, 0x5c, 0x0a, 0xd7, 0xf4, 0x97, 0xd5, 0x14, 0x83, 0x63, 0xaa, 0xaa, 0x63, 0x7a, 0x5e, 0x29, 0xc7, 0x34, 0x59, 0xaa, 0x2b, 0xee, 0x96, 0xae, 0xc9, 0xcb, 0x61, 0x9c, 0xd2, 0xf3, 0x23, 0x3b, 0xa5, 0x51, 0x63, 0x89, 0x1e, 0xc7, 0xcb, 0x97, 0x49, 0x05, 0xce, 0x7d, 0x79, 0x53, 0xf0, 0xf6, 0x49, 0x6b, 0x1d, 0x3f, 0x55, 0x31, 0x61, 0xd9, 0x88, 0xb1, 0xbe, 0x18, 0xe7, 0xe6, 0x18, 0x37, 0xbe, 0x7c, 0x83, 0xe5, 0x3e, 0xdf, 0x0c, 0xba, 0x64, 0x2c, 0xc3, 0xdc, 0x9b, 0x1f, 0x23, 0x97, 0x78, 0x0e, 0xb3, 0x3d, 0xfe, 0x36, 0xad, 0xc6, 0x55, 0x98, 0xd5, 0x9f, 0xd1, 0xef, 0xd8, 0x35, 0x75, 0xc3, 0x62, 0x62, 0xf4, 0x1b, 0xbf, 0x5f, 0x3c, 0x67, 0x9b, 0xf6, 0xea, 0x4d, 0xde, 0x9c, 0x49, 0x83, 0x66, 0x88, 0x0d, 0x72, 0xf5, 0xc3, 0xff, 0x03, 0xf2, 0x9f, 0x91, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x6f, 0x72, 0x67, 0x2f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x74, 0x69, 0x6c, 0x64, 0x61, 0x2f, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x69, 0x6c, 0x64, 0x61, 0x2d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x2d, 0x62, 0x6f, 0x78, 0x2e, 0x75, 0x69, 0x00, 0x4e, 0x13, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x78, 0xda, 0xed, 0x98, 0x5d, 0x4f, 0xdb, 0x30, 0x14, 0x86, 0xef, 0xf9, 0x15, 0x9e, 0x77, 0xb9, 0xf5, 0x0b, 0xb6, 0x69, 0x48, 0x49, 0x90, 0x40, 0x83, 0x9b, 0x6d, 0x42, 0x1b, 0xbb, 0x8e, 0x1c, 0xe7, 0x24, 0xf1, 0x70, 0xed, 0xcc, 0x3e, 0x29, 0xe5, 0xdf, 0xef, 0xa4, 0x69, 0xa1, 0xac, 0x81, 0x36, 0xdd, 0x80, 0xa9, 0x42, 0xb9, 0xb1, 0x9d, 0xf3, 0xc6, 0xc7, 0x79, 0x9f, 0x63, 0xc5, 0x09, 0x8e, 0xa6, 0x63, 0xcd, 0x26, 0xe0, 0xbc, 0xb2, 0x26, 0xe4, 0xa3, 0xfe, 0x90, 0x33, 0x30, 0xd2, 0xa6, 0xca, 0xe4, 0x21, 0xff, 0x71, 0x71, 0xda, 0xfb, 0xc8, 0x8f, 0xa2, 0xbd, 0xe0, 0x55, 0xaf, 0xc7, 0xce, 0xc0, 0x80, 0x13, 0x08, 0x29, 0xbb, 0x52, 0x58, 0xb0, 0x5c, 0x8b, 0x14, 0xd8, 0x41, 0x7f, 0x74, 0xd8, 0x1f, 0xb2, 0x5e, 0x8f, 0x82, 0x94, 0x41, 0x70, 0x99, 0x90, 0x10, 0xed, 0x31, 0x16, 0x38, 0xf8, 0x55, 0x29, 0x07, 0x9e, 0x69, 0x95, 0x84, 0x3c, 0xc7, 0xcb, 0x37, 0xfc, 0x76, 0x22, 0x92, 0x7d, 0xe0, 0x83, 0x59, 0x1c, 0xc2, 0xb8, 0xd4, 0xf4, 0x58, 0x26, 0xb5, 0xf0, 0x3e, 0xe4, 0x17, 0x4a, 0xa7, 0xe2, 0x3b, 0x08, 0x27, 0x8b, 0x63, 0x3b, 0xe5, 0xac, 0x14, 0x0e, 0x0c, 0x86, 0xfc, 0x0c, 0x2f, 0xeb, 0x7e, 0xad, 0x21, 0x55, 0xe9, 0x6c, 0x09, 0x0e, 0xaf, 0x99, 0x11, 0x63, 0x08, 0xf9, 0x44, 0x79, 0x95, 0x68, 0xe0, 0xd1, 0x85, 0xab, 0x20, 0x18, 0x2c, 0xee, 0xb6, 0x07, 0x4b, 0x61, 0xe2, 0xcc, 0xca, 0xca, 0xf3, 0xe8, 0x54, 0x68, 0xbf, 0x36, 0xde, 0x3a, 0x45, 0x19, 0x08, 0xa4, 0xcc, 0x79, 0x44, 0x4b, 0x40, 0x25, 0x85, 0x5e, 0x11, 0xc9, 0x82, 0x12, 0x6f, 0xda, 0xd4, 0xb3, 0xc9, 0x4f, 0x90, 0xb8, 0x58, 0x13, 0xe5, 0xfe, 0x59, 0x24, 0xa0, 0x39, 0x53, 0x69, 0xc8, 0xf5, 0xac, 0xb9, 0x08, 0xed, 0x9e, 0x5f, 0x9b, 0xc6, 0xd8, 0xd8, 0x17, 0xf6, 0x2a, 0x16, 0x5a, 0xb7, 0xbf, 0x84, 0x36, 0xd1, 0x58, 0xb8, 0x5c, 0x99, 0x18, 0x6d, 0xc9, 0xa3, 0xf7, 0x1d, 0x04, 0x89, 0x45, 0xb4, 0xe3, 0x0d, 0x35, 0xcd, 0x6a, 0x19, 0x3a, 0x61, 0x3c, 0xf9, 0x2c, 0xc8, 0xa6, 0x90, 0x5f, 0x03, 0x2d, 0xae, 0x31, 0x99, 0x11, 0x34, 0x63, 0x66, 0x2c, 0xb2, 0xcc, 0x56, 0x26, 0x7d, 0xcb, 0x7c, 0x33, 0x2c, 0x72, 0xa1, 0x0c, 0x43, 0xcb, 0xa4, 0x35, 0xa8, 0x4c, 0x05, 0x0c, 0x0b, 0xb8, 0xb9, 0x89, 0xb3, 0x5e, 0x02, 0x94, 0x8e, 0x21, 0x56, 0xfb, 0xad, 0x99, 0x08, 0x44, 0xa7, 0x92, 0x0a, 0xc1, 0xdf, 0x0e, 0x2e, 0x0f, 0xcf, 0x33, 0xcc, 0xac, 0x83, 0xdc, 0xd5, 0x93, 0x13, 0xa1, 0x42, 0x57, 0x34, 0xf4, 0x1a, 0x32, 0xc8, 0xf6, 0x0f, 0x9b, 0xab, 0x01, 0x75, 0x2e, 0x1e, 0xac, 0x3e, 0x34, 0x18, 0x34, 0x6e, 0xdf, 0xf4, 0x4b, 0x21, 0x2f, 0x29, 0xa9, 0xfb, 0xdf, 0x09, 0x4c, 0x4b, 0x41, 0xb3, 0x6d, 0x6e, 0x6f, 0xa6, 0xba, 0xf8, 0x5a, 0x5a, 0xaf, 0x1a, 0x5a, 0x87, 0xab, 0xe1, 0x34, 0xb2, 0x9c, 0x5e, 0x30, 0x58, 0x02, 0x77, 0x1d, 0xc4, 0xb3, 0x82, 0xac, 0x11, 0x6e, 0x6c, 0x20, 0x10, 0xa6, 0x0f, 0x70, 0xfc, 0x60, 0x51, 0xfe, 0x2b, 0xf0, 0xe7, 0x48, 0x6a, 0xc8, 0xb0, 0x1b, 0xc4, 0x4e, 0xe5, 0x45, 0x47, 0xc9, 0xe3, 0x16, 0x8a, 0x27, 0x5f, 0xc8, 0x16, 0x1e, 0x8d, 0x86, 0xad, 0xe1, 0x77, 0xbc, 0x69, 0xf7, 0xe7, 0x93, 0x41, 0x77, 0xdd, 0x38, 0x04, 0xb3, 0xe6, 0x72, 0xf8, 0x16, 0x06, 0xad, 0x31, 0xa9, 0x8b, 0xac, 0x58, 0x30, 0x7f, 0xbf, 0xe8, 0xcf, 0x3a, 0x6a, 0xaf, 0xa5, 0xad, 0xea, 0xa9, 0x7b, 0x4d, 0x75, 0xae, 0xab, 0x96, 0xda, 0x5a, 0xa9, 0xaf, 0x4d, 0x7d, 0x3c, 0xae, 0x88, 0x1b, 0xd3, 0x18, 0x99, 0xcc, 0xda, 0xb1, 0x81, 0x29, 0xae, 0xb1, 0xf3, 0xfe, 0x9d, 0x36, 0xfe, 0x4a, 0xea, 0x4d, 0x57, 0xf9, 0x94, 0x54, 0x38, 0x90, 0xa0, 0x26, 0xe0, 0xe3, 0x14, 0x32, 0x51, 0x69, 0xec, 0xa6, 0xa6, 0xcd, 0x5a, 0xe5, 0xe4, 0x86, 0x84, 0xfa, 0xcb, 0x63, 0x53, 0x55, 0xe5, 0x21, 0xa6, 0xbd, 0x1e, 0x9c, 0x56, 0x06, 0x76, 0x84, 0xc7, 0xd1, 0x93, 0xf3, 0x58, 0x3a, 0x98, 0x6c, 0xcf, 0xe3, 0x39, 0xa9, 0x5f, 0x78, 0xdc, 0x5d, 0x1e, 0xf7, 0x1f, 0x97, 0xc7, 0x93, 0x02, 0xe4, 0x1d, 0x28, 0x65, 0x3d, 0x10, 0x8f, 0x05, 0xd2, 0x47, 0x89, 0x14, 0x1e, 0xb6, 0x27, 0xf3, 0x4b, 0xfd, 0x0c, 0x76, 0x22, 0x36, 0x7f, 0x4f, 0xcf, 0xcb, 0x67, 0x27, 0x4b, 0x8b, 0xc7, 0x05, 0x74, 0x55, 0x3a, 0x9d, 0x4f, 0x38, 0xdc, 0x54, 0x90, 0x3a, 0x71, 0x15, 0x2b, 0x93, 0xd2, 0x11, 0x0b, 0xad, 0xdb, 0x91, 0x6a, 0x38, 0x78, 0x96, 0x6a, 0xa0, 0x43, 0x0d, 0x4c, 0xb7, 0x2f, 0x84, 0x6f, 0xb5, 0x7c, 0x07, 0x6b, 0xe0, 0x85, 0xe6, 0xbf, 0xa4, 0xf9, 0xdd, 0xb6, 0x34, 0xff, 0xc7, 0xe7, 0xe4, 0x51, 0x97, 0x73, 0x72, 0x30, 0x58, 0xfc, 0xb3, 0x8a, 0xf6, 0x82, 0xc1, 0xd2, 0x5f, 0xaf, 0xdf, 0x7a, 0x52, 0xeb, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x6d, 0x65, 0x6e, 0x75, 0x2e, 0x75, 0x69, 0x00, 0x00, 0xfe, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x78, 0xda, 0xbd, 0x94, 0x3d, 0x6b, 0xc3, 0x30, 0x10, 0x86, 0xf7, 0xfc, 0x0a, 0xa1, 0x3d, 0x71, 0xbb, 0x75, 0x90, 0x9d, 0x21, 0x90, 0x31, 0xa4, 0xd4, 0x9d, 0xcb, 0x59, 0x7e, 0x9d, 0x0a, 0x64, 0x29, 0x95, 0xe4, 0xba, 0xf9, 0xf7, 0x95, 0xfb, 0x45, 0x0a, 0x8e, 0x29, 0xaa, 0xc9, 0xa6, 0x3b, 0x78, 0xa4, 0xe7, 0x5e, 0xc4, 0x89, 0xf5, 0x5b, 0xab, 0xd9, 0x2b, 0x9c, 0x57, 0xd6, 0xe4, 0xfc, 0x76, 0x75, 0xc3, 0x19, 0x8c, 0xb4, 0xb5, 0x32, 0x87, 0x9c, 0x3f, 0x96, 0xdb, 0xe5, 0x1d, 0x5f, 0x17, 0x0b, 0xa1, 0x4c, 0x80, 0x6b, 0x48, 0xa2, 0x58, 0x30, 0x26, 0x5a, 0x98, 0x8e, 0xa9, 0x3a, 0xe7, 0xc3, 0x81, 0x0f, 0xad, 0xd8, 0xf4, 0x90, 0x21, 0x5e, 0xf2, 0x59, 0xc5, 0x5a, 0x05, 0xb4, 0xdf, 0x45, 0x2c, 0x29, 0x04, 0xa7, 0xaa, 0x2e, 0x80, 0x19, 0x6a, 0x91, 0x73, 0x4d, 0x15, 0x34, 0x67, 0xc1, 0x91, 0xf1, 0x9a, 0x02, 0x55, 0x3a, 0x36, 0x4f, 0xf0, 0xbc, 0x78, 0xda, 0xa1, 0x67, 0x25, 0x55, 0x22, 0xfb, 0x61, 0x26, 0xee, 0xa1, 0x8f, 0x57, 0x79, 0xd1, 0x2b, 0x53, 0xdb, 0x7e, 0x65, 0xd0, 0x2f, 0xc3, 0x28, 0x2b, 0xb2, 0x73, 0xa3, 0x7f, 0xe8, 0x6d, 0xb4, 0xf5, 0x48, 0x16, 0x94, 0x03, 0xfd, 0x07, 0x45, 0x91, 0xfd, 0x0a, 0x74, 0xc6, 0x78, 0x37, 0xf6, 0x78, 0x4a, 0x53, 0x1f, 0x07, 0x67, 0x0b, 0x76, 0x4f, 0x3e, 0x20, 0xc9, 0xec, 0x78, 0x81, 0x1c, 0x0f, 0x94, 0xcd, 0x9d, 0x68, 0x69, 0x0f, 0x07, 0x0d, 0xb6, 0xed, 0xb4, 0xf6, 0xd2, 0x01, 0x26, 0x69, 0x88, 0x66, 0x0a, 0x9f, 0x2d, 0xe4, 0x2f, 0xd7, 0x07, 0x90, 0x93, 0xcf, 0x15, 0xb9, 0x24, 0x55, 0x3f, 0x41, 0x5f, 0x29, 0xf3, 0xbd, 0x43, 0x03, 0x17, 0x77, 0x15, 0x7c, 0xda, 0x97, 0x99, 0xe4, 0xaf, 0x34, 0xc4, 0x7d, 0xa7, 0x42, 0x92, 0xfd, 0xcb, 0x38, 0x78, 0x59, 0x5b, 0x64, 0xc3, 0xae, 0x8e, 0x9b, 0x3c, 0x3b, 0x5b, 0xe5, 0xef, 0xd4, 0x93, 0xe0, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29 } }; static GStaticResource static_resource = { glade_resources_resource_data.data, sizeof (glade_resources_resource_data.data), NULL, NULL, NULL }; extern GResource *glade_resources_get_resource (void); GResource *glade_resources_get_resource (void) { return g_static_resource_get_resource (&static_resource); } /* If G_HAS_CONSTRUCTORS is true then the compiler support *both* constructors and destructors, in a sane way, including e.g. on library unload. If not you're on your own. Some compilers need #pragma to handle this, which does not work with macros, so the way you need to use this is (for constructors): #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(my_constructor) #endif G_DEFINE_CONSTRUCTOR(my_constructor) static void my_constructor(void) { ... } */ #ifndef __GTK_DOC_IGNORE__ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #define G_HAS_CONSTRUCTORS 1 #define G_DEFINE_CONSTRUCTOR(_func) static void __attribute__((constructor)) _func (void); #define G_DEFINE_DESTRUCTOR(_func) static void __attribute__((destructor)) _func (void); #elif defined (_MSC_VER) && (_MSC_VER >= 1500) /* Visual studio 2008 and later has _Pragma */ #define G_HAS_CONSTRUCTORS 1 /* We do some weird things to avoid the constructors being optimized * away on VS2015 if WholeProgramOptimization is enabled. First we * make a reference to the array from the wrapper to make sure its * references. Then we use a pragma to make sure the wrapper function * symbol is always included at the link stage. Also, the symbols * need to be extern (but not dllexport), even though they are not * really used from another object file. */ /* We need to account for differences between the mangling of symbols * for Win32 (x86) and x64 programs, as symbols on Win32 are prefixed * with an underscore but symbols on x64 are not. */ #ifdef _WIN64 #define G_MSVC_SYMBOL_PREFIX "" #else #define G_MSVC_SYMBOL_PREFIX "_" #endif #define G_DEFINE_CONSTRUCTOR(_func) G_MSVC_CTOR (_func, G_MSVC_SYMBOL_PREFIX) #define G_DEFINE_DESTRUCTOR(_func) G_MSVC_DTOR (_func, G_MSVC_SYMBOL_PREFIX) #define G_MSVC_CTOR(_func,_sym_prefix) \ static void _func(void); \ extern int (* _array ## _func)(void); \ int _func ## _wrapper(void) { _func(); g_slist_find (NULL, _array ## _func); return 0; } \ __pragma(comment(linker,"/include:" _sym_prefix # _func "_wrapper")) \ __pragma(section(".CRT$XCU",read)) \ __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _wrapper; #define G_MSVC_DTOR(_func,_sym_prefix) \ static void _func(void); \ extern int (* _array ## _func)(void); \ int _func ## _constructor(void) { atexit (_func); g_slist_find (NULL, _array ## _func); return 0; } \ __pragma(comment(linker,"/include:" _sym_prefix # _func "_constructor")) \ __pragma(section(".CRT$XCU",read)) \ __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _constructor; #elif defined (_MSC_VER) #define G_HAS_CONSTRUCTORS 1 /* Pre Visual studio 2008 must use #pragma section */ #define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 #define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 #define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ section(".CRT$XCU",read) #define G_DEFINE_CONSTRUCTOR(_func) \ static void _func(void); \ static int _func ## _wrapper(void) { _func(); return 0; } \ __declspec(allocate(".CRT$XCU")) static int (*p)(void) = _func ## _wrapper; #define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ section(".CRT$XCU",read) #define G_DEFINE_DESTRUCTOR(_func) \ static void _func(void); \ static int _func ## _constructor(void) { atexit (_func); return 0; } \ __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor; #elif defined(__SUNPRO_C) /* This is not tested, but i believe it should work, based on: * http://opensource.apple.com/source/OpenSSL098/OpenSSL098-35/src/fips/fips_premain.c */ #define G_HAS_CONSTRUCTORS 1 #define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1 #define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1 #define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \ init(_func) #define G_DEFINE_CONSTRUCTOR(_func) \ static void _func(void); #define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \ fini(_func) #define G_DEFINE_DESTRUCTOR(_func) \ static void _func(void); #else /* constructors not supported for this compiler */ #endif #endif /* __GTK_DOC_IGNORE__ */ #ifdef G_HAS_CONSTRUCTORS #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor) #endif G_DEFINE_CONSTRUCTOR(resource_constructor) #ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA #pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor) #endif G_DEFINE_DESTRUCTOR(resource_destructor) #else #warning "Constructor not supported on this compiler, linking in resources will not work" #endif static void resource_constructor (void) { g_static_resource_init (&static_resource); } static void resource_destructor (void) { g_static_resource_fini (&static_resource); } tilda-1.5.0/src/tilda-enum-types.h.template0000644000175000017500000000077513555642145015531 00000000000000/*** BEGIN file-header ***/ #ifndef TILDA_ENUM_TYPES_H #define TILDA_ENUM_TYPES_H #include G_BEGIN_DECLS /*** END file-header ***/ /*** BEGIN file-production ***/ /* Enumerations from "@filename@" */ /*** END file-production ***/ /*** BEGIN enumeration-production ***/ #define TILDA_TYPE_@ENUMSHORT@ (@enum_name@_get_type()) GType @enum_name@_get_type (void) G_GNUC_CONST; /*** END enumeration-production ***/ /*** BEGIN file-tail ***/ G_END_DECLS #endif /*** END file-tail ***/ tilda-1.5.0/src/tilda-search-box.c0000644000175000017500000002703413617620115013624 00000000000000/* * Copyright (C) 2016 Sebastian Geiger * * 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 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "tilda-search-box.h" #include "tilda-enum-types.h" #include "vte-util.h" #define PCRE2_CODE_UNIT_WIDTH 0 #include #define GRESOURCE "/org/tilda/" struct _TildaSearchBox { GtkBox parent; GtkWidget *label; GtkWidget *entry; GtkWidget *button_next; GtkWidget *button_prev; GtkWidget *check_match_case; GtkWidget *check_regex; TildaSearchDirection last_direction; gboolean last_search_successful; }; enum { SIGNAL_SEARCH, SIGNAL_SEARCH_GREGEX, SIGNAL_FOCUS_OUT, LAST_SIGNAL }; static guint signals[LAST_SIGNAL] = { 0 }; G_DEFINE_TYPE (TildaSearchBox, tilda_search_box, GTK_TYPE_BOX) static void search_gregex (TildaSearchBox *search, TildaSearchDirection direction) { GtkEntry *entry; GtkEntryBuffer *buffer; GtkToggleButton *toggle_button; GRegexCompileFlags compile_flags; gboolean wrap_on_search; gboolean is_regex; const gchar *text; gchar *pattern; gboolean search_result; GError *error; GRegex *regex; compile_flags = G_REGEX_OPTIMIZE; wrap_on_search = FALSE; toggle_button = GTK_TOGGLE_BUTTON (search->check_regex); is_regex = gtk_toggle_button_get_active (toggle_button); entry = GTK_ENTRY (search->entry); buffer = GTK_ENTRY_BUFFER (gtk_entry_get_buffer (entry)); text = gtk_entry_buffer_get_text (buffer); if (!search->last_search_successful) wrap_on_search = TRUE; if (is_regex) { compile_flags |= G_REGEX_MULTILINE; pattern = g_strdup (text); } else pattern = g_regex_escape_string (text, -1); toggle_button = GTK_TOGGLE_BUTTON (search->check_match_case); if (!gtk_toggle_button_get_active (toggle_button)) { compile_flags |= G_REGEX_CASELESS; } error = NULL; regex = g_regex_new (pattern, compile_flags, G_REGEX_MATCH_NEWLINE_ANY, &error); g_free (pattern); if (error) { GtkLabel *label = GTK_LABEL (search->label); gtk_label_set_text (label, error->message); gtk_widget_set_visible (search->label, TRUE); g_error_free (error); return; } g_signal_emit (search, signals[SIGNAL_SEARCH_GREGEX], 0, regex, direction, wrap_on_search, &search_result); search->last_direction = direction; gtk_widget_set_visible (search->label, !search_result); search->last_search_successful = search_result; g_regex_unref(regex); } static void search_vte_regex (TildaSearchBox *search, TildaSearchDirection direction) { GtkEntry *entry; GtkEntryBuffer *buffer; GtkToggleButton *toggle_button; guint32 compile_flags; gboolean wrap_on_search; gboolean is_regex; gboolean match_case; const gchar *text; gchar *pattern; size_t pattern_length; gboolean search_result; GError *error; VteRegex *regex; compile_flags = 0; wrap_on_search = FALSE; toggle_button = GTK_TOGGLE_BUTTON (search->check_regex); is_regex = gtk_toggle_button_get_active (toggle_button); entry = GTK_ENTRY (search->entry); buffer = GTK_ENTRY_BUFFER (gtk_entry_get_buffer (entry)); text = gtk_entry_buffer_get_text (buffer); if (!search->last_search_successful) wrap_on_search = TRUE; if (is_regex) { compile_flags |= PCRE2_MULTILINE; pattern = g_strdup (text); } else pattern = g_regex_escape_string (text, -1); pattern_length = strlen (pattern); toggle_button = GTK_TOGGLE_BUTTON (search->check_match_case); match_case = gtk_toggle_button_get_active (toggle_button); if (!match_case) { compile_flags |= PCRE2_CASELESS; } compile_flags |= PCRE2_MULTILINE; error = NULL; regex = vte_regex_new_for_search (pattern, pattern_length, compile_flags, &error); g_free (pattern); if (error) { GtkLabel *label = GTK_LABEL (search->label); gtk_label_set_text (label, error->message); gtk_widget_set_visible (search->label, TRUE); g_error_free (error); return; } g_signal_emit (search, signals[SIGNAL_SEARCH], 0, regex, direction, wrap_on_search, &search_result); search->last_direction = direction; gtk_widget_set_visible (search->label, !search_result); search->last_search_successful = search_result; vte_regex_unref (regex); } static void search (TildaSearchBox *search, TildaSearchDirection direction) { if (VTE_CHECK_VERSION_RUMTIME (0, 56, 1)) { search_vte_regex (search, direction); } else { search_gregex (search, direction); } } static gboolean entry_key_press_cb (TildaSearchBox *box, GdkEvent *event, GtkWidget *widget) { GdkEventKey *event_key; event_key = (GdkEventKey*) event; if (event_key->keyval == GDK_KEY_Return) { search (box, box->last_direction); return GDK_EVENT_STOP; } /* If the search entry has focus the user can hide the search bar by pressing escape. */ if (event_key->keyval == GDK_KEY_Escape) { if (gtk_widget_has_focus (box->entry)) { g_signal_emit (box, signals[SIGNAL_FOCUS_OUT], 0); gtk_widget_set_visible (GTK_WIDGET (box), FALSE); return GDK_EVENT_STOP; } } return GDK_EVENT_PROPAGATE; } static gboolean entry_changed_cb (TildaSearchBox *box, GtkEditable *editable) { gtk_widget_hide (box->label); box->last_search_successful = TRUE; return GDK_EVENT_STOP; } static void button_next_cb (TildaSearchBox *box, GtkWidget *widget) { /* The default is to search forward */ search (box, SEARCH_FORWARD); } static void button_prev_cb (TildaSearchBox *box, GtkWidget *widget) { search (box, SEARCH_BACKWARD); } void tilda_search_box_toggle (TildaSearchBox *box) { gboolean visible = !gtk_widget_get_visible(GTK_WIDGET (box)); if (visible) gtk_widget_grab_focus (box->entry); else g_signal_emit (box, signals[SIGNAL_FOCUS_OUT], 0); gtk_widget_set_visible(GTK_WIDGET (box), visible); } static void tilda_search_box_class_init (TildaSearchBoxClass *box_class) { GtkWidgetClass *widget_class; const gchar *resource_name; widget_class = GTK_WIDGET_CLASS (box_class); /** * TildaSearchBox::search: * @widget: the widget that received the signal * @regex: the regular expression entered by the user * @direction: the direction for the search * @wrap_over: if the search should wrap over * * This signal is, emitted when the user performed a search action, such * as clicking on the prev or next buttons or hitting enter. * * This widget does not actually perform the search, but leaves it to the * users of this signal to perform the search based on the information * provided to the signal handler. * * The user function needs to return %TRUE or %FALSE depending on * whether the search was successful (i.e. a match was found). * * Returns: %TRUE if the search found a match, %FALSE otherwise. */ signals[SIGNAL_SEARCH] = g_signal_new ("search", TILDA_TYPE_SEARCH_BOX, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_BOOLEAN, 3, VTE_TYPE_REGEX, TILDA_TYPE_SEARCH_DIRECTION, G_TYPE_BOOLEAN); /** * TildaSearchBox::search-gregex: * @widget: the widget that received the signal * @regex: the regular expression entered by the user * @direction: the direction for the search * @wrap_over: if the search should wrap over * * This signal is, emitted when the user performed a search action, such * as clicking on the prev or next buttons or hitting enter. * * This widget does not actually perform the search, but leaves it to the * users of this signal to perform the search based on the information * provided to the signal handler. * * The user function needs to return %TRUE or %FALSE depending on * whether the search was successful (i.e. a match was found). * * Returns: %TRUE if the search found a match, %FALSE otherwise. */ signals[SIGNAL_SEARCH_GREGEX] = g_signal_new ("search-gregex", TILDA_TYPE_SEARCH_BOX, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_BOOLEAN, 3, G_TYPE_REGEX, TILDA_TYPE_SEARCH_DIRECTION, G_TYPE_BOOLEAN); /** * TildaSearchBox::focus-out: * @widget: the widget that received the signal * * This signal is emitted, when the search bar is being toggled * and this would cause the search bar to hide. Hiding the search bar * means that it will loose focus and that some other widget should get * focused. * * This signal should be used to grab the focus of another widget. */ signals[SIGNAL_FOCUS_OUT] = g_signal_new ("focus-out", TILDA_TYPE_SEARCH_BOX, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); resource_name = GRESOURCE "tilda-search-box.ui"; gtk_widget_class_set_template_from_resource (widget_class, resource_name); gtk_widget_class_bind_template_child (widget_class, TildaSearchBox, label); gtk_widget_class_bind_template_child (widget_class, TildaSearchBox, entry); gtk_widget_class_bind_template_child (widget_class, TildaSearchBox, button_next); gtk_widget_class_bind_template_child (widget_class, TildaSearchBox, button_prev); gtk_widget_class_bind_template_child (widget_class, TildaSearchBox, check_match_case); gtk_widget_class_bind_template_child (widget_class, TildaSearchBox, check_regex); } static void tilda_search_box_init (TildaSearchBox *box) { TildaSearchBox *search_box; gtk_widget_init_template (GTK_WIDGET (box)); search_box = TILDA_SEARCH_BOX (box); search_box->last_direction = SEARCH_BACKWARD; /* Initialize to true to prevent search from * wrapping around on first search. */ search_box->last_search_successful = TRUE; gtk_widget_set_name (GTK_WIDGET (search_box), "search"); g_signal_connect_swapped (G_OBJECT(search_box->entry), "key-press-event", G_CALLBACK(entry_key_press_cb), search_box); g_signal_connect_swapped (G_OBJECT (search_box->entry), "changed", G_CALLBACK (entry_changed_cb), search_box); g_signal_connect_swapped (G_OBJECT (search_box->button_next), "clicked", G_CALLBACK (button_next_cb), search_box); g_signal_connect_swapped (G_OBJECT (search_box->button_prev), "clicked", G_CALLBACK (button_prev_cb), search_box); } GtkWidget* tilda_search_box_new (void) { return g_object_new (TILDA_TYPE_SEARCH_BOX, "orientation", GTK_ORIENTATION_VERTICAL, NULL); } tilda-1.5.0/src/tilda_window.h0000644000175000017500000001473113617513170013171 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef TILDA_WINDOW_H #define TILDA_WINDOW_H #include "tilda_terminal.h" #include #include #include "tilda-search-box.h" G_BEGIN_DECLS enum pull_action { PULL_UP, PULL_DOWN, PULL_TOGGLE }; typedef struct tilda_window_ tilda_window; enum tilda_animation_state { STATE_UP, STATE_DOWN, STATE_GOING_UP, STATE_GOING_DOWN }; struct tilda_window_ { GtkWidget *window; GtkWidget *notebook; GtkWidget *search; GList *terms; GtkAccelGroup * accel_group; GtkBuilder *gtk_builder; GtkWidget *wizard_window; /* GtkDialog that contains the wizard */ gchar *lock_file; gchar *config_file; gboolean config_writing_disabled; gint instance; gboolean have_argb_visual; /* Temporarily disable auto hiding */ gboolean disable_auto_hide; /* Auto hide tick-function handler */ guint auto_hide_tick_handler; /* Auto hide current time */ guint32 auto_hide_current_time; /* Auto hide max time */ guint32 auto_hide_max_time; /* Generic timer resolution */ guint32 timer_resolution; /* Should Tilda hide itself on focus lost event? */ gboolean auto_hide_on_focus_lost; /* Should Tilda hide itself when mouse leaves it? */ gboolean auto_hide_on_mouse_leave; /* Should Tilda hide itself even if not focused */ gboolean hide_non_focused; gboolean fullscreen; /* This field MUST be set before calling pull()! */ enum tilda_animation_state current_state; gboolean focus_loss_on_keypress; gint unscaled_font_size; gdouble current_scale_factor; enum pull_action last_action; gint64 last_action_time; /** * This stores the ID of the event source which handles size updates. */ guint size_update_event_source; }; /* For use in get_display_dimension() */ enum dimensions { HEIGHT, WIDTH }; enum notebook_tab_positions { NB_TOP, NB_BOTTOM, NB_LEFT, NB_RIGHT, NB_HIDDEN }; /** * tilda_window_add_tab () * * Create and add a new tab at the end of the notebook * * Success: the new tab's index (>=0) * Failure: -1 */ gint tilda_window_add_tab (tilda_window *tw); /** * tilda_window_close_tab () * * Closes the tab at the given tab index (starting from 0) * * Success: return 0 * Failure: return non-zero */ gint tilda_window_close_tab (tilda_window *tw, gint tab_position, gboolean force_exit); /** * tilda_window_next_tab () * * Switch to next tab * * Success: return 0 * Failure: return non-zero */ gint tilda_window_next_tab (tilda_window *tw); /** * tilda_window_prev_tab () * * Switch to previous tab * * Success: return 0 * Failure: return non-zero */ gint tilda_window_prev_tab (tilda_window *tw); /** * tilda_window_init () * * Initalizes an already allocated tilda_window *. It will also initialize and set up * as much of the window as possible using the values in the configuation system. * * @param instance the instance number of this tilda_window * * Notes: The configuration system must be up and running before calling this function. */ gboolean tilda_window_init (const gchar *config_file, const gint instance, tilda_window *tw); /** * Releases resources that are being used by the tilda window, such as the tabs * or the config file. */ gint tilda_window_free (tilda_window *tw); /** * Applies or reapplies the current fullscreen state of the tilda window. */ void tilda_window_set_fullscreen(tilda_window *tw); /** * This toggles the fullscreen mode on or off. This is intended to be registered * as a GCallback in order to be invoked after some user action. */ gint toggle_fullscreen_cb (tilda_window *tw); /** * This controls where the tabs are positions (e.g. top, left, bottom or * right). */ gint tilda_window_set_tab_position (tilda_window *tw, enum notebook_tab_positions pos); /** * tilda_window_close_tab () * * Closes the tab current tab */ void tilda_window_close_current_tab (tilda_window *tw); /* This should be called by the wizard for each key that has changed. */ gboolean tilda_window_update_keyboard_accelerators (const gchar* path, const gchar* value); /** * Toggles transparency on all terms */ void tilda_window_toggle_transparency(tilda_window *tw); /** * Refreshes transparency */ void tilda_window_refresh_transparency(tilda_window *tw); /** * Toggles the search bar of the tilda window. */ void tilda_window_toggle_searchbar (tilda_window *tw); /** * Show confirm dialog before quitting (if enabled) */ gint tilda_window_confirm_quit (tilda_window *tw); GdkMonitor* tilda_window_find_monitor_number(tilda_window *tw); /** * Finds the coordinate that will center the tilda window in the screen. * * If you want to center the tilda window on the top or bottom of the screen, * pass the screen width into screen_dimension and the tilda window's width * into the tilda_dimension variable. The result will be the x coordinate that * should be used in order to have the tilda window centered on the screen. * * Centering based on y coordinate is similar, just use the screen height and * tilda window height. */ gint tilda_window_find_centering_coordinate (tilda_window *tw, enum dimensions dimension); void tilda_window_update_window_position (tilda_window *tw); #define TILDA_WINDOW(data) ((tilda_window *)(data)) /* Allow scales a bit smaller and a bit larger than the usual pango ranges */ #define TERMINAL_SCALE_XXX_SMALL (PANGO_SCALE_XX_SMALL/1.2) #define TERMINAL_SCALE_XXXX_SMALL (TERMINAL_SCALE_XXX_SMALL/1.2) #define TERMINAL_SCALE_XXXXX_SMALL (TERMINAL_SCALE_XXXX_SMALL/1.2) #define TERMINAL_SCALE_XXX_LARGE (PANGO_SCALE_XX_LARGE*1.2) #define TERMINAL_SCALE_XXXX_LARGE (TERMINAL_SCALE_XXX_LARGE*1.2) #define TERMINAL_SCALE_XXXXX_LARGE (TERMINAL_SCALE_XXXX_LARGE*1.2) #define TERMINAL_SCALE_MINIMUM (TERMINAL_SCALE_XXXXX_SMALL/1.2) #define TERMINAL_SCALE_MAXIMUM (TERMINAL_SCALE_XXXXX_LARGE*1.2) G_END_DECLS #endif tilda-1.5.0/src/tilda.h0000644000175000017500000000222213615541755011602 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef TILDA_H #define TILDA_H #include G_BEGIN_DECLS #define TILDA_VERSION PACKAGE_NAME " " PACKAGE_VERSION struct lock_info { gint pid; gint instance; gint file_descriptor; }; #define GUINT16_TO_FLOAT(color) ((color) / (double) 0xFFFF) #define GUINT16_FROM_FLOAT(value) ((int) ((value) * 0xFFFF + 0.5)) #define RGB(r,g,b) (r) / (gdouble)G_MAXUINT16, \ (g) / (gdouble)G_MAXUINT16, \ (b) / (gdouble)G_MAXUINT16, 1. G_END_DECLS #endif tilda-1.5.0/src/tilda.ui0000644000175000017500000051504413617620115011771 00000000000000 100 1 10 2147483647 1 10 100 1 10 100 1 10 100 1 10 100 1 10 100 1 10 100 1 10 100 1 10 100 1 10 1 2147483647 1 1 10 Close Tilda Open a new terminal Open a new terminal and hide Top Bottom Left Right Hidden Focus Terminal Hide Terminal Block Cursor IBeam Cursor Underline Cursor Show whole tab title Show first n chars of title Show last n chars of title Isn't displayed Goes after initial title Goes before initial title Replace initial title Drop to the default shell Restart the command Exit the terminal Top Bottom Left Right Custom Green on Black Black on White White on Black Zenburn Solarized Light Solarized Dark Snazzy Custom On the Left On the Right Disabled ASCII DEL Escape sequence Control-H ASCII DEL Escape sequence Control-H False 5 Tilda Config center normal True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK vertical 2 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK end gtk-close True False False True False True 1 False True end 0 True False True False True True False 5 5 5 5 True 0 True False 5 5 5 12 True False 5 True Start Tilda hidden True True False 0 True 1 1 Always on top True True False 0 True 1 0 Display on all workspaces True True False 0 True 0 4 Do not show in taskbar True True False 0 True 0 1 Show Notebook Border True True False 0 True 0 0 Set as Desktop window False True True False 0 True 1 4 Start in fullscreen True True False 0 True 0 2 True False 5 5 0 3 2 True False Non-focus Pull Up Behaviour: end 0 1 0 6 True False model10 0 1 6 True False 5 5 0 5 2 True False <b>Window Display</b> True 0 0 True False 5 5 5 5 True 0 True False 5 5 5 5 12 True False 4 4 True Cursor Blinks True True False 0 True 1 0 Audible Terminal Bell True True False 0 True 0 0 True False Cursor Shape: end 0 1 0 1 True False model11 0 1 1 True False <b>Terminal Display</b> True 0 1 True False 5 5 5 5 True 0 True False 5 5 5 5 12 True False 5 5 True True False Font: 1 0 0 True True True Sans 12 False 1 0 True False <b>Font</b> True 0 2 True False 5 5 5 5 True 0 True False 5 5 5 5 12 True False True True True True adjustment1 1 0 Hide Tilda when mouse leaves it True True False 0 True 1 1 True False 10 Auto Hide Delay: 1 0 0 Hide when Tilda loses focus True True False 0 True 0 1 True False <b>Auto Hide</b> True 0 3 True False 5 5 5 5 True 0 True False 5 5 5 5 12 True False 5 True True False When last terminal is closed: 1 0 0 True False liststore1 0 1 0 Always prompt on exit True True False 0 True 1 1 True False <b>Program Exit</b> True 0 4 True False True True 5 5 <small><i><b>Note:</b> Some options require that tilda is restarted.</i></small> True center 0 1 0 5 True False General False True False 4 4 4 4 4 True True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 12 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 4 4 4 4 4 True True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Word Characters: 1 0 0 True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 1 0 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK <b>Select by Word</b> True 0 3 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 12 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 4 4 4 4 4 True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 1 0 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Web Browser *: 1 0 0 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK <b>URL Handling</b> True 0 2 True False 0 True False 12 True False 4 4 4 4 4 4 True True False Initial Title: 1 0 0 True True 1 0 True False Title Max Length: 1 0 3 True True adjustment11 1 3 True True model2 0 1 1 True False Dynamically-set Title: 1 0 1 True False Title Behaviour: 1 0 2 True False model12 0 1 2 True False <b>Title</b> True 0 0 True False 0 True False 12 True False 4 4 4 4 4 4 True True True True model3 0 1 2 True True 1 1 Run a custom command instead of the shell True False False 0 True 0 0 True False Custom Command: 1 0 1 True False When Command Exits: 1 0 2 Use a login shell True True False 0 True 0 3 True False <b>Command</b> True 0 1 True True False True in True False none True False True * A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system. True 0 0 0 5 True False 0 True False 12 True False 4 4 4 4 4 4 True Show confirmation dialog when closing tab True True False 0 True 0 0 True False Close Action 0 4 1 True False Title and Command 1 False True False 4 4 4 5 4 4 True True False 0 True False 12 True False 4 4 4 4 4 4 True True True False Percentage 1 0 0 True True adjustment2 2 1 0 True False In Pixels 1 2 0 True True adjustment3 3 0 True False <b>Height</b> True 0 1 True False 0 True False 12 True False 4 4 4 4 4 4 True True True False Monitor: 1 0 0 True False monitor_list_store 15 2 1 0 True False 3 0 True False 2 0 True False <b>Select monitor</b> True 0 0 True False 0 True False 12 True False 4 4 4 4 4 4 True True True False Percentage 1 0 0 True False In Pixels 1 2 0 True True adjustment4 2 1 0 True True adjustment5 3 0 True False <b>Width</b> True 0 2 True False 0 True False 12 True False 4 4 4 4 False False 4 4 True True Centered Horizontally True False False 0 True True 0 0 True False Y Position 1 2 1 True True adjustment6 1 1 True True adjustment7 3 1 True False X Position 1 0 1 Centered Vertically True False False 0 True True 2 0 True False <b>Position</b> True 0 3 True False 0 True False 12 True False 4 4 4 4 False False 4 4 True True True False Position of Tabs: 1 0 0 True False model1 0 1 0 Expand Tabs True False False 0 True 0 1 Show single Tab True False False 0 True 1 1 Display Title in Tooltip True True False 0 True 0 2 True False <b>Tabs</b> True 0 4 True False 0 True False 12 True False 4 4 4 4 False False 4 4 True True True True adjustment8 2 0 True False Animation Delay (usec) 1 1 1 True False Animation Orientation 1 1 2 True True adjustment9 2 1 True False model4 0 2 2 Animated Pulldown True False False 0 True 0 1 True False Level of Transparency 1 1 0 Enable Transparency True False False 0 True 0 0 True False <b>Extras</b> True 0 5 2 True False Appearance 2 False True False 4 4 4 4 False 4 4 True True False 0 True False 4 4 4 4 False False 4 4 True True False 0 1 2 True False model5 0 1 0 True False Cursor Color 1 0 4 True True False rgb(0,0,0) 1 4 True True False rgb(0,0,0) 1 2 True True False rgb(0,0,0) 1 3 True False Text Color 1 0 2 True False Background Color 1 0 3 True False Built-in Schemes 1 0 0 True False <b>Foreground and Background Colors</b> True 0 0 True False 0 True False 4 4 4 4 False 4 4 True False False False <small><i><b>Note:</b> Terminal applications have these colors available to them.</i></small> True center True 0 0 0 2 True False 0 1 1 True False 4 4 4 4 True True True False Choose color 15 Choose Color 14 6 1 True True False Choose color 14 Choose Color 13 5 1 True True False Choose color 16 Choose Color 15 7 1 True True False Choose color 13 Choose Color 12 4 1 True True False Choose color 11 Choose Color 10 2 1 True True False Choose color 12 Choose Color 11 3 1 True True False Choose color 10 Choose Color 9 1 1 True True False Choose color 8 Choose Color 7 7 0 True True False Choose color 7 Choose Color 6 6 0 True True False Choose color 6 Choose Color 5 5 0 True True False Choose color 5 Choose Color 4 4 0 True True False Choose color 4 Choose Color 3 3 0 True True False Choose color 3 Choose Color 2 2 0 True True False Choose color 2 Choose Color 1 1 0 True True False Choose color 1 Choose Color 0 rgb(0,0,0) 0 0 True True False Choose color 9 Choose Color 8 0 1 1 2 True False Built-in schemes: True center combo_palette_scheme 0 0 1 True False Color palette: True center 0 0 2 True False <b>Palette</b> True 0 1 3 True False Colors 3 False True False 4 4 4 4 4 4 True True False 0 True False 12 4 4 4 False 4 4 True False False model7 0 1 0 True False end Scrollbar is: 0 0 Limit scrollback to: True True False Unselect for unlimited scrollback. end 0 True 0 1 Scroll on Output True False False 0 True 0 2 Scroll on Keystroke True False False 0 True 0 3 True False 4 True True False 0 adjustment10 0 0 True False lines 0 1 0 1 1 True False <b>Scrolling</b> True 0 0 0 4 False True False Scrolling 4 False True False 4 4 4 4 4 4 True True False 0 True False 12 4 4 4 False 4 4 True True False <small><i><b>Note:</b> These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.</i></small> True True 0 7.4505801528346183e-09 0 0 2 True False _Backspace key generates: True center 0 0 1 True False _Delete key generates: True center 0 0 2 _Reset Compatibility Options to Defaults True True False True 0 3 True False model9 0 1 2 True False model8 0 1 1 True False <b>Compatibility</b> True 0 0 5 True False Compatibility 5 False True False 4 4 True False True True 0 True False 4 4 12 4 True True in True True True False 4 4 <b>Keybindings</b> True 0 0 6 True False Keybindings 6 False False True 1 button_wizard_close tilda-1.5.0/src/tilda-enum-types.c.template0000644000175000017500000000145413555642145015517 00000000000000/*** BEGIN file-header ***/ #include "tilda-enum-types.h" /*** END file-header ***/ /*** BEGIN file-production ***/ /* enumerations from "@filename@" */ #include "@filename@" /*** END file-production ***/ /*** BEGIN value-header ***/ GType @enum_name@_get_type (void) { static GType the_type = 0; if (the_type == 0) { static const G@Type@Value values[] = { /*** END value-header ***/ /*** BEGIN value-production ***/ { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, /*** END value-production ***/ /*** BEGIN value-tail ***/ { 0, NULL, NULL } }; the_type = g_@type@_register_static ( g_intern_static_string ("@EnumName@"), values); } return the_type; } /*** END value-tail ***/ tilda-1.5.0/src/xerror.h0000644000175000017500000000164613276007273012032 00000000000000/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- xerror.h for the Openbox window manager Copyright (c) 2003 Ben Jansens 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 program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef __xerror_h #define __xerror_h #include #include gint xerror_handler(Display *, XErrorEvent *); #endif tilda-1.5.0/src/wizard.h0000664000175000017500000000151113046633203011773 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef WIZARD_H #define WIZARD_H #include "tilda_window.h" #include "tilda_terminal.h" #include G_BEGIN_DECLS gint wizard (tilda_window *tw); G_END_DECLS #endif tilda-1.5.0/src/key_grabber.c0000644000175000017500000004070013617620115012745 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . * */ /* Some stolen from yeahconsole -- loving that open source :) */ #include #include "debug.h" #include "key_grabber.h" #include "screen-size.h" #include "tilda.h" #include "xerror.h" #include #include #include "configsys.h" #include "tomboykeybinder.h" #include #include #include #include #include #include #include #include #include #include #include #define ANIMATION_UP 0 #define ANIMATION_DOWN 1 /* Define local variables here */ #define ANIMATION_Y 0 #define ANIMATION_X 1 /* * animation_coordinates: * [0: up, 1: down] * [0: ypos, 1: xpos] * [animation steps] */ static gint animation_coordinates[2][2][32]; static float animation_ease_function_down(gint i, gint n) { const float t = (float)i/n; const float ts = t*t; const float tc = ts*t; return 1*tc*ts + -5*ts*ts + 10*tc + -10*ts + 5*t; } static float animation_ease_function_up(gint i, gint n) { const float t = (float)i/n; const float ts = t*t; const float tc = ts*t; return 1 - (0*tc*ts + 0*ts*ts + 0*tc + 1*ts + 0*t); } static void pull_down (struct tilda_window_ *tw); static void pull_up (struct tilda_window_ *tw); void generate_animation_positions (struct tilda_window_ *tw) { DEBUG_FUNCTION ("generate_animation_positions"); DEBUG_ASSERT (tw != NULL); gint i; gint last_pos_x = config_getint ("x_pos"); gint last_pos_y = config_getint ("y_pos"); GdkRectangle rectangle; config_get_configured_window_size (&rectangle); gint last_width = rectangle.width; gint last_height = rectangle.height; gint screen_width; gint screen_height; screen_size_get_dimensions (&screen_width, &screen_height); for (i=0; i<32; i++) { switch (config_getint ("animation_orientation")) { case 3: /* right->left RIGHT */ animation_coordinates[ANIMATION_UP][ANIMATION_Y][i] = last_pos_y; animation_coordinates[ANIMATION_UP][ANIMATION_X][i] = (gint)(screen_width + (last_pos_x - screen_width) * animation_ease_function_up(i, 32)); animation_coordinates[ANIMATION_DOWN][ANIMATION_Y][i] = last_pos_y; animation_coordinates[ANIMATION_DOWN][ANIMATION_X][i] = (gint)(screen_width + (last_pos_x - screen_width) * animation_ease_function_down(i, 32)); break; case 2: /* left->right LEFT */ animation_coordinates[ANIMATION_UP][ANIMATION_Y][i] = last_pos_y; animation_coordinates[ANIMATION_UP][ANIMATION_X][i] = (gint)(-last_width + (last_pos_x - -last_width) * animation_ease_function_up(i, 32)); animation_coordinates[ANIMATION_DOWN][ANIMATION_Y][i] = last_pos_y; animation_coordinates[ANIMATION_DOWN][ANIMATION_X][i] = (gint)(-last_width + (last_pos_x - -last_width) * animation_ease_function_down(i, 32)); break; case 1: /* bottom->top BOTTOM */ animation_coordinates[ANIMATION_UP][ANIMATION_Y][i] = (gint)(screen_height + (last_pos_y - screen_height) * animation_ease_function_up(i, 32)); animation_coordinates[ANIMATION_UP][ANIMATION_X][i] = last_pos_x; animation_coordinates[ANIMATION_DOWN][ANIMATION_Y][i] = (gint)(screen_height + (last_pos_y - screen_height) * animation_ease_function_down(i, 32)); animation_coordinates[ANIMATION_DOWN][ANIMATION_X][i] = last_pos_x; break; case 0: /* top->bottom TOP */ default: animation_coordinates[ANIMATION_UP][ANIMATION_Y][i] = (gint)(-last_height + (last_pos_y - -last_height) * animation_ease_function_up(i, 32)); animation_coordinates[ANIMATION_UP][ANIMATION_X][i] = last_pos_x; animation_coordinates[ANIMATION_DOWN][ANIMATION_Y][i] = (gint)(-last_height + (last_pos_y - -last_height) * animation_ease_function_down(i, 32)); animation_coordinates[ANIMATION_DOWN][ANIMATION_X][i] = last_pos_x; break; } } } /* Shamelessly adapted (read: ripped off) from gdk_window_focus() and * http://code.google.com/p/ttm/ trunk/src/window.c set_active() * * Also, more thanks to halfline and marnanel from irc.gnome.org #gnome * for their help in figuring this out. * * Thank you. And boo to metacity, because they keep breaking us. */ /* This function will make sure that tilda window becomes active (gains * the focus) when it is called. * * This has to be the worst possible way of making this work, but it was the * only way to get metacity to play nicely. All the other WM's are so nice, * why oh why does metacity hate us so? */ void tilda_window_set_active (tilda_window *tw) { DEBUG_FUNCTION ("tilda_window_set_active"); DEBUG_ASSERT (tw != NULL); GdkScreen *screen = gtk_widget_get_screen (tw->window); Display *x11_display = GDK_WINDOW_XDISPLAY (gdk_screen_get_root_window (screen)); Window x11_window = GDK_WINDOW_XID (gtk_widget_get_window (tw->window) ); Window x11_root_window = GDK_WINDOW_XID ( gdk_screen_get_root_window (screen) ); XEvent event; long mask = SubstructureRedirectMask | SubstructureNotifyMask; gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); if (gdk_x11_screen_supports_net_wm_hint (screen, gdk_atom_intern_static_string ("_NET_ACTIVE_WINDOW"))) { guint32 timestamp = gtk_get_current_event_time (); if (timestamp == 0) { timestamp = gdk_x11_get_server_time(gdk_screen_get_root_window (screen)); } event.xclient.type = ClientMessage; event.xclient.serial = 0; event.xclient.send_event = True; event.xclient.display = x11_display; event.xclient.window = x11_window; event.xclient.message_type = gdk_x11_get_xatom_by_name ("_NET_ACTIVE_WINDOW"); event.xclient.format = 32; event.xclient.data.l[0] = 2; /* pager */ event.xclient.data.l[1] = timestamp; /* timestamp */ event.xclient.data.l[2] = 0; event.xclient.data.l[3] = 0; event.xclient.data.l[4] = 0; XSendEvent (x11_display, x11_root_window, False, mask, &event); } else { /* The WM doesn't support the EWMH standards. We'll print a warning and * try this, though it probably won't work... */ g_printerr (_("WARNING: Window manager (%s) does not support EWMH hints\n"), gdk_x11_screen_get_window_manager_name (screen)); XRaiseWindow (x11_display, x11_window); } } /* Process all pending GTK events, without returning to the GTK mainloop */ static void process_all_pending_gtk_events () { GdkDisplay *display = gdk_display_get_default (); while (gtk_events_pending ()) gtk_main_iteration (); /* This is not strictly necessary, but I think it makes the animation * look a little smoother. However, it probably does increase the load * on the X server. */ gdk_display_flush (display); } /** * @force_hide: This option is used by the auto hide feature, so we can ignore the checks to focus tilda instead * of pulling up. */ void pull (struct tilda_window_ *tw, enum pull_action action, gboolean force_hide) { DEBUG_FUNCTION ("pull"); DEBUG_ASSERT (tw != NULL); DEBUG_ASSERT (action == PULL_UP || action == PULL_DOWN || action == PULL_TOGGLE); gboolean needsFocus = !tw->focus_loss_on_keypress && !gtk_window_is_active(GTK_WINDOW(tw->window)) && !force_hide && !tw->hide_non_focused; if (g_get_monotonic_time() - tw->last_action_time < 150 * G_TIME_SPAN_MILLISECOND) { /* this is to prevent crazy toggling, with 150ms prevention time */ return; } if (tw->current_state == STATE_DOWN && needsFocus) { /** * See tilda_window.c in focus_out_event_cb for an explanation about focus_loss_on_keypress * This conditional branch will only focus tilda but it does not actually pull the window up. */ g_debug ("Tilda window not focused but visible"); gdk_x11_window_set_user_time(gtk_widget_get_window(tw->window), tomboy_keybinder_get_current_event_time()); tilda_window_set_active(tw); return; } if ((tw->current_state == STATE_UP) && action != PULL_UP) { pull_down (tw); } else if ((tw->current_state == STATE_DOWN) && action != PULL_DOWN) { pull_up (tw); } tw->last_action = action; tw->last_action_time = g_get_monotonic_time(); } static void pull_up (struct tilda_window_ *tw) { tw->current_state = STATE_GOING_UP; gdk_x11_window_set_user_time (gtk_widget_get_window (tw->window), tomboy_keybinder_get_current_event_time()); if (tw->fullscreen) { gtk_window_unfullscreen (GTK_WINDOW(tw->window)); } if (config_getbool ("animation") && !tw->fullscreen) { GdkWindow *x11window; GdkDisplay *display; Atom atom; if (!config_getbool ("set_as_desktop")) { x11window = gtk_widget_get_window (tw->window); display = gdk_window_get_display (x11window); atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DOCK"); XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (x11window), gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE"), XA_ATOM, 32, PropModeReplace, (guchar *) &atom, 1); process_all_pending_gtk_events (); } gint slide_sleep_usec = config_getint ("slide_sleep_usec"); for (guint i=0; i<32; i++) { gtk_window_move (GTK_WINDOW(tw->window), animation_coordinates[ANIMATION_UP][ANIMATION_X][i], animation_coordinates[ANIMATION_UP][ANIMATION_Y][i]); process_all_pending_gtk_events (); g_usleep (slide_sleep_usec); } if (!config_getbool ("set_as_desktop")) { x11window = gtk_widget_get_window (tw->window); display = gdk_window_get_display (x11window); if (config_getbool ("set_as_desktop")) { atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DESKTOP"); } else { atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_NORMAL"); } XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (x11window), gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE"), XA_ATOM, 32, PropModeReplace, (guchar *) &atom, 1); } } /* All we have to do at this point is hide the window. * Case 1 - Animation on: The window has moved outside the screen, just hide it * Case 2 - Animation off: Just hide the window */ gtk_widget_hide (GTK_WIDGET(tw->window)); g_debug ("pull_up(): MOVED UP"); tw->current_state = STATE_UP; } static void pull_down (struct tilda_window_ *tw) { tw->current_state = STATE_GOING_DOWN; /* Keep things here just like they are. If you use gtk_window_present() here, you * will introduce some weird graphical glitches. Also, calling gtk_window_move() * before showing the window avoids yet more glitches. You should probably not use * gtk_window_show_all() here, as it takes a long time to execute. * * Overriding the user time here seems to work a lot better than calling * gtk_window_present_with_time() here, or at the end of the function. I have * no idea why, they should do the same thing. */ gdk_x11_window_set_user_time (gtk_widget_get_window (tw->window), tomboy_keybinder_get_current_event_time()); gtk_widget_show (GTK_WIDGET(tw->window)); #if GTK_MINOR_VERSION == 16 /* Temporary fix for GTK breaking restore on Fullscreen, only needed for * GTK+ version 3.16, since it was fixed early in 3.17 and above. */ tilda_window_set_fullscreen(tw); #endif /* The window should maintain its properties when it is merely hidden, but it does * not. If you delete the following call, the window will not remain visible * on all workspaces after pull()ing it up and down a number of times. * * Note that the "Always on top" property doesn't seem to go away, only this * property (Show on all desktops) does... */ if (config_getbool ("pinned")) gtk_window_stick (GTK_WINDOW (tw->window)); if (config_getbool ("animation") && !tw->fullscreen) { GdkWindow *x11window; GdkDisplay *display; Atom atom; if (!config_getbool ("set_as_desktop")) { x11window = gtk_widget_get_window (tw->window); display = gdk_window_get_display (x11window); atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DOCK"); XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (x11window), gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE"), XA_ATOM, 32, PropModeReplace, (guchar *) &atom, 1); process_all_pending_gtk_events (); } gint slide_sleep_usec = config_getint ("slide_sleep_usec"); for (guint i=0; i<32; i++) { gtk_window_move (GTK_WINDOW(tw->window), animation_coordinates[ANIMATION_DOWN][ANIMATION_X][i], animation_coordinates[ANIMATION_DOWN][ANIMATION_Y][i]); process_all_pending_gtk_events (); g_usleep (slide_sleep_usec); } if (!config_getbool ("set_as_desktop")) { x11window = gtk_widget_get_window (tw->window); display = gdk_window_get_display (x11window); if (config_getbool ("set_as_desktop")) { atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_DESKTOP"); } else { atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_NORMAL"); } XChangeProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (x11window), gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE"), XA_ATOM, 32, PropModeReplace, (guchar *) &atom, 1); } } else { gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); } /* Nasty code to make metacity behave. Starting at metacity-2.22 they "fixed" the * focus stealing prevention to make the old _NET_WM_USER_TIME hack * not work anymore. This is working for now... */ tilda_window_set_active (tw); if (tw->fullscreen) { gtk_window_fullscreen (GTK_WINDOW(tw->window)); } g_debug ("pull_down(): MOVED DOWN"); tw->current_state = STATE_DOWN; } static void onKeybindingPull (G_GNUC_UNUSED const char *keystring, gpointer user_data) { DEBUG_FUNCTION("onKeybindingPull"); tilda_window *tw = TILDA_WINDOW(user_data); pull (tw, PULL_TOGGLE, FALSE); } gboolean tilda_keygrabber_bind (const gchar *keystr, tilda_window *tw) { /* Empty strings are no good */ if (keystr == NULL || strcmp ("", keystr) == 0) return FALSE; return tomboy_keybinder_bind (keystr, (TomboyBindkeyHandler)onKeybindingPull, tw); } void tilda_keygrabber_unbind (const gchar *keystr) { tomboy_keybinder_unbind (keystr, (TomboyBindkeyHandler)onKeybindingPull); } /* vim: set ts=4 sts=4 sw=4 expandtab: */ tilda-1.5.0/src/eggaccelerators.c0000644000175000017500000001306413276007273013633 00000000000000/* vim: set ts=4 sts=4 sw=4 expandtab: */ /* eggaccelerators.c * Copyright (C) 2002 Red Hat, Inc.; Copyright 1998, 2001 Tim Janik * Developed by Havoc Pennington, Tim Janik * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #include "eggaccelerators.h" #include #include #include enum { EGG_MODMAP_ENTRY_SHIFT = 0, EGG_MODMAP_ENTRY_LOCK = 1, EGG_MODMAP_ENTRY_CONTROL = 2, EGG_MODMAP_ENTRY_MOD1 = 3, EGG_MODMAP_ENTRY_MOD2 = 4, EGG_MODMAP_ENTRY_MOD3 = 5, EGG_MODMAP_ENTRY_MOD4 = 6, EGG_MODMAP_ENTRY_MOD5 = 7, EGG_MODMAP_ENTRY_LAST = 8 }; typedef struct { EggVirtualModifierType mapping[EGG_MODMAP_ENTRY_LAST]; } EggModmap; const EggModmap* egg_keymap_get_modmap (GdkKeymap *keymap); void egg_keymap_resolve_virtual_modifiers (GdkKeymap *keymap, EggVirtualModifierType virtual_mods, GdkModifierType *concrete_mods) { GdkModifierType concrete; int i; const EggModmap *modmap; g_return_if_fail (GDK_IS_KEYMAP (keymap)); g_return_if_fail (concrete_mods != NULL); modmap = egg_keymap_get_modmap (keymap); /* Not so sure about this algorithm. */ concrete = (GdkModifierType) 0; i = 0; while (i < EGG_MODMAP_ENTRY_LAST) { if (modmap->mapping[i] & virtual_mods) concrete |= (1 << i); ++i; } *concrete_mods = concrete; } static void reload_modmap (GdkKeymap *keymap, EggModmap *modmap) { XModifierKeymap *xmodmap; int map_size; int i; /* FIXME multihead */ xmodmap = XGetModifierMapping (gdk_x11_get_default_xdisplay ()); memset (modmap->mapping, 0, sizeof (modmap->mapping)); /* there are 8 modifiers, and the first 3 are shift, shift lock, * and control */ map_size = 8 * xmodmap->max_keypermod; i = 3 * xmodmap->max_keypermod; while (i < map_size) { /* get the key code at this point in the map, * see if its keysym is one we're interested in */ int keycode = xmodmap->modifiermap[i]; GdkKeymapKey *keys; guint *keyvals; int n_entries; int j; EggVirtualModifierType mask; keys = NULL; keyvals = NULL; n_entries = 0; gdk_keymap_get_entries_for_keycode (keymap, keycode, &keys, &keyvals, &n_entries); mask = 0; j = 0; while (j < n_entries) { if (keyvals[j] == GDK_KEY_Num_Lock) mask |= EGG_VIRTUAL_NUM_LOCK_MASK; else if (keyvals[j] == GDK_KEY_Scroll_Lock) mask |= EGG_VIRTUAL_SCROLL_LOCK_MASK; else if (keyvals[j] == GDK_KEY_Meta_L || keyvals[j] == GDK_KEY_Meta_R) mask |= EGG_VIRTUAL_META_MASK; else if (keyvals[j] == GDK_KEY_Hyper_L || keyvals[j] == GDK_KEY_Hyper_R) mask |= EGG_VIRTUAL_HYPER_MASK; else if (keyvals[j] == GDK_KEY_Super_L || keyvals[j] == GDK_KEY_Super_R) mask |= EGG_VIRTUAL_SUPER_MASK; else if (keyvals[j] == GDK_KEY_Mode_switch) mask |= EGG_VIRTUAL_MODE_SWITCH_MASK; ++j; } /* Mod1Mask is 1 << 3 for example, i.e. the * fourth modifier, i / keyspermod is the modifier * index */ modmap->mapping[i/xmodmap->max_keypermod] |= mask; g_free (keyvals); g_free (keys); ++i; } /* Add in the not-really-virtual fixed entries */ modmap->mapping[EGG_MODMAP_ENTRY_SHIFT] |= EGG_VIRTUAL_SHIFT_MASK; modmap->mapping[EGG_MODMAP_ENTRY_CONTROL] |= EGG_VIRTUAL_CONTROL_MASK; modmap->mapping[EGG_MODMAP_ENTRY_LOCK] |= EGG_VIRTUAL_LOCK_MASK; modmap->mapping[EGG_MODMAP_ENTRY_MOD1] |= EGG_VIRTUAL_ALT_MASK; modmap->mapping[EGG_MODMAP_ENTRY_MOD2] |= EGG_VIRTUAL_MOD2_MASK; modmap->mapping[EGG_MODMAP_ENTRY_MOD3] |= EGG_VIRTUAL_MOD3_MASK; modmap->mapping[EGG_MODMAP_ENTRY_MOD4] |= EGG_VIRTUAL_MOD4_MASK; modmap->mapping[EGG_MODMAP_ENTRY_MOD5] |= EGG_VIRTUAL_MOD5_MASK; XFreeModifiermap (xmodmap); } const EggModmap* egg_keymap_get_modmap (GdkKeymap *keymap) { EggModmap *modmap; /* This is all a hack, much simpler when we can just * modify GDK directly. */ modmap = g_object_get_data (G_OBJECT (keymap), "egg-modmap"); if (modmap == NULL) { modmap = g_new0 (EggModmap, 1); /* FIXME modify keymap change events with an event filter * and force a reload if we get one */ reload_modmap (keymap, modmap); g_object_set_data_full (G_OBJECT (keymap), "egg-modmap", modmap, g_free); } g_assert (modmap != NULL); return modmap; } tilda-1.5.0/src/vte-util.h0000644000175000017500000000210613617620115012245 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef VTE_UTIL_H #define VTE_UTIL_H #include #include G_BEGIN_DECLS #define VTE_CHECK_VERSION_RUMTIME(major,minor,micro) \ (vte_get_major_version () > (major) || \ (vte_get_major_version () == (major) && vte_get_minor_version () > (minor)) || \ (vte_get_major_version () == (major) && vte_get_minor_version () == (minor) && vte_get_micro_version () >= (micro))) G_END_DECLS #endif tilda-1.5.0/src/tilda-enum-types.c0000644000175000017500000000160613615563426013705 00000000000000 /* This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */ #include "tilda-enum-types.h" /* enumerations from "../src/tilda-search-box.h" */ #include "../src/tilda-search-box.h" GType tilda_search_direction_get_type (void) { static GType the_type = 0; if (the_type == 0) { static const GEnumValue values[] = { { SEARCH_FORWARD, "SEARCH_FORWARD", "forward" }, { SEARCH_BACKWARD, "SEARCH_BACKWARD", "backward" }, { 0, NULL, NULL } }; the_type = g_enum_register_static ( g_intern_static_string ("TildaSearchDirection"), values); } return the_type; } /* Generated data ends here */ tilda-1.5.0/src/tomboykeybinder.h0000644000175000017500000000336513276007273013717 00000000000000/* tomboykeybinder.h * Copyright (C) 2008 Alex Graveley * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __TOMBOY_KEY_BINDER_H__ #define __TOMBOY_KEY_BINDER_H__ #include G_BEGIN_DECLS typedef void (*TomboyBindkeyHandler) (char *keystring, gpointer user_data); void tomboy_keybinder_init (void); gboolean tomboy_keybinder_bind (const char *keystring, TomboyBindkeyHandler handler, gpointer user_data); void tomboy_keybinder_unbind (const char *keystring, TomboyBindkeyHandler handler); gboolean tomboy_keybinder_is_modifier (guint keycode); guint32 tomboy_keybinder_get_current_event_time (void); G_END_DECLS #endif /* __TOMBOY_KEY_BINDER_H__ */ tilda-1.5.0/src/tilda_terminal.c0000644000175000017500000010750713617620115013472 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #include #include "debug.h" #include "tilda.h" #include "tilda_window.h" #include "tilda_terminal.h" #include "configsys.h" #include "wizard.h" /* wizard */ #include #include /* malloc */ #include #include #include #include #include #include #define HTTP_REGEXP "(ftp|http)s?://[\\[\\]-a-zA-Z0-9.?!$%&/=_~#.,:;+]*" static void start_shell (tilda_term *tt, gboolean ignore_custom_command); static void start_default_shell (tilda_term *tt); static gint tilda_term_config_defaults (tilda_term *tt); static void child_exited_cb (GtkWidget *widget, gint status, gpointer data); static void window_title_changed_cb (GtkWidget *widget, gpointer data); static int button_press_cb (GtkWidget *widget, GdkEventButton *event, gpointer data); static gboolean key_press_cb (GtkWidget *widget, GdkEvent *event, tilda_term *terminal); static void iconify_window_cb (GtkWidget *widget, gpointer data); static void deiconify_window_cb (GtkWidget *widget, gpointer data); static void raise_window_cb (GtkWidget *widget, gpointer data); static void lower_window_cb (GtkWidget *widget, gpointer data); static void maximize_window_cb (GtkWidget *widget, gpointer data); static void restore_window_cb (GtkWidget *widget, gpointer data); static void refresh_window_cb (GtkWidget *widget, gpointer data); static void move_window_cb (GtkWidget *widget, guint x, guint y, gpointer data); static gchar *get_default_command (void); gchar *get_working_directory (tilda_term *terminal); gint tilda_term_free (tilda_term *term) { DEBUG_FUNCTION ("tilda_term_free"); DEBUG_ASSERT (term != NULL); g_free (term->initial_working_dir); g_signal_handlers_disconnect_by_func (term->vte_term, child_exited_cb, term); g_clear_object (&term->hbox); g_clear_object (&term->scrollbar); g_clear_object (&term->vte_term); g_regex_unref (term->http_regexp); term->http_regexp = NULL; g_free (term); return 0; } static void tilda_terminal_switch_page_cb (GtkNotebook *notebook, GtkWidget *page, guint page_num, tilda_window *tw) { DEBUG_FUNCTION ("tilda_terminal_switch_page_cb"); guint counter = 0; tilda_term *term = NULL; for(GList *item=tw->terms; item != NULL; item=item->next) { if(counter == page_num) { term = (tilda_term*) item->data; } counter++; } char * current_title = tilda_terminal_get_title (term); if (current_title != NULL) { gtk_window_set_title (GTK_WINDOW (tw->window), current_title); } g_free (current_title); } struct tilda_term_ *tilda_term_init (struct tilda_window_ *tw) { DEBUG_FUNCTION ("tilda_term_init"); DEBUG_ASSERT (tw != NULL); int ret; struct tilda_term_ *term; GError *error = NULL; tilda_term *current_tt; gint current_tt_index; term = g_new0 (tilda_term, 1); /* Add to GList list of tilda_term structures in tilda_window structure */ tw->terms = g_list_append (tw->terms, term); /* Check for a failed allocation */ if (!term) return NULL; /* Set the PID to unset value */ term->pid = -1; /* Add the parent window reference */ term->tw = tw; /* Create a non-homogenous hbox, with 0px spacing between members */ term->hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); g_object_ref (term->hbox); /* Create the terminal */ term->vte_term = vte_terminal_new (); g_object_ref (term->vte_term); /* Create the scrollbar for the terminal */ term->scrollbar = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (VTE_TERMINAL(term->vte_term)))); g_object_ref (term->scrollbar); gtk_widget_set_no_show_all (term->scrollbar, TRUE); /* Initialize to false, we have not yet dropped to the default shell */ term->dropped_to_default_shell = FALSE; /* Set properties of the terminal */ tilda_term_config_defaults (term); /* Update the font scale because the newly created terminal uses the default font size */ tilda_term_adjust_font_scale(term, tw->current_scale_factor); /* Pack everything into the hbox */ gtk_box_pack_end (GTK_BOX(term->hbox), term->scrollbar, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX(term->hbox), term->vte_term, TRUE, TRUE, 0); gtk_widget_show (term->scrollbar); /* Set the scrollbar position */ tilda_term_set_scrollbar_position (term, config_getint ("scrollbar_pos")); /** Signal Connection **/ g_signal_connect (G_OBJECT(term->vte_term), "child-exited", G_CALLBACK(child_exited_cb), term); g_signal_connect (G_OBJECT(term->vte_term), "window-title-changed", G_CALLBACK(window_title_changed_cb), term); g_signal_connect (G_OBJECT(term->vte_term), "button-press-event", G_CALLBACK(button_press_cb), term); g_signal_connect (G_OBJECT(term->vte_term), "key-press-event", G_CALLBACK(key_press_cb), term); //needs GDK_KEY_PRESS_MASK /* Connect to application request signals. */ g_signal_connect (G_OBJECT(term->vte_term), "iconify-window", G_CALLBACK(iconify_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "deiconify-window", G_CALLBACK(deiconify_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "raise-window", G_CALLBACK(raise_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "lower-window", G_CALLBACK(lower_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "maximize-window", G_CALLBACK(maximize_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "restore-window", G_CALLBACK(restore_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "refresh-window", G_CALLBACK(refresh_window_cb), tw->window); g_signal_connect (G_OBJECT(term->vte_term), "move-window", G_CALLBACK(move_window_cb), tw->window); g_signal_connect (G_OBJECT (tw->notebook), "switch-page", G_CALLBACK (tilda_terminal_switch_page_cb), tw); /* Match URL's, etc */ term->http_regexp=g_regex_new(HTTP_REGEXP, G_REGEX_CASELESS, G_REGEX_MATCH_NOTEMPTY, &error); ret = vte_terminal_match_add_gregex(VTE_TERMINAL(term->vte_term), term->http_regexp,0); vte_terminal_match_set_cursor_type (VTE_TERMINAL(term->vte_term), ret, GDK_HAND2); /* Show the child widgets */ gtk_widget_show (term->vte_term); gtk_widget_show (term->hbox); /* Get current term's working directory */ current_tt_index = gtk_notebook_get_current_page (GTK_NOTEBOOK(tw->notebook)); current_tt = g_list_nth_data (tw->terms, current_tt_index); if (current_tt != NULL) { term->initial_working_dir = tilda_term_get_cwd (current_tt); } /* Fork the appropriate command into the terminal */ start_shell (term, FALSE); return term; } void tilda_term_set_scrollbar_position (tilda_term *tt, enum tilda_term_scrollbar_positions pos) { DEBUG_FUNCTION ("tilda_term_set_scrollbar_position"); DEBUG_ASSERT (tt != NULL); DEBUG_ASSERT (pos == LEFT || pos == RIGHT || pos == DISABLED); if (pos == DISABLED) { gtk_widget_hide (tt->scrollbar); } else { /* We have already asserted that it's either disabled (already taken care of), * left, or right, so no need to check twice. */ gtk_box_reorder_child (GTK_BOX(tt->hbox), tt->scrollbar, (pos == LEFT) ? 0 : 1); gtk_widget_show (tt->scrollbar); } } static void window_title_changed_cb (GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("window_title_changed_cb"); DEBUG_ASSERT (widget != NULL); DEBUG_ASSERT (data != NULL); tilda_term *tt = TILDA_TERM(data); gchar * title = tilda_terminal_get_title (tt); gchar * full_title = tilda_terminal_get_full_title (tt); GtkWidget *label; label = gtk_notebook_get_tab_label (GTK_NOTEBOOK (tt->tw->notebook), tt->hbox); /* We need to check if the widget that received the title change is the currently * active tab. If not we should not update the window title. */ gint page = gtk_notebook_get_current_page (GTK_NOTEBOOK (tt->tw->notebook)); gboolean active; if (page >= 0) { tilda_term *currente_term; currente_term = g_list_nth_data (tt->tw->terms, (guint) page); active = widget == currente_term->vte_term; } else { active = TRUE; } gtk_label_set_text (GTK_LABEL(label), title); if (active) { gtk_window_set_title (GTK_WINDOW (tt->tw->window), title); } if(config_getbool("show_title_tooltip")) gtk_widget_set_tooltip_text(label, full_title); else gtk_widget_set_tooltip_text(label, ""); g_free (title); } static void iconify_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("iconify_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window ((GTK_WIDGET (data)))) gdk_window_iconify (gtk_widget_get_window ((GTK_WIDGET (data)))); } static void deiconify_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("deiconify_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window ((GTK_WIDGET (data)))) gdk_window_deiconify (gtk_widget_get_window ((GTK_WIDGET (data)))); } static void raise_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("raise_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window (GTK_WIDGET (data))) gdk_window_raise (gtk_widget_get_window (GTK_WIDGET (data))); } static void lower_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("lower_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window (GTK_WIDGET (data))) gdk_window_lower (gtk_widget_get_window (GTK_WIDGET (data))); } static void maximize_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("maximize_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window (GTK_WIDGET(data))) gdk_window_maximize (gtk_widget_get_window (GTK_WIDGET(data))); } static void restore_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("restore_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window (GTK_WIDGET (data))) gdk_window_unmaximize (gtk_widget_get_window (GTK_WIDGET (data))); } static void refresh_window_cb (G_GNUC_UNUSED GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("refresh_window_cb"); DEBUG_ASSERT (data != NULL); GdkRectangle rect; if (GTK_IS_WIDGET(data)) { if (gtk_widget_get_window (GTK_WIDGET (data))) { rect.x = rect.y = 0; GtkAllocation allocation; gtk_widget_get_allocation (GTK_WIDGET (data), &allocation); rect.width = allocation.width; rect.height = allocation.height; gdk_window_invalidate_rect (gtk_widget_get_window (GTK_WIDGET(data)), &rect, TRUE); } } } static void move_window_cb (G_GNUC_UNUSED GtkWidget *widgets, guint x, guint y, gpointer data) { DEBUG_FUNCTION ("move_window_cb"); DEBUG_ASSERT (data != NULL); if (GTK_IS_WIDGET(data)) if (gtk_widget_get_window (GTK_WIDGET (data))) gdk_window_move (gtk_widget_get_window (GTK_WIDGET (data)), x, y); } void tilda_term_adjust_font_scale(tilda_term *term, gdouble scale) { DEBUG_FUNCTION ("tilda_term_adjust_font_scale"); VteTerminal *terminal = VTE_TERMINAL(term->vte_term); /* We need the tilda_term object to access the unscaled * font size and current scale factor */ PangoFontDescription *desired; desired = pango_font_description_copy (vte_terminal_get_font(terminal)); pango_font_description_set_size (desired, (gint) (term->tw->unscaled_font_size * scale)); vte_terminal_set_font (terminal, desired); pango_font_description_free (desired); } /* Returns the working directory of the terminal * * @param tt the tilda_term to get working directory of * * SUCCESS: return non-NULL char* that should be freed with g_free when done * FAILURE: return NULL */ char* tilda_term_get_cwd(struct tilda_term_* tt) { char *file; char *cwd; GError *error = NULL; if (tt->pid < 0) { return NULL; } file = g_strdup_printf ("/proc/%d/cwd", tt->pid); cwd = g_file_read_link (file, &error); g_free (file); if (cwd == NULL) { g_printerr (_("Problem reading link %s: %s\n"), file, error->message); g_error_free (error); } return cwd; } static void shell_spawned_cb (VteTerminal *terminal, GPid pid, GError *error, gpointer user_data) { DEBUG_FUNCTION ("shell_spawned_cb"); tilda_term *tt; tt = user_data; if (error) { if (tt->dropped_to_default_shell) { g_printerr (_("Unable to launch default shell: %s\n"), get_default_command ()); } else { g_printerr (_("Unable to launch custom command: %s\n"), config_getstr ("command")); g_printerr (_("Launching custom command failed with error: %s\n"), error->message); g_printerr (_("Launching default shell instead\n")); start_default_shell (tt); tt->dropped_to_default_shell = TRUE; } return; } tt->pid = pid; } /* Fork a shell into the VTE Terminal * * @param tt the tilda_term to fork into */ static void start_shell (tilda_term *tt, gboolean ignore_custom_command) { DEBUG_FUNCTION ("start_shell"); DEBUG_ASSERT (tt != NULL); gint ret; gint argc; gchar **argv; GError *error = NULL; if (config_getbool ("run_command") && !ignore_custom_command) { ret = g_shell_parse_argv (config_getstr ("command"), &argc, &argv, &error); /* Check for error */ if (ret == FALSE) { g_printerr (_("Problem parsing custom command: %s\n"), error->message); g_printerr (_("Launching default shell instead\n")); g_error_free (error); start_default_shell (tt); } gchar *working_dir = get_working_directory (tt); gint command_timeout = config_getint ("command_timeout_ms"); char **envv = malloc(2*sizeof(void *)); envv[0] = getenv("PATH"); envv[1] = NULL; vte_terminal_spawn_async (VTE_TERMINAL (tt->vte_term), VTE_PTY_DEFAULT, /* VtePtyFlags pty_flags */ working_dir, /* const char *working_directory */ argv, /* char **argv */ envv, /* char **envv */ G_SPAWN_SEARCH_PATH, /* GSpawnFlags spawn_flags */ NULL, /* GSpawnChildSetupFunc child_setup */ NULL, /* gpointer child_setup_data */ NULL, /* GDestroyNotify child_setup_data_destroy */ command_timeout, /* timeout in ms */ NULL, /* GCancellable * cancellable, */ shell_spawned_cb, /* VteTerminalSpawnAsyncCallback callback */ tt); /* user_data */ g_strfreev (argv); g_free (envv); } else { start_default_shell (tt); } } static void start_default_shell (tilda_term *tt) { gchar **argv; /* If we have dropped to the default shell before, then this time, we * do not spawn a new shell, but instead close the current shell. This will * cause the current tab to close. */ if (tt->dropped_to_default_shell) { gint index = gtk_notebook_page_num (GTK_NOTEBOOK(tt->tw->notebook), tt->hbox); tilda_window_close_tab (tt->tw, index, FALSE); return; } gchar *default_command = get_default_command (); gchar *working_dir = get_working_directory (tt); gint command_timeout = config_getint ("command_timeout_ms"); /* We need to create a NULL terminated list of arguments. * The first item is the command to execute in the shell, in this * case there are no further arguments being passed. */ GSpawnFlags flags = 0; gchar* argv1 = NULL; if(config_getbool("command_login_shell")) { argv1 = g_strdup_printf("-%s", default_command); argv = malloc(3 * sizeof(void *)); argv[0] = default_command; argv[1] = argv1; argv[2] = NULL; /* This is needed so that argv[1] becomes the argv[0] of the new process. Otherwise * glib just duplicates argv[0] when it executes the command and it is not possible * to modify the argv[0] that the new command sees. */ flags |= G_SPAWN_FILE_AND_ARGV_ZERO; } else { argv = malloc(1 * sizeof(void *)); argv[0] = default_command; argv[1] = NULL; } vte_terminal_spawn_async (VTE_TERMINAL (tt->vte_term), VTE_PTY_DEFAULT, /* VtePtyFlags pty_flags */ working_dir, /* const char *working_directory */ argv, /* char **argv */ NULL, /* char **envv */ flags, /* GSpawnFlags spawn_flags */ NULL, /* GSpawnChildSetupFunc child_setup */ NULL, /* gpointer child_setup_data */ NULL, /* GDestroyNotify child_setup_data_destroy */ command_timeout, /* timeout in ms */ NULL, /* GCancellable * cancellable, */ shell_spawned_cb, /* VteTerminalSpawnAsyncCallback callback */ tt); /* user_data */ g_free(argv1); g_free (argv); } gchar * get_default_command () { /* No custom command, get it from the environment */ gchar *default_command = (gchar *) g_getenv ("SHELL"); /* Check for error */ if (default_command == NULL) default_command = "/bin/sh"; return default_command; } gchar *get_working_directory (tilda_term *terminal) { gchar *working_dir; working_dir = terminal->initial_working_dir; if (working_dir == NULL || config_getbool ("inherit_working_dir") == FALSE) { working_dir = config_getstr ("working_dir"); } return working_dir; } static void child_exited_cb (GtkWidget *widget, gint status, gpointer data) { DEBUG_FUNCTION ("child_exited_cb"); DEBUG_ASSERT (widget != NULL); DEBUG_ASSERT (data != NULL); tilda_term *tt = TILDA_TERM(data); gint index = gtk_notebook_page_num (GTK_NOTEBOOK(tt->tw->notebook), tt->hbox); /* Make sure we got a valid index */ if (index == -1) { DEBUG_ERROR ("Bad notebook tab\n"); return; } /* These can stay here. They don't need to go into a header because * they are only used at this point in the code. */ enum command_exit { DROP_TO_DEFAULT_SHELL, RESTART_COMMAND, EXIT_TERMINAL }; /* Check the user's preference for what to do when the child terminal * is closed. Take the appropriate action */ switch (config_getint ("command_exit")) { case EXIT_TERMINAL: tilda_window_close_tab (tt->tw, index, FALSE); break; case RESTART_COMMAND: vte_terminal_feed (VTE_TERMINAL(tt->vte_term), "\r\n\r\n", 4); start_shell (tt, FALSE); break; case DROP_TO_DEFAULT_SHELL: tt->initial_working_dir = NULL; start_default_shell (tt); tt->dropped_to_default_shell = TRUE; break; default: break; } } /** * tilda_term_config_defaults () * * Read and set all of the defaults for this terminal from the current configuration. * * Success: return 0 * Failure: return non-zero */ static gint tilda_term_config_defaults (tilda_term *tt) { DEBUG_FUNCTION ("tilda_term_config_defaults"); DEBUG_ASSERT (tt != NULL); GdkRGBA fg, bg, cc; GdkRGBA *current_palette; gchar* word_chars; gint cursor_shape; /** Colors & Palette **/ bg.red = GUINT16_TO_FLOAT(config_getint ("back_red")); bg.green = GUINT16_TO_FLOAT(config_getint ("back_green")); bg.blue = GUINT16_TO_FLOAT(config_getint ("back_blue")); bg.alpha = (config_getbool("enable_transparency") ? GUINT16_TO_FLOAT(config_getint ("back_alpha")) : 1.0); fg.red = GUINT16_TO_FLOAT(config_getint ("text_red")); fg.green = GUINT16_TO_FLOAT(config_getint ("text_green")); fg.blue = GUINT16_TO_FLOAT(config_getint ("text_blue")); fg.alpha = 1.0; cc.red = GUINT16_TO_FLOAT(config_getint ("cursor_red")); cc.green = GUINT16_TO_FLOAT(config_getint ("cursor_green")); cc.blue = GUINT16_TO_FLOAT(config_getint ("cursor_blue")); cc.alpha = 1.0; current_palette = tilda_palettes_get_current_palette (); for(guint i = 0; i < TILDA_COLOR_PALETTE_SIZE; i++) { current_palette[i].red = GUINT16_TO_FLOAT(config_getnint ("palette", i*3)); current_palette[i].green = GUINT16_TO_FLOAT(config_getnint ("palette", i*3+1)); current_palette[i].blue = GUINT16_TO_FLOAT(config_getnint ("palette", i*3+2)); current_palette[i].alpha = 1.0; } vte_terminal_set_colors (VTE_TERMINAL(tt->vte_term), &fg, &bg, current_palette, TILDA_COLOR_PALETTE_SIZE); /** Bells **/ vte_terminal_set_audible_bell (VTE_TERMINAL(tt->vte_term), config_getbool ("bell")); /** Cursor **/ vte_terminal_set_cursor_blink_mode (VTE_TERMINAL(tt->vte_term), (config_getbool ("blinks"))?VTE_CURSOR_BLINK_ON:VTE_CURSOR_BLINK_OFF); vte_terminal_set_color_cursor (VTE_TERMINAL(tt->vte_term), &cc); vte_terminal_set_color_cursor_foreground (VTE_TERMINAL(tt->vte_term), &bg); cursor_shape = config_getint("cursor_shape"); if (cursor_shape < 0 || cursor_shape > 2) { config_setint("cursor_shape", 0); cursor_shape = 0; } vte_terminal_set_cursor_shape(VTE_TERMINAL(tt->vte_term), (VteCursorShape) cursor_shape); /** Scrolling **/ vte_terminal_set_scroll_on_output (VTE_TERMINAL(tt->vte_term), config_getbool ("scroll_on_output")); vte_terminal_set_scroll_on_keystroke (VTE_TERMINAL(tt->vte_term), config_getbool ("scroll_on_key")); /** Mouse **/ vte_terminal_set_mouse_autohide (VTE_TERMINAL(tt->vte_term), FALSE); /* TODO: make this configurable */ /** Text Properties **/ PangoFontDescription *description = pango_font_description_from_string (config_getstr ("font")); vte_terminal_set_font (VTE_TERMINAL (tt->vte_term), description); /** Scrollback **/ vte_terminal_set_scrollback_lines (VTE_TERMINAL(tt->vte_term), config_getbool("scroll_history_infinite") ? -1 : config_getint ("lines")); /** Keys **/ switch (config_getint ("backspace_key")) { case ASCII_DELETE: vte_terminal_set_backspace_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_ASCII_DELETE); break; case DELETE_SEQUENCE: vte_terminal_set_backspace_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_DELETE_SEQUENCE); break; case ASCII_BACKSPACE: vte_terminal_set_backspace_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_ASCII_BACKSPACE); break; case AUTO: default: vte_terminal_set_backspace_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_AUTO); break; } switch (config_getint ("delete_key")) { case ASCII_DELETE: vte_terminal_set_delete_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_ASCII_DELETE); break; case DELETE_SEQUENCE: vte_terminal_set_delete_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_DELETE_SEQUENCE); break; case ASCII_BACKSPACE: vte_terminal_set_delete_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_ASCII_BACKSPACE); break; case AUTO: default: vte_terminal_set_delete_binding (VTE_TERMINAL(tt->vte_term), VTE_ERASE_AUTO); break; } /** Word chars **/ word_chars = config_getstr ("word_chars"); if (NULL == word_chars || '\0' == *word_chars) { word_chars = DEFAULT_WORD_CHARS; } vte_terminal_set_word_char_exceptions (VTE_TERMINAL (tt->vte_term), word_chars); return 0; } static void menu_copy_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_copy_cb"); DEBUG_ASSERT (user_data != NULL); tilda_term *tt = TILDA_TERM(user_data); vte_terminal_copy_clipboard_format (VTE_TERMINAL (tt->vte_term), VTE_FORMAT_TEXT); } static void menu_paste_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_paste_cb"); DEBUG_ASSERT (user_data != NULL); tilda_term *tt = TILDA_TERM(user_data); vte_terminal_paste_clipboard (VTE_TERMINAL (tt->vte_term)); } static void menu_preferences_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_config_cb"); DEBUG_ASSERT (user_data != NULL); /* Show the config wizard */ wizard (TILDA_WINDOW(user_data)); } static void menu_quit_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_quit_cb"); tilda_window_confirm_quit(TILDA_WINDOW(user_data)); } static void menu_add_tab_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_add_tab_cb"); DEBUG_ASSERT (user_data != NULL); tilda_window_add_tab (TILDA_WINDOW(user_data)); } static void menu_fullscreen_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_fullscreen_cb"); DEBUG_ASSERT (user_data != NULL); toggle_fullscreen_cb (TILDA_WINDOW(user_data)); } static void menu_searchbar_cb(GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_fullscreen_cb"); DEBUG_ASSERT (user_data != NULL); tilda_window_toggle_searchbar (TILDA_WINDOW(user_data)); } static void menu_close_tab_cb (GSimpleAction *action, GVariant *parameter, gpointer user_data) { DEBUG_FUNCTION ("menu_close_tab_cb"); DEBUG_ASSERT (user_data != NULL); tilda_window_close_current_tab (TILDA_WINDOW(user_data)); } static void on_popup_hide (GtkWidget *widget, tilda_window *tw) { DEBUG_FUNCTION("on_popup_hide"); DEBUG_ASSERT(widget != NULL); DEBUG_ASSERT(tw != NULL); tw->disable_auto_hide = FALSE; } static void popup_menu (tilda_window *tw, tilda_term *tt, GdkEvent * event) { DEBUG_FUNCTION ("popup_menu"); DEBUG_ASSERT (tw != NULL); DEBUG_ASSERT (tt != NULL); GtkBuilder *builder = gtk_builder_new(); gtk_builder_add_from_resource (builder, "/org/tilda/menu.ui", NULL); /* Create the action group */ GSimpleActionGroup *action_group = g_simple_action_group_new(); /* We need two different lists of entries because the * because the actions have different scope, some concern the * tilda_window and others concern the current terminal, so * when we add them to the action_group we need to pass different * user_data (tw or tt). * * Note: Using designated initializers here, allows us to skip the remaining fields which are NULL anyway and * also gets rid of missing field initializer warnings. */ GActionEntry entries_for_tilda_window[] = { { .name="new-tab", menu_add_tab_cb }, { .name="close-tab", menu_close_tab_cb }, { .name="fullscreen", menu_fullscreen_cb }, { .name="searchbar", menu_searchbar_cb }, { .name="preferences", menu_preferences_cb }, { .name="quit", menu_quit_cb } }; GActionEntry entries_for_tilda_terminal[] = { { .name="copy", menu_copy_cb}, { .name="paste", menu_paste_cb} }; g_action_map_add_action_entries(G_ACTION_MAP(action_group), entries_for_tilda_window, G_N_ELEMENTS(entries_for_tilda_window), tw); g_action_map_add_action_entries(G_ACTION_MAP(action_group), entries_for_tilda_terminal, G_N_ELEMENTS(entries_for_tilda_terminal), tt); gtk_widget_insert_action_group(tw->window, "window", G_ACTION_GROUP(action_group)); GMenuModel *menu_model = G_MENU_MODEL(gtk_builder_get_object(builder, "menu")); GtkWidget *menu = gtk_menu_new_from_model(menu_model); gtk_menu_attach_to_widget(GTK_MENU(menu), tw->window, NULL); gtk_menu_set_accel_group(GTK_MENU(menu), tw->accel_group); gtk_menu_set_accel_path(GTK_MENU(menu), "/context"); /* Disable auto hide */ tw->disable_auto_hide = TRUE; g_signal_connect (G_OBJECT(menu), "unmap", G_CALLBACK(on_popup_hide), tw); gtk_menu_popup_at_pointer (GTK_MENU (menu), event); } static int button_press_cb (G_GNUC_UNUSED GtkWidget *widget, GdkEventButton *event, gpointer data) { DEBUG_FUNCTION ("button_press_cb"); DEBUG_ASSERT (data != NULL); VteTerminal *terminal; tilda_term *tt; gchar *match; gint tag; gchar *cmd; gchar *web_browser_cmd; gboolean ret = FALSE; tt = TILDA_TERM(data); switch (event->button) { case 9: tilda_window_next_tab (tt->tw); break; case 8: tilda_window_prev_tab (tt->tw); break; case 3: /* Right Click */ popup_menu (tt->tw, tt, (GdkEvent *) event); break; case 2: /* Middle Click */ break; case 1: /* Left Click */ terminal = VTE_TERMINAL(tt->vte_term); #if VTE_CHECK_VERSION(0, 38, 0) match = vte_terminal_match_check_event (terminal, (GdkEvent *) event, &tag); #else gint ypad = gtk_widget_get_margin_bottom(GTK_WIDGET(terminal)); glong column = (glong) ((event->x - ypad) / vte_terminal_get_char_width (terminal)); glong row = (glong) ((event->y - ypad) / vte_terminal_get_char_height (terminal)); match = vte_terminal_match_check (terminal, column, row, &tag); #endif /* Check if we can launch a web browser, and do so if possible */ if (match != NULL) { g_debug ("Got a Left Click -- Matched: `%s' (%d)", match, tag); web_browser_cmd = g_strescape (config_getstr ("web_browser"), NULL); cmd = g_strdup_printf ("%s %s", web_browser_cmd, match); g_debug ("Launching command: `%s'", cmd); ret = g_spawn_command_line_async(cmd, NULL); /* Check that the command launched */ if (!ret) { g_critical (_("Failed to launch the web browser. The command was `%s'\n"), cmd); TILDA_PERROR (); } g_free (web_browser_cmd); g_free (cmd); g_free (match); } break; default: break; } return FALSE; } gboolean key_press_cb (GtkWidget *widget, GdkEvent *event, tilda_term *terminal) { if(event->type == GDK_KEY_PRESS) { GdkEventKey *keyevent = (GdkEventKey*) event; if(keyevent->keyval == GDK_KEY_Menu) { popup_menu(terminal->tw, terminal, event); } } return GDK_EVENT_PROPAGATE; } gchar * tilda_terminal_get_full_title (tilda_term *tt) { DEBUG_FUNCTION ("tilda_terminal_get_title"); const gchar *vte_title; gchar *window_title; gchar *initial; gchar *title; vte_title = vte_terminal_get_window_title (VTE_TERMINAL (tt->vte_term)); window_title = g_strdup (vte_title); initial = g_strdup (config_getstr ("title")); /* These are not needed anywhere else. If they ever are, move them to a header file */ enum d_set_title { NOT_DISPLAYED, AFTER_INITIAL, BEFORE_INITIAL, REPLACE_INITIAL }; switch (config_getint ("d_set_title")) { case REPLACE_INITIAL: title = (window_title != NULL) ? g_strdup (window_title) : g_strdup (_("Untitled")); break; case BEFORE_INITIAL: title = (window_title != NULL) ? g_strdup_printf ("%s - %s", window_title, initial) : g_strdup (initial); break; case AFTER_INITIAL: title = (window_title != NULL) ? g_strdup_printf ("%s - %s", initial, window_title) : g_strdup (initial); break; case NOT_DISPLAYED: title = g_strdup (initial); break; default: g_printerr (_("Bad value for \"d_set_title\" in config file\n")); title = g_strdup (""); break; } g_free (window_title); g_free (initial); return title; } gchar *tilda_terminal_get_title (tilda_term *tt) { DEBUG_FUNCTION ("tilda_terminal_get_title"); DEBUG_ASSERT (tt != NULL); gchar * title; gchar * final_title; title = tilda_terminal_get_full_title (tt); /* These are not needed anywhere else. If they ever are, move them to a header file */ enum { SHOW_FULL_TITLE, SHOW_FIRST_N_CHARS, SHOW_LAST_N_CHARS }; guint max_length = (guint) config_getint ("title_max_length"); guint title_behaviour = config_getint("title_behaviour"); if (strlen (title) > max_length) { if (title_behaviour == SHOW_FULL_TITLE) { final_title = g_strdup (title); } else if (title_behaviour == SHOW_FIRST_N_CHARS) { final_title = g_strdup_printf ("%.*s...", max_length, title); } else if (title_behaviour == SHOW_LAST_N_CHARS) { gchar *titleOffset = title + strlen(title) - max_length; final_title = g_strdup_printf ("...%s", titleOffset); } else { g_printerr ("Bad value for \"title_behaviour\" in config file.\n"); final_title = g_strdup (title); } } else { final_title = g_strdup (title); } g_free (title); return final_title; } tilda-1.5.0/src/key_grabber.h0000664000175000017500000000223113242325416012751 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #ifndef TILDA_KEY_GRABBER_C #define TILDA_KEY_GRABBER_C #include "tilda_window.h" G_BEGIN_DECLS void pull (struct tilda_window_ *tw, enum pull_action action, gboolean force_hide); extern void generate_animation_positions (tilda_window *tw); gboolean tilda_keygrabber_bind (const gchar *keystr, tilda_window *tw); void tilda_keygrabber_unbind (const gchar *keystr); /** * This function will make the tilda window active after it starts */ void tilda_window_set_active (tilda_window *tw); G_END_DECLS #endif tilda-1.5.0/src/tilda.c0000644000175000017500000006124713617620115011577 00000000000000#define _DEFAULT_SOURCE /* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #define _POSIX_SOURCE /* feature test macro for signal functions */ #define _XOPEN_SOURCE /* feature test macro for popen */ /* * This message is shown in a modal dialog when tilda starts and there is a problem parsing the configuration file. * Such problems can occur for example if the config file contains a key-value pair that is unknown to tilda. This * can be the case if the user manually modified the configuration file or if a newer version of tilda was run and * which saved some settings that are not known by older versions of tilda. */ #define TILDA_CONFIG_PARSE_ERROR \ "A problem occurred while parsing the config file.\n\n" \ "This can happen if the tilda config contains a setting that is unknown to tilda. " \ "Tilda will now start with the default configuration." /* * This message is shown in a modal dialog when tilda starts and there is a any other problem with the configuration * file except a parse error. */ #define TILDA_CONFIG_OTHER_ERROR \ "An unexpected error occurred while parsing the config file.\n\n" \ "The default configuration will be used instead. This error can occur if the configuration file is corrupted" \ "or otherwise unreadable. Tilda will now start with a default configuration." #include #include "debug.h" #include "tilda.h" #include "configsys.h" #include "tilda_window.h" #include "key_grabber.h" /* for pull */ #include "wizard.h" #include "xerror.h" #include "tomboykeybinder.h" #include "tilda-keybinding.h" #include "tilda-cli-options.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /** * If lock->pid is 0 then the file is not opened exclusively. Instead flock() must be used to obtain a lock. * Otherwise an exclusive lock file is created for the process. */ static gchar *create_lock_file (struct lock_info *lock) { DEBUG_FUNCTION ("create_lock_file"); DEBUG_ASSERT (lock != NULL); DEBUG_ASSERT (lock->instance >= 0); DEBUG_ASSERT (lock->pid >= 0); gint ret; gchar *lock_file_full; gchar *lock_dir = g_build_filename (g_get_user_cache_dir (), "tilda", "locks", NULL); gchar *lock_file = g_strdup_printf ("lock_%d_%d", lock->pid, lock->instance); /* Make the ~/.cache/tilda/locks directory */ ret = g_mkdir_with_parents (lock_dir, S_IRUSR | S_IWUSR | S_IXUSR); if (ret == -1) goto mkdir_fail; /* Create the full path to the lock file */ lock_file_full = g_build_filename (lock_dir, lock_file, NULL); /* Create the lock file */ if(lock->pid == 0) { ret = g_open(lock_file_full, O_CREAT, S_IRUSR | S_IWUSR); } else { ret = g_open(lock_file_full, O_WRONLY | O_CREAT | O_EXCL, 0); } if (ret == -1) goto creat_fail; lock->file_descriptor = ret; g_free (lock_file); g_free (lock_dir); return lock_file_full; /* Free memory and return NULL */ creat_fail: g_free (lock_file_full); mkdir_fail: g_free (lock_file); g_free (lock_dir); return NULL; } /** * Check if a filename corresponds to a valid lockfile. Note that this * routine does NOT check whether it is a stale lock, however. This * will return the lock file's corresponding pid, if it is a valid lock. * * @param filename the filename to check * @return a new struct lock_info * * Success: struct lock_info will be filled in and non-NULL * Failure: return NULL */ static struct lock_info *islockfile (const gchar *filename) { DEBUG_FUNCTION ("islockfile"); DEBUG_ASSERT (filename != NULL); struct lock_info *lock; lock = g_malloc (sizeof (struct lock_info)); if (lock == NULL) return NULL; #ifdef USE_GLIB_2_14 GRegex *regex; GMatchInfo *match_info; gboolean matched; gchar *temp; regex = g_regex_new ("^lock_(\d+)_(\d+)$", 0, 0, NULL); matched = g_regex_match (regex, filename, 0, &match_info); if (!matched) { g_free (lock); lock = NULL; goto nomatch; } /* Get the lock pid */ temp = g_match_info_fetch (match_info, 0); lock->pid = atoi (temp); g_free (temp); /* Get the configuration number */ temp = g_match_info_fetch (match_info, 1); lock->instance = atoi (temp); g_free (temp); nomatch: if (match_info) g_match_info_free (match_info); g_regex_unref (regex); return matched; #else /* Glib version is <2.14 */ gboolean matches = g_str_has_prefix (filename, "lock_"); gboolean islock = FALSE; gchar *pid_s, *instance_s; if (matches) /* we are prefixed with "lock_" and are probably a lock */ { pid_s = strstr (filename, "_"); if (pid_s) /* we have a valid pid */ { /* Advance the pointer past the underscore */ pid_s++; lock->pid = atoi (pid_s); instance_s = strstr (pid_s, "_"); if (lock->pid > 0 && instance_s) { /* Advance the pointer past the underscore */ instance_s++; /* Extract the instance number and store it */ lock->instance = atoi (instance_s); /* we parsed everything, so yes, we were a lock */ islock = TRUE; } } } if (!islock) { g_free (lock); lock = NULL; } return lock; #endif } /** * Gets a list of the pids in */ static GSList *getPids() { GSList *pids = NULL; FILE *ps_output; const gchar ps_command[] = "ps -C tilda -o pid="; gchar buf[16]; /* Really shouldn't need more than 6 */ if ((ps_output = popen (ps_command, "r")) == NULL) { g_printerr (_("Unable to run command: `%s'\n"), ps_command); return NULL; } /* The popen() succeeded, get all of the pids */ while (fgets (buf, sizeof(buf), ps_output) != NULL) pids = g_slist_append (pids, GINT_TO_POINTER (atoi (buf))); /* We've read all of the pids, exit */ pclose (ps_output); return pids; } /** * Remove stale lock files from the ~/.tilda/locks/ directory. * * Success: returns 0 * Failure: returns non-zero */ static gint remove_stale_lock_files () { DEBUG_FUNCTION ("remove_stale_lock_files"); GSList *pids = getPids(); if(pids == NULL) { return -1; } struct lock_info *lock; gchar *lock_dir = g_build_filename (g_get_user_cache_dir (), "tilda", "locks", NULL); gchar *remove_file; gchar *filename; GDir *dir; /* if the lock dir does not exist then there are no stale lock files to remove. */ if (!g_file_test (lock_dir, G_FILE_TEST_EXISTS)) { g_free (lock_dir); return 0; } /* Open the lock directory for reading */ dir = g_dir_open (lock_dir, 0, NULL); if (dir == NULL) { g_printerr (_("Unable to open lock directory: %s\n"), lock_dir); g_free (lock_dir); return -2; } /* For each possible lock file, check if it is a lock, and see if * it matches one of the running tildas */ while ((filename = (gchar*) g_dir_read_name (dir)) != NULL) { lock = islockfile (filename); if (lock && (g_slist_find (pids, GINT_TO_POINTER (lock->pid)) == NULL)) { /* We have found a stale element */ remove_file = g_build_filename (lock_dir, filename, NULL); g_remove (remove_file); g_free (remove_file); } if (lock) g_free (lock); } g_dir_close (dir); g_free (lock_dir); g_slist_free(pids); return 0; } /** * Set values in the config from command-line parameters * * @param cli_options pointer to a struct containing command-line options */ static void setup_config_from_cli_options(tilda_cli_options *cli_options) { if (cli_options->background_color != NULL && cli_options->background_color != config_getstr ("background_color")) { config_setstr ("background_color", cli_options->background_color); GdkRGBA col; if (gdk_rgba_parse (&col, cli_options->background_color)) { config_setint("back_red", GUINT16_FROM_FLOAT (col.red)); config_setint("back_green", GUINT16_FROM_FLOAT (col.green)); config_setint("back_blue", GUINT16_FROM_FLOAT (col.blue)); } g_free(cli_options->background_color); } if (cli_options->command != NULL && cli_options->command != config_getstr ("command")) { config_setbool ("run_command", TRUE); config_setstr ("command", cli_options->command); g_free(cli_options->command); } if (cli_options->font != NULL && cli_options->font != config_getstr ("font")) { config_setstr ("font", cli_options->font); g_free(cli_options->font); } if (cli_options->back_alpha != 0 && cli_options->back_alpha != config_getint ("back_alpha")) { config_setbool ("enable_transparency", ~cli_options->back_alpha & 0xffff); config_setint ("back_alpha", cli_options->back_alpha); } if (cli_options->working_dir != NULL && cli_options->working_dir != config_getstr ("working_dir")) { config_setstr ("working_dir", cli_options->working_dir); g_free(cli_options->working_dir); } if (cli_options->lines != 0 && cli_options->lines != config_getint ("lines")) config_setint ("lines", cli_options->lines); if (cli_options->x_pos != 0 && cli_options->x_pos != config_getint ("x_pos")) config_setint ("x_pos", cli_options->x_pos); if (cli_options->y_pos != 0 && cli_options->y_pos != config_getint ("y_pos")) config_setint ("y_pos", cli_options->y_pos); if (cli_options->hidden != FALSE && cli_options->hidden != config_getbool ("hidden")) config_setbool ("hidden", cli_options->hidden); if (cli_options->scrollbar != FALSE && cli_options->scrollbar != config_getbool ("scrollbar")) config_setbool ("scrollbar", cli_options->scrollbar); } /** * Get a pointer to the config file name for this instance. * * NOTE: you MUST call free() on the returned value!!! * * @param tw the tilda_window structure corresponding to this instance * @return a pointer to a string representation of the config file's name */ static gchar *get_config_file_name (gint instance) { DEBUG_FUNCTION ("get_config_file_name"); DEBUG_ASSERT (instance >= 0); gchar *config_dir = g_build_filename (g_get_user_config_dir (), "tilda", NULL); /* Make the ~/.config/tilda directory */ if (!g_file_test (config_dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)) { g_print (_("Creating directory:'%s'\n"), config_dir); g_mkdir_with_parents (config_dir, S_IRUSR | S_IWUSR | S_IXUSR); } gchar *config_file_prefix = g_build_filename (config_dir, "config_", NULL); gchar *config_file; config_file = g_strdup_printf ("%s%d", config_file_prefix, instance); g_free (config_file_prefix); /* resolve possible symlink pointing to a different location. */ gchar * resolved_config_file = realpath (config_file, NULL); if (g_strcmp0 (config_file, resolved_config_file) != 0) { g_debug ("Config file at '%s' points to '%s'", config_file, resolved_config_file); } if (resolved_config_file != NULL) { g_free (config_file); /* resolved_config_file must be freed with free(3) so we duplicate the * string to ensure that what ever we return from this function can be * freed with g_free(). */ config_file = g_strdup (resolved_config_file); free (resolved_config_file); } return config_file; } static gint _cmp_locks(gconstpointer a, gconstpointer b, gpointer userdata) { return GPOINTER_TO_INT (a) - GPOINTER_TO_INT (b); } /** * get_instance_number () * * Gets the next available tilda instance number. This will always pick the * lowest non-running tilda available. * * Success: return next available instance number (>=0) * Failure: return 0 */ static gint get_instance_number () { DEBUG_FUNCTION ("get_instance_number"); gchar *name; GSequence *seq; GSequenceIter *iter; gint lowest_lock_instance = 0; gint current_lock_instance; GDir *dir; struct lock_info *lock; gchar *lock_dir = g_build_filename (g_get_user_cache_dir (), "tilda", "locks", NULL); /* Open the lock directory */ dir = g_dir_open (lock_dir, 0, NULL); /* Check for failure to open */ if (dir == NULL) { g_printerr (_("Unable to open lock directory: %s\n"), lock_dir); g_free (lock_dir); return 0; } /* Look through every file in the lock directory, and see if it is a lock file. * If it is a lock file, insert it in a sorted sequence. */ seq = g_sequence_new(NULL); while ((name = (gchar*)g_dir_read_name (dir)) != NULL) { lock = islockfile (name); if (lock != NULL) { g_sequence_insert_sorted(seq, GINT_TO_POINTER(lock->instance), _cmp_locks, NULL); g_free (lock); } } g_dir_close (dir); g_free (lock_dir); /* We iterate the sorted sequence of lock instances to find the first (lowest) number *not* taken. */ for (iter = g_sequence_get_begin_iter(seq); !g_sequence_iter_is_end(iter); iter = g_sequence_iter_next(iter)) { current_lock_instance = GPOINTER_TO_INT(g_sequence_get(iter)); if (lowest_lock_instance < current_lock_instance) break; else lowest_lock_instance = current_lock_instance + 1; } g_sequence_free(seq); return lowest_lock_instance; } static void termination_handler (G_GNUC_UNUSED gint signum) { DEBUG_FUNCTION ("termination_handler"); gtk_main_quit (); } /* * This is to do the migration of config files from ~/.tilda to the * XDG_*_HOME folders */ static void migrate_config_files(char *old_config_path) { gchar* old_lock_dir = g_build_filename(old_config_path, "locks", NULL); gchar* new_lock_dir = g_build_filename(g_get_user_cache_dir (), "tilda", "locks", NULL); gchar* new_config_dir = g_build_filename(g_get_user_config_dir (), "tilda", NULL); if(!g_file_test(new_lock_dir, G_FILE_TEST_IS_DIR)) { g_mkdir_with_parents(new_lock_dir, 0700); } //we basically need to move the files from old_config_path to config and cache g_rename(old_lock_dir, new_lock_dir); //we must move the config files after we have moved the locks directory, otherwise it gets moved aswell g_rename(old_config_path, new_config_dir); g_free(old_lock_dir); g_free(new_lock_dir); g_free(new_config_dir); } static void load_application_css () { GtkCssProvider *provider; const gchar* style; GError *error; provider = gtk_css_provider_new (); gtk_style_context_add_provider_for_screen (gdk_screen_get_default (), GTK_STYLE_PROVIDER (provider), GTK_STYLE_PROVIDER_PRIORITY_USER); style = "#search{background:#fff;}"; error = NULL; gtk_css_provider_load_from_data (provider, style, -1, &error); if (error) { g_print ("Error %s\n", error->message); g_error_free (error); } } static void load_custom_css_file () { GtkCssProvider *provider; GFile *file; GError *error; gchar *filename; filename = g_build_filename (g_get_user_config_dir (), "tilda", "style.css", NULL); if (!g_file_test (filename, G_FILE_TEST_EXISTS)) return; g_print (_("Found style.css in the user config directory, " "applying user css style.\n")); provider = gtk_css_provider_new (); gtk_style_context_add_provider_for_screen (gdk_screen_get_default(), GTK_STYLE_PROVIDER(provider), GTK_STYLE_PROVIDER_PRIORITY_USER); file = g_file_new_for_path (filename); error = NULL; gtk_css_provider_load_from_file (provider, file, &error); if (error) { g_print ("Error: %s", error->message); g_error_free (error); } g_object_unref (file); g_free (filename); } int main (int argc, char *argv[]) { #ifdef DEBUG /** * This enables the tilda log domain while we are in debug mode. This * is for convenience such that we do not need to start tilda with * 'G_MESSAGES_DEBUG=tilda ./tilda' each time we start tilda. */ g_setenv ("G_MESSAGES_DEBUG", "tilda", FALSE); #endif DEBUG_FUNCTION_MESSAGE ("main", "Using libvte version: %i.%i.%i", VTE_MAJOR_VERSION, VTE_MINOR_VERSION, VTE_MICRO_VERSION); /* Set supported backend to X11 */ gdk_set_allowed_backends ("x11"); tilda_window tw; /* NULL set the tw pointers so we can get a clean exit on initialization failure */ memset(&tw, 0, sizeof(tilda_window)); struct sigaction sa; struct lock_info lock; gboolean need_wizard = FALSE; gchar *config_file, *lock_file, *old_config_path; /* * Migration code to move old files to new XDG folders */ old_config_path = g_build_filename(g_get_home_dir (), ".tilda", NULL); if (g_file_test(old_config_path, G_FILE_TEST_IS_DIR)) { g_print (_("Migrating old config path to XDG folders\n")); migrate_config_files(old_config_path); g_free(old_config_path); } /* Remove stale lock files */ remove_stale_lock_files (); /* The global lock file is used to synchronize the start up of multiple simultaneously starting tilda processes. * The processes will synchronize on a lock file named lock_0_0, such that the part of determining the instance * number and creating the per process lock file (lock__) is atomic. Without this it could * happen, that a second tilda instance was trying to determine its instance number before the first instance * had finished creating its lock file, this resulted in two processes with the same instance number and could lead * to corruption of the config file. * In order to test if this works the following shell command can be used: "tilda & tilda && fg", which causes * two tilda processes to be started simultaneously. See: * * http://stackoverflow.com/questions/3004811/how-do-you-run-multiple-programs-from-a-bash-script */ struct lock_info global_lock; global_lock.instance = 0; global_lock.pid = 0; gchar *global_lock_file = NULL; global_lock_file = create_lock_file(&global_lock); if(global_lock_file == NULL) { perror("Error creating global lock file"); return EXIT_FAILURE; } flock(global_lock.file_descriptor, LOCK_EX); /* Start of atomic section. */ lock.pid = getpid (); lock.instance = get_instance_number (); lock_file = create_lock_file (&lock); /* End of atomic section */ flock(global_lock.file_descriptor, LOCK_UN); g_remove (global_lock_file); close(lock.file_descriptor); g_free(global_lock_file); #if ENABLE_NLS /* Gettext Initialization */ char* locale = setlocale (LC_ALL, ""); if(!locale) { g_warning ("Could not setup locale."); } bindtextdomain (PACKAGE, LOCALEDIR); bind_textdomain_codeset (PACKAGE, "UTF-8"); textdomain (PACKAGE); #endif config_file = NULL; /* Parse the command line */ tilda_cli_options *cli_options = tilda_cli_options_new (); need_wizard = tilda_cli_options_parse_options (cli_options, argc, argv, &config_file); if (config_file) { // if there was a config file specified via cli if (!g_file_test (config_file, G_FILE_TEST_EXISTS)) { g_printerr (_("Specified config file '%s' does not exist. Reverting to default path.\n"), config_file); config_file = get_config_file_name (lock.instance); } } else { // if not, we look for the defaut config file config_file = get_config_file_name (lock.instance); } /* Initialize GTK. Any code that interacts with GTK (e.g. creating a widget) * should come after this call. Gtk initialization should happen before we * initialize the config file. */ gtk_init (&argc, &argv); /* Start up the configuration system and load from file */ gint config_init_result = config_init (config_file); /* Set up possible overridden config options */ setup_config_from_cli_options(cli_options); g_free(cli_options); /* We're about to startup X, so set the error handler. */ XSetErrorHandler (xerror_handler); /* This section shows a modal dialog to notify the user that something has gone wrong when loading the config. * Earlier version only used to print a message to stderr, but since tilda is usually not started from a * console this message would have been lost and a message dialog is much more user friedly. */ GtkWidget *dialog = NULL; if(config_init_result == 1) { dialog = gtk_message_dialog_new_with_markup(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, TILDA_CONFIG_PARSE_ERROR); } else if (config_init_result != 0) { dialog = gtk_message_dialog_new_with_markup(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, TILDA_CONFIG_OTHER_ERROR); } if(dialog) { g_message("Running Dialog"); gtk_dialog_run(GTK_DIALOG(dialog)); gtk_widget_destroy(dialog); } load_application_css (); load_custom_css_file (); /* create new tilda_window */ gboolean success = tilda_window_init (config_file, lock.instance, &tw); if(!success) { fprintf(stderr, "tilda.c: initialization failed\n"); goto initialization_failed; } /* Adding widget title for CSS selection */ gtk_widget_set_name (GTK_WIDGET(tw.window), "Main"); /* Initialize and set up the keybinding to toggle tilda's visibility. */ tomboy_keybinder_init (); /* Hook up signal handlers */ sa.sa_handler = termination_handler; sigemptyset (&sa.sa_mask); sa.sa_flags = 0; sigaction (SIGINT, &sa, NULL); sigaction (SIGQUIT, &sa, NULL); sigaction (SIGABRT, &sa, NULL); sigaction (SIGTERM, &sa, NULL); sigaction (SIGKILL, &sa, NULL); /* If the config file doesn't exist open up the wizard */ if (access (tw.config_file, R_OK) == -1) { /* We probably need a default key, too ... */ gchar *default_key = g_strdup_printf ("F%d", tw.instance+1); config_setstr ("key", default_key); g_free (default_key); need_wizard = TRUE; } /* Show the wizard if we need to. * * Note that the key will be bound upon exiting the wizard */ if (need_wizard) { g_print ("Starting the wizard to configure tilda options.\n"); wizard (&tw); } else { gint ret = tilda_keygrabber_bind (config_getstr ("key"), &tw); if (!ret) { /* The key was unbindable, so we need to show the wizard */ const char *message = _("The keybinding you chose for \"Pull Down Terminal\" is invalid. Please choose another."); tilda_keybinding_show_invalid_keybinding_dialog (NULL, message); wizard (&tw); } } pull (&tw, config_getbool ("hidden") ? PULL_UP : PULL_DOWN, FALSE); g_print ("Tilda has started. Press %s to pull down the window.\n", config_getstr ("key")); /* Whew! We're finally all set up and ready to run GTK ... */ gtk_main(); initialization_failed: tilda_window_free(&tw); /* Ok, we're at the end of our run. Time to clean up ... */ config_free (config_file); g_remove (lock_file); close(lock.file_descriptor); g_free (lock_file); g_free (config_file); return 0; } tilda-1.5.0/src/screen-size.c0000644000175000017500000000140013615541755012724 00000000000000#include "screen-size.h" #include static gint get_window_scaling_factor (void) { GValue gvalue = G_VALUE_INIT; GdkScreen *screen; g_value_init (&gvalue, G_TYPE_INT); screen = gdk_screen_get_default (); if (gdk_screen_get_setting (screen, "gdk-window-scaling-factor", &gvalue)) return g_value_get_int (&gvalue); return 1; } void screen_size_get_dimensions (gint *width, gint *height) { GdkScreen *screen; GdkWindow *window; gint scale; scale = get_window_scaling_factor (); screen = gdk_screen_get_default (); window = gdk_screen_get_root_window (screen); *width = gdk_window_get_width (window) / scale; *height = gdk_window_get_height (window) / scale; } tilda-1.5.0/src/tilda-search-box.ui0000644000175000017500000001151613555642145014025 00000000000000 tilda-1.5.0/src/tilda-keybinding.c0000644000175000017500000003537113557047725013734 00000000000000#include #include "configsys.h" #include "debug.h" #include "key_grabber.h" #include "tilda-keybinding.h" enum keybinding_columns { KB_TREE_ACTION, KB_TREE_SHORTCUT, KB_TREE_CONFIG_NAME, KB_NUM_COLUMNS }; struct _TildaKeybindingTreeView { GtkWidget *tree_view; GtkListStore *list_store; GtkBuilder *builder; /* Stores the signal handler id for the 'button-press-event' * of the tree view. */ gulong handler_id; }; static gboolean keybinding_button_press_event_cb (GtkWidget *tree_view, GdkEventButton *event, TildaKeybindingTreeView *keybindings); static gboolean keybinding_dialog_key_press_event_cb (GtkWidget *dialog, GdkEventKey *event, TildaKeybindingTreeView *keybinding); static gboolean validate_keybindings (TildaKeybindingTreeView *keybindings, tilda_window *tw); static gboolean validate_pulldown_keybinding (const gchar* accel, tilda_window* tw, const gchar* message); static gboolean validate_keybinding (const gchar* accel, tilda_window *tw, const gchar* message); static void init_bindings_from_config (GtkListStore *list_store, GtkTreeIter *iter); void tilda_keybinding_apply (TildaKeybindingTreeView *keybinding) { GtkListStore *list_store; GtkTreeIter iter; gboolean valid; list_store = keybinding->list_store; valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (list_store), &iter); while (valid) { gchar * action, *config_name, *shortcut, *path; gtk_tree_model_get (GTK_TREE_MODEL (list_store), &iter, KB_TREE_ACTION, &action, KB_TREE_CONFIG_NAME, &config_name, KB_TREE_SHORTCUT, &shortcut, -1); path = g_strdup_printf ("/context/%s", action); tilda_window_update_keyboard_accelerators (path, config_getstr (config_name)); g_free (path); valid = gtk_tree_model_iter_next (GTK_TREE_MODEL (list_store), &iter); } } TildaKeybindingTreeView* tilda_keybinding_init (GtkBuilder *builder) { TildaKeybindingTreeView *keybindings = g_malloc (sizeof (TildaKeybindingTreeView)); GtkWidget *tree_view; GtkListStore *list_store; tree_view = GTK_WIDGET (gtk_builder_get_object (builder, "tree_view_keybindings")); list_store = gtk_list_store_new (KB_NUM_COLUMNS, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); keybindings->list_store = list_store; keybindings->tree_view = tree_view; keybindings->builder = builder; gtk_tree_view_set_model (GTK_TREE_VIEW (tree_view), GTK_TREE_MODEL (list_store)); GtkCellRenderer *renderer = gtk_cell_renderer_text_new (); GtkTreeViewColumn *column; GtkTreeIter iter; column = gtk_tree_view_column_new_with_attributes (_("Action"), renderer, "text", KB_TREE_ACTION, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column); column = gtk_tree_view_column_new_with_attributes (_("Shortcut"), renderer, "text", KB_TREE_SHORTCUT, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column); init_bindings_from_config (list_store, &iter); keybindings->handler_id = g_signal_connect (tree_view, "button-press-event", G_CALLBACK (keybinding_button_press_event_cb), keybindings); return keybindings; } void tilda_keybinding_free (TildaKeybindingTreeView *keybinding) { g_signal_handler_disconnect (keybinding->tree_view, keybinding->handler_id); keybinding->builder = NULL; keybinding->list_store = NULL; keybinding->tree_view = NULL; g_free (keybinding); } gboolean tilda_keybinding_save (TildaKeybindingTreeView *keybinding, tilda_window *tw) { GtkListStore *list_store; GtkTreeIter iter; gboolean valid; if (!validate_keybindings (keybinding, tw)) { return FALSE; } list_store = keybinding->list_store; valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (list_store), &iter); while (valid) { gchar * config_name, *shortcut; gtk_tree_model_get (GTK_TREE_MODEL (list_store), &iter, KB_TREE_CONFIG_NAME, &config_name, KB_TREE_SHORTCUT, &shortcut, -1); config_setstr (config_name, shortcut); valid = gtk_tree_model_iter_next (GTK_TREE_MODEL (list_store), &iter); } return TRUE; } void tilda_keybinding_show_invalid_keybinding_dialog (GtkWindow *parent_window, const gchar* message) { DEBUG_FUNCTION ("show_invalid_keybinding_dialog"); GtkWidget *dialog = gtk_message_dialog_new (parent_window, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", message); gtk_window_set_keep_above (GTK_WINDOW(dialog), TRUE); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); } static void init_bindings_from_config (GtkListStore *list_store, GtkTreeIter *iter) { typedef struct keybinding { gchar *action; gchar *config_name; } Keybinding; const Keybinding bindings[] = { {"Pull Down Terminal", "key"}, {"Quit", "quit_key"}, {"Add Tab", "addtab_key"}, {"Close Tab", "closetab_key"}, {"Copy", "copy_key"}, {"Paste", "paste_key"}, {"Go To Next Tab", "nexttab_key"}, {"Go To Previous Tab", "prevtab_key"}, {"Move Tab Left", "movetableft_key"}, {"Move Tab Right", "movetabright_key"}, {"Toggle Fullscreen", "fullscreen_key"}, {"Toggle Transparency", "toggle_transparency_key"}, {"Toggle Searchbar", "toggle_searchbar_key"}, {NULL, NULL} }; const Keybinding *binding = bindings; while (binding->action) { gtk_list_store_append (list_store, iter); gchar *shortcut = config_getstr (binding->config_name); gtk_list_store_set (list_store, iter, KB_TREE_ACTION, binding->action, KB_TREE_SHORTCUT, shortcut, KB_TREE_CONFIG_NAME, binding->config_name, -1); ++binding; } const Keybinding gototabBindings[] = { {"Go To Tab 1", "gototab_1_key"}, {"Go To Tab 2", "gototab_2_key"}, {"Go To Tab 3", "gototab_3_key"}, {"Go To Tab 4", "gototab_4_key"}, {"Go To Tab 5", "gototab_5_key"}, {"Go To Tab 6", "gototab_6_key"}, {"Go To Tab 7", "gototab_7_key"}, {"Go To Tab 8", "gototab_8_key"}, {"Go To Tab 9", "gototab_9_key"}, {"Go To Tab 10", "gototab_10_key"}, {NULL, NULL} }; binding = gototabBindings; while (binding->action) { gtk_list_store_append (list_store, iter); gchar *shortcut = config_getstr (binding->config_name); gtk_list_store_set (list_store, iter, KB_TREE_ACTION, binding->action, KB_TREE_SHORTCUT, shortcut, KB_TREE_CONFIG_NAME, binding->config_name, -1); ++binding; } } /* * This is called when a shortcut in the keybinding tree view widget * is clicked. */ static gboolean keybinding_button_press_event_cb (GtkWidget *tree_view, GdkEventButton *event, TildaKeybindingTreeView *keybindings) { GtkBuilder *builder = keybindings->builder; const GtkWidget *wizard_window = GTK_WIDGET (gtk_builder_get_object (builder, "wizard_window")); if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) { GtkTreeIter iter; GtkTreeSelection *selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view)); if (!gtk_tree_selection_get_selected (selection, NULL, &iter)) { return GDK_EVENT_PROPAGATE; } /* Bring up the dialog that will accept the new keybinding */ GtkWidget *dialog = gtk_message_dialog_new (GTK_WINDOW (wizard_window), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_CANCEL, _ ("Enter keyboard shortcut")); /* Connect the key grabber to the dialog */ g_signal_connect (G_OBJECT (dialog), "key_press_event", G_CALLBACK (keybinding_dialog_key_press_event_cb), keybindings); gtk_window_set_keep_above (GTK_WINDOW (dialog), TRUE); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); return GDK_EVENT_STOP; } return GDK_EVENT_PROPAGATE; } /* * This function gets called once per key that is pressed. This means we have to * manually ignore all modifier keys, and only register "real" keys. * * We return when the first "real" key is pressed. * * Note that this is called for the key_press_event for the key-grab dialog, * not for the keybinding tree view widget. */ static gboolean keybinding_dialog_key_press_event_cb (GtkWidget *dialog, GdkEventKey *event, TildaKeybindingTreeView *keybinding) { DEBUG_FUNCTION ("keybinding_dialog_key_press_event_cb"); DEBUG_ASSERT (keybinding != NULL); DEBUG_ASSERT (event != NULL); GtkWidget *tree_view = keybinding->tree_view; GtkListStore *listStore = keybinding->list_store; gchar *key; if (gtk_accelerator_valid (event->keyval, (GdkModifierType) event->state)) { GtkTreeIter iter; GtkTreeSelection *selection; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view)); if (!gtk_tree_selection_get_selected (selection, NULL, &iter)) { return GDK_EVENT_PROPAGATE; } /* This lets us ignore all ignorable modifier keys, including * NumLock and many others. :) * * The logic is: keep only the important modifiers that were pressed * for this event. */ event->state &= gtk_accelerator_get_default_mod_mask (); /* Generate the correct name for this key */ key = gtk_accelerator_name (event->keyval, (GdkModifierType) event->state); gtk_list_store_set (listStore, &iter, KB_TREE_SHORTCUT, key, -1); gtk_dialog_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT); g_debug ("KEY GRABBED: %s", key); /* Free the string */ g_free (key); } return GDK_EVENT_PROPAGATE; } static gboolean validate_keybindings (TildaKeybindingTreeView *keybindings, tilda_window *tw) { GtkTreeIter iter; gboolean changed; GtkListStore *list_store; list_store = keybindings->list_store; changed = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (list_store), &iter); while (changed) { gchar * action, *config_name, *shortcut; gtk_tree_model_get (GTK_TREE_MODEL (list_store), &iter, KB_TREE_ACTION, &action, KB_TREE_CONFIG_NAME, &config_name, KB_TREE_SHORTCUT, &shortcut, -1); if (0 == g_strcmp0 ("key", config_name)) { const char *message = _ ("The keybinding you chose for \"Pull Down Terminal\" is invalid. Please choose another."); if (!validate_pulldown_keybinding (shortcut, tw, message)) return FALSE; } else { gchar * message = g_strdup_printf ( _ ("The keybinding you chose for \"%s\" is invalid. Please choose another."), action); if (!validate_keybinding (shortcut, tw, message)) { g_free (message); return FALSE; } } changed = gtk_tree_model_iter_next (GTK_TREE_MODEL (list_store), &iter); } return TRUE; } static gboolean validate_pulldown_keybinding (const gchar* accel, tilda_window* tw, const gchar* message) { /* Try to grab the key. This is a good way to validate it :) */ gboolean key_is_valid = tilda_keygrabber_bind (accel, tw); if (key_is_valid) return TRUE; else { GtkWindow *window = GTK_WINDOW(tw->wizard_window); tilda_keybinding_show_invalid_keybinding_dialog (window, message); return FALSE; } } static gboolean validate_keybinding (const gchar* accel, tilda_window *tw, const gchar* message) { guint accel_key; GdkModifierType accel_mods; /* Parse the accelerator string. If it parses improperly, both values will be 0.*/ gtk_accelerator_parse (accel, &accel_key, &accel_mods); if (! ((accel_key == 0) && (accel_mods == 0)) ) { return TRUE; } else { GtkWindow *window = GTK_WINDOW(tw->wizard_window); tilda_keybinding_show_invalid_keybinding_dialog (window, message); return FALSE; } } tilda-1.5.0/src/glade-resources.gresource.xml0000644000175000017500000000037113555642145016140 00000000000000 tilda.ui menu.ui tilda-search-box.ui tilda-1.5.0/src/Makefile.am0000644000175000017500000000602013617620115012356 00000000000000# vim: set noexpandtab ts=8 sts=8 sw=8: NULL = bin_PROGRAMS += src/tilda # Rules to compile resources src/glade-resources.h: src/glade-resources.gresource.xml $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --generate $< --target=$@ --sourcedir=$(srcdir)/src src/glade-resources.c: src/glade-resources.gresource.xml $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --generate $< --target=$@ --sourcedir=$(srcdir)/src # Dependencies rule, and do not forget to do a make after # editing the UI with glade! src/glade-resources.c src/glade-resources.h: \ src/glade-resources.gresource.xml \ $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies $(srcdir)/src/glade-resources.gresource.xml --sourcedir=$(srcdir)/src) ENUM_TYPES = \ $(srcdir)/src/tilda-search-box.h \ $(NULL) src/tilda-enum-types.h: $(srcdir)/src/tilda-enum-types.h.template $(ENUM_TYPES) $(GLIB_MKENUMS) $(AM_V_GEN) ($(GLIB_MKENUMS) --template $(srcdir)/src/tilda-enum-types.h.template $(ENUM_TYPES)) > $@ src/tilda-enum-types.c: $(srcdir)/src/tilda-enum-types.c.template $(ENUM_TYPES) $(GLIB_MKENUMS) $(AM_V_GEN) ($(GLIB_MKENUMS) --template $(srcdir)/src/tilda-enum-types.c.template $(ENUM_TYPES)) > $@ src_tilda_CPPFLAGS = \ $(AM_CPPFLAGS) \ -I$(top_builddir)/src \ -DG_LOG_DOMAIN='"tilda"' \ -DG_LOG_USE_STRUCTURED \ -DDATADIR='"$(datadir)"' \ -DLOCALEDIR='"$(localedir)"' \ -DPKGDATADIR='"$(pkgdatadir)"' \ $(NULL) BUILT_SOURCES = \ src/glade-resources.h src/glade-resources.c \ src/tilda-enum-types.c src/tilda-enum-types.h \ $(NULL) # Keep the headers here so that make dist-bzip2 works src_tilda_SOURCES = \ $(BUILT_SOURCES) \ src/configsys.h src/configsys.c \ src/debug.h \ src/eggaccelerators.h src/eggaccelerators.c \ src/key_grabber.h src/key_grabber.c \ src/screen-size.h src/screen-size.c \ src/tilda.h src/tilda.c \ src/tilda-keybinding.c src/tilda-keybinding.h \ src/tilda-cli-options.c src/tilda-cli-options.h \ src/tilda-palettes.h src/tilda-palettes.c \ src/tilda-search-box.c src/tilda-search-box.h \ src/tilda_terminal.h src/tilda_terminal.c \ src/tilda_window.h src/tilda_window.c \ src/tomboykeybinder.h src/tomboykeybinder.c \ src/wizard.h src/wizard.c \ src/xerror.h src/xerror.c \ src/vte-util.h \ $(NULL) src_tilda_CFLAGS = \ $(AM_CFLAGS) \ $(GTK_CFLAGS) \ $(LIBGLADE_CFLAGS) \ $(VTE_CFLAGS) \ $(LIBCONFUSE_CFLAGS) \ $(X11_CFLAGS) \ $(NULL) src_tilda_LDFLAGS = \ $(AM_LDFLAGS) \ $(GTK_LDFLAGS) \ $(LIBGLADE_LDFLAGS) \ $(VTE_LDFLAGS) \ $(LIBCONFUSE_LDFLAGS) \ $(X11_LDFLAGS) \ -Wl,--as-needed \ $(NULL) src_tilda_LDADD = \ $(AM_LDADD) \ $(GTK_LIBS) \ $(LIBGLADE_LIBS) \ $(VTE_LIBS) \ $(LIBCONFUSE_LIBS) \ $(X11_LIBS) \ $(LTLIBINTL) \ $(LEXLIB) \ -lm \ $(NULL) EXTRA_DIST += \ src/glade-resources.gresource.xml \ src/tilda-search-box.ui \ src/menu.ui \ src/tilda.ui \ src/tilda-enum-types.h.template \ src/tilda-enum-types.c.template \ $(NULL) CLEANFILES += \ src/glade-resources.h \ src/glade-resources.c \ src/tilda-enum-types.h \ src/tilda-enum-types.c \ $(NULL) tilda-1.5.0/src/tomboykeybinder.c0000644000175000017500000003243413617562120013705 00000000000000/* tomboykeybinder.c * Copyright (C) 2008 Alex Graveley * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include "eggaccelerators.h" #include "tomboykeybinder.h" #include "debug.h" /** * This mask corresponds to the first 8 modifier masks of GdkModifierType * and is equal to a combination of all key masks as defined in the X * Windowing system. It can be used to remove virtual modifiers from a * list of virtual and real modifiers. */ #define REAL_MODIFIER_MASK (GDK_SHIFT_MASK \ | GDK_LOCK_MASK \ | GDK_CONTROL_MASK \ | GDK_MOD1_MASK \ | GDK_MOD2_MASK \ | GDK_MOD3_MASK \ | GDK_MOD4_MASK \ | GDK_MOD5_MASK) typedef struct _Binding { TomboyBindkeyHandler handler; gpointer user_data; char *keystring; unsigned int keycode; GdkModifierType modifiers; } Binding; static GSList *bindings = NULL; static guint32 last_event_time = 0; static gboolean processing_event = FALSE; /** * This is used to store the real modifier values for the virtual modifiers * num lock, caps lock and scroll lock. */ static GdkModifierType num_lock_mask, caps_lock_mask, scroll_lock_mask; /** * Join virtual modifiers into a printable string separated by ' | '. * * @param virtual_modifiers * @return A string containing the string representation of all virtual modifiers separated by ' | '. */ static gchar *virtual_modifiers_as_string (GdkModifierType virtual_modifiers); /** * Gdk does not allow us to determine the real modifiers for some * special virtual modifiers such as num lock and scroll look. * Therefore we will need to determine these our self. * * @param keymap */ static void lookup_ignorable_modifiers (GdkKeymap *keymap) { gchar *string; egg_keymap_resolve_virtual_modifiers (keymap, EGG_VIRTUAL_LOCK_MASK, &caps_lock_mask); string = virtual_modifiers_as_string (caps_lock_mask); g_debug ("Virtual modifier for 'caps_lock_mask' set to: %s", string); g_free (string); egg_keymap_resolve_virtual_modifiers (keymap, EGG_VIRTUAL_NUM_LOCK_MASK, &num_lock_mask); string = virtual_modifiers_as_string (num_lock_mask); g_debug ("Virtual modifier for 'num_lock_mask' set to: %s", string); g_free (string); egg_keymap_resolve_virtual_modifiers (keymap, EGG_VIRTUAL_SCROLL_LOCK_MASK, &scroll_lock_mask); string = virtual_modifiers_as_string (scroll_lock_mask); g_debug ("Virtual modifier for 'scroll_lock_mask' set to: %s", string); g_free (string); } static void grab_ungrab_with_ignorable_modifiers (GdkWindow *rootwin, Binding *binding, gboolean grab) { guint mod_masks[] = { 0, /* modifier only */ num_lock_mask, caps_lock_mask, scroll_lock_mask, num_lock_mask | caps_lock_mask, num_lock_mask | scroll_lock_mask, caps_lock_mask | scroll_lock_mask, num_lock_mask | caps_lock_mask | scroll_lock_mask, }; guint i; for (i = 0; i < G_N_ELEMENTS (mod_masks); i++) { if (grab) { XGrabKey (GDK_WINDOW_XDISPLAY (rootwin), binding->keycode, binding->modifiers | mod_masks[i], GDK_WINDOW_XID (rootwin), False, GrabModeAsync, GrabModeAsync); } else { XUngrabKey (GDK_WINDOW_XDISPLAY (rootwin), binding->keycode, binding->modifiers | mod_masks[i], GDK_WINDOW_XID (rootwin)); } } } static gboolean do_grab_key (Binding *binding) { GdkDisplay *display = gdk_display_get_default (); GdkKeymap *keymap = gdk_keymap_get_for_display (display); GdkWindow *rootwin = gdk_get_default_root_window (); GdkModifierType virtual_mods = (GdkModifierType) 0; guint keysym = 0; if (keymap == NULL || rootwin == NULL) return FALSE; gtk_accelerator_parse (binding->keystring, &keysym, &virtual_mods); if (keysym == 0 && virtual_mods == 0) { return FALSE; } binding->keycode = XKeysymToKeycode (GDK_WINDOW_XDISPLAY (rootwin), keysym); if (binding->keycode == 0) return FALSE; GdkModifierType mapped_modifiers = virtual_mods; gdk_keymap_map_virtual_modifiers (keymap, &mapped_modifiers); // mask out virtual modifiers so we get only the real modifiers binding->modifiers = mapped_modifiers & REAL_MODIFIER_MASK; gdk_x11_display_error_trap_push (display); grab_ungrab_with_ignorable_modifiers (rootwin, binding, TRUE /* grab */); gdk_display_flush (display); if (gdk_x11_display_error_trap_pop (display)) { g_warning ("Binding '%s' failed!\n", binding->keystring); return FALSE; } gchar *virtual_modifier_string = virtual_modifiers_as_string (virtual_mods); g_debug ("Resolved accelerator: %s. KeySymbol: %d, Virtual Modifiers: %s", binding->keystring, keysym, virtual_modifier_string); g_free (virtual_modifier_string); g_debug ("Binding to keycode %d", binding->keycode); gchar *real_modifiers_as_string = virtual_modifiers_as_string ( (GdkModifierType) binding->modifiers); g_debug ("Binding to real modifier mask %d (%s)", binding->modifiers, real_modifiers_as_string); g_free (real_modifiers_as_string); return TRUE; } static gboolean do_ungrab_key (Binding *binding) { GdkWindow *rootwin = gdk_get_default_root_window (); g_debug ("Removing grab for '%s'", binding->keystring); grab_ungrab_with_ignorable_modifiers (rootwin, binding, FALSE /* ungrab */); return TRUE; } static GdkFilterReturn filter_func (GdkXEvent *gdk_xevent, G_GNUC_UNUSED GdkEvent *event, G_GNUC_UNUSED gpointer data) { XEvent *xevent = (XEvent *) gdk_xevent; guint event_mods; GSList *iter; switch (xevent->type) { case KeyPress: g_debug ("Got KeyPress! keycode: %d, modifiers: %d", xevent->xkey.keycode, xevent->xkey.state); /* * Set the last event time for use when showing * windows to avoid anti-focus-stealing code. */ processing_event = TRUE; last_event_time = (guint32) xevent->xkey.time; g_debug ("Current event time %d", last_event_time); event_mods = xevent->xkey.state & ~(num_lock_mask | caps_lock_mask | scroll_lock_mask); for (iter = bindings; iter != NULL; iter = iter->next) { Binding *binding = (Binding *) iter->data; if (binding->keycode == xevent->xkey.keycode && binding->modifiers == event_mods) { g_debug ("Calling handler for '%s'...", binding->keystring); (binding->handler) (binding->keystring, binding->user_data); } } processing_event = FALSE; break; case KeyRelease: g_debug ("Got KeyRelease!"); break; default: break; } return GDK_FILTER_CONTINUE; } /** * This is invoked if the keymap changes, for example if some virtual * modifier are remapped to real modifiers with `xmodmap`. * * To how this function work one can set the virtual modifier 'Scroll_Lock' * to the real modifier 'mod3' and clear it again: * * xmodmap -e "add mod3 = Scroll_Lock" * xmodmap -e "clear mod3" * * This will cause this callback to be invoked. * * @param map Pointer to the current key map. */ static void keymap_changed (GdkKeymap *map) { GSList *iter; g_debug ("Keymap changed! Regrabbing keys..."); for (iter = bindings; iter != NULL; iter = iter->next) { Binding *binding = (Binding *) iter->data; do_ungrab_key (binding); } lookup_ignorable_modifiers (map); for (iter = bindings; iter != NULL; iter = iter->next) { Binding *binding = (Binding *) iter->data; do_grab_key (binding); } } void tomboy_keybinder_init (void) { GdkDisplay *display = gdk_display_get_default (); GdkKeymap *keymap = gdk_keymap_get_for_display (display); GdkWindow *rootwin = gdk_get_default_root_window (); lookup_ignorable_modifiers (keymap); gdk_window_add_filter (rootwin, filter_func, NULL); g_signal_connect (keymap, "keys_changed", G_CALLBACK (keymap_changed), NULL); } gboolean tomboy_keybinder_bind (const char *keystring, TomboyBindkeyHandler handler, gpointer user_data) { Binding *binding; gboolean success; binding = g_new0 (Binding, 1); binding->keystring = g_strdup (keystring); binding->handler = handler; binding->user_data = user_data; /* Sets the binding's keycode and modifiers */ success = do_grab_key (binding); if (success) { g_debug("Added binding. Keystring: %s", binding->keystring); bindings = g_slist_prepend (bindings, binding); } else { g_free (binding->keystring); g_free (binding); } return success; } void tomboy_keybinder_unbind (const char *keystring, TomboyBindkeyHandler handler) { GSList *iter; for (iter = bindings; iter != NULL; iter = iter->next) { Binding *binding = (Binding *) iter->data; if (strcmp (keystring, binding->keystring) != 0 || handler != binding->handler) continue; do_ungrab_key (binding); bindings = g_slist_remove (bindings, binding); g_free (binding->keystring); g_free (binding); break; } } guint32 tomboy_keybinder_get_current_event_time (void) { if (processing_event) return last_event_time; else return GDK_CURRENT_TIME; } /** * Join virtual modifiers into a printable string separated by ' | '. * * Glib has added a similar function called: `g_flags_to_string` in version 2.54. * At some point when it is reasonable to bump our glib dependency to 2.54 we * can replace this function with the glib version. * * @param virtual_modifiers * @return A string containing the string representation of all virtual modifiers separated by ' | '. */ static gchar *virtual_modifiers_as_string (GdkModifierType virtual_modifiers) { int modifier = 1; int index = 0; GFlagsClass *flags_class; GFlagsValue *enum_value; g_return_val_if_fail (G_TYPE_IS_FLAGS (GDK_TYPE_MODIFIER_TYPE), NULL); flags_class = g_type_class_ref (GDK_TYPE_MODIFIER_TYPE); const char **modifierStrings = g_malloc0_n (sizeof (char *), flags_class->n_values); while (modifier < GDK_RELEASE_MASK) { enum_value = g_flags_get_first_value (G_FLAGS_CLASS (flags_class), virtual_modifiers & modifier); if (enum_value) { modifierStrings[index] = enum_value->value_name; } if (modifierStrings[index]) { index++; } modifier = modifier << 1; } char *result = g_strjoinv (" | ", (gchar **) modifierStrings); g_free (modifierStrings); g_type_class_unref (flags_class); return result; } tilda-1.5.0/src/tilda_window.c0000644000175000017500000013562513617622621013174 00000000000000/* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #include #include "debug.h" #include "tilda.h" #include "configsys.h" #include "tilda_window.h" #include "tilda_terminal.h" #include "key_grabber.h" #include "vte-util.h" #include #include #include #include #include #include #include #include #include #include #include #include static tilda_term* tilda_window_get_current_terminal (tilda_window *tw); static gboolean show_confirmation_dialog (tilda_window *tw, const char *message); static void tilda_window_apply_transparency (tilda_window *tw, gboolean status); static gboolean update_tilda_window_size (gpointer user_data); static GdkFilterReturn window_filter_function (GdkXEvent *xevent, GdkEvent *event, gpointer data); static void tilda_window_setup_alpha_mode (tilda_window *tw) { GdkScreen *screen; GdkVisual *visual; screen = gtk_widget_get_screen (GTK_WIDGET (tw->window)); visual = gdk_screen_get_rgba_visual (screen); if (visual == NULL) { visual = gdk_screen_get_system_visual (screen); } if (visual != NULL && gdk_screen_is_composited (screen)) { /* Set RGBA colormap if possible so VTE can use real alpha * channels for transparency. */ gtk_widget_set_visual (GTK_WIDGET (tw->window), visual); tw->have_argb_visual = TRUE; } else { tw->have_argb_visual = FALSE; } } static tilda_term* find_tt_in_g_list (tilda_window *tw, gint pos) { DEBUG_FUNCTION ("find_tt_in_g_list"); DEBUG_ASSERT (tw != NULL); DEBUG_ASSERT (tw->terms != NULL); GtkWidget *page, *current_page; GList *terms = g_list_first (tw->terms); tilda_term *result=NULL; current_page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (tw->notebook), pos); do { page = TILDA_TERM(terms->data)->hbox; if (page == current_page) { result = terms->data; break; } } while ((terms = terms->next) != NULL); return result; } void tilda_window_close_current_tab (tilda_window *tw) { DEBUG_FUNCTION ("close_current_tab"); DEBUG_ASSERT (tw != NULL); gboolean can_close = TRUE; if (config_getbool ("confirm_close_tab")) { char * message = _("Are you sure you want to close this tab?"); can_close = show_confirmation_dialog (tw, message); } if (can_close) { gint pos = gtk_notebook_get_current_page (GTK_NOTEBOOK (tw->notebook)); tilda_window_close_tab (tw, pos, FALSE); } } static gboolean show_confirmation_dialog (tilda_window *tw, const char *message) { gboolean result; GtkWidget *dialog = gtk_message_dialog_new (GTK_WINDOW (tw->window), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_OK_CANCEL, NULL); gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG(dialog), message); gtk_window_set_keep_above (GTK_WINDOW (dialog), TRUE); gint response = gtk_dialog_run (GTK_DIALOG (dialog)); switch (response) { case GTK_RESPONSE_OK: result = TRUE; break; default: result = FALSE; break; } gtk_widget_destroy (dialog); return result; } gint tilda_window_set_tab_position (tilda_window *tw, enum notebook_tab_positions pos) { const GtkPositionType gtk_pos[] = {GTK_POS_TOP, GTK_POS_BOTTOM, GTK_POS_LEFT, GTK_POS_RIGHT }; if ((pos < 0) || (pos > 4)) { g_printerr (_("You have a bad tab_pos in your configuration file\n")); pos = NB_TOP; } if(NB_HIDDEN == pos) { gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), FALSE); } else { gtk_notebook_set_tab_pos (GTK_NOTEBOOK (tw->notebook), gtk_pos[pos]); if (gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) > 1) gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), TRUE); } return 0; } void tilda_window_set_fullscreen(tilda_window *tw) { DEBUG_FUNCTION ("tilda_window_set_fullscreen"); DEBUG_ASSERT (tw != NULL); if (tw->fullscreen == TRUE) { gtk_window_fullscreen (GTK_WINDOW (tw->window)); } else { gtk_window_unfullscreen (GTK_WINDOW (tw->window)); } } gint toggle_fullscreen_cb (tilda_window *tw) { DEBUG_FUNCTION ("toggle_fullscreen_cb"); DEBUG_ASSERT (tw != NULL); tw->fullscreen = !tw->fullscreen; tilda_window_set_fullscreen(tw); // It worked. Having this return GDK_EVENT_STOP makes the callback not carry the // keystroke into the vte terminal widget. return GDK_EVENT_STOP; } static gint toggle_transparency_cb (tilda_window *tw) { DEBUG_FUNCTION ("toggle_transparency"); DEBUG_ASSERT (tw != NULL); tilda_window_toggle_transparency(tw); return GDK_EVENT_STOP; } void tilda_window_toggle_transparency (tilda_window *tw) { gboolean status = !config_getbool ("enable_transparency"); config_setbool ("enable_transparency", status); tilda_window_apply_transparency (tw, status); } void tilda_window_refresh_transparency (tilda_window *tw) { gboolean status = config_getbool ("enable_transparency"); tilda_window_apply_transparency (tw, status); } static void tilda_window_apply_transparency (tilda_window *tw, gboolean status) { tilda_term *tt; guint i; GdkRGBA bg; bg.red = GUINT16_TO_FLOAT(config_getint ("back_red")); bg.green = GUINT16_TO_FLOAT(config_getint ("back_green")); bg.blue = GUINT16_TO_FLOAT(config_getint ("back_blue")); bg.alpha = (status ? GUINT16_TO_FLOAT(config_getint ("back_alpha")) : 1.0); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_color_background(VTE_TERMINAL(tt->vte_term), &bg); } } static gboolean search_gregex_cb (TildaSearchBox *search, GRegex *regex, TildaSearchDirection direction, gboolean wrap_on_search, tilda_window *tw) { VteTerminal *vte_terminal; tilda_term *term; term = tilda_window_get_current_terminal (tw); vte_terminal = VTE_TERMINAL (term->vte_term); vte_terminal_search_set_gregex (vte_terminal, regex, (GRegexMatchFlags) 0); vte_terminal_search_set_wrap_around (vte_terminal, wrap_on_search); if (direction == SEARCH_BACKWARD) return vte_terminal_search_find_previous (vte_terminal); else return vte_terminal_search_find_next (vte_terminal); } static gboolean search_cb (TildaSearchBox *search, VteRegex *regex, TildaSearchDirection direction, gboolean wrap_on_search, tilda_window *tw) { VteTerminal *vte_terminal; tilda_term *term; term = tilda_window_get_current_terminal (tw); vte_terminal = VTE_TERMINAL (term->vte_term); vte_terminal_search_set_regex (vte_terminal, regex, (GRegexMatchFlags) 0); vte_terminal_search_set_wrap_around (vte_terminal, wrap_on_search); if (direction == SEARCH_BACKWARD) return vte_terminal_search_find_previous (vte_terminal); else return vte_terminal_search_find_next (vte_terminal); } static void search_focus_out_cb (TildaSearchBox *box, tilda_window *tw) { gtk_widget_grab_focus (tilda_window_get_current_terminal (tw)->vte_term); } static gboolean toggle_searchbar_cb (tilda_window *tw) { tilda_window_toggle_searchbar (tw); return GDK_EVENT_STOP; } void tilda_window_toggle_searchbar (tilda_window *tw) { tilda_search_box_toggle (TILDA_SEARCH_BOX (tw->search)); } /* Zoom helpers */ static const double zoom_factors[] = { TERMINAL_SCALE_MINIMUM, TERMINAL_SCALE_XXXXX_SMALL, TERMINAL_SCALE_XXXX_SMALL, TERMINAL_SCALE_XXX_SMALL, PANGO_SCALE_XX_SMALL, PANGO_SCALE_X_SMALL, PANGO_SCALE_SMALL, PANGO_SCALE_MEDIUM, PANGO_SCALE_LARGE, PANGO_SCALE_X_LARGE, PANGO_SCALE_XX_LARGE, TERMINAL_SCALE_XXX_LARGE, TERMINAL_SCALE_XXXX_LARGE, TERMINAL_SCALE_XXXXX_LARGE, TERMINAL_SCALE_MAXIMUM }; static gboolean find_larger_zoom_factor (double current, double *found) { guint i; for (i = 0; i < G_N_ELEMENTS (zoom_factors); ++i) { /* Find a font that's larger than this one */ if ((zoom_factors[i] - current) > 1e-6) { *found = zoom_factors[i]; return TRUE; } } return FALSE; } static gboolean find_smaller_zoom_factor (double current, double *found) { int i; i = (int) G_N_ELEMENTS (zoom_factors) - 1; while (i >= 0) { /* Find a font that's smaller than this one */ if ((current - zoom_factors[i]) > 1e-6) { *found = zoom_factors[i]; return TRUE; } --i; } return FALSE; } /* Increase and Decrease and reset affects all tabs at once */ static gboolean normalize_font_size(tilda_window *tw) { tilda_term *tt; guint i; tw->current_scale_factor = PANGO_SCALE_MEDIUM; for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); tilda_term_adjust_font_scale(tt, tw->current_scale_factor); } return GDK_EVENT_STOP; } static gboolean increase_font_size (tilda_window *tw) { tilda_term *tt; guint i; if(!find_larger_zoom_factor (tw->current_scale_factor, &tw->current_scale_factor)) { return GDK_EVENT_STOP; } for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); tilda_term_adjust_font_scale(tt, tw->current_scale_factor); } return GDK_EVENT_STOP; } static gboolean decrease_font_size (tilda_window *tw) { tilda_term *tt; guint i; if(!find_smaller_zoom_factor (tw->current_scale_factor, &tw->current_scale_factor)) { return GDK_EVENT_STOP; } for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); tilda_term_adjust_font_scale(tt, tw->current_scale_factor); } return GDK_EVENT_STOP; } gint tilda_window_next_tab (tilda_window *tw) { DEBUG_FUNCTION ("next_tab"); DEBUG_ASSERT (tw != NULL); int num_pages; int current_page; GtkNotebook *notebook; notebook = GTK_NOTEBOOK (tw->notebook); /* If we are on the last page, go to first page */ num_pages = gtk_notebook_get_n_pages (notebook); current_page = gtk_notebook_get_current_page (notebook); if ((num_pages - 1) == current_page) gtk_notebook_set_current_page (notebook, 0); else gtk_notebook_next_page (notebook); // It worked. Having this return GDK_EVENT_STOP makes the callback not carry the // keystroke into the vte terminal widget. return GDK_EVENT_STOP; } gint tilda_window_prev_tab (tilda_window *tw) { DEBUG_FUNCTION ("prev_tab"); DEBUG_ASSERT (tw != NULL); int num_pages; int current_page; GtkNotebook *notebook; notebook = GTK_NOTEBOOK (tw->notebook); num_pages = gtk_notebook_get_n_pages (notebook); current_page = gtk_notebook_get_current_page (notebook); if (current_page == 0) gtk_notebook_set_current_page (notebook, (num_pages - 1)); else gtk_notebook_prev_page (notebook); // It worked. Having this return GDK_EVENT_STOP makes the callback not carry the // keystroke into the vte terminal widget. return GDK_EVENT_STOP; } enum tab_direction { TAB_LEFT = -1, TAB_RIGHT = 1 }; static gint move_tab (tilda_window *tw, int direction) { DEBUG_FUNCTION ("move_tab"); DEBUG_ASSERT (tw != NULL); int num_pages; int current_page_index; int new_page_index; GtkWidget* current_page; GtkNotebook* notebook; notebook = GTK_NOTEBOOK (tw->notebook); num_pages = gtk_notebook_get_n_pages (notebook); if (num_pages > 1) { current_page_index = gtk_notebook_get_current_page (notebook); current_page = gtk_notebook_get_nth_page (notebook, current_page_index); /* wrap over if new_page_index over-/underflows */ new_page_index = (current_page_index + direction) % num_pages; gtk_notebook_reorder_child (notebook, current_page, new_page_index); } // It worked. Having this return GDK_EVENT_STOP makes the callback not carry the // keystroke into the vte terminal widget. return GDK_EVENT_STOP; } static gint move_tab_left (tilda_window *tw) { DEBUG_FUNCTION ("move_tab_left"); return move_tab(tw, TAB_LEFT); } static gint move_tab_right (tilda_window *tw) { DEBUG_FUNCTION ("move_tab_right"); return move_tab(tw, TAB_RIGHT); } static gboolean focus_term (GtkWidget *widget, gpointer data) { DEBUG_FUNCTION ("focus_term"); DEBUG_ASSERT (data != NULL); DEBUG_ASSERT (widget != NULL); GList *list; GtkWidget *box; tilda_window *tw = TILDA_WINDOW(data); GtkWidget *n = GTK_WIDGET (tw->notebook); box = gtk_notebook_get_nth_page (GTK_NOTEBOOK(n), gtk_notebook_get_current_page(GTK_NOTEBOOK(n))); if (box != NULL) { list = gtk_container_get_children (GTK_CONTAINER(box)); gtk_widget_grab_focus (list->data); } // It worked. Having this return GDK_EVENT_STOP makes the callback not carry the // keystroke into the vte terminal widget. return GDK_EVENT_STOP; } static gboolean auto_hide_tick(gpointer data) { DEBUG_FUNCTION ("auto_hide_tick"); DEBUG_ASSERT (data != NULL); tilda_window *tw = TILDA_WINDOW(data); tw->auto_hide_current_time += tw->timer_resolution; if ((tw->auto_hide_current_time >= tw->auto_hide_max_time) || tw->current_state == STATE_UP) { pull(tw, PULL_UP, TRUE); tw->auto_hide_tick_handler = 0; return FALSE; } return TRUE; } /* Start auto hide tick */ static void start_auto_hide_tick(tilda_window *tw) { DEBUG_FUNCTION("start_auto_hide_tick"); // If the delay is less or equal to 1000ms then the timer is not precise // enough, because it takes already about 200ms to register it, so we // rather sleep for the given amount of time. const guint32 MAX_SLEEP_TIME = 1000; if ((tw->auto_hide_tick_handler == 0) && (tw->disable_auto_hide == FALSE)) { /* If there is no timer registered yet, then the auto_hide_tick_handler * has a value of zero. Next we need to make sure that the auto hide * max time is greater then zero, or else we can pull up immediately, * without the trouble of registering a timer. */ if (tw->auto_hide_max_time > MAX_SLEEP_TIME) { tw->auto_hide_current_time = 0; tw->auto_hide_tick_handler = g_timeout_add(tw->timer_resolution, auto_hide_tick, tw); } else if (tw->auto_hide_max_time > 0 && tw->auto_hide_max_time <= MAX_SLEEP_TIME) { // auto_hide_max_time is in milli seconds, so we need to convert to // microseconds by multiplying with 1000 g_usleep (tw->auto_hide_max_time * 1000); pull(tw, PULL_UP, TRUE); } else { pull(tw, PULL_UP, TRUE); } } } /* Stop auto hide tick */ static void stop_auto_hide_tick(tilda_window *tw) { if (tw->auto_hide_tick_handler != 0) { g_source_remove(tw->auto_hide_tick_handler); tw->auto_hide_tick_handler = 0; } } static gboolean mouse_enter (GtkWidget *widget, G_GNUC_UNUSED GdkEvent *event, gpointer data) { DEBUG_FUNCTION ("mouse_enter"); DEBUG_ASSERT (data != NULL); DEBUG_ASSERT (widget != NULL); tilda_window *tw = TILDA_WINDOW(data); stop_auto_hide_tick(tw); return GDK_EVENT_STOP; } static gboolean mouse_leave (GtkWidget *widget, G_GNUC_UNUSED GdkEvent *event, gpointer data) { DEBUG_FUNCTION ("mouse_leave"); DEBUG_ASSERT (data != NULL); DEBUG_ASSERT (widget != NULL); GdkEventCrossing *ev = (GdkEventCrossing*)event; tilda_window *tw = TILDA_WINDOW(data); if ((ev->mode != GDK_CROSSING_NORMAL) || (tw->auto_hide_on_mouse_leave == FALSE)) return GDK_EVENT_STOP; start_auto_hide_tick(tw); return GDK_EVENT_STOP; } static gboolean focus_out_event_cb (GtkWidget *widget, G_GNUC_UNUSED GdkEvent *event, gpointer data) { DEBUG_FUNCTION ("focus_out_event_cb"); DEBUG_ASSERT (data != NULL); DEBUG_ASSERT (widget != NULL); tilda_window *tw = TILDA_WINDOW(data); /** * When the tilda 'key' to pull down/up the tilda window is pressed, then tilda will inevitably loose focus. The * problem is that we cannot distinguish whether it was focused before the key press occurred. Checking the xevent * type here allows us to distinguish these two cases: * * * We loose focus because of a KeyPress event * * We loose focus because another window gained focus or some other reason. * * Depending on one of the two cases we set the tw->focus_loss_on_keypress to true or false. We can then * check this flag in the pull() function that shows or hides the tilda window. This helps us to decide if * we just need to focus tilda or if we should hide it. */ XEvent xevent; XPeekEvent(gdk_x11_display_get_xdisplay(gdk_window_get_display(gtk_widget_get_window(tw->window))), &xevent); if(xevent.type == KeyPress) { tw->focus_loss_on_keypress = TRUE; } else { tw->focus_loss_on_keypress = FALSE; } if (tw->auto_hide_on_focus_lost == FALSE) return GDK_EVENT_PROPAGATE; start_auto_hide_tick(tw); return GDK_EVENT_PROPAGATE; } static void goto_tab (tilda_window *tw, guint i) { DEBUG_FUNCTION ("goto_tab"); DEBUG_ASSERT (tw != NULL); gtk_notebook_set_current_page (GTK_NOTEBOOK (tw->notebook), i); } static gboolean goto_tab_generic (tilda_window *tw, guint tab_number) { DEBUG_FUNCTION ("goto_tab_generic"); DEBUG_ASSERT (tw != NULL); if (g_list_length (tw->terms) > (tab_number-1)) { goto_tab (tw, tab_number - 1); } return GDK_EVENT_STOP; } /* These all just call the generic function since they're all basically the same * anyway. Unfortunately, they can't just be macros, since we need to be able to * create a pointer to them for callbacks. */ static gboolean goto_tab_1 (tilda_window *tw) { return goto_tab_generic (tw, 1); } static gboolean goto_tab_2 (tilda_window *tw) { return goto_tab_generic (tw, 2); } static gboolean goto_tab_3 (tilda_window *tw) { return goto_tab_generic (tw, 3); } static gboolean goto_tab_4 (tilda_window *tw) { return goto_tab_generic (tw, 4); } static gboolean goto_tab_5 (tilda_window *tw) { return goto_tab_generic (tw, 5); } static gboolean goto_tab_6 (tilda_window *tw) { return goto_tab_generic (tw, 6); } static gboolean goto_tab_7 (tilda_window *tw) { return goto_tab_generic (tw, 7); } static gboolean goto_tab_8 (tilda_window *tw) { return goto_tab_generic (tw, 8); } static gboolean goto_tab_9 (tilda_window *tw) { return goto_tab_generic (tw, 9); } static gboolean goto_tab_10 (tilda_window *tw) { return goto_tab_generic (tw, 10); } static gint ccopy (tilda_window *tw) { DEBUG_FUNCTION ("ccopy"); DEBUG_ASSERT (tw != NULL); DEBUG_ASSERT (tw->notebook != NULL); GtkWidget *current_page; GList *list; gint pos = gtk_notebook_get_current_page (GTK_NOTEBOOK (tw->notebook)); current_page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (tw->notebook), pos); list = gtk_container_get_children (GTK_CONTAINER(current_page)); if GTK_IS_SCROLLBAR(list->data) { list = list->next; } vte_terminal_copy_clipboard_format (VTE_TERMINAL(list->data), VTE_FORMAT_TEXT); return GDK_EVENT_STOP; } static gint cpaste (tilda_window *tw) { DEBUG_FUNCTION ("cpaste"); DEBUG_ASSERT (tw != NULL); DEBUG_ASSERT (tw->notebook != NULL); GtkWidget *current_page; GList *list; gint pos = gtk_notebook_get_current_page (GTK_NOTEBOOK (tw->notebook)); current_page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (tw->notebook), pos); list = gtk_container_get_children (GTK_CONTAINER (current_page)); if GTK_IS_SCROLLBAR(list->data) { list = list->next; } vte_terminal_paste_clipboard (VTE_TERMINAL(list->data)); return GDK_EVENT_STOP; } /* Tie a single keyboard shortcut to a callback function */ static gint tilda_add_config_accelerator_by_path(const gchar* key, const gchar* path, GCallback callback_func, tilda_window *tw) { guint accel_key; GdkModifierType accel_mods; GClosure *temp; gtk_accelerator_parse (config_getstr(key), &accel_key, &accel_mods); if (! ((accel_key == 0) && (accel_mods == 0)) ) // make sure it parsed properly { temp = g_cclosure_new_swap (callback_func, tw, NULL); gtk_accel_map_add_entry(path, accel_key, accel_mods); gtk_accel_group_connect_by_path(tw->accel_group, path, temp); } return 0; } gboolean tilda_window_update_keyboard_accelerators (const gchar* path, const gchar* value) { guint accel_key; GdkModifierType accel_mods; gtk_accelerator_parse (value, &accel_key, &accel_mods); return gtk_accel_map_change_entry(path, accel_key, accel_mods, FALSE); } /* This function does the setup of the keyboard acceleratos. It should only be called once when the tilda window is * initialized. Use tilda_window_update_keyboard_accelerators to update keybindings that have been changed by the user. */ static gint tilda_window_setup_keyboard_accelerators (tilda_window *tw) { /* Create Accel Group to add key codes for quit, next, prev and new tabs */ tw->accel_group = gtk_accel_group_new (); gtk_window_add_accel_group (GTK_WINDOW (tw->window), tw->accel_group); /* Set up keyboard shortcuts for Exit, Next Tab, Previous Tab, Move Tab, Add Tab, Close Tab, Copy, and Paste using key combinations defined in the config. */ tilda_add_config_accelerator_by_path("addtab_key", "/context/New Tab", G_CALLBACK(tilda_window_add_tab), tw); tilda_add_config_accelerator_by_path("closetab_key", "/context/Close Tab", G_CALLBACK(tilda_window_close_current_tab), tw); tilda_add_config_accelerator_by_path("copy_key", "/context/Copy", G_CALLBACK(ccopy), tw); tilda_add_config_accelerator_by_path("paste_key", "/context/Paste", G_CALLBACK(cpaste), tw); tilda_add_config_accelerator_by_path("fullscreen_key", "/context/Toggle Fullscreen", G_CALLBACK(toggle_fullscreen_cb), tw); tilda_add_config_accelerator_by_path("quit_key", "/context/Quit", G_CALLBACK(tilda_window_confirm_quit), tw); tilda_add_config_accelerator_by_path("toggle_transparency_key", "/context/Toggle Transparency", G_CALLBACK(toggle_transparency_cb), tw); tilda_add_config_accelerator_by_path("toggle_searchbar_key", "/context/Toggle Searchbar", G_CALLBACK(toggle_searchbar_cb), tw); tilda_add_config_accelerator_by_path("nexttab_key", "/context/Next Tab", G_CALLBACK(tilda_window_next_tab), tw); tilda_add_config_accelerator_by_path("prevtab_key", "/context/Previous Tab", G_CALLBACK(tilda_window_prev_tab), tw); tilda_add_config_accelerator_by_path("movetableft_key", "/context/Move Tab Left", G_CALLBACK(move_tab_left), tw); tilda_add_config_accelerator_by_path("movetabright_key", "/context/Move Tab Right", G_CALLBACK(move_tab_right), tw); tilda_add_config_accelerator_by_path("increase_font_size_key", "/context/Increase Font Size", G_CALLBACK(increase_font_size), tw); tilda_add_config_accelerator_by_path("decrease_font_size_key", "/context/Decrease Font Size", G_CALLBACK(decrease_font_size), tw); tilda_add_config_accelerator_by_path("normalize_font_size_key", "/context/Normalize Font Size", G_CALLBACK(normalize_font_size), tw); /* Set up keyboard shortcuts for Goto Tab # using key combinations defined in the config*/ /* Know a better way? Then you do. */ tilda_add_config_accelerator_by_path("gototab_1_key", "/context/Goto Tab 1", G_CALLBACK(goto_tab_1), tw); tilda_add_config_accelerator_by_path("gototab_2_key", "/context/Goto Tab 2", G_CALLBACK(goto_tab_2), tw); tilda_add_config_accelerator_by_path("gototab_3_key", "/context/Goto Tab 3", G_CALLBACK(goto_tab_3), tw); tilda_add_config_accelerator_by_path("gototab_4_key", "/context/Goto Tab 4", G_CALLBACK(goto_tab_4), tw); tilda_add_config_accelerator_by_path("gototab_5_key", "/context/Goto Tab 5", G_CALLBACK(goto_tab_5), tw); tilda_add_config_accelerator_by_path("gototab_6_key", "/context/Goto Tab 6", G_CALLBACK(goto_tab_6), tw); tilda_add_config_accelerator_by_path("gototab_7_key", "/context/Goto Tab 7", G_CALLBACK(goto_tab_7), tw); tilda_add_config_accelerator_by_path("gototab_8_key", "/context/Goto Tab 8", G_CALLBACK(goto_tab_8), tw); tilda_add_config_accelerator_by_path("gototab_9_key", "/context/Goto Tab 9", G_CALLBACK(goto_tab_9), tw); tilda_add_config_accelerator_by_path("gototab_10_key", "/context/Goto Tab 10", G_CALLBACK(goto_tab_10), tw); return 0; } static tilda_term* tilda_window_get_current_terminal (tilda_window *tw) { gint pos = gtk_notebook_get_current_page (GTK_NOTEBOOK (tw->notebook)); if (pos >= 0) { GList *found = g_list_nth (tw->terms, (guint) pos); if (found) { return found->data; } } return NULL; } static gint tilda_window_set_icon (tilda_window *tw, gchar *filename) { GdkPixbuf *window_icon = gdk_pixbuf_new_from_file (filename, NULL); if (window_icon == NULL) { TILDA_PERROR (); DEBUG_ERROR ("Cannot open window icon"); g_printerr (_("Unable to set tilda's icon: %s\n"), filename); return 1; } gtk_window_set_icon (GTK_WINDOW(tw->window), window_icon); g_object_unref (window_icon); return 0; } static gboolean delete_event_callback (G_GNUC_UNUSED GtkWidget *widget, G_GNUC_UNUSED GdkEvent *event, G_GNUC_UNUSED gpointer user_data) { gtk_main_quit (); return FALSE; } /* Detect changes in GtkNotebook tab order and update the tw->terms list to reflect such changes. */ static void page_reordered_cb (GtkNotebook *notebook, GtkWidget *child, guint page_num, tilda_window *tw) { DEBUG_FUNCTION ("page_reordered_cb"); GList *terminals; tilda_term *terminal; guint i; terminals = tw->terms; for (i = 0; i < g_list_length (terminals); i++) { terminal = g_list_nth_data (terminals, i); if (terminal->hbox == child) { terminals = g_list_remove (terminals, terminal); tw->terms = g_list_insert (terminals, terminal, page_num); break; } } } gboolean tilda_window_init (const gchar *config_file, const gint instance, tilda_window *tw) { DEBUG_FUNCTION ("tilda_window_init"); DEBUG_ASSERT (instance >= 0); GtkCssProvider *provider; GtkStyleContext *style_context; /* Set the instance number */ tw->instance = instance; /* Set the config file */ tw->config_file = g_strdup (config_file); /* Create the main window */ tw->window = gtk_window_new (GTK_WINDOW_TOPLEVEL); GError* error = NULL; GtkBuilder *gtk_builder = gtk_builder_new (); #if ENABLE_NLS gtk_builder_set_translation_domain (gtk_builder, PACKAGE); #endif if(!gtk_builder_add_from_resource (gtk_builder, "/org/tilda/tilda.ui", &error)) { fprintf (stderr, "Error: %s\n", error->message); g_error_free(error); return FALSE; } tw->gtk_builder = gtk_builder; /* The gdk_x11_get_server_time call will hang if GDK_PROPERTY_CHANGE_MASK is not set */ gdk_window_set_events(gdk_screen_get_root_window (gtk_widget_get_screen (tw->window)), GDK_PROPERTY_CHANGE_MASK); /* Generic timer resolution */ tw->timer_resolution = config_getint("timer_resolution"); /* Auto hide support */ tw->auto_hide_tick_handler = 0; tw->auto_hide_max_time = config_getint("auto_hide_time"); tw->auto_hide_on_mouse_leave = config_getbool("auto_hide_on_mouse_leave"); tw->auto_hide_on_focus_lost = config_getbool("auto_hide_on_focus_lost"); tw->disable_auto_hide = FALSE; tw->focus_loss_on_keypress = FALSE; PangoFontDescription *description = pango_font_description_from_string(config_getstr("font")); gint size = pango_font_description_get_size(description); tw->unscaled_font_size = size; tw->current_scale_factor = PANGO_SCALE_MEDIUM; if(1 == config_getint("non_focus_pull_up_behaviour")) { tw->hide_non_focused = TRUE; } else { tw->hide_non_focused = FALSE; } tw->fullscreen = config_getbool("start_fullscreen"); tilda_window_set_fullscreen(tw); /* Set up all window properties */ if (config_getbool ("pinned")) gtk_window_stick (GTK_WINDOW(tw->window)); if(config_getbool ("set_as_desktop")) gtk_window_set_type_hint(GTK_WINDOW(tw->window), GDK_WINDOW_TYPE_HINT_DESKTOP); gtk_window_set_skip_taskbar_hint (GTK_WINDOW(tw->window), config_getbool ("notaskbar")); gtk_window_set_keep_above (GTK_WINDOW(tw->window), config_getbool ("above")); gtk_window_set_decorated (GTK_WINDOW(tw->window), FALSE); gtk_widget_set_size_request (GTK_WIDGET(tw->window), 0, 0); tilda_window_set_icon (tw, g_build_filename (DATADIR, "pixmaps", "tilda.png", NULL)); tilda_window_setup_alpha_mode (tw); gtk_widget_set_app_paintable (GTK_WIDGET (tw->window), TRUE); /* Add keyboard accelerators */ tw->accel_group = NULL; /* We can redefine the accelerator group from the wizard; this shows that it's our first time defining it. */ tilda_window_setup_keyboard_accelerators (tw); /* Create the notebook */ tw->notebook = gtk_notebook_new (); /* Here we setup the CSS settings for the GtkNotebook. * If the option "Show notebook border" in the preferences is not * checked. Then we disable the border. Otherwise nothing is changed. * * Depending on the theme it might be necessary to set different * CSS rules, so it is not possible to find a solution that fits * everyone. The following configuration works well with the GNOME * default theme Adwaita, but for example has problems under Ubuntu. * Note that for bigger modifications the user can create a style.css * file in tildas config directory, which will be parsed by * load_custom_css_file() in tilda.c on start up. */ gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), FALSE); gtk_notebook_set_show_border (GTK_NOTEBOOK (tw->notebook), config_getbool("notebook_border")); gtk_notebook_set_scrollable (GTK_NOTEBOOK(tw->notebook), TRUE); tilda_window_set_tab_position (tw, config_getint ("tab_pos")); provider = gtk_css_provider_new (); style_context = gtk_widget_get_style_context(tw->notebook); gtk_style_context_add_provider (style_context, GTK_STYLE_PROVIDER(provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); if(!config_getbool("notebook_border")) { /** * Calling gtk_notebook_set_show_border is not enough. We need to * disable the border explicitly by using CSS. */ gtk_css_provider_load_from_data (GTK_CSS_PROVIDER (provider), " .notebook {\n" " border: none;\n" "}\n", -1, NULL); } g_object_unref (provider); /* Create the linked list of terminals */ tw->terms = NULL; /* Add the initial terminal */ if (!tilda_window_add_tab (tw)) { return FALSE; } /* This is required in key_grabber.c to get the x11 server time, * since the specification requires this flag to be set when * gdk_x11_get_server_time() is called. **/ gtk_widget_add_events (tw->window, GDK_PROPERTY_CHANGE_MASK ); /* Connect signal handlers */ g_signal_connect (G_OBJECT(tw->window), "delete-event", G_CALLBACK (delete_event_callback), tw); g_signal_connect (G_OBJECT(tw->window), "show", G_CALLBACK (focus_term), tw); g_signal_connect (G_OBJECT(tw->window), "focus-out-event", G_CALLBACK (focus_out_event_cb), tw); g_signal_connect (G_OBJECT(tw->window), "enter-notify-event", G_CALLBACK (mouse_enter), tw); g_signal_connect (G_OBJECT(tw->window), "leave-notify-event", G_CALLBACK (mouse_leave), tw); /* We need this signal to detect changes in the order of tabs so that we can keep the order * of tilda_terms in the tw->terms structure in sync with the order of tabs. */ g_signal_connect (G_OBJECT(tw->notebook), "page-reordered", G_CALLBACK (page_reordered_cb), tw); /* Setup the tilda window. The tilda window consists of a top level window that contains the following widgets: * * The main_box holds a GtkNotebook with all the terminal tabs * * The search_box holds the TildaSearchBox widget */ GtkWidget *main_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); tw->search = tilda_search_box_new (); gtk_container_add (GTK_CONTAINER(tw->window), main_box); gtk_box_pack_start (GTK_BOX (main_box), tw->notebook, TRUE, TRUE, 0); gtk_box_pack_start (GTK_BOX (main_box), tw->search, FALSE, TRUE, 0); if (VTE_CHECK_VERSION_RUMTIME (0, 56, 1)) { g_signal_connect (tw->search, "search", G_CALLBACK (search_cb), tw); } else { g_signal_connect (tw->search, "search-gregex", G_CALLBACK (search_gregex_cb), tw); } g_signal_connect (tw->search, "focus-out", G_CALLBACK (search_focus_out_cb), tw); /* Show the widgets */ gtk_widget_show_all (main_box); gtk_widget_set_visible(tw->search, FALSE); /* the tw->window widget will be shown later, by pull() */ /* Position the window */ tw->current_state = STATE_UP; GdkRectangle rectangle; config_get_configured_window_size (&rectangle); gint width = rectangle.width; gint height = rectangle.height; gtk_window_set_default_size (GTK_WINDOW(tw->window), width, height); gtk_window_resize (GTK_WINDOW(tw->window), width, height); /* Create GDK resources now, to prevent crashes later on */ gtk_widget_realize (tw->window); generate_animation_positions (tw); /* Initialize wizard window reference to NULL */ tw->wizard_window = NULL; GdkScreen *screen; GdkWindow *root; GdkEventMask mask; screen = gtk_widget_get_screen (GTK_WIDGET (tw->window)); root = gdk_screen_get_root_window (screen); mask = gdk_window_get_events (root); mask |= GDK_PROPERTY_CHANGE_MASK; gdk_window_set_events (root, mask); gdk_window_add_filter (root, window_filter_function, tw); return TRUE; } gint tilda_window_free (tilda_window *tw) { /* Close each tab which still exists. * This will free their data structures automatically. */ if (tw->notebook != NULL) { gint num_pages = gtk_notebook_get_n_pages (GTK_NOTEBOOK(tw->notebook)); while (num_pages > 0) { /* Close the 0th tab, which should always exist while we have * some pages left in the notebook. */ tilda_window_close_tab (tw, 0, TRUE); num_pages = gtk_notebook_get_n_pages (GTK_NOTEBOOK(tw->notebook)); } } g_free (tw->config_file); gtk_widget_destroy (tw->search); if (tw->gtk_builder != NULL) { g_object_unref (G_OBJECT(tw->gtk_builder)); } tw->size_update_event_source = 0; return 0; } gint tilda_window_add_tab (tilda_window *tw) { DEBUG_FUNCTION ("tilda_window_add_tab"); DEBUG_ASSERT (tw != NULL); tilda_term *tt; GtkWidget *label; gint index; tt = tilda_term_init (tw); if (tt == NULL) { TILDA_PERROR (); g_printerr (_("Out of memory, cannot create tab\n")); return FALSE; } /* Create page and append to notebook */ label = gtk_label_new (config_getstr("title")); /* Strangely enough, prepend puts pages on the end */ index = gtk_notebook_append_page (GTK_NOTEBOOK(tw->notebook), tt->hbox, label); gtk_notebook_set_current_page (GTK_NOTEBOOK(tw->notebook), index); gtk_notebook_set_tab_reorderable (GTK_NOTEBOOK(tw->notebook), tt->hbox, TRUE); if(config_getbool ("expand_tabs")) { gtk_container_child_set (GTK_CONTAINER(tw->notebook), GTK_WIDGET(tt->hbox), "tab-expand", TRUE, "tab-fill", TRUE, NULL); } /* We should show the tabs if there are more than one tab in the notebook * (or show single tab is set), * and tab position is not set to hidden */ if ((gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) > 1 || config_getbool("show_single_tab")) && config_getint("tab_pos") != NB_HIDDEN) gtk_notebook_set_show_tabs (GTK_NOTEBOOK (tw->notebook), TRUE); /* The new terminal should grab the focus automatically */ gtk_widget_grab_focus (tt->vte_term); return GDK_EVENT_STOP; //index; } gint tilda_window_close_tab (tilda_window *tw, gint tab_index, gboolean force_exit) { DEBUG_FUNCTION ("tilda_window_close_tab"); DEBUG_ASSERT (tw != NULL); DEBUG_ASSERT (tab_index >= 0); tilda_term *tt; GtkWidget *child; child = gtk_notebook_get_nth_page (GTK_NOTEBOOK(tw->notebook), tab_index); if (child == NULL) { DEBUG_ERROR ("Bad tab_index specified"); return -1; } tt = find_tt_in_g_list (tw, tab_index); gtk_notebook_remove_page (GTK_NOTEBOOK (tw->notebook), tab_index); /* We should hide the tabs if there is only one tab left */ if (gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) == 1 && !config_getbool("show_single_tab")) gtk_notebook_set_show_tabs (GTK_NOTEBOOK (tw->notebook), FALSE); /* With no pages left, either leave the program or create a new * terminal */ if (gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) < 1) { if (force_exit == TRUE) { /** * It is necessary to check the main_level because if CTRL_C was used * or the "Quit" option from the context menu then gtk_main_quit has * already been called and cannot call it again. */ if(gtk_main_level () > 0) { gtk_main_quit (); } } else { /* These can stay here. They don't need to go into a header * because they are only used at this point in the code. */ enum on_last_terminal_exit { EXIT_TILDA, RESTART_TERMINAL, RESTART_TERMINAL_AND_HIDE }; /* Check the user's preference for what to do when the last * terminal is closed. Take the appropriate action */ switch (config_getint ("on_last_terminal_exit")) { case RESTART_TERMINAL: tilda_window_add_tab (tw); break; case RESTART_TERMINAL_AND_HIDE: tilda_window_add_tab (tw); pull (tw, PULL_UP, TRUE); break; case EXIT_TILDA: default: /** * It is necessary to check the main_level because if CTRL_C was used * or the "Quit" option from the context menu then gtk_main_quit has * already been called and cannot call it again. */ if(gtk_main_level () > 0) { gtk_main_quit (); } break; } } } /* Remove the tilda_term from the list of terminals */ tw->terms = g_list_remove (tw->terms, tt); /* Free the terminal, we are done with it */ tilda_term_free (tt); return GDK_EVENT_STOP; } gint tilda_window_confirm_quit (tilda_window *tw) { DEBUG_FUNCTION(__FUNCTION__); gboolean can_quit = TRUE; if(config_getbool("prompt_on_exit")) { char * message = _("Are you sure you want to Quit?"); can_quit = show_confirmation_dialog (tw, message); } if (can_quit) { gtk_main_quit (); } return GDK_EVENT_STOP; } GdkMonitor* tilda_window_find_monitor_number (tilda_window *tw) { DEBUG_FUNCTION ("tilda_window_find_monitor_number"); GdkDisplay *display = gdk_display_get_default (); gint n_monitors = gdk_display_get_n_monitors (gdk_display_get_default ()); gchar *show_on_monitor = config_getstr("show_on_monitor"); for(int i = 0; i < n_monitors; ++i) { GdkMonitor *monitor = gdk_display_get_monitor (display, i); const gchar *monitor_name = gdk_monitor_get_model (monitor); if(0 == g_strcmp0 (show_on_monitor, monitor_name)) { return monitor; } } return gdk_display_get_primary_monitor (display); } gint tilda_window_find_centering_coordinate (tilda_window *tw, enum dimensions dimension) { DEBUG_FUNCTION ("tilda_window_find_centering_coordinate"); gdouble monitor_dimension = 0; gdouble tilda_dimension = 0; GdkMonitor *monitor = tilda_window_find_monitor_number (tw); GdkRectangle rectangle; gdk_monitor_get_workarea (monitor, &rectangle); GdkRectangle tilda_rectangle; config_get_configured_window_size (&tilda_rectangle); if (dimension == HEIGHT) { monitor_dimension = rectangle.height; tilda_dimension = tilda_rectangle.height; } else if (dimension == WIDTH) { monitor_dimension = rectangle.width; tilda_dimension = tilda_rectangle.width; } const gdouble screen_center = monitor_dimension / 2.0; const gdouble tilda_center = tilda_dimension / 2.0; gint center = (int) (screen_center - tilda_center); if(dimension == HEIGHT) { center += rectangle.y; } else if (dimension == WIDTH) { center += rectangle.x; } return center; } void tilda_window_update_window_position (tilda_window *tw) { DEBUG_FUNCTION ("tilda_window_update_window_position"); /** * If the screen size changed we might also need to recenter the * tilda window. */ gint pos_x, pos_y; gboolean centered_horizontally = config_getbool ("centered_horizontally"); gboolean centered_vertically = config_getbool ("centered_vertically"); if (centered_horizontally) { pos_x = tilda_window_find_centering_coordinate (tw, WIDTH); config_setint ("x_pos", pos_x); pos_y = (gint) config_getint ("y_pos"); gtk_window_move (GTK_WINDOW (tw->window), pos_x, pos_y); } if (centered_vertically) { pos_y = tilda_window_find_centering_coordinate (tw, HEIGHT); config_setint ("y_pos", pos_y); pos_x = (gint) config_getint ("x_pos"); gtk_window_move (GTK_WINDOW (tw->window), pos_x, pos_y); } } static gboolean update_tilda_window_size (gpointer user_data) { tilda_window *tw = user_data; g_debug ("Updating tilda window size in idle handler to " "match new size of workarea."); /* 1. Get current tilda window size */ int windowHeight = gtk_widget_get_allocated_height (GTK_WIDGET (tw->window)); int windowWidth = gtk_widget_get_allocated_width (GTK_WIDGET (tw->window)); gint newWidth = windowWidth; gint newHeight = windowHeight; /* 2. Get the desired size and update the tilda window size if necessary. */ GdkRectangle configured_geometry; config_get_configured_window_size (&configured_geometry); if (configured_geometry.width - windowWidth >= 1) { newWidth = configured_geometry.width; } if (configured_geometry.height - windowHeight >= 1) { newHeight = configured_geometry.height; } gtk_window_resize (GTK_WINDOW (tw->window), newWidth, newHeight); tilda_window_update_window_position (tw); /* 3. Returning G_SOURCE_REMOVE below will clear the event source in Gtk. * Thus, we need to reset the ID such that a new event source can be * registered if the workarea changes again. */ tw->size_update_event_source = 0; return G_SOURCE_REMOVE; } /** * This function inspects the incoming XEvents to find property events that * update the workarea and as a result queues an update function which updates * the tilda window size in case the workarea has changed. * * The reason we need this function is that in the signal handlers of * the signals GdkScreen::monitors-changed and GdkScreen::size-changed * we cannot reliably get the updated workarea. This is because the workarea * is computed and update by the window manager only after the monitor * resolution has changed. Thus, if we call gdk_monitor_get_workarea * from the monitors-changed or size-changed signal handlers we will * not get the correct workarea because the window manager has not yet * updated the corresponding XProperty. */ static GdkFilterReturn window_filter_function (GdkXEvent *gdk_xevent, GdkEvent *event, gpointer user_data) { tilda_window *tw = user_data; XEvent *xevent = (XEvent *) gdk_xevent; switch (xevent->type) { case PropertyNotify: { XPropertyEvent *propertyEvent; propertyEvent = (XPropertyEvent *) xevent; const Atom WORKAREA_ATOM = XInternAtom (propertyEvent->display, "_NET_WORKAREA", True); if (propertyEvent->atom != WORKAREA_ATOM) return GDK_FILTER_CONTINUE; if (tw->size_update_event_source != 0) return GDK_FILTER_CONTINUE; tw->size_update_event_source = g_idle_add (update_tilda_window_size, user_data); break; } default:break; } return GDK_FILTER_CONTINUE; } tilda-1.5.0/src/tilda-enum-types.h0000644000175000017500000000104313615563426013705 00000000000000 /* This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */ #ifndef TILDA_ENUM_TYPES_H #define TILDA_ENUM_TYPES_H #include G_BEGIN_DECLS /* Enumerations from "../src/tilda-search-box.h" */ #define TILDA_TYPE_SEARCH_DIRECTION (tilda_search_direction_get_type()) GType tilda_search_direction_get_type (void) G_GNUC_CONST; G_END_DECLS #endif /* Generated data ends here */ tilda-1.5.0/src/wizard.c0000644000175000017500000023553613617620115012006 00000000000000/* vim: set ts=4 sts=4 sw=4 expandtab nowrap: */ /* * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . */ #include #include #include "debug.h" #include "tilda.h" #include "wizard.h" #include "key_grabber.h" #include "configsys.h" #include "screen-size.h" #include "tilda-palettes.h" #include "tilda_window.h" #include "tilda-keybinding.h" #include #include #include #include #include /* VTE_* constants, mostly */ #include #include #include #include /* INT_MAX */ #include struct TildaWizard_ { tilda_window *tw; TildaKeybindingTreeView *keybinding; GtkBuilder *builder; }; typedef struct TildaWizard_ TildaWizard; /* This will hold the GtkBuilder representation of the .ui file. * We keep this global so that we can look up any element from any routine. * * Note that for GtkBuilder to autoconnect signals, the functions that it hooks * to must NOT be marked static. I decided against the autoconnect just to * keep things "in the code" so that they can be grepped for easily. */ static GtkBuilder *xml = NULL; /* Prototypes for use in the wizard() */ static void set_wizard_state_from_config (tilda_window *tw); static void connect_wizard_signals (TildaWizard *wizard); static void init_palette_scheme_menu (void); static void update_palette_color_button(gint idx); static void initialize_geometry_spinners(tilda_window *tw); /* Show the wizard. This will show the wizard, then exit immediately. */ gint wizard (tilda_window *tw) { DEBUG_FUNCTION ("wizard"); DEBUG_ASSERT (tw != NULL); gchar *window_title; /* Make sure that there isn't already a wizard showing */ if (tw->wizard_window) { gtk_window_present (GTK_WINDOW (tw->wizard_window)); return 0; } TildaWizard *wizard = g_malloc (sizeof (TildaWizard)); GError* error = NULL; xml = gtk_builder_new (); #if ENABLE_NLS gtk_builder_set_translation_domain (xml, PACKAGE); #endif if(!gtk_builder_add_from_resource (xml, "/org/tilda/tilda.ui", &error)) { g_prefix_error(&error, "Error:"); return EXIT_FAILURE; } if (!xml) { g_warning ("problem while loading the tilda.ui file"); return 2; } wizard->builder = xml; wizard->tw = tw; tw->wizard_window = GTK_WIDGET ( gtk_builder_get_object (xml, "wizard_window") ); /* GtkDialog windows need to have a transient parent or a warning will be logged. */ gtk_window_set_transient_for (GTK_WINDOW(tw->wizard_window), GTK_WINDOW(tw->window)); init_palette_scheme_menu (); /* Copy the current program state into the wizard */ set_wizard_state_from_config (tw); wizard->keybinding = tilda_keybinding_init (wizard->builder); /* Connect all signal handlers. We do this after copying the state into * the wizard so that all of the handlers don't get called as we copy in * the values. This function manually connects the required signals for * all the widgets */ connect_wizard_signals (wizard); /* Unbind the current keybinding. I'm aware that this opens up an opportunity to * let "someone else" grab the key, but it also saves us some trouble, and makes * validation easier. */ tilda_keygrabber_unbind (config_getstr ("key")); /* Adding widget title for CSS selection */ gtk_widget_set_name (GTK_WIDGET(tw->wizard_window), "Wizard"); /* Set the icon for the wizard window to our tilda icon. */ gchar* filename = g_build_filename (DATADIR, "pixmaps", "tilda.png", NULL); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(filename, NULL); g_free(filename); gtk_window_set_icon(GTK_WINDOW(tw->wizard_window), pixbuf); window_title = g_strdup_printf (_("Tilda %d Config"), tw->instance); gtk_window_set_title (GTK_WINDOW(tw->wizard_window), window_title); gtk_window_set_type_hint (GTK_WINDOW(tw->wizard_window), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_widget_show_all (tw->wizard_window); /* This is needed to ensure that the wizard appears above of the terminal window */ gtk_window_present(GTK_WINDOW(tw->wizard_window)); g_free (window_title); /* Disable auto hide */ tw->disable_auto_hide = TRUE; return 0; } # define GET_BUTTON_LABEL(BUTTON) ( gtk_button_get_label( GTK_BUTTON( \ gtk_builder_get_object (xml, BUTTON)))) /* Gets called just after the wizard is closed. This should clean up after * the wizard, and do anything that couldn't be done immediately during the * wizard's lifetime. */ static void wizard_close_dialog (TildaWizard *wizard) { DEBUG_FUNCTION ("wizard_close_dialog"); tilda_window *tw = wizard->tw; const GtkWidget *entry_custom_command = GTK_WIDGET (gtk_builder_get_object(xml, "entry_custom_command")); const GtkWidget *wizard_window = tw->wizard_window; const gchar *command = gtk_entry_get_text (GTK_ENTRY(entry_custom_command)); if (!tilda_keybinding_save (wizard->keybinding, tw)) { return; } tilda_keybinding_apply (wizard->keybinding); tilda_keybinding_free (wizard->keybinding); wizard->keybinding = NULL; /* TODO: validate this?? */ config_setstr ("command", command); /* Free the GtkBuilder data structure */ g_object_unref (G_OBJECT(xml)); xml = NULL; /* Remove the wizard */ gtk_widget_destroy (GTK_WIDGET(wizard_window)); tw->wizard_window = NULL; /* Write the config, because it probably changed. This saves us in case * of an XKill (or crash) later ... */ config_write (tw->config_file); /* Enables auto hide */ tw->disable_auto_hide = FALSE; wizard->tw = NULL; wizard->builder = NULL; g_free (wizard); } /******************************************************************************/ /* Wizard set-up functions */ /******************************************************************************/ /* The following macro definitions are used to make the process of loading the * configuration values a lot easier. Each macro takes the name of a GtkBuilder object * and the name of a configuration option and sets the value for that widget to the value * that is stored in this configuration option. The macros are mainly used in the function * set_wizard_state_from_config() but they are used in some callback functions as well, so * we need to define before the callback functions. */ /** Setters */ #define CHECK_BUTTON(GLADE_NAME,CFG_BOOL) gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME))), config_getbool ((CFG_BOOL))) #define COMBO_BOX(GLADE_NAME,CFG_INT) gtk_combo_box_set_active (GTK_COMBO_BOX( \ gtk_builder_get_object (xml, (GLADE_NAME))), config_getint ((CFG_INT))) #define FONT_BUTTON(GLADE_NAME,CFG_STR) gtk_font_chooser_set_font (GTK_FONT_CHOOSER( \ gtk_builder_get_object (xml, (GLADE_NAME))), config_getstr ((CFG_STR))) #define TEXT_ENTRY(GLADE_NAME,CFG_STR) gtk_entry_set_text (GTK_ENTRY( \ gtk_builder_get_object (xml, (GLADE_NAME))), config_getstr ((CFG_STR))) #define BUTTON_LABEL_FROM_CFG(GLADE_NAME,CFG_STR) gtk_button_set_label (GTK_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME))), config_getstr ((CFG_STR))) #define SPIN_BUTTON(GLADE_NAME,CFG_INT) gtk_spin_button_set_value (GTK_SPIN_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME))), config_getint ((CFG_INT))) #define SPIN_BUTTON_SET_RANGE(GLADE_NAME,LOWER,UPPER) gtk_spin_button_set_range (GTK_SPIN_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME))), (LOWER), (UPPER)) #define SPIN_BUTTON_SET_VALUE(GLADE_NAME,VALUE) gtk_spin_button_set_value (GTK_SPIN_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME))), (VALUE)) #define FILE_BUTTON(GLADE_NAME, FILENAME) gtk_file_chooser_set_filename (GTK_FILE_CHOOSER( \ gtk_builder_get_object (xml, (GLADE_NAME))), FILENAME) #define COLOR_CHOOSER(GLADE_NAME,COLOR) gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER( \ gtk_builder_get_object (xml, (GLADE_NAME))), (COLOR)) #define SET_SENSITIVE_BY_CONFIG_BOOL(GLADE_NAME,CFG_BOOL) gtk_widget_set_sensitive ( \ GTK_WIDGET (gtk_builder_get_object (xml, (GLADE_NAME))), config_getbool ((CFG_BOOL))) #define SET_SENSITIVE_BY_CONFIG_NBOOL(GLADE_NAME,CFG_BOOL) gtk_widget_set_sensitive ( \ GTK_WIDGET (gtk_builder_get_object (xml, (GLADE_NAME))), !config_getbool ((CFG_BOOL))) /** Getters */ #define SPIN_BUTTON_GET_VALUE(GLADE_NAME) gtk_spin_button_get_value (GTK_SPIN_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME)))) #define SPIN_BUTTON_GET_RANGE(GLADE_NAME,MIN_POINTER,MAX_POINTER) gtk_spin_button_get_range (GTK_SPIN_BUTTON( \ gtk_builder_get_object (xml, (GLADE_NAME))), MIN_POINTER, MAX_POINTER) /******************************************************************************/ /* Utility functions to get the current monitors height and width */ /******************************************************************************/ static int get_max_height() { gdouble height_min; gdouble height_max; SPIN_BUTTON_GET_RANGE("spin_height_pixels", &height_min, &height_max); return (int) height_max; } static int get_max_width() { gdouble width_min; gdouble width_max; SPIN_BUTTON_GET_RANGE("spin_width_pixels", &width_min, &width_max); return (int) width_max; } /******************************************************************************/ /* ALL static callback helpers are below */ /******************************************************************************/ /** * Get the number of screens and load the monitor geometry for each screen, * then set the position of the window according to the x and y offset * of that monitor. This function does not actually move or resize the window * but only changes the value of the spin buttons. The moving and resizing * is then done by the callback functions of the respective widgets. */ static int combo_monitor_selection_changed_cb (GtkWidget* widget, tilda_window *tw) { DEBUG_FUNCTION ("combo_monitor_selection_changed_cb"); GdkDisplay *display = gdk_display_get_default (); GdkMonitor *original_monitor = tilda_window_find_monitor_number (tw); GdkMonitor *new_monitor; GdkRectangle original_monitor_rectangle; GdkRectangle selected_monitor_rectangle; gdk_monitor_get_workarea (original_monitor, &original_monitor_rectangle); GtkTreeIter active_iter; GtkComboBox* combo_choose_monitor = GTK_COMBO_BOX(widget); if(!gtk_combo_box_get_active_iter(combo_choose_monitor, &active_iter)) { return FALSE; } gchar* new_monitor_name = NULL; gint new_monitor_number; gtk_tree_model_get(gtk_combo_box_get_model(combo_choose_monitor), &active_iter, 0, &new_monitor_name, 1, &new_monitor_number, -1); new_monitor = gdk_display_get_monitor (display, new_monitor_number); gdk_monitor_get_workarea (new_monitor, &selected_monitor_rectangle); //Save the new monitor value config_setstr("show_on_monitor", new_monitor_name); /* The dimensions of the monitor might have changed, * so we need to update the spinner widgets for height, * width, and their percentages as well as their ranges. * Keep in mind that we use the max range of the pixel spinners * to store the size of the screen. */ GdkRectangle rectangle; config_get_configured_window_size (&rectangle); if(selected_monitor_rectangle.width != original_monitor_rectangle.width) { gint new_max_width = selected_monitor_rectangle.width; SPIN_BUTTON_SET_RANGE ("spin_width_pixels", 0, new_max_width); SPIN_BUTTON_SET_VALUE ("spin_width_pixels", rectangle.width); gtk_window_resize (GTK_WINDOW(tw->window), rectangle.width, rectangle.height); } if(selected_monitor_rectangle.height != original_monitor_rectangle.height) { int new_max_height = selected_monitor_rectangle.height; SPIN_BUTTON_SET_RANGE ("spin_height_pixels", 0, new_max_height); SPIN_BUTTON_SET_VALUE ("spin_height_pixels", rectangle.height); gtk_window_resize (GTK_WINDOW(tw->window), rectangle.width, rectangle.height); } gint screen_width, screen_height; screen_size_get_dimensions (&screen_width, &screen_height); SPIN_BUTTON_SET_RANGE ("spin_x_position", 0, screen_width); SPIN_BUTTON_SET_VALUE("spin_x_position", selected_monitor_rectangle.x); SPIN_BUTTON_SET_RANGE ("spin_y_position", 0, screen_height); SPIN_BUTTON_SET_VALUE("spin_y_position", selected_monitor_rectangle.y); tilda_window_update_window_position (tw); return GDK_EVENT_STOP; } static void window_title_change_all (tilda_window *tw) { DEBUG_FUNCTION ("window_title_change_all"); GtkWidget *page; GtkWidget *label; tilda_term *tt; gchar *title; gint i, size, list_count; size = gtk_notebook_get_n_pages (GTK_NOTEBOOK(tw->notebook)); list_count = size-1; for (i=0;iterms, list_count)->data; title = tilda_terminal_get_title (tt); page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (tw->notebook), i); label = gtk_notebook_get_tab_label (GTK_NOTEBOOK (tw->notebook), page); guint length = config_getint ("title_max_length"); guint title_behaviour = config_getint("title_behaviour"); if(title_behaviour && strlen(title) > length) { gchar *shortTitle = NULL; if(title_behaviour == 1) { shortTitle = g_strdup_printf ("%.*s...", length, title); } else { gchar *titleOffset = title + strlen(title) - length; shortTitle = g_strdup_printf ("...%s", titleOffset); } gtk_label_set_text (GTK_LABEL(label), shortTitle); g_free(shortTitle); } else { gtk_label_set_text (GTK_LABEL(label), title); } if(config_getbool("show_title_tooltip")) gtk_widget_set_tooltip_text(label, title); else gtk_widget_set_tooltip_text(label, ""); g_free (title); } } static void set_spin_value_while_blocking_callback (GtkSpinButton *spin, void (*callback)(GtkWidget *w, tilda_window *tw), gdouble new_val, tilda_window *tw) { DEBUG_FUNCTION ("set_spin_value_while_blocking_callback"); g_signal_handlers_block_by_func (spin, G_CALLBACK(*callback), tw); gtk_spin_button_set_value (GTK_SPIN_BUTTON(spin), new_val); g_signal_handlers_unblock_by_func (spin, G_CALLBACK(*callback), tw); } /******************************************************************************/ /* ALL Callbacks are below */ /******************************************************************************/ static void wizard_button_close_clicked_cb (GtkButton *button, TildaWizard *wizard) { /* Call the clean-up function */ wizard_close_dialog (wizard); } static void wizard_window_delete_event_cb (GtkWidget *widget, GdkEvent *event, TildaWizard *wizard) { /* Call the clean-up function */ wizard_close_dialog (wizard); } static void check_display_on_all_workspaces_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("pinned", status); if (status) gtk_window_stick (GTK_WINDOW (tw->window)); else gtk_window_unstick (GTK_WINDOW (tw->window)); } static void check_set_as_desktop_toggled_cb (GtkWidget *widget, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(widget)); GtkWidget *check_display_on_all_workspaces = GTK_WIDGET (gtk_builder_get_object (xml, "check_display_on_all_workspaces")); config_setbool ("set_as_desktop", status); g_signal_handlers_block_by_func (check_display_on_all_workspaces, check_display_on_all_workspaces_toggled_cb, NULL); gboolean status_display_on_all_workspaces = config_getbool ("pinned"); if (status) { gtk_widget_set_sensitive (check_display_on_all_workspaces, FALSE); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_display_on_all_workspaces), TRUE); gtk_window_stick (GTK_WINDOW (tw->window)); } else { gtk_widget_set_sensitive (check_display_on_all_workspaces, TRUE); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_display_on_all_workspaces), status_display_on_all_workspaces); gtk_window_unstick (GTK_WINDOW (tw->window)); } gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), status); g_signal_handlers_unblock_by_func (check_display_on_all_workspaces, check_display_on_all_workspaces_toggled_cb, NULL); } static void check_do_not_show_in_taskbar_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("notaskbar", status); gtk_window_set_skip_taskbar_hint (GTK_WINDOW(tw->window), status); } static void check_show_notebook_border_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("notebook_border", status); gtk_notebook_set_show_border (GTK_NOTEBOOK (tw->notebook), status); } static void check_always_on_top_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("above", status); gtk_window_set_keep_above (GTK_WINDOW (tw->window), status); } static void check_start_tilda_hidden_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("hidden", status); } static void check_terminal_bell_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); guint i; tilda_term *tt; config_setbool ("bell", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_audible_bell (VTE_TERMINAL(tt->vte_term), status); } } static void check_cursor_blinks_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); guint i; tilda_term *tt; config_setbool ("blinks", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_cursor_blink_mode (VTE_TERMINAL(tt->vte_term), (status)?VTE_CURSOR_BLINK_ON:VTE_CURSOR_BLINK_OFF); } } static void spin_auto_hide_time_value_changed_cb (GtkWidget *w, tilda_window *tw) { const gint auto_hide_time = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(w)); config_setint ("auto_hide_time", auto_hide_time); tw->auto_hide_max_time = auto_hide_time; } static void check_auto_hide_on_focus_lost_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("auto_hide_on_focus_lost", status); tw->auto_hide_on_focus_lost = status; } static void check_auto_hide_on_mouse_leave_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("auto_hide_on_mouse_leave", status); tw->auto_hide_on_mouse_leave = status; } static void combo_cursor_shape_changed_cb(GtkWidget *w, tilda_window *tw) { guint i; tilda_term *tt; gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); if (status < 0 || status > 2) { DEBUG_ERROR ("Invalid Cursor Type"); g_printerr (_("Invalid Cursor Type, resetting to default\n")); status = 0; } config_setint("cursor_shape", (VteCursorShape) status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_cursor_shape (VTE_TERMINAL(tt->vte_term), (VteCursorShape) status); } } static void combo_non_focus_pull_up_behaviour_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); if (status < 0 || status > 1) { DEBUG_ERROR ("Non-focus pull up behaviour invalid"); g_printerr (_("Invalid non-focus pull up behaviour, ignoring\n")); return; } if(1 == status) { tw->hide_non_focused = TRUE; } else { tw->hide_non_focused = FALSE; } config_setint ("non_focus_pull_up_behaviour", status); } static void button_font_font_set_cb (GtkWidget *w, tilda_window *tw) { const gchar *font = gtk_font_chooser_get_font (GTK_FONT_CHOOSER (w)); guint i; tilda_term *tt; config_setstr ("font", font); PangoFontDescription *description = pango_font_description_from_string (font); tw->unscaled_font_size = pango_font_description_get_size(description); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_font (VTE_TERMINAL(tt->vte_term), description); tilda_term_adjust_font_scale(tt, tw->current_scale_factor); } } static void entry_title_changed_cb (GtkWidget *w, tilda_window *tw) { const gchar *title = gtk_entry_get_text (GTK_ENTRY(w)); config_setstr ("title", title); window_title_change_all (tw); } static void combo_dynamically_set_title_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); config_setint ("d_set_title", status); window_title_change_all (tw); } static void combo_title_behaviour_changed_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION ("combo_title_behaviour_changed_cb"); GtkWidget *entry = GTK_WIDGET( gtk_builder_get_object (xml, ("spin_title_max_length")) ); const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); config_setint("title_behaviour", status); if (status > 0) { gtk_widget_set_sensitive (entry, TRUE); } else { gtk_widget_set_sensitive (entry, FALSE); } } static void spin_max_title_length_changed_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION ("spin_max_title_length_changed_cb"); int length = gtk_spin_button_get_value (GTK_SPIN_BUTTON (w)); config_setint ("title_max_length", length); window_title_change_all (tw); } static void check_run_custom_command_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); GtkWidget *label_custom_command; GtkWidget *entry_custom_command; GtkWidget *check_command_login_shell; config_setbool ("run_command", status); label_custom_command = GTK_WIDGET (gtk_builder_get_object (xml, "label_custom_command")); entry_custom_command = GTK_WIDGET (gtk_builder_get_object (xml, "entry_custom_command")); check_command_login_shell = GTK_WIDGET (gtk_builder_get_object (xml, "check_command_login_shell")); gtk_widget_set_sensitive (label_custom_command, status); gtk_widget_set_sensitive (entry_custom_command, status); gtk_widget_set_sensitive (check_command_login_shell, !status); if(!status) { gtk_entry_set_icon_from_icon_name(GTK_ENTRY(entry_custom_command), GTK_ENTRY_ICON_SECONDARY, NULL); } gtk_widget_grab_focus(entry_custom_command); } /** * Check that the value entered into the GtkEntry is a valid command * which is accessible from the users PATH environment variable. * If the command is not found on the users PATH then a small error * icon is displayed on the end of the entry. * This function can only be registered to Widgets of (sub)type GtkEntry */ static void validate_executable_command_cb (GtkWidget *w, G_GNUC_UNUSED GdkEvent *event, G_GNUC_UNUSED tilda_window *tw) { g_return_if_fail(w != NULL && GTK_IS_ENTRY(w)); const char* command = gtk_entry_get_text (GTK_ENTRY(w)); /* Check that the command exists */ int argc = 0; gchar** argv = NULL; GError *error = NULL; gboolean success = g_shell_parse_argv(command, &argc, &argv, &error); char *command_filename = NULL; if(success && argc > 0) { command_filename = g_find_program_in_path(argv[0]); } g_strfreev(argv); if (command_filename == NULL && gtk_widget_is_sensitive(w)) { //wrong command gtk_entry_set_icon_from_icon_name(GTK_ENTRY(w), GTK_ENTRY_ICON_SECONDARY, "dialog-error"); gtk_entry_set_icon_tooltip_text(GTK_ENTRY(w), GTK_ENTRY_ICON_SECONDARY, "The command you have entered is not a valid command.\n" "Make sure that the specified executable is in your PATH environment variable." ); } else { gtk_entry_set_icon_from_icon_name(GTK_ENTRY(w), GTK_ENTRY_ICON_SECONDARY, NULL); free(command_filename); } } static void check_confirm_close_tab_cb (GtkWidget *w, G_GNUC_UNUSED tilda_window *tw) { const gboolean active = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); config_setbool ("confirm_close_tab", active); } static void combo_command_exit_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); config_setint ("command_exit", status); } static void check_command_login_shell_cb (GtkWidget *w, tilda_window *tw) { const gboolean active = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); config_setbool("command_login_shell", active); } static void check_start_fullscreen_cb(GtkWidget *w, tilda_window *tw) { const gboolean start_fullscreen = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); config_setbool("start_fullscreen", start_fullscreen); } static void combo_on_last_terminal_exit_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); config_setint ("on_last_terminal_exit", status); } static void check_prompt_on_exit_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean prompt_on_exit = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); config_setbool("prompt_on_exit", prompt_on_exit); } static void check_show_title_tooltip_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean show_title_tooltip = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w)); config_setbool("show_title_tooltip", show_title_tooltip); window_title_change_all (tw); } static void entry_web_browser_changed (GtkWidget *w, tilda_window *tw) { const gchar *web_browser = gtk_entry_get_text (GTK_ENTRY(w)); config_setstr ("web_browser", web_browser); } static void entry_word_chars_changed (GtkWidget *w, tilda_window *tw) { guint i; tilda_term *tt; const gchar *word_chars = gtk_entry_get_text (GTK_ENTRY(w)); /* restore to default value if user clears this setting */ if (NULL == word_chars || '\0' == word_chars[0]) word_chars = DEFAULT_WORD_CHARS; config_setstr ("word_chars", word_chars); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_word_char_exceptions (VTE_TERMINAL (tt->vte_term), word_chars); } } /* * Prototypes for the next 4 functions. */ //Both height functions depend on each other static void spin_height_percentage_value_changed_cb (GtkWidget *w, tilda_window *tw); static void spin_height_pixels_value_changed_cb (GtkWidget *w, tilda_window *tw); //Both width functions depend on each other static void spin_width_percentage_value_changed_cb (GtkWidget *w, tilda_window *tw); static void spin_width_pixels_value_changed_cb (GtkWidget *w, tilda_window *tw); static void initialize_scrollback_settings(void); static void initialize_set_as_desktop_checkbox (void); static void spin_height_percentage_value_changed_cb (GtkWidget *spin_height_percentage, tilda_window *tw) { DEBUG_FUNCTION ("spin_height_percentage_value_changed_cb"); const GtkWidget *spin_height_pixels = GTK_WIDGET (gtk_builder_get_object (xml, "spin_height_pixels")); const gdouble height_percentage = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_height_percentage)) / 100; const gint height_pixels = pixels_ratio_to_absolute (get_max_height(), height_percentage); config_setint ("height_percentage", GLONG_FROM_DOUBLE (height_percentage)); set_spin_value_while_blocking_callback (GTK_SPIN_BUTTON(spin_height_pixels), &spin_height_pixels_value_changed_cb, height_pixels, tw); GdkRectangle rectangle; config_get_configured_window_size (&rectangle); gtk_window_resize (GTK_WINDOW(tw->window), rectangle.width, height_pixels); if (config_getbool ("centered_vertically")) { config_setint ("y_pos", tilda_window_find_centering_coordinate (tw, HEIGHT)); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); } /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void spin_height_pixels_value_changed_cb (GtkWidget *spin_height_pixels, tilda_window *tw) { DEBUG_FUNCTION ("spin_height_pixels_value_changed_cb"); const GtkWidget *spin_height_percentage = GTK_WIDGET (gtk_builder_get_object (xml, "spin_height_percentage")); const gint height_pixels = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(spin_height_pixels)); const gdouble height_percentage = pixels_absolute_to_ratio (get_max_height(), height_pixels); config_setint ("height_percentage", GLONG_FROM_DOUBLE (height_percentage)); set_spin_value_while_blocking_callback (GTK_SPIN_BUTTON(spin_height_percentage), &spin_height_percentage_value_changed_cb, height_percentage * 100, tw); GdkRectangle rectangle; config_get_configured_window_size (&rectangle); gtk_window_resize (GTK_WINDOW(tw->window), rectangle.width, height_pixels); if (config_getbool ("centered_vertically")) { config_setint ("y_pos", tilda_window_find_centering_coordinate (tw, HEIGHT)); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); } /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void spin_width_percentage_value_changed_cb (GtkWidget *spin_width_percentage, tilda_window *tw) { DEBUG_FUNCTION ("spin_width_percentage_value_changed_cb"); const GtkWidget *spin_width_pixels = GTK_WIDGET (gtk_builder_get_object (xml, "spin_width_pixels")); const gdouble width_percentage = gtk_spin_button_get_value (GTK_SPIN_BUTTON(spin_width_percentage)) / 100; const gint width_pixels = pixels_ratio_to_absolute (get_max_width(), width_percentage); config_setint ("width_percentage", GLONG_FROM_DOUBLE(width_percentage)); set_spin_value_while_blocking_callback (GTK_SPIN_BUTTON(spin_width_pixels), &spin_width_pixels_value_changed_cb, width_pixels, tw); GdkRectangle rectangle; config_get_configured_window_size (&rectangle); gtk_window_resize (GTK_WINDOW(tw->window), width_pixels, rectangle.height); if (config_getbool ("centered_horizontally")) { config_setint ("x_pos", tilda_window_find_centering_coordinate (tw, WIDTH)); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); } /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void spin_width_pixels_value_changed_cb (GtkWidget *spin_width_pixels, tilda_window *tw) { DEBUG_FUNCTION ("spin_width_pixels_value_changed_cb"); const GtkWidget *spin_width_percentage = GTK_WIDGET (gtk_builder_get_object (xml, "spin_width_percentage")); const gint width_pixels = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(spin_width_pixels)); const gdouble width_percentage = pixels_absolute_to_ratio (get_max_width(), width_pixels); config_setint ("width_percentage", GLONG_FROM_DOUBLE(width_percentage)); set_spin_value_while_blocking_callback (GTK_SPIN_BUTTON(spin_width_percentage), &spin_width_percentage_value_changed_cb, width_percentage * 100, tw); GdkRectangle rectangle; config_get_configured_window_size (&rectangle); gtk_window_resize (GTK_WINDOW(tw->window), width_pixels, rectangle.height); if (config_getbool ("centered_horizontally")) { config_setint ("x_pos", tilda_window_find_centering_coordinate (tw, WIDTH)); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); } /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void check_centered_horizontally_toggled_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION ("check_centered_horizontally_toggled_cb"); const gboolean active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); const GtkWidget *label_x_position = GTK_WIDGET (gtk_builder_get_object (xml, "label_x_position")); const GtkWidget *spin_x_position = GTK_WIDGET (gtk_builder_get_object (xml, "spin_x_position")); config_setbool ("centered_horizontally", active); if (active) config_setint ("x_pos", tilda_window_find_centering_coordinate (tw, WIDTH)); else config_setint ("x_pos", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(spin_x_position))); gtk_widget_set_sensitive (GTK_WIDGET(label_x_position), !active); gtk_widget_set_sensitive (GTK_WIDGET(spin_x_position), !active); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void spin_x_position_value_changed_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION ("spin_x_position_value_changed_cb"); const gint x_pos = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(w)); const gint y_pos = config_getint ("y_pos"); config_setint ("x_pos", x_pos); gtk_window_move (GTK_WINDOW(tw->window), x_pos, y_pos); /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void check_centered_vertically_toggled_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION ("check_centered_vertically_toggled_cb"); const gboolean active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); const GtkWidget *label_y_position = GTK_WIDGET (gtk_builder_get_object (xml, "label_y_position")); const GtkWidget *spin_y_position = GTK_WIDGET (gtk_builder_get_object (xml, "spin_y_position")); config_setbool ("centered_vertically", active); if (active) config_setint ("y_pos", tilda_window_find_centering_coordinate (tw, HEIGHT)); else config_setint ("y_pos", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(spin_y_position))); gtk_widget_set_sensitive (GTK_WIDGET(label_y_position), !active); gtk_widget_set_sensitive (GTK_WIDGET(spin_y_position), !active); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void spin_y_position_value_changed_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION ("spin_y_position_value_changed_cb"); const gint x_pos = config_getint ("x_pos"); const gint y_pos = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(w)); config_setint ("y_pos", y_pos); gtk_window_move (GTK_WINDOW(tw->window), x_pos, y_pos); /* Always regenerate animation positions when changing x or y position! * Otherwise you get VERY strange things going on :) */ generate_animation_positions (tw); } static void combo_tab_pos_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); const GtkPositionType positions[] = { GTK_POS_TOP, GTK_POS_BOTTOM, GTK_POS_LEFT, GTK_POS_RIGHT }; if (status < 0 || status > 4) { DEBUG_ERROR ("Notebook tab position invalid"); g_printerr (_("Invalid tab position setting, ignoring\n")); return; } config_setint ("tab_pos", status); if(NB_HIDDEN == status) { gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), FALSE); } else { if (gtk_notebook_get_n_pages(GTK_NOTEBOOK (tw->notebook)) > 1) { gtk_notebook_set_show_tabs(GTK_NOTEBOOK(tw->notebook), TRUE); } gtk_notebook_set_tab_pos (GTK_NOTEBOOK(tw->notebook), positions[status]); } } static void check_expand_tabs_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("expand_tabs", status); int page = 0; GtkWidget *child = NULL; while((child = gtk_notebook_get_nth_page(GTK_NOTEBOOK (tw->notebook), page++))) { gtk_container_child_set (GTK_CONTAINER(tw->notebook), child, "tab-expand", status, "tab-fill", status, NULL); } } static void check_show_single_tab_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("show_single_tab", status); /* Only need to do something if the current number of tabs is 1 */ if (gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) == 1) gtk_notebook_set_show_tabs (GTK_NOTEBOOK (tw->notebook), status); } static void check_enable_transparency_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); const GtkWidget *label_level_of_transparency = GTK_WIDGET (gtk_builder_get_object (xml, "label_level_of_transparency")); const GtkWidget *spin_level_of_transparency = GTK_WIDGET (gtk_builder_get_object (xml, "spin_level_of_transparency")); gtk_widget_set_sensitive (GTK_WIDGET(label_level_of_transparency), status); gtk_widget_set_sensitive (GTK_WIDGET(spin_level_of_transparency), status); tilda_window_toggle_transparency(tw); } static void spin_level_of_transparency_value_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(w)); guint i; tilda_term *tt; GdkRGBA bg; bg.red = GUINT16_TO_FLOAT(config_getint ("back_red")); bg.green = GUINT16_TO_FLOAT(config_getint ("back_green")); bg.blue = GUINT16_TO_FLOAT(config_getint ("back_blue")); bg.alpha = 1.0 - (status / 100.0); config_setint ("back_alpha", GUINT16_FROM_FLOAT (bg.alpha)); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_color_background(VTE_TERMINAL(tt->vte_term), &bg); } } static void spin_animation_delay_value_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(w)); config_setint ("slide_sleep_usec", status); } static void combo_animation_orientation_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); config_setint ("animation_orientation", status); generate_animation_positions (tw); } static void check_animated_pulldown_toggled_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); const GtkWidget *label_animation_delay = GTK_WIDGET (gtk_builder_get_object (xml, "label_animation_delay")); const GtkWidget *spin_animation_delay = GTK_WIDGET (gtk_builder_get_object (xml, "spin_animation_delay")); const GtkWidget *label_animation_orientation = GTK_WIDGET (gtk_builder_get_object (xml, "label_animation_orientation")); const GtkWidget *combo_animation_orientation = GTK_WIDGET (gtk_builder_get_object (xml, "combo_animation_orientation")); gtk_widget_set_sensitive (GTK_WIDGET(label_animation_delay), status); gtk_widget_set_sensitive (GTK_WIDGET(spin_animation_delay), status); gtk_widget_set_sensitive (GTK_WIDGET(label_animation_orientation), status); gtk_widget_set_sensitive (GTK_WIDGET(combo_animation_orientation), status); config_setbool ("animation", status); /* If we just disabled animation, we have to reset the window size to the normal * size, since the animations change the size of the window, and pull() does nothing more * than show and place the window. */ if (!status) { GdkRectangle rectangle; config_get_configured_window_size (&rectangle); guint width = rectangle.width; guint height = rectangle.height; gtk_window_resize (GTK_WINDOW(tw->window), width, height); gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos")); } /* Avoids a nasty looking glitch if you switch on animation while the window is * hidden. It will briefly show at full size, then shrink to the first animation * position. From there it works fine. */ if (status && tw->current_state == STATE_UP) { /* I don't know why, but width=0, height=0 doesn't work. Width=1, height=1 works * exactly as expected, so I'm leaving it that way. */ gtk_window_resize (GTK_WINDOW(tw->window), 1, 1); } } static void combo_colorschemes_changed_cb (GtkWidget *w, tilda_window *tw) { const gint scheme = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); const GtkWidget *colorbutton_text = GTK_WIDGET (gtk_builder_get_object (xml, "colorbutton_text")); const GtkWidget *colorbutton_back = GTK_WIDGET (gtk_builder_get_object (xml, "colorbutton_back")); GdkRGBA gdk_text, gdk_back; tilda_term *tt; guint i; gboolean nochange = FALSE; config_setint ("scheme", scheme); gdk_text.alpha = 1.0; gdk_back.alpha = 1.0; switch (scheme) { /* Green on black */ case 1: gdk_text.red = gdk_text.blue = 0.0; gdk_text.green = 1.0; gdk_back.red = gdk_back.green = gdk_back.blue = 0.0; break; /* Black on white */ case 2: gdk_text.red = gdk_text.green = gdk_text.blue = 0.0; gdk_back.red = gdk_back.green = gdk_back.blue = 1.0; break; /* White on black */ case 3: gdk_text.red = gdk_text.green = gdk_text.blue = 1.0; gdk_back.red = gdk_back.green = gdk_back.blue = 0.0; break; /* Zenburn */ case 4: gdk_text.red = 0.86; gdk_text.green = gdk_text.blue = 0.64; gdk_back.red = gdk_back.green = gdk_back.blue = 0.25; break; /* Solarized Light */ case 5: gdk_text.red = 0.4; gdk_text.green = 0.48; gdk_text.blue = 0.51; gdk_back.red = 0.99; gdk_back.green = 0.96; gdk_back.blue = 0.89; break; /* Solarized Dark */ case 6: gdk_text.red = 0.51; gdk_text.green = 0.58; gdk_text.blue = 0.59; gdk_back.red = 0.0; gdk_back.green = 0.17; gdk_back.blue = 0.21; break; /* Snazzy */ case 7: gdk_text.red = 0.94; gdk_text.green = 0.94; gdk_text.blue = 0.92; gdk_back.red = 0.16; gdk_back.green = 0.16; gdk_back.blue = 0.21; break; /* Custom */ default: nochange = TRUE; break; } /* If we switched to "Custom", then don't do anything. Let the user continue * from the current color choice. */ if (!nochange) { config_setint ("back_red", GUINT16_FROM_FLOAT(gdk_back.red)); config_setint ("back_green", GUINT16_FROM_FLOAT(gdk_back.green)); config_setint ("back_blue", GUINT16_FROM_FLOAT(gdk_back.blue)); config_setint ("text_red", GUINT16_FROM_FLOAT(gdk_text.red)); config_setint ("text_green", GUINT16_FROM_FLOAT(gdk_text.green)); config_setint ("text_blue", GUINT16_FROM_FLOAT(gdk_text.blue)); gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER(colorbutton_text), &gdk_text); gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER(colorbutton_back), &gdk_back); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_color_foreground (VTE_TERMINAL(tt->vte_term), &gdk_text); vte_terminal_set_color_background (VTE_TERMINAL(tt->vte_term), &gdk_back); } tilda_window_refresh_transparency(tw); } } static void colorbutton_cursor_color_set_cb (GtkWidget *w, tilda_window *tw) { const GtkWidget *combo_colorschemes = GTK_WIDGET (gtk_builder_get_object (xml, "combo_colorschemes")); guint i; tilda_term *tt; GdkRGBA gdk_cursor_color; /* The user just changed colors manually, so set the scheme to "Custom" */ gtk_combo_box_set_active (GTK_COMBO_BOX(combo_colorschemes), 0); config_setint ("scheme", 0); /* Now get the color that was set, save it, then set it */ gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER(w), &gdk_cursor_color); config_setint ("cursor_red", GUINT16_FROM_FLOAT(gdk_cursor_color.red)); config_setint ("cursor_green", GUINT16_FROM_FLOAT(gdk_cursor_color.green)); config_setint ("cursor_blue", GUINT16_FROM_FLOAT(gdk_cursor_color.blue)); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_color_cursor (VTE_TERMINAL(tt->vte_term), &gdk_cursor_color); } } static void colorbutton_text_color_set_cb (GtkWidget *w, tilda_window *tw) { const GtkWidget *combo_colorschemes = GTK_WIDGET (gtk_builder_get_object (xml, "combo_colorschemes")); guint i; tilda_term *tt; GdkRGBA gdk_text_color; /* The user just changed colors manually, so set the scheme to "Custom" */ gtk_combo_box_set_active (GTK_COMBO_BOX(combo_colorschemes), 0); config_setint ("scheme", 0); /* Now get the color that was set, save it, then set it */ gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER(w), &gdk_text_color); config_setint ("text_red", GUINT16_FROM_FLOAT(gdk_text_color.red)); config_setint ("text_green", GUINT16_FROM_FLOAT(gdk_text_color.green)); config_setint ("text_blue", GUINT16_FROM_FLOAT(gdk_text_color.blue)); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_color_foreground (VTE_TERMINAL(tt->vte_term), &gdk_text_color); } } static void colorbutton_back_color_set_cb (GtkWidget *w, tilda_window *tw) { const GtkWidget *combo_colorschemes = GTK_WIDGET (gtk_builder_get_object (xml, "combo_colorschemes")); guint i; tilda_term *tt; GdkRGBA gdk_back_color; /* The user just changed colors manually, so set the scheme to "Custom" */ gtk_combo_box_set_active (GTK_COMBO_BOX(combo_colorschemes), 0); config_setint ("scheme", 0); /* Now get the color that was set, save it, then set it */ gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER(w), &gdk_back_color); config_setint ("back_red", GUINT16_FROM_FLOAT(gdk_back_color.red)); config_setint ("back_green", GUINT16_FROM_FLOAT(gdk_back_color.green)); config_setint ("back_blue", GUINT16_FROM_FLOAT(gdk_back_color.blue)); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_color_background (VTE_TERMINAL(tt->vte_term), &gdk_back_color); vte_terminal_set_color_cursor_foreground (VTE_TERMINAL(tt->vte_term), &gdk_back_color); } } /** * This function is called if a different color scheme is selected from the combo box. */ static void combo_palette_scheme_changed_cb (GtkWidget *w, tilda_window *tw) { DEBUG_FUNCTION("combo_palette_scheme_changed_cb"); gint i; guint j; tilda_term *tt; GdkRGBA fg, bg; GtkWidget *color_button; i = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); /* i = 0 means custom, in that case we do nothing */ TildaColorScheme *tildaPaletteSchemes = tilda_palettes_get_palette_schemes (); if (i > 0 && i < tilda_palettes_get_n_palette_schemes ()) { const GdkRGBA *current_palette = tildaPaletteSchemes[i].palette; color_button = GTK_WIDGET (gtk_builder_get_object (xml, "colorbutton_text")); gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER(color_button), &fg); color_button = GTK_WIDGET (gtk_builder_get_object (xml, "colorbutton_back")); gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER(color_button), &bg); bg.alpha = (config_getbool("enable_transparency") ? GUINT16_TO_FLOAT(config_getint ("back_alpha")) : 1.0); tilda_palettes_set_current_palette (current_palette); /* Set terminal palette. */ for (j=0; jterms); j++) { tt = g_list_nth_data (tw->terms, j); vte_terminal_set_colors (VTE_TERMINAL(tt->vte_term), &fg, &bg, current_palette, TILDA_COLOR_PALETTE_SIZE); } for (j=0; jterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_colors (VTE_TERMINAL (tt->vte_term), &fg, &bg, current_palette, TILDA_COLOR_PALETTE_SIZE); } } static void combo_scrollbar_position_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); guint i; tilda_term *tt; config_setint ("scrollbar_pos", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); tilda_term_set_scrollbar_position (tt, status); } } static void spin_scrollback_amount_value_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(w)); guint i; tilda_term *tt; config_setint ("lines", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_scrollback_lines (VTE_TERMINAL(tt->vte_term), status); } } static void check_infinite_scrollback_toggled_cb(GtkWidget *w, tilda_window *tw) { // if status is false then scrollback is infinite, otherwise the spinner is active const gboolean hasScrollbackLimit = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); config_setbool ("scroll_history_infinite", !hasScrollbackLimit); GtkWidget *spinner = (GtkWidget *) gtk_builder_get_object(xml, "spin_scrollback_amount"); gint scrollback_lines = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON(spinner)); GtkWidget *label = (GtkWidget *) gtk_builder_get_object(xml, "label_scrollback_lines"); gtk_widget_set_sensitive(spinner, hasScrollbackLimit); gtk_widget_set_sensitive(label, hasScrollbackLimit); guint i; tilda_term *tt; if(!hasScrollbackLimit) { scrollback_lines = -1; } for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_scrollback_lines(VTE_TERMINAL(tt->vte_term), scrollback_lines); } } static void check_scroll_on_output_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); guint i; tilda_term *tt; config_setbool ("scroll_on_output", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_scroll_on_output (VTE_TERMINAL(tt->vte_term), status); } } static void check_scroll_on_keystroke_toggled_cb (GtkWidget *w, tilda_window *tw) { const gboolean status = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(w)); guint i; tilda_term *tt; config_setbool ("scroll_on_key", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_scroll_on_keystroke (VTE_TERMINAL(tt->vte_term), status); } } static void combo_backspace_binding_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); const gint keys[] = { VTE_ERASE_ASCII_DELETE, VTE_ERASE_DELETE_SEQUENCE, VTE_ERASE_ASCII_BACKSPACE, VTE_ERASE_AUTO }; guint i; tilda_term *tt; config_setint ("backspace_key", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_backspace_binding (VTE_TERMINAL(tt->vte_term), keys[status]); } } static void combo_delete_binding_changed_cb (GtkWidget *w, tilda_window *tw) { const gint status = gtk_combo_box_get_active (GTK_COMBO_BOX(w)); const gint keys[] = { VTE_ERASE_ASCII_DELETE, VTE_ERASE_DELETE_SEQUENCE, VTE_ERASE_ASCII_BACKSPACE, VTE_ERASE_AUTO }; guint i; tilda_term *tt; config_setint ("delete_key", status); for (i=0; iterms); i++) { tt = g_list_nth_data (tw->terms, i); vte_terminal_set_delete_binding (VTE_TERMINAL(tt->vte_term), keys[status]); } } static void button_reset_compatibility_options_clicked_cb (tilda_window *tw) { const GtkWidget *combo_backspace_binding = GTK_WIDGET (gtk_builder_get_object (xml, "combo_backspace_binding")); const GtkWidget *combo_delete_binding = GTK_WIDGET (gtk_builder_get_object (xml, "combo_delete_binding")); config_setint ("backspace_key", 0); config_setint ("delete_key", 1); gtk_combo_box_set_active (GTK_COMBO_BOX(combo_backspace_binding), 0); gtk_combo_box_set_active (GTK_COMBO_BOX(combo_delete_binding), 1); } static void initialize_combo_choose_monitor(tilda_window *tw) { DEBUG_FUNCTION ("initialize_combo_choose_monitor"); /** * First we need to initialize the "combo_choose_monitor" widget, * with the numbers of each monitor attached to the system. */ GdkDisplay *display = gdk_display_get_default (); int num_monitors = gdk_display_get_n_monitors (display); GdkMonitor *active_monitor = tilda_window_find_monitor_number(tw); GtkComboBox* combo_choose_monitor = GTK_COMBO_BOX(gtk_builder_get_object(xml,"combo_choose_monitor")); GtkListStore* monitor_model = GTK_LIST_STORE(gtk_combo_box_get_model(combo_choose_monitor)); GtkTreeIter iter; gint i; gtk_list_store_clear(monitor_model); for (i = 0; i < num_monitors; i++) { GdkMonitor *monitor; gtk_list_store_append(monitor_model, &iter); monitor = gdk_display_get_monitor (display, i); const gchar *monitor_model_name = gdk_monitor_get_model (monitor); gchar *display_name = g_strdup_printf ("%d (%s)", i, monitor_model_name); gtk_list_store_set(monitor_model, &iter, 0, monitor_model_name, 1, i, 2, display_name, -1); if(monitor == active_monitor) { gtk_combo_box_set_active_iter(combo_choose_monitor, &iter); } g_free (display_name); } } /** * Here the geometry options in the appearance tab get initialized. The options are: * height and width (both absolute and in percentage), x and y positions as well as the * check boxes for centering. * Because we might have multiple monitors we first need to get the monitor that * is currently selected to show the window and then load its geometry information. */ static void initialize_geometry_spinners(tilda_window *tw) { DEBUG_FUNCTION ("initialize_geometry_spinners"); GdkMonitor *monitor = tilda_window_find_monitor_number(tw); GdkRectangle rectangle; gdk_monitor_get_workarea (monitor, &rectangle); int monitor_height = rectangle.height; int monitor_width = rectangle.width; /* Update range and value of height spinners */ GdkRectangle tilda_rectangle; config_get_configured_window_size (&tilda_rectangle); gint width = tilda_rectangle.width; gint height = tilda_rectangle.height; gdouble height_percentage = GLONG_TO_DOUBLE (config_getint("height_percentage")) * 100; gdouble width_percentage = GLONG_TO_DOUBLE (config_getint("width_percentage")) * 100; SPIN_BUTTON_SET_RANGE("spin_height_percentage", 0, 100); SPIN_BUTTON_SET_VALUE ("spin_height_percentage", height_percentage); SPIN_BUTTON_SET_RANGE("spin_height_pixels", 0, monitor_height); SPIN_BUTTON_SET_VALUE("spin_height_pixels", height); /* Update range and value of width spinners */ SPIN_BUTTON_SET_RANGE("spin_width_percentage", 0, 100); SPIN_BUTTON_SET_VALUE ("spin_width_percentage", width_percentage); SPIN_BUTTON_SET_RANGE("spin_width_pixels", 0, monitor_width); SPIN_BUTTON_SET_VALUE("spin_width_pixels", width); CHECK_BUTTON("check_centered_horizontally", "centered_horizontally"); CHECK_BUTTON("check_centered_vertically", "centered_vertically"); CHECK_BUTTON("check_start_fullscreen", "start_fullscreen"); gint xpos = config_getint("x_pos"); if(xpos < rectangle.x) { xpos = rectangle.x; config_setint("x_pos", xpos); } gint screen_width, screen_height; screen_size_get_dimensions (&screen_width, &screen_height); SPIN_BUTTON_SET_RANGE("spin_x_position", 0, screen_width); SPIN_BUTTON_SET_VALUE("spin_x_position", xpos); /* TODO: Consider x in rectange.x for monitor displacement */ gint ypos = config_getint("y_pos"); if(ypos < rectangle.y) { ypos = rectangle.y; config_setint("y_pos", ypos); } SPIN_BUTTON_SET_RANGE("spin_y_position", 0, screen_height); SPIN_BUTTON_SET_VALUE("spin_y_position", ypos); SET_SENSITIVE_BY_CONFIG_NBOOL("spin_x_position", "centered_horizontally"); SET_SENSITIVE_BY_CONFIG_NBOOL("label_x_position", "centered_horizontally"); SET_SENSITIVE_BY_CONFIG_NBOOL("spin_y_position", "centered_vertically"); SET_SENSITIVE_BY_CONFIG_NBOOL("label_y_position", "centered_vertically"); } /* Read all state from the config system, and put it into * its visual representation in the wizard. */ static void set_wizard_state_from_config (tilda_window *tw) { GdkRGBA text_color, back_color, cursor_color; guint i; GdkRGBA *current_palette; /* General Tab */ CHECK_BUTTON ("check_display_on_all_workspaces", "pinned"); initialize_set_as_desktop_checkbox (); CHECK_BUTTON ("check_always_on_top", "above"); CHECK_BUTTON ("check_do_not_show_in_taskbar", "notaskbar"); CHECK_BUTTON ("check_start_tilda_hidden", "hidden"); CHECK_BUTTON ("check_show_notebook_border", "notebook_border"); COMBO_BOX ("combo_non_focus_pull_up_behaviour", "non_focus_pull_up_behaviour"); CHECK_BUTTON ("check_terminal_bell", "bell"); CHECK_BUTTON ("check_cursor_blinks", "blinks"); COMBO_BOX ("vte_cursor_shape", "cursor_shape"); FONT_BUTTON ("button_font", "font"); SPIN_BUTTON_SET_RANGE ("spin_auto_hide_time", 0, 99999); SPIN_BUTTON_SET_VALUE ("spin_auto_hide_time", config_getint ("auto_hide_time")); CHECK_BUTTON ("check_auto_hide_on_focus_lost", "auto_hide_on_focus_lost"); CHECK_BUTTON ("check_auto_hide_on_mouse_leave", "auto_hide_on_mouse_leave"); /* Title and Command Tab */ TEXT_ENTRY ("entry_title", "title"); COMBO_BOX ("combo_dynamically_set_title", "d_set_title"); // Whether to limit the length of the title COMBO_BOX ("combo_title_behaviour", "title_behaviour"); // The maximum length of the title SPIN_BUTTON_SET_RANGE ("spin_title_max_length", 0, 99999); SPIN_BUTTON_SET_VALUE ("spin_title_max_length", config_getint ("title_max_length")); CHECK_BUTTON ("check_run_custom_command", "run_command"); TEXT_ENTRY ("entry_custom_command", "command"); CHECK_BUTTON ("check_command_login_shell", "command_login_shell"); COMBO_BOX ("combo_command_exit", "command_exit"); COMBO_BOX ("combo_on_last_terminal_exit", "on_last_terminal_exit"); CHECK_BUTTON ("check_prompt_on_exit", "prompt_on_exit"); SET_SENSITIVE_BY_CONFIG_BOOL ("entry_custom_command","run_command"); SET_SENSITIVE_BY_CONFIG_BOOL ("label_custom_command", "run_command"); TEXT_ENTRY ("entry_web_browser", "web_browser"); CHECK_BUTTON ("check_confirm_close_tab", "confirm_close_tab"); /* Appearance Tab */ /* Initialize the monitor chooser combo box with the numbers of the monitor */ initialize_combo_choose_monitor(tw); initialize_geometry_spinners(tw); CHECK_BUTTON ("check_enable_transparency", "enable_transparency"); CHECK_BUTTON ("check_animated_pulldown", "animation"); SPIN_BUTTON ("spin_animation_delay", "slide_sleep_usec"); COMBO_BOX ("combo_animation_orientation", "animation_orientation"); COMBO_BOX ("combo_tab_pos", "tab_pos"); CHECK_BUTTON ("check_expand_tabs", "expand_tabs"); CHECK_BUTTON ("check_show_single_tab", "show_single_tab"); CHECK_BUTTON ("check_show_title_tooltip", "show_title_tooltip"); SET_SENSITIVE_BY_CONFIG_BOOL ("label_level_of_transparency","enable_transparency"); SET_SENSITIVE_BY_CONFIG_BOOL ("spin_level_of_transparency","enable_transparency"); SET_SENSITIVE_BY_CONFIG_BOOL ("label_animation_delay","animation"); SET_SENSITIVE_BY_CONFIG_BOOL ("spin_animation_delay","animation"); SET_SENSITIVE_BY_CONFIG_BOOL ("label_animation_orientation","animation"); SET_SENSITIVE_BY_CONFIG_BOOL ("combo_animation_orientation","animation"); /* Colors Tab */ COMBO_BOX ("combo_colorschemes", "scheme"); text_color.red = GUINT16_TO_FLOAT(config_getint ("text_red")); text_color.green = GUINT16_TO_FLOAT(config_getint ("text_green")); text_color.blue = GUINT16_TO_FLOAT(config_getint ("text_blue")); text_color.alpha = 1.0; COLOR_CHOOSER ("colorbutton_text", &text_color); back_color.red = GUINT16_TO_FLOAT(config_getint ("back_red")); back_color.green = GUINT16_TO_FLOAT(config_getint ("back_green")); back_color.blue = GUINT16_TO_FLOAT(config_getint ("back_blue")); back_color.alpha = 1.0; COLOR_CHOOSER ("colorbutton_back", &back_color); cursor_color.red = GUINT16_TO_FLOAT(config_getint ("cursor_red")); cursor_color.green = GUINT16_TO_FLOAT(config_getint ("cursor_green")); cursor_color.blue = GUINT16_TO_FLOAT(config_getint ("cursor_blue")); cursor_color.alpha = 1.0; COLOR_CHOOSER ("colorbutton_cursor", &cursor_color); COMBO_BOX ("combo_palette_scheme", "palette_scheme"); current_palette = tilda_palettes_get_current_palette (); for(i = 0;i < TILDA_COLOR_PALETTE_SIZE; i++) { current_palette[i].red = GUINT16_TO_FLOAT (config_getnint ("palette", i*3)); current_palette[i].green = GUINT16_TO_FLOAT (config_getnint ("palette", i*3+1)); current_palette[i].blue = GUINT16_TO_FLOAT (config_getnint ("palette", i*3+2)); current_palette[i].alpha = 1.0; update_palette_color_button(i); } /* Scrolling Tab */ initialize_scrollback_settings(); /* Compatibility Tab */ COMBO_BOX ("combo_backspace_binding", "backspace_key"); COMBO_BOX ("combo_delete_binding", "delete_key"); TEXT_ENTRY ("entry_word_chars", "word_chars"); gtk_spin_button_set_value(GTK_SPIN_BUTTON(gtk_builder_get_object(xml, ("spin_level_of_transparency"))), (100 - 100*GUINT16_TO_FLOAT(config_getint("back_alpha")))); } static void initialize_scrollback_settings(void) { COMBO_BOX ("combo_scrollbar_position", "scrollbar_pos"); SPIN_BUTTON ("spin_scrollback_amount", "lines"); /* For historical reasons the config value is named "scrollback_history_infinite", but we have changed the * UI semantics such that the checkbox is activated to limit the scrollback and deactivated to use an infinite * buffer. Therefore we need to negate the value from the config here. */ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (gtk_builder_get_object (xml, "check_infinite_scrollback")), !config_getbool ("scroll_history_infinite")); gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (xml, ("label_scrollback_lines"))), !config_getbool ("scroll_history_infinite")); gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (xml, ("spin_scrollback_amount"))), !config_getbool ("scroll_history_infinite")); CHECK_BUTTON ("check_scroll_on_output", "scroll_on_output"); CHECK_BUTTON ("check_scroll_on_keystroke", "scroll_on_key"); } static void initialize_set_as_desktop_checkbox (void) { CHECK_BUTTON ("check_set_as_desktop", "set_as_desktop"); GtkWidget *check_set_as_desktop = GTK_WIDGET(gtk_builder_get_object (xml, "check_set_as_desktop")); GtkWidget *check_display_on_all_workspaces = GTK_WIDGET(gtk_builder_get_object (xml, "check_display_on_all_workspaces")); gboolean status = config_getbool("set_as_desktop"); gboolean status_display_on_all_workspaces = config_getbool ("pinned"); if (status) { gtk_widget_set_sensitive (check_display_on_all_workspaces, FALSE); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_display_on_all_workspaces), TRUE); } else { gtk_widget_set_sensitive (check_display_on_all_workspaces, TRUE); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_display_on_all_workspaces), status_display_on_all_workspaces); } gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_set_as_desktop), status); } #define CONNECT_SIGNAL(GLADE_WIDGET,SIGNAL_NAME,SIGNAL_HANDLER,DATA) g_signal_connect ( \ gtk_builder_get_object (xml, (GLADE_WIDGET)), (SIGNAL_NAME), G_CALLBACK((SIGNAL_HANDLER)), DATA) /* Connect all signals in the wizard. This should be done after setting all * values, that way all of the signal handlers don't get called */ static void connect_wizard_signals (TildaWizard *wizard) { gint i; tilda_window *tw = wizard->tw; /* General Tab */ CONNECT_SIGNAL ("check_display_on_all_workspaces","toggled",check_display_on_all_workspaces_toggled_cb, tw); CONNECT_SIGNAL ("check_set_as_desktop","toggled",check_set_as_desktop_toggled_cb, tw); CONNECT_SIGNAL ("check_do_not_show_in_taskbar","toggled",check_do_not_show_in_taskbar_toggled_cb, tw); CONNECT_SIGNAL ("check_show_notebook_border","toggled",check_show_notebook_border_toggled_cb, tw); CONNECT_SIGNAL ("check_always_on_top","toggled",check_always_on_top_toggled_cb, tw); CONNECT_SIGNAL ("check_start_tilda_hidden","toggled",check_start_tilda_hidden_toggled_cb, tw); CONNECT_SIGNAL ("combo_non_focus_pull_up_behaviour","changed",combo_non_focus_pull_up_behaviour_cb, tw); CONNECT_SIGNAL ("check_terminal_bell","toggled",check_terminal_bell_toggled_cb, tw); CONNECT_SIGNAL ("check_cursor_blinks","toggled",check_cursor_blinks_toggled_cb, tw); CONNECT_SIGNAL ("vte_cursor_shape","changed", combo_cursor_shape_changed_cb, tw); CONNECT_SIGNAL ("check_start_fullscreen", "toggled", check_start_fullscreen_cb, tw); CONNECT_SIGNAL ("button_font","font-set",button_font_font_set_cb, tw); CONNECT_SIGNAL ("spin_auto_hide_time","value-changed",spin_auto_hide_time_value_changed_cb, tw); CONNECT_SIGNAL ("check_auto_hide_on_focus_lost","toggled",check_auto_hide_on_focus_lost_toggled_cb, tw); CONNECT_SIGNAL ("check_auto_hide_on_mouse_leave","toggled",check_auto_hide_on_mouse_leave_toggled_cb, tw); CONNECT_SIGNAL ("combo_on_last_terminal_exit","changed",combo_on_last_terminal_exit_changed_cb, tw); CONNECT_SIGNAL ("check_prompt_on_exit","toggled",check_prompt_on_exit_toggled_cb, tw); /* Title and Command Tab */ CONNECT_SIGNAL ("entry_title","changed",entry_title_changed_cb, tw); CONNECT_SIGNAL ("combo_dynamically_set_title","changed",combo_dynamically_set_title_changed_cb, tw); CONNECT_SIGNAL ("combo_title_behaviour","changed",combo_title_behaviour_changed_cb, tw); CONNECT_SIGNAL ("spin_title_max_length","value-changed", spin_max_title_length_changed_cb, tw); CONNECT_SIGNAL ("check_run_custom_command","toggled",check_run_custom_command_toggled_cb, tw); CONNECT_SIGNAL ("entry_custom_command","focus-out-event", validate_executable_command_cb, tw); CONNECT_SIGNAL ("combo_command_exit","changed",combo_command_exit_changed_cb, tw); CONNECT_SIGNAL ("check_command_login_shell", "toggled", check_command_login_shell_cb, tw); CONNECT_SIGNAL ("entry_web_browser","changed",entry_web_browser_changed, tw); CONNECT_SIGNAL ("entry_web_browser","focus-out-event", validate_executable_command_cb, tw); CONNECT_SIGNAL ("check_confirm_close_tab", "toggled", check_confirm_close_tab_cb, tw); /* Appearance Tab */ CONNECT_SIGNAL ("combo_choose_monitor", "changed", combo_monitor_selection_changed_cb, tw); CONNECT_SIGNAL ("spin_height_percentage","value-changed",spin_height_percentage_value_changed_cb, tw); CONNECT_SIGNAL ("spin_height_pixels","value-changed",spin_height_pixels_value_changed_cb, tw); CONNECT_SIGNAL ("spin_width_percentage","value-changed",spin_width_percentage_value_changed_cb, tw); CONNECT_SIGNAL ("spin_width_pixels","value-changed",spin_width_pixels_value_changed_cb, tw); CONNECT_SIGNAL ("check_centered_horizontally","toggled",check_centered_horizontally_toggled_cb, tw); CONNECT_SIGNAL ("check_centered_vertically","toggled",check_centered_vertically_toggled_cb, tw); CONNECT_SIGNAL ("spin_x_position","value-changed",spin_x_position_value_changed_cb, tw); CONNECT_SIGNAL ("spin_y_position","value-changed",spin_y_position_value_changed_cb, tw); CONNECT_SIGNAL ("combo_tab_pos","changed",combo_tab_pos_changed_cb, tw); CONNECT_SIGNAL ("check_expand_tabs","toggled",check_expand_tabs_toggled_cb, tw); CONNECT_SIGNAL ("check_show_single_tab","toggled",check_show_single_tab_toggled_cb, tw); CONNECT_SIGNAL ("check_show_title_tooltip","toggled",check_show_title_tooltip_toggled_cb, tw); CONNECT_SIGNAL ("check_enable_transparency","toggled",check_enable_transparency_toggled_cb, tw); CONNECT_SIGNAL ("check_animated_pulldown","toggled",check_animated_pulldown_toggled_cb, tw); CONNECT_SIGNAL ("spin_level_of_transparency","value-changed",spin_level_of_transparency_value_changed_cb, tw); CONNECT_SIGNAL ("spin_animation_delay","value-changed",spin_animation_delay_value_changed_cb, tw); CONNECT_SIGNAL ("combo_animation_orientation","changed",combo_animation_orientation_changed_cb, tw); /* Colors Tab */ CONNECT_SIGNAL ("combo_colorschemes","changed",combo_colorschemes_changed_cb, tw); CONNECT_SIGNAL ("colorbutton_text","color-set",colorbutton_text_color_set_cb, tw); CONNECT_SIGNAL ("colorbutton_back","color-set",colorbutton_back_color_set_cb, tw); CONNECT_SIGNAL ("colorbutton_cursor","color-set",colorbutton_cursor_color_set_cb, tw); CONNECT_SIGNAL ("combo_palette_scheme","changed",combo_palette_scheme_changed_cb, tw); for(i = 0; i < TILDA_COLOR_PALETTE_SIZE; i++) { char *s = g_strdup_printf ("colorbutton_palette_%d", i); CONNECT_SIGNAL (s,"color-set",colorbutton_palette_n_set_cb, tw); g_free (s); } /* Scrolling Tab */ CONNECT_SIGNAL ("combo_scrollbar_position","changed",combo_scrollbar_position_changed_cb, tw); CONNECT_SIGNAL ("spin_scrollback_amount","value-changed",spin_scrollback_amount_value_changed_cb, tw); CONNECT_SIGNAL ("check_infinite_scrollback", "toggled", check_infinite_scrollback_toggled_cb, tw); CONNECT_SIGNAL ("check_scroll_on_output","toggled",check_scroll_on_output_toggled_cb, tw); CONNECT_SIGNAL ("check_scroll_on_keystroke","toggled",check_scroll_on_keystroke_toggled_cb, tw); /* Compatibility Tab */ CONNECT_SIGNAL ("combo_backspace_binding","changed",combo_backspace_binding_changed_cb, tw); CONNECT_SIGNAL ("combo_delete_binding","changed",combo_delete_binding_changed_cb, tw); CONNECT_SIGNAL ("button_reset_compatibility_options","clicked",button_reset_compatibility_options_clicked_cb, tw); /* Close Button */ CONNECT_SIGNAL ("button_wizard_close","clicked", wizard_button_close_clicked_cb, wizard); CONNECT_SIGNAL ("wizard_window","delete_event", wizard_window_delete_event_cb, wizard); CONNECT_SIGNAL ("entry_word_chars", "changed", entry_word_chars_changed, tw); } /* Initialize the palette scheme menu. * Add the predefined schemes to the combo box.*/ static void init_palette_scheme_menu (void) { gint i; TildaColorScheme *paletteSchemes; GtkWidget *combo_palette; combo_palette = GTK_WIDGET (gtk_builder_get_object (xml, "combo_palette_scheme")); i = tilda_palettes_get_n_palette_schemes (); paletteSchemes = tilda_palettes_get_palette_schemes (); while (i > 0) { --i; const char *palette_name = paletteSchemes[i].name; gtk_combo_box_text_prepend_text (GTK_COMBO_BOX_TEXT (combo_palette), _(palette_name)); } } static void update_palette_color_button(gint idx) { GdkRGBA * current_palette; char *s = g_strdup_printf ("colorbutton_palette_%d", idx); GtkWidget *color_button = GTK_WIDGET (gtk_builder_get_object (xml, s)); g_free (s); current_palette = tilda_palettes_get_current_palette (); const GdkRGBA *color = tilda_palettes_get_palette_color (current_palette, idx); gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (color_button), color); } tilda-1.5.0/Makefile.in0000644000175000017500000022635313617635024011622 00000000000000# Makefile.in generated by automake 1.15.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2017 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # vim: set noexpandtab ts=8 sts=8 sw=8: # vim: set noexpandtab ts=8 sts=8 sw=8: VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = src/tilda$(EXEEXT) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = tilda-config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(Appdatadir)" \ "$(DESTDIR)$(Applicationsdir)" "$(DESTDIR)$(Pixmapsdir)" PROGRAMS = $(bin_PROGRAMS) am__dirstamp = $(am__leading_dot)dirstamp am__objects_1 = am__objects_2 = src/src_tilda-glade-resources.$(OBJEXT) \ src/src_tilda-tilda-enum-types.$(OBJEXT) $(am__objects_1) am_src_tilda_OBJECTS = $(am__objects_2) \ src/src_tilda-configsys.$(OBJEXT) \ src/src_tilda-eggaccelerators.$(OBJEXT) \ src/src_tilda-key_grabber.$(OBJEXT) \ src/src_tilda-screen-size.$(OBJEXT) \ src/src_tilda-tilda.$(OBJEXT) \ src/src_tilda-tilda-keybinding.$(OBJEXT) \ src/src_tilda-tilda-cli-options.$(OBJEXT) \ src/src_tilda-tilda-palettes.$(OBJEXT) \ src/src_tilda-tilda-search-box.$(OBJEXT) \ src/src_tilda-tilda_terminal.$(OBJEXT) \ src/src_tilda-tilda_window.$(OBJEXT) \ src/src_tilda-tomboykeybinder.$(OBJEXT) \ src/src_tilda-wizard.$(OBJEXT) src/src_tilda-xerror.$(OBJEXT) \ $(am__objects_1) src_tilda_OBJECTS = $(am_src_tilda_OBJECTS) am__DEPENDENCIES_1 = src_tilda_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) src_tilda_LINK = $(CCLD) $(src_tilda_CFLAGS) $(CFLAGS) \ $(src_tilda_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(src_tilda_SOURCES) DIST_SOURCES = $(src_tilda_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } DATA = $(Appdata_DATA) $(Applications_DATA) $(Pixmaps_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)tilda-config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/src/Makefile.am \ $(srcdir)/tilda-config.h.in $(top_srcdir)/build-aux/compile \ $(top_srcdir)/build-aux/config.guess \ $(top_srcdir)/build-aux/config.rpath \ $(top_srcdir)/build-aux/config.sub \ $(top_srcdir)/build-aux/depcomp \ $(top_srcdir)/build-aux/install-sh \ $(top_srcdir)/build-aux/missing ABOUT-NLS AUTHORS COPYING \ ChangeLog NEWS build-aux/compile build-aux/config.guess \ build-aux/config.rpath build-aux/config.sub build-aux/depcomp \ build-aux/install-sh build-aux/missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LDFLAGS = @LDFLAGS@ LIBCONFUSE_CFLAGS = @LIBCONFUSE_CFLAGS@ LIBCONFUSE_LIBS = @LIBCONFUSE_LIBS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ POW_LIB = @POW_LIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ VTE_CFLAGS = @VTE_CFLAGS@ VTE_LIBS = @VTE_LIBS@ X11_CFLAGS = @X11_CFLAGS@ X11_LIBS = @X11_LIBS@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = po CLEANFILES = tilda.desktop src/glade-resources.h src/glade-resources.c \ src/tilda-enum-types.h src/tilda-enum-types.c $(NULL) MAINTAINERCLEANFILES = \ ABOUT-NLS \ Makefile.in \ aclocal.m4 \ stamp-h1 \ missing \ install-sh \ decomp \ compile \ INSTALL \ m4/*.m4 \ tilda-config.h \ config.guess \ config.rpath \ config.sub \ configure \ depcomp \ m4/Makefile.in \ po/Makefile.in.in \ po/Makevars.template \ po/Rules-quot \ po/boldquot.sed \ po/en@boldquot.header \ po/en@quot.header \ po/insert-header.sin \ po/quot.sed \ po/remove-potcdate.sin \ po/tilda.pot \ tilda-config.h.in \ tilda-config.h.in~ Applicationsdir = ${datadir}/applications Applications_DATA = tilda.desktop Appdatadir = ${datadir}/metainfo Appdata_DATA = tilda.appdata.xml Pixmapsdir = ${datadir}/pixmaps Pixmaps_DATA = tilda.png EXTRA_DIST = tilda.desktop.in tilda.png tilda.appdata.xml README.md \ src/glade-resources.gresource.xml src/tilda-search-box.ui \ src/menu.ui src/tilda.ui src/tilda-enum-types.h.template \ src/tilda-enum-types.c.template $(NULL) ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} NULL = ENUM_TYPES = \ $(srcdir)/src/tilda-search-box.h \ $(NULL) src_tilda_CPPFLAGS = \ $(AM_CPPFLAGS) \ -I$(top_builddir)/src \ -DG_LOG_DOMAIN='"tilda"' \ -DG_LOG_USE_STRUCTURED \ -DDATADIR='"$(datadir)"' \ -DLOCALEDIR='"$(localedir)"' \ -DPKGDATADIR='"$(pkgdatadir)"' \ $(NULL) BUILT_SOURCES = \ src/glade-resources.h src/glade-resources.c \ src/tilda-enum-types.c src/tilda-enum-types.h \ $(NULL) # Keep the headers here so that make dist-bzip2 works src_tilda_SOURCES = \ $(BUILT_SOURCES) \ src/configsys.h src/configsys.c \ src/debug.h \ src/eggaccelerators.h src/eggaccelerators.c \ src/key_grabber.h src/key_grabber.c \ src/screen-size.h src/screen-size.c \ src/tilda.h src/tilda.c \ src/tilda-keybinding.c src/tilda-keybinding.h \ src/tilda-cli-options.c src/tilda-cli-options.h \ src/tilda-palettes.h src/tilda-palettes.c \ src/tilda-search-box.c src/tilda-search-box.h \ src/tilda_terminal.h src/tilda_terminal.c \ src/tilda_window.h src/tilda_window.c \ src/tomboykeybinder.h src/tomboykeybinder.c \ src/wizard.h src/wizard.c \ src/xerror.h src/xerror.c \ src/vte-util.h \ $(NULL) src_tilda_CFLAGS = \ $(AM_CFLAGS) \ $(GTK_CFLAGS) \ $(LIBGLADE_CFLAGS) \ $(VTE_CFLAGS) \ $(LIBCONFUSE_CFLAGS) \ $(X11_CFLAGS) \ $(NULL) src_tilda_LDFLAGS = \ $(AM_LDFLAGS) \ $(GTK_LDFLAGS) \ $(LIBGLADE_LDFLAGS) \ $(VTE_LDFLAGS) \ $(LIBCONFUSE_LDFLAGS) \ $(X11_LDFLAGS) \ -Wl,--as-needed \ $(NULL) src_tilda_LDADD = \ $(AM_LDADD) \ $(GTK_LIBS) \ $(LIBGLADE_LIBS) \ $(VTE_LIBS) \ $(LIBCONFUSE_LIBS) \ $(X11_LIBS) \ $(LTLIBINTL) \ $(LEXLIB) \ -lm \ $(NULL) all: $(BUILT_SOURCES) tilda-config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .o .obj am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/src/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(srcdir)/src/Makefile.am $(am__empty): $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): tilda-config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/tilda-config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status tilda-config.h $(srcdir)/tilda-config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f tilda-config.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) src/$(am__dirstamp): @$(MKDIR_P) src @: > src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/$(DEPDIR) @: > src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-glade-resources.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda-enum-types.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-configsys.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-eggaccelerators.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-key_grabber.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-screen-size.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda-keybinding.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda-cli-options.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda-palettes.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda-search-box.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda_terminal.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tilda_window.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-tomboykeybinder.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-wizard.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/src_tilda-xerror.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/tilda$(EXEEXT): $(src_tilda_OBJECTS) $(src_tilda_DEPENDENCIES) $(EXTRA_src_tilda_DEPENDENCIES) src/$(am__dirstamp) @rm -f src/tilda$(EXEEXT) $(AM_V_CCLD)$(src_tilda_LINK) $(src_tilda_OBJECTS) $(src_tilda_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f src/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-configsys.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-eggaccelerators.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-glade-resources.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-key_grabber.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-screen-size.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda-cli-options.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda-enum-types.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda-keybinding.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda-palettes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda-search-box.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda_terminal.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tilda_window.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-tomboykeybinder.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-wizard.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/src_tilda-xerror.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` src/src_tilda-glade-resources.o: src/glade-resources.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-glade-resources.o -MD -MP -MF src/$(DEPDIR)/src_tilda-glade-resources.Tpo -c -o src/src_tilda-glade-resources.o `test -f 'src/glade-resources.c' || echo '$(srcdir)/'`src/glade-resources.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-glade-resources.Tpo src/$(DEPDIR)/src_tilda-glade-resources.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/glade-resources.c' object='src/src_tilda-glade-resources.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-glade-resources.o `test -f 'src/glade-resources.c' || echo '$(srcdir)/'`src/glade-resources.c src/src_tilda-glade-resources.obj: src/glade-resources.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-glade-resources.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-glade-resources.Tpo -c -o src/src_tilda-glade-resources.obj `if test -f 'src/glade-resources.c'; then $(CYGPATH_W) 'src/glade-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/glade-resources.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-glade-resources.Tpo src/$(DEPDIR)/src_tilda-glade-resources.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/glade-resources.c' object='src/src_tilda-glade-resources.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-glade-resources.obj `if test -f 'src/glade-resources.c'; then $(CYGPATH_W) 'src/glade-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/glade-resources.c'; fi` src/src_tilda-tilda-enum-types.o: src/tilda-enum-types.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-enum-types.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-enum-types.Tpo -c -o src/src_tilda-tilda-enum-types.o `test -f 'src/tilda-enum-types.c' || echo '$(srcdir)/'`src/tilda-enum-types.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-enum-types.Tpo src/$(DEPDIR)/src_tilda-tilda-enum-types.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-enum-types.c' object='src/src_tilda-tilda-enum-types.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-enum-types.o `test -f 'src/tilda-enum-types.c' || echo '$(srcdir)/'`src/tilda-enum-types.c src/src_tilda-tilda-enum-types.obj: src/tilda-enum-types.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-enum-types.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-enum-types.Tpo -c -o src/src_tilda-tilda-enum-types.obj `if test -f 'src/tilda-enum-types.c'; then $(CYGPATH_W) 'src/tilda-enum-types.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-enum-types.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-enum-types.Tpo src/$(DEPDIR)/src_tilda-tilda-enum-types.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-enum-types.c' object='src/src_tilda-tilda-enum-types.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-enum-types.obj `if test -f 'src/tilda-enum-types.c'; then $(CYGPATH_W) 'src/tilda-enum-types.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-enum-types.c'; fi` src/src_tilda-configsys.o: src/configsys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-configsys.o -MD -MP -MF src/$(DEPDIR)/src_tilda-configsys.Tpo -c -o src/src_tilda-configsys.o `test -f 'src/configsys.c' || echo '$(srcdir)/'`src/configsys.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-configsys.Tpo src/$(DEPDIR)/src_tilda-configsys.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/configsys.c' object='src/src_tilda-configsys.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-configsys.o `test -f 'src/configsys.c' || echo '$(srcdir)/'`src/configsys.c src/src_tilda-configsys.obj: src/configsys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-configsys.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-configsys.Tpo -c -o src/src_tilda-configsys.obj `if test -f 'src/configsys.c'; then $(CYGPATH_W) 'src/configsys.c'; else $(CYGPATH_W) '$(srcdir)/src/configsys.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-configsys.Tpo src/$(DEPDIR)/src_tilda-configsys.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/configsys.c' object='src/src_tilda-configsys.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-configsys.obj `if test -f 'src/configsys.c'; then $(CYGPATH_W) 'src/configsys.c'; else $(CYGPATH_W) '$(srcdir)/src/configsys.c'; fi` src/src_tilda-eggaccelerators.o: src/eggaccelerators.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-eggaccelerators.o -MD -MP -MF src/$(DEPDIR)/src_tilda-eggaccelerators.Tpo -c -o src/src_tilda-eggaccelerators.o `test -f 'src/eggaccelerators.c' || echo '$(srcdir)/'`src/eggaccelerators.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-eggaccelerators.Tpo src/$(DEPDIR)/src_tilda-eggaccelerators.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/eggaccelerators.c' object='src/src_tilda-eggaccelerators.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-eggaccelerators.o `test -f 'src/eggaccelerators.c' || echo '$(srcdir)/'`src/eggaccelerators.c src/src_tilda-eggaccelerators.obj: src/eggaccelerators.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-eggaccelerators.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-eggaccelerators.Tpo -c -o src/src_tilda-eggaccelerators.obj `if test -f 'src/eggaccelerators.c'; then $(CYGPATH_W) 'src/eggaccelerators.c'; else $(CYGPATH_W) '$(srcdir)/src/eggaccelerators.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-eggaccelerators.Tpo src/$(DEPDIR)/src_tilda-eggaccelerators.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/eggaccelerators.c' object='src/src_tilda-eggaccelerators.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-eggaccelerators.obj `if test -f 'src/eggaccelerators.c'; then $(CYGPATH_W) 'src/eggaccelerators.c'; else $(CYGPATH_W) '$(srcdir)/src/eggaccelerators.c'; fi` src/src_tilda-key_grabber.o: src/key_grabber.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-key_grabber.o -MD -MP -MF src/$(DEPDIR)/src_tilda-key_grabber.Tpo -c -o src/src_tilda-key_grabber.o `test -f 'src/key_grabber.c' || echo '$(srcdir)/'`src/key_grabber.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-key_grabber.Tpo src/$(DEPDIR)/src_tilda-key_grabber.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/key_grabber.c' object='src/src_tilda-key_grabber.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-key_grabber.o `test -f 'src/key_grabber.c' || echo '$(srcdir)/'`src/key_grabber.c src/src_tilda-key_grabber.obj: src/key_grabber.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-key_grabber.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-key_grabber.Tpo -c -o src/src_tilda-key_grabber.obj `if test -f 'src/key_grabber.c'; then $(CYGPATH_W) 'src/key_grabber.c'; else $(CYGPATH_W) '$(srcdir)/src/key_grabber.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-key_grabber.Tpo src/$(DEPDIR)/src_tilda-key_grabber.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/key_grabber.c' object='src/src_tilda-key_grabber.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-key_grabber.obj `if test -f 'src/key_grabber.c'; then $(CYGPATH_W) 'src/key_grabber.c'; else $(CYGPATH_W) '$(srcdir)/src/key_grabber.c'; fi` src/src_tilda-screen-size.o: src/screen-size.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-screen-size.o -MD -MP -MF src/$(DEPDIR)/src_tilda-screen-size.Tpo -c -o src/src_tilda-screen-size.o `test -f 'src/screen-size.c' || echo '$(srcdir)/'`src/screen-size.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-screen-size.Tpo src/$(DEPDIR)/src_tilda-screen-size.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/screen-size.c' object='src/src_tilda-screen-size.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-screen-size.o `test -f 'src/screen-size.c' || echo '$(srcdir)/'`src/screen-size.c src/src_tilda-screen-size.obj: src/screen-size.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-screen-size.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-screen-size.Tpo -c -o src/src_tilda-screen-size.obj `if test -f 'src/screen-size.c'; then $(CYGPATH_W) 'src/screen-size.c'; else $(CYGPATH_W) '$(srcdir)/src/screen-size.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-screen-size.Tpo src/$(DEPDIR)/src_tilda-screen-size.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/screen-size.c' object='src/src_tilda-screen-size.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-screen-size.obj `if test -f 'src/screen-size.c'; then $(CYGPATH_W) 'src/screen-size.c'; else $(CYGPATH_W) '$(srcdir)/src/screen-size.c'; fi` src/src_tilda-tilda.o: src/tilda.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda.Tpo -c -o src/src_tilda-tilda.o `test -f 'src/tilda.c' || echo '$(srcdir)/'`src/tilda.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda.Tpo src/$(DEPDIR)/src_tilda-tilda.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda.c' object='src/src_tilda-tilda.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda.o `test -f 'src/tilda.c' || echo '$(srcdir)/'`src/tilda.c src/src_tilda-tilda.obj: src/tilda.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda.Tpo -c -o src/src_tilda-tilda.obj `if test -f 'src/tilda.c'; then $(CYGPATH_W) 'src/tilda.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda.Tpo src/$(DEPDIR)/src_tilda-tilda.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda.c' object='src/src_tilda-tilda.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda.obj `if test -f 'src/tilda.c'; then $(CYGPATH_W) 'src/tilda.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda.c'; fi` src/src_tilda-tilda-keybinding.o: src/tilda-keybinding.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-keybinding.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-keybinding.Tpo -c -o src/src_tilda-tilda-keybinding.o `test -f 'src/tilda-keybinding.c' || echo '$(srcdir)/'`src/tilda-keybinding.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-keybinding.Tpo src/$(DEPDIR)/src_tilda-tilda-keybinding.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-keybinding.c' object='src/src_tilda-tilda-keybinding.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-keybinding.o `test -f 'src/tilda-keybinding.c' || echo '$(srcdir)/'`src/tilda-keybinding.c src/src_tilda-tilda-keybinding.obj: src/tilda-keybinding.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-keybinding.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-keybinding.Tpo -c -o src/src_tilda-tilda-keybinding.obj `if test -f 'src/tilda-keybinding.c'; then $(CYGPATH_W) 'src/tilda-keybinding.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-keybinding.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-keybinding.Tpo src/$(DEPDIR)/src_tilda-tilda-keybinding.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-keybinding.c' object='src/src_tilda-tilda-keybinding.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-keybinding.obj `if test -f 'src/tilda-keybinding.c'; then $(CYGPATH_W) 'src/tilda-keybinding.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-keybinding.c'; fi` src/src_tilda-tilda-cli-options.o: src/tilda-cli-options.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-cli-options.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-cli-options.Tpo -c -o src/src_tilda-tilda-cli-options.o `test -f 'src/tilda-cli-options.c' || echo '$(srcdir)/'`src/tilda-cli-options.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-cli-options.Tpo src/$(DEPDIR)/src_tilda-tilda-cli-options.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-cli-options.c' object='src/src_tilda-tilda-cli-options.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-cli-options.o `test -f 'src/tilda-cli-options.c' || echo '$(srcdir)/'`src/tilda-cli-options.c src/src_tilda-tilda-cli-options.obj: src/tilda-cli-options.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-cli-options.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-cli-options.Tpo -c -o src/src_tilda-tilda-cli-options.obj `if test -f 'src/tilda-cli-options.c'; then $(CYGPATH_W) 'src/tilda-cli-options.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-cli-options.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-cli-options.Tpo src/$(DEPDIR)/src_tilda-tilda-cli-options.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-cli-options.c' object='src/src_tilda-tilda-cli-options.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-cli-options.obj `if test -f 'src/tilda-cli-options.c'; then $(CYGPATH_W) 'src/tilda-cli-options.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-cli-options.c'; fi` src/src_tilda-tilda-palettes.o: src/tilda-palettes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-palettes.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-palettes.Tpo -c -o src/src_tilda-tilda-palettes.o `test -f 'src/tilda-palettes.c' || echo '$(srcdir)/'`src/tilda-palettes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-palettes.Tpo src/$(DEPDIR)/src_tilda-tilda-palettes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-palettes.c' object='src/src_tilda-tilda-palettes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-palettes.o `test -f 'src/tilda-palettes.c' || echo '$(srcdir)/'`src/tilda-palettes.c src/src_tilda-tilda-palettes.obj: src/tilda-palettes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-palettes.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-palettes.Tpo -c -o src/src_tilda-tilda-palettes.obj `if test -f 'src/tilda-palettes.c'; then $(CYGPATH_W) 'src/tilda-palettes.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-palettes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-palettes.Tpo src/$(DEPDIR)/src_tilda-tilda-palettes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-palettes.c' object='src/src_tilda-tilda-palettes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-palettes.obj `if test -f 'src/tilda-palettes.c'; then $(CYGPATH_W) 'src/tilda-palettes.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-palettes.c'; fi` src/src_tilda-tilda-search-box.o: src/tilda-search-box.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-search-box.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-search-box.Tpo -c -o src/src_tilda-tilda-search-box.o `test -f 'src/tilda-search-box.c' || echo '$(srcdir)/'`src/tilda-search-box.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-search-box.Tpo src/$(DEPDIR)/src_tilda-tilda-search-box.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-search-box.c' object='src/src_tilda-tilda-search-box.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-search-box.o `test -f 'src/tilda-search-box.c' || echo '$(srcdir)/'`src/tilda-search-box.c src/src_tilda-tilda-search-box.obj: src/tilda-search-box.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda-search-box.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda-search-box.Tpo -c -o src/src_tilda-tilda-search-box.obj `if test -f 'src/tilda-search-box.c'; then $(CYGPATH_W) 'src/tilda-search-box.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-search-box.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda-search-box.Tpo src/$(DEPDIR)/src_tilda-tilda-search-box.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda-search-box.c' object='src/src_tilda-tilda-search-box.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda-search-box.obj `if test -f 'src/tilda-search-box.c'; then $(CYGPATH_W) 'src/tilda-search-box.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda-search-box.c'; fi` src/src_tilda-tilda_terminal.o: src/tilda_terminal.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda_terminal.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda_terminal.Tpo -c -o src/src_tilda-tilda_terminal.o `test -f 'src/tilda_terminal.c' || echo '$(srcdir)/'`src/tilda_terminal.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda_terminal.Tpo src/$(DEPDIR)/src_tilda-tilda_terminal.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda_terminal.c' object='src/src_tilda-tilda_terminal.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda_terminal.o `test -f 'src/tilda_terminal.c' || echo '$(srcdir)/'`src/tilda_terminal.c src/src_tilda-tilda_terminal.obj: src/tilda_terminal.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda_terminal.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda_terminal.Tpo -c -o src/src_tilda-tilda_terminal.obj `if test -f 'src/tilda_terminal.c'; then $(CYGPATH_W) 'src/tilda_terminal.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda_terminal.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda_terminal.Tpo src/$(DEPDIR)/src_tilda-tilda_terminal.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda_terminal.c' object='src/src_tilda-tilda_terminal.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda_terminal.obj `if test -f 'src/tilda_terminal.c'; then $(CYGPATH_W) 'src/tilda_terminal.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda_terminal.c'; fi` src/src_tilda-tilda_window.o: src/tilda_window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda_window.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda_window.Tpo -c -o src/src_tilda-tilda_window.o `test -f 'src/tilda_window.c' || echo '$(srcdir)/'`src/tilda_window.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda_window.Tpo src/$(DEPDIR)/src_tilda-tilda_window.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda_window.c' object='src/src_tilda-tilda_window.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda_window.o `test -f 'src/tilda_window.c' || echo '$(srcdir)/'`src/tilda_window.c src/src_tilda-tilda_window.obj: src/tilda_window.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tilda_window.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tilda_window.Tpo -c -o src/src_tilda-tilda_window.obj `if test -f 'src/tilda_window.c'; then $(CYGPATH_W) 'src/tilda_window.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda_window.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tilda_window.Tpo src/$(DEPDIR)/src_tilda-tilda_window.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tilda_window.c' object='src/src_tilda-tilda_window.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tilda_window.obj `if test -f 'src/tilda_window.c'; then $(CYGPATH_W) 'src/tilda_window.c'; else $(CYGPATH_W) '$(srcdir)/src/tilda_window.c'; fi` src/src_tilda-tomboykeybinder.o: src/tomboykeybinder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tomboykeybinder.o -MD -MP -MF src/$(DEPDIR)/src_tilda-tomboykeybinder.Tpo -c -o src/src_tilda-tomboykeybinder.o `test -f 'src/tomboykeybinder.c' || echo '$(srcdir)/'`src/tomboykeybinder.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tomboykeybinder.Tpo src/$(DEPDIR)/src_tilda-tomboykeybinder.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tomboykeybinder.c' object='src/src_tilda-tomboykeybinder.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tomboykeybinder.o `test -f 'src/tomboykeybinder.c' || echo '$(srcdir)/'`src/tomboykeybinder.c src/src_tilda-tomboykeybinder.obj: src/tomboykeybinder.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-tomboykeybinder.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-tomboykeybinder.Tpo -c -o src/src_tilda-tomboykeybinder.obj `if test -f 'src/tomboykeybinder.c'; then $(CYGPATH_W) 'src/tomboykeybinder.c'; else $(CYGPATH_W) '$(srcdir)/src/tomboykeybinder.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-tomboykeybinder.Tpo src/$(DEPDIR)/src_tilda-tomboykeybinder.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tomboykeybinder.c' object='src/src_tilda-tomboykeybinder.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-tomboykeybinder.obj `if test -f 'src/tomboykeybinder.c'; then $(CYGPATH_W) 'src/tomboykeybinder.c'; else $(CYGPATH_W) '$(srcdir)/src/tomboykeybinder.c'; fi` src/src_tilda-wizard.o: src/wizard.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-wizard.o -MD -MP -MF src/$(DEPDIR)/src_tilda-wizard.Tpo -c -o src/src_tilda-wizard.o `test -f 'src/wizard.c' || echo '$(srcdir)/'`src/wizard.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-wizard.Tpo src/$(DEPDIR)/src_tilda-wizard.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/wizard.c' object='src/src_tilda-wizard.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-wizard.o `test -f 'src/wizard.c' || echo '$(srcdir)/'`src/wizard.c src/src_tilda-wizard.obj: src/wizard.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-wizard.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-wizard.Tpo -c -o src/src_tilda-wizard.obj `if test -f 'src/wizard.c'; then $(CYGPATH_W) 'src/wizard.c'; else $(CYGPATH_W) '$(srcdir)/src/wizard.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-wizard.Tpo src/$(DEPDIR)/src_tilda-wizard.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/wizard.c' object='src/src_tilda-wizard.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-wizard.obj `if test -f 'src/wizard.c'; then $(CYGPATH_W) 'src/wizard.c'; else $(CYGPATH_W) '$(srcdir)/src/wizard.c'; fi` src/src_tilda-xerror.o: src/xerror.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-xerror.o -MD -MP -MF src/$(DEPDIR)/src_tilda-xerror.Tpo -c -o src/src_tilda-xerror.o `test -f 'src/xerror.c' || echo '$(srcdir)/'`src/xerror.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-xerror.Tpo src/$(DEPDIR)/src_tilda-xerror.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/xerror.c' object='src/src_tilda-xerror.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-xerror.o `test -f 'src/xerror.c' || echo '$(srcdir)/'`src/xerror.c src/src_tilda-xerror.obj: src/xerror.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -MT src/src_tilda-xerror.obj -MD -MP -MF src/$(DEPDIR)/src_tilda-xerror.Tpo -c -o src/src_tilda-xerror.obj `if test -f 'src/xerror.c'; then $(CYGPATH_W) 'src/xerror.c'; else $(CYGPATH_W) '$(srcdir)/src/xerror.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/src_tilda-xerror.Tpo src/$(DEPDIR)/src_tilda-xerror.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/xerror.c' object='src/src_tilda-xerror.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tilda_CPPFLAGS) $(CPPFLAGS) $(src_tilda_CFLAGS) $(CFLAGS) -c -o src/src_tilda-xerror.obj `if test -f 'src/xerror.c'; then $(CYGPATH_W) 'src/xerror.c'; else $(CYGPATH_W) '$(srcdir)/src/xerror.c'; fi` install-AppdataDATA: $(Appdata_DATA) @$(NORMAL_INSTALL) @list='$(Appdata_DATA)'; test -n "$(Appdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(Appdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(Appdatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(Appdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(Appdatadir)" || exit $$?; \ done uninstall-AppdataDATA: @$(NORMAL_UNINSTALL) @list='$(Appdata_DATA)'; test -n "$(Appdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(Appdatadir)'; $(am__uninstall_files_from_dir) install-ApplicationsDATA: $(Applications_DATA) @$(NORMAL_INSTALL) @list='$(Applications_DATA)'; test -n "$(Applicationsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(Applicationsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(Applicationsdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(Applicationsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(Applicationsdir)" || exit $$?; \ done uninstall-ApplicationsDATA: @$(NORMAL_UNINSTALL) @list='$(Applications_DATA)'; test -n "$(Applicationsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(Applicationsdir)'; $(am__uninstall_files_from_dir) install-PixmapsDATA: $(Pixmaps_DATA) @$(NORMAL_INSTALL) @list='$(Pixmaps_DATA)'; test -n "$(Pixmapsdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(Pixmapsdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(Pixmapsdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(Pixmapsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(Pixmapsdir)" || exit $$?; \ done uninstall-PixmapsDATA: @$(NORMAL_UNINSTALL) @list='$(Pixmaps_DATA)'; test -n "$(Pixmapsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(Pixmapsdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(PROGRAMS) $(DATA) tilda-config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(Appdatadir)" "$(DESTDIR)$(Applicationsdir)" "$(DESTDIR)$(Pixmapsdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f src/$(DEPDIR)/$(am__dirstamp) -rm -f src/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf src/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-AppdataDATA install-ApplicationsDATA \ install-PixmapsDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf src/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-AppdataDATA uninstall-ApplicationsDATA \ uninstall-PixmapsDATA uninstall-binPROGRAMS .MAKE: $(am__recursive_targets) all check install install-am \ install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-binPROGRAMS \ clean-cscope clean-generic cscope cscopelist-am ctags ctags-am \ dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \ dist-tarZ dist-xz dist-zip distcheck distclean \ distclean-compile distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-AppdataDATA \ install-ApplicationsDATA install-PixmapsDATA install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-AppdataDATA \ uninstall-ApplicationsDATA uninstall-PixmapsDATA uninstall-am \ uninstall-binPROGRAMS .PRECIOUS: Makefile tilda.desktop: tilda.desktop.in sed -e 's|\@BINDIR\@|$(bindir)|' \ -e 's|\@PIXMAPSDIR\@|$(Pixmapsdir)|' $< > $@ # Rules to compile resources src/glade-resources.h: src/glade-resources.gresource.xml $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --generate $< --target=$@ --sourcedir=$(srcdir)/src src/glade-resources.c: src/glade-resources.gresource.xml $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --generate $< --target=$@ --sourcedir=$(srcdir)/src # Dependencies rule, and do not forget to do a make after # editing the UI with glade! src/glade-resources.c src/glade-resources.h: \ src/glade-resources.gresource.xml \ $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies $(srcdir)/src/glade-resources.gresource.xml --sourcedir=$(srcdir)/src) src/tilda-enum-types.h: $(srcdir)/src/tilda-enum-types.h.template $(ENUM_TYPES) $(GLIB_MKENUMS) $(AM_V_GEN) ($(GLIB_MKENUMS) --template $(srcdir)/src/tilda-enum-types.h.template $(ENUM_TYPES)) > $@ src/tilda-enum-types.c: $(srcdir)/src/tilda-enum-types.c.template $(ENUM_TYPES) $(GLIB_MKENUMS) $(AM_V_GEN) ($(GLIB_MKENUMS) --template $(srcdir)/src/tilda-enum-types.c.template $(ENUM_TYPES)) > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tilda-1.5.0/NEWS0000664000175000001440000000000012552462014010217 00000000000000tilda-1.5.0/ABOUT-NLS0000644000175000017500000026713313047677711011013 000000000000001 Notes on the Free Translation Project *************************************** Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that free software will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work on translations can contact the appropriate team. 1.1 INSTALL Matters =================== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. Installers may use special options at configuration time for changing the default behaviour. The command: ./configure --disable-nls will _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl' library and will decide to use it. If not, you may have to to use the `--with-libintl-prefix' option to tell `configure' where to look for it. Internationalized packages usually have many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. 1.2 Using This Package ====================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. If you happen to have the `LC_ALL' or some other `LC_xxx' environment variables set, you should unset them before setting `LANG', otherwise the setting of `LANG' will not have the desired effect. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your language by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from `no' to `nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under `nb' and some older ones under `no', it's recommended for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and older translations are used. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. 1.3 Translating Teams ===================== For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://translationproject.org/', in the "Teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `coordinator@translationproject.org' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skills are praised more than programming skills, here. 1.4 Available Packages ====================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of June 2010. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am an ar as ast az be be@latin bg bn_IN bs ca +--------------------------------------------------+ a2ps | [] [] | aegis | | ant-phone | | anubis | | aspell | [] [] | bash | | bfd | | bibshelf | [] | binutils | | bison | | bison-runtime | [] | bluez-pin | [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] [] | cpio | | cppi | | cpplib | [] | cryptsetup | | dfarc | | dialog | [] [] | dico | | diffutils | [] | dink | | doodle | | e2fsprogs | [] | enscript | [] | exif | | fetchmail | [] | findutils | [] | flex | [] | freedink | | gas | | gawk | [] [] | gcal | [] | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] [] | gettext-tools | [] [] | gip | [] | gjay | | gliv | [] | glunarclock | [] [] | gnubiff | | gnucash | [] | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | | gold | | gpe-aerial | | gpe-beam | | gpe-bluetooth | | gpe-calendar | | gpe-clock | [] | gpe-conf | | gpe-contacts | | gpe-edit | | gpe-filemanager | | gpe-go | | gpe-login | | gpe-ownerinfo | [] | gpe-package | | gpe-sketchbook | | gpe-su | [] | gpe-taskmanager | [] | gpe-timesheet | [] | gpe-today | [] | gpe-todo | | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | [] [] | gsasl | | gss | | gst-plugins-bad | [] | gst-plugins-base | [] | gst-plugins-good | [] | gst-plugins-ugly | [] | gstreamer | [] [] [] | gtick | | gtkam | [] | gtkorphan | [] | gtkspell | [] [] [] | gutenprint | | hello | [] | help2man | | hylafax | | idutils | | indent | [] [] | iso_15924 | | iso_3166 | [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | | iso_639 | [] [] [] [] | iso_639_3 | | jwhois | | kbd | | keytouch | [] | keytouch-editor | | keytouch-keyboa... | [] | klavaro | [] | latrine | | ld | [] | leafpad | [] [] | libc | [] [] | libexif | () | libextractor | | libgnutls | | libgpewidget | | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | [] | libidn | | lifelines | | liferea | [] [] | lilypond | | linkdr | [] | lordsawar | | lprng | | lynx | [] | m4 | | mailfromd | | mailutils | | make | | man-db | | man-db-manpages | | minicom | | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | | psmisc | | pspp | [] | pwdutils | | radius | [] | recode | [] [] | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] [] | sed | [] [] | sharutils | [] [] | shishi | | skencil | | solfege | | solfege-manual | | soundtracker | | sp | | sysstat | | tar | [] | texinfo | | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] [] | wyslij-po | | xchat | [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] | +--------------------------------------------------+ af am an ar as ast az be be@latin bg bn_IN bs ca 6 0 1 2 3 19 1 10 3 28 3 1 38 crh cs da de el en en_GB en_ZA eo es et eu fa +-------------------------------------------------+ a2ps | [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] () | anubis | [] [] | aspell | [] [] [] [] [] | bash | [] [] [] | bfd | [] | bibshelf | [] [] [] | binutils | [] | bison | [] [] | bison-runtime | [] [] [] [] | bluez-pin | [] [] [] [] [] [] | bombono-dvd | [] | buzztard | [] [] [] | cflow | [] [] | clisp | [] [] [] [] | coreutils | [] [] [] [] | cpio | | cppi | | cpplib | [] [] [] | cryptsetup | [] | dfarc | [] [] [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] | dink | [] [] [] | doodle | [] | e2fsprogs | [] [] [] | enscript | [] [] [] | exif | () [] [] | fetchmail | [] [] () [] [] [] | findutils | [] [] [] | flex | [] [] | freedink | [] [] [] | gas | [] | gawk | [] [] [] | gcal | [] | gcc | [] [] | gettext-examples | [] [] [] [] | gettext-runtime | [] [] [] [] | gettext-tools | [] [] [] | gip | [] [] [] [] | gjay | [] | gliv | [] [] [] | glunarclock | [] [] | gnubiff | () | gnucash | [] () () () () | gnuedu | [] [] | gnulib | [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] | gpe-aerial | [] [] [] [] | gpe-beam | [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] | gpe-conf | [] [] [] | gpe-contacts | [] [] [] | gpe-edit | [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] | gpe-package | [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] | gpe-taskmanager | [] [] [] [] | gpe-timesheet | [] [] [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] [] () [] [] [] | gprof | [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] | grub | [] [] | gsasl | [] | gss | | gst-plugins-bad | [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] () [] | gtkam | [] [] () [] [] | gtkorphan | [] [] [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | [] [] [] | hello | [] [] [] [] | help2man | [] | hylafax | [] [] | idutils | [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] () [] [] | iso_3166 | [] [] [] [] () [] [] [] () | iso_3166_2 | () | iso_4217 | [] [] [] () [] [] | iso_639 | [] [] [] [] () [] [] | iso_639_3 | [] | jwhois | [] | kbd | [] [] [] [] [] | keytouch | [] [] | keytouch-editor | [] [] | keytouch-keyboa... | [] | klavaro | [] [] [] [] | latrine | [] () | ld | [] [] | leafpad | [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | [] [] | libgphoto2 | [] () | libgphoto2_port | [] () [] | libgsasl | | libiconv | [] [] [] [] [] | libidn | [] [] [] | lifelines | [] () | liferea | [] [] [] [] [] | lilypond | [] [] [] | linkdr | [] [] [] | lordsawar | [] | lprng | | lynx | [] [] [] [] | m4 | [] [] [] [] | mailfromd | | mailutils | [] | make | [] [] [] | man-db | | man-db-manpages | | minicom | [] [] [] [] | mkisofs | | myserver | | nano | [] [] [] | opcodes | [] [] | parted | [] [] | pies | | popt | [] [] [] [] [] | psmisc | [] [] [] | pspp | [] | pwdutils | [] | radius | [] | recode | [] [] [] [] [] [] | rosegarden | () () () | rpm | [] [] [] | rush | | sarg | | screem | | scrollkeeper | [] [] [] [] [] | sed | [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | | skencil | [] () [] | solfege | [] [] [] | solfege-manual | [] [] | soundtracker | [] [] [] | sp | [] | sysstat | [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] | tin | [] [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] | vice | () () | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] | wyslij-po | | xchat | [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] [] | +-------------------------------------------------+ crh cs da de el en en_GB en_ZA eo es et eu fa 5 64 105 117 18 1 8 0 28 89 18 19 0 fi fr ga gl gu he hi hr hu hy id is it ja ka kn +----------------------------------------------------+ a2ps | [] [] [] [] | aegis | [] [] | ant-phone | [] [] | anubis | [] [] [] [] | aspell | [] [] [] [] | bash | [] [] [] [] | bfd | [] [] [] | bibshelf | [] [] [] [] [] | binutils | [] [] [] | bison | [] [] [] [] | bison-runtime | [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] | buzztard | [] | cflow | [] [] [] | clisp | [] | coreutils | [] [] [] [] [] | cpio | [] [] [] [] | cppi | [] [] | cpplib | [] [] [] | cryptsetup | [] [] [] | dfarc | [] [] [] | dialog | [] [] [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] [] [] [] | dink | [] | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] | exif | [] [] [] [] [] [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] [] | flex | [] [] [] | freedink | [] [] [] | gas | [] [] | gawk | [] [] [] [] () [] | gcal | [] | gcc | [] | gettext-examples | [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] | gettext-tools | [] [] [] [] | gip | [] [] [] [] [] [] | gjay | [] | gliv | [] () | glunarclock | [] [] [] [] | gnubiff | () [] () | gnucash | () () () () () [] | gnuedu | [] [] | gnulib | [] [] [] [] [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] [] | gpe-aerial | [] [] [] | gpe-beam | [] [] [] [] | gpe-bluetooth | [] [] [] [] | gpe-calendar | [] [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] [] [] | gpe-contacts | [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] [] | gpe-go | [] [] [] [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] [] [] [] | gpe-package | [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] [] [] [] [] [] | gprof | [] [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] [] | grub | [] [] [] [] | gsasl | [] [] [] [] [] | gss | [] [] [] [] [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] [] [] | gtkam | [] [] [] [] [] | gtkorphan | [] [] [] | gtkspell | [] [] [] [] [] [] [] [] [] | gutenprint | [] [] [] [] | hello | [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] [] | indent | [] [] [] [] [] [] [] [] | iso_15924 | [] () [] [] | iso_3166 | [] () [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | () [] [] [] | iso_4217 | [] () [] [] [] [] | iso_639 | [] () [] [] [] [] [] [] [] | iso_639_3 | () [] [] | jwhois | [] [] [] [] [] | kbd | [] [] | keytouch | [] [] [] [] [] [] | keytouch-editor | [] [] [] [] [] | keytouch-keyboa... | [] [] [] [] [] | klavaro | [] [] | latrine | [] [] [] | ld | [] [] [] [] | leafpad | [] [] [] [] [] [] [] () | libc | [] [] [] [] [] | libexif | [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] [] | libgphoto2_port | [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] [] | libidn | [] [] [] [] | lifelines | () | liferea | [] [] [] [] | lilypond | [] [] | linkdr | [] [] [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] [] [] | m4 | [] [] [] [] [] [] | mailfromd | | mailutils | [] [] | make | [] [] [] [] [] [] [] [] [] | man-db | [] [] | man-db-manpages | [] | minicom | [] [] [] [] [] | mkisofs | [] [] [] [] | myserver | | nano | [] [] [] [] [] [] | opcodes | [] [] [] [] | parted | [] [] [] [] | pies | | popt | [] [] [] [] [] [] [] [] [] | psmisc | [] [] [] | pspp | | pwdutils | [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () () () () | rpm | [] [] | rush | | sarg | [] | screem | [] [] | scrollkeeper | [] [] [] [] | sed | [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] [] [] [] | shishi | [] | skencil | [] | solfege | [] [] [] [] | solfege-manual | [] [] | soundtracker | [] [] | sp | [] () | sysstat | [] [] [] [] [] | tar | [] [] [] [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | [] [] | util-linux-ng | [] [] [] [] [] [] | vice | () () () | vmm | [] | vorbis-tools | [] | wastesedge | () () | wdiff | [] | wget | [] [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] | +----------------------------------------------------+ fi fr ga gl gu he hi hr hu hy id is it ja ka kn 105 121 53 20 4 8 3 5 53 2 120 5 84 67 0 4 ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne +-----------------------------------------------+ a2ps | [] | aegis | | ant-phone | | anubis | [] [] | aspell | [] | bash | | bfd | | bibshelf | [] [] | binutils | | bison | [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] | cpio | | cppi | | cpplib | | cryptsetup | | dfarc | [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] | dink | | doodle | | e2fsprogs | | enscript | | exif | [] | fetchmail | | findutils | | flex | | freedink | [] | gas | | gawk | | gcal | | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] | gettext-tools | [] | gip | [] [] | gjay | | gliv | | glunarclock | [] | gnubiff | | gnucash | () () () () | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | [] | gold | | gpe-aerial | [] | gpe-beam | [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] | gpe-contacts | [] [] | gpe-edit | [] | gpe-filemanager | [] [] | gpe-go | [] [] [] | gpe-login | [] | gpe-ownerinfo | [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] | gpe-timesheet | [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | | gsasl | | gss | | gst-plugins-bad | [] [] [] [] | gst-plugins-base | [] [] | gst-plugins-good | [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | | gtick | | gtkam | [] | gtkorphan | [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | | hello | [] [] [] | help2man | | hylafax | | idutils | | indent | | iso_15924 | [] [] | iso_3166 | [] [] () [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] [] | iso_639 | [] [] | iso_639_3 | [] | jwhois | [] | kbd | | keytouch | [] | keytouch-editor | [] | keytouch-keyboa... | [] | klavaro | [] | latrine | [] | ld | | leafpad | [] [] [] | libc | [] | libexif | | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | | libidn | | lifelines | | liferea | | lilypond | | linkdr | | lordsawar | | lprng | | lynx | | m4 | | mailfromd | | mailutils | | make | [] | man-db | | man-db-manpages | | minicom | [] | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | [] [] [] | psmisc | | pspp | | pwdutils | | radius | | recode | | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] | sed | | sharutils | | shishi | | skencil | | solfege | [] | solfege-manual | | soundtracker | | sp | | sysstat | [] | tar | [] | texinfo | [] | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] | wyslij-po | | xchat | [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +-----------------------------------------------+ ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne 20 5 10 1 13 48 4 2 2 4 24 10 20 3 1 nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr +---------------------------------------------------+ a2ps | [] [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] [] | anubis | [] [] [] | aspell | [] [] [] [] [] | bash | [] [] | bfd | [] | bibshelf | [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] () | buzztard | [] [] | cflow | [] | clisp | [] [] | coreutils | [] [] [] [] [] [] | cpio | [] [] [] | cppi | [] | cpplib | [] | cryptsetup | [] | dfarc | [] | dialog | [] [] [] [] | dico | [] | diffutils | [] [] [] [] [] [] | dink | () | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] [] | exif | [] [] [] () [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] [] | freedink | [] [] | gas | | gawk | [] [] [] [] | gcal | | gcc | [] | gettext-examples | [] [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] [] | gip | [] [] [] [] [] | gjay | | gliv | [] [] [] [] [] [] | glunarclock | [] [] [] [] [] | gnubiff | [] () | gnucash | [] () () () | gnuedu | [] | gnulib | [] [] [] [] | gnunet | | gnunet-gtk | | gnutls | [] [] | gold | | gpe-aerial | [] [] [] [] [] [] [] | gpe-beam | [] [] [] [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] [] [] [] | gpe-clock | [] [] [] [] [] [] [] [] | gpe-conf | [] [] [] [] [] [] [] | gpe-contacts | [] [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] [] [] [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] [] [] [] [] [] | gpe-su | [] [] [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] [] | gpe-todo | [] [] [] [] [] | gphoto2 | [] [] [] [] [] [] [] [] | gprof | [] [] [] | gpsdrive | [] [] | gramadoir | [] [] | grep | [] [] [] [] | grub | [] [] [] | gsasl | [] [] [] [] | gss | [] [] [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] | gtkam | [] [] [] [] [] [] | gtkorphan | [] | gtkspell | [] [] [] [] [] [] [] [] [] [] | gutenprint | [] [] | hello | [] [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] [] [] [] | iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] | iso_3166_2 | [] [] [] | iso_4217 | [] [] [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] [] [] [] | iso_639_3 | [] [] | jwhois | [] [] [] [] | kbd | [] [] [] | keytouch | [] [] [] | keytouch-editor | [] [] [] | keytouch-keyboa... | [] [] [] | klavaro | [] [] | latrine | [] [] | ld | | leafpad | [] [] [] [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] | libgphoto2_port | [] [] [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] | libidn | [] [] | lifelines | [] [] | liferea | [] [] [] [] [] () () [] | lilypond | [] | linkdr | [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] | m4 | [] [] [] [] [] | mailfromd | [] | mailutils | [] | make | [] [] [] [] | man-db | [] [] [] | man-db-manpages | [] [] [] | minicom | [] [] [] [] | mkisofs | [] [] [] | myserver | | nano | [] [] [] [] | opcodes | [] [] | parted | [] [] [] [] | pies | [] | popt | [] [] [] [] | psmisc | [] [] [] | pspp | [] [] | pwdutils | [] | radius | [] [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () | rpm | [] [] [] | rush | [] [] | sarg | | screem | | scrollkeeper | [] [] [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] | skencil | [] [] | solfege | [] [] [] [] | solfege-manual | [] [] [] | soundtracker | [] | sp | | sysstat | [] [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] [] | vice | [] | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +---------------------------------------------------+ nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr 135 10 4 7 105 1 29 62 47 91 3 54 46 9 37 sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW +---------------------------------------------------+ a2ps | [] [] [] [] [] | 27 aegis | [] | 9 ant-phone | [] [] [] [] | 9 anubis | [] [] [] [] | 15 aspell | [] [] [] | 20 bash | [] [] [] | 12 bfd | [] | 6 bibshelf | [] [] [] | 16 binutils | [] [] | 8 bison | [] [] | 12 bison-runtime | [] [] [] [] [] [] | 29 bluez-pin | [] [] [] [] [] [] [] [] | 37 bombono-dvd | [] | 4 buzztard | [] | 7 cflow | [] [] [] | 9 clisp | | 10 coreutils | [] [] [] [] | 22 cpio | [] [] [] [] [] [] | 13 cppi | [] [] | 5 cpplib | [] [] [] [] [] [] | 14 cryptsetup | [] [] | 7 dfarc | [] | 9 dialog | [] [] [] [] [] [] [] | 30 dico | [] | 2 diffutils | [] [] [] [] [] [] | 30 dink | | 4 doodle | [] [] | 7 e2fsprogs | [] [] [] | 11 enscript | [] [] [] [] | 17 exif | [] [] [] | 16 fetchmail | [] [] [] | 17 findutils | [] [] [] [] [] | 20 flex | [] [] [] [] | 15 freedink | [] | 10 gas | [] | 4 gawk | [] [] [] [] | 18 gcal | [] [] | 5 gcc | [] [] [] | 7 gettext-examples | [] [] [] [] [] [] [] | 34 gettext-runtime | [] [] [] [] [] [] [] | 29 gettext-tools | [] [] [] [] [] [] | 22 gip | [] [] [] [] | 22 gjay | [] | 3 gliv | [] [] [] | 14 glunarclock | [] [] [] [] [] | 19 gnubiff | [] [] | 4 gnucash | () [] () [] () | 10 gnuedu | [] [] | 7 gnulib | [] [] [] [] | 16 gnunet | [] | 1 gnunet-gtk | [] [] [] | 5 gnutls | [] [] [] | 10 gold | [] | 4 gpe-aerial | [] [] [] | 18 gpe-beam | [] [] [] | 19 gpe-bluetooth | [] [] [] | 13 gpe-calendar | [] [] [] [] | 12 gpe-clock | [] [] [] [] [] | 28 gpe-conf | [] [] [] [] | 20 gpe-contacts | [] [] [] | 17 gpe-edit | [] [] [] | 12 gpe-filemanager | [] [] [] [] | 16 gpe-go | [] [] [] [] [] | 25 gpe-login | [] [] [] | 11 gpe-ownerinfo | [] [] [] [] [] | 25 gpe-package | [] [] [] | 13 gpe-sketchbook | [] [] [] | 20 gpe-su | [] [] [] [] [] | 30 gpe-taskmanager | [] [] [] [] [] | 29 gpe-timesheet | [] [] [] [] [] | 25 gpe-today | [] [] [] [] [] [] | 30 gpe-todo | [] [] [] [] | 17 gphoto2 | [] [] [] [] [] | 24 gprof | [] [] [] | 15 gpsdrive | [] [] [] | 11 gramadoir | [] [] [] | 11 grep | [] [] [] | 10 grub | [] [] [] | 14 gsasl | [] [] [] [] | 14 gss | [] [] [] | 11 gst-plugins-bad | [] [] [] [] | 26 gst-plugins-base | [] [] [] [] [] | 24 gst-plugins-good | [] [] [] [] | 24 gst-plugins-ugly | [] [] [] [] [] | 29 gstreamer | [] [] [] [] | 22 gtick | [] [] [] | 13 gtkam | [] [] [] | 20 gtkorphan | [] [] [] | 14 gtkspell | [] [] [] [] [] [] [] [] [] | 45 gutenprint | [] | 10 hello | [] [] [] [] [] [] | 21 help2man | [] [] | 7 hylafax | [] | 5 idutils | [] [] [] [] | 17 indent | [] [] [] [] [] [] | 30 iso_15924 | () [] () [] [] | 16 iso_3166 | [] [] () [] [] () [] [] [] () | 53 iso_3166_2 | () [] () [] | 9 iso_4217 | [] () [] [] () [] [] | 26 iso_639 | [] [] [] () [] () [] [] [] [] | 38 iso_639_3 | [] () | 8 jwhois | [] [] [] [] [] | 16 kbd | [] [] [] [] [] | 15 keytouch | [] [] [] | 16 keytouch-editor | [] [] [] | 14 keytouch-keyboa... | [] [] [] | 14 klavaro | [] | 11 latrine | [] [] [] | 10 ld | [] [] [] [] | 11 leafpad | [] [] [] [] [] [] | 33 libc | [] [] [] [] [] | 21 libexif | [] () | 7 libextractor | [] | 1 libgnutls | [] [] [] | 9 libgpewidget | [] [] [] | 14 libgpg-error | [] [] [] | 9 libgphoto2 | [] [] | 8 libgphoto2_port | [] [] [] [] | 14 libgsasl | [] [] [] | 13 libiconv | [] [] [] [] | 21 libidn | () [] [] | 11 lifelines | [] | 4 liferea | [] [] [] | 21 lilypond | [] | 7 linkdr | [] [] [] [] [] | 17 lordsawar | | 1 lprng | [] | 3 lynx | [] [] [] [] | 17 m4 | [] [] [] [] | 19 mailfromd | [] [] | 3 mailutils | [] | 5 make | [] [] [] [] | 21 man-db | [] [] [] | 8 man-db-manpages | | 4 minicom | [] [] | 16 mkisofs | [] [] | 9 myserver | | 0 nano | [] [] [] [] | 21 opcodes | [] [] [] | 11 parted | [] [] [] [] [] | 15 pies | [] [] | 3 popt | [] [] [] [] [] [] | 27 psmisc | [] [] | 11 pspp | | 4 pwdutils | [] [] | 6 radius | [] [] | 9 recode | [] [] [] [] | 28 rosegarden | () | 0 rpm | [] [] [] | 11 rush | [] [] | 4 sarg | | 1 screem | [] | 3 scrollkeeper | [] [] [] [] [] | 27 sed | [] [] [] [] [] | 30 sharutils | [] [] [] [] [] | 22 shishi | [] | 3 skencil | [] [] | 7 solfege | [] [] [] [] | 16 solfege-manual | [] | 8 soundtracker | [] [] [] | 9 sp | [] | 3 sysstat | [] [] | 15 tar | [] [] [] [] [] [] | 23 texinfo | [] [] [] [] [] | 17 tin | | 4 unicode-han-tra... | | 0 unicode-transla... | | 2 util-linux-ng | [] [] [] [] | 20 vice | () () | 1 vmm | [] | 4 vorbis-tools | [] | 6 wastesedge | | 2 wdiff | [] [] | 7 wget | [] [] [] [] [] | 26 wyslij-po | [] [] | 8 xchat | [] [] [] [] [] [] | 36 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | 63 xkeyboard-config | [] [] [] | 22 +---------------------------------------------------+ 85 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW 178 domains 119 1 3 3 0 10 65 51 155 17 98 7 41 2618 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If June 2010 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://translationproject.org/extra/matrix.html'. 1.5 Using `gettext' in new packages =================================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `coordinator@translationproject.org' to make the `.pot' files available to the translation teams. tilda-1.5.0/po/0000755000175000017500000000000013617635041010237 500000000000000tilda-1.5.0/po/LINGUAS0000644000175000017500000000011613557047725011213 00000000000000bg ca cs de el en_GB es fr hu it lt nb pl pt pt_BR ru sk sl sv tr zh_CN zh_TW tilda-1.5.0/po/pl.po0000644000175000017500000005577613617635041011156 00000000000000# Polish translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-03-06 00:10+0000\n" "Last-Translator: Maciej Habant \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nowa karta" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Zamknij kartę" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Zamknij kartę" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Głośny dzwonek terminala" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Początkowy tytuł" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Nie można uruchomić domyślnej powłoki: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "ASCII DEL\n" "Sekwencja sterująca\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 #, fuzzy msgid "Tilda Config" msgstr "Konfiguracja" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Uruchamiaj Tildę ukrytą" #: src/tilda.ui:409 msgid "Always on top" msgstr "Zawsze na wierzchu" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Wyświetlaj na wszystkich obszarach roboczych" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Nie pokazuj na pasku zadań" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Pokaż obramowanie" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 #, fuzzy msgid "Window Display" msgstr "Ekran Okna" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Mruganie kursora" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Głośny dzwonek terminala" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 #, fuzzy msgid "Terminal Display" msgstr "Ekran Terminalu" #: src/tilda.ui:703 msgid "Font:" msgstr "Czcionka:" #: src/tilda.ui:733 msgid "Font" msgstr "Czcionka" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Tytuł" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Zawsze na wierzchu" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Pozycja" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Ogólne" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Przeglądarka WWW" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Obsługa URLi" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Początkowy tytuł" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamicznie ustawiony tytuł" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Tytuł" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Uruchom własne plecenie zamiast powłoki" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Własne polecenie:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Polecenie" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Zamknij kartę" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Tytuł i polecenie" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Procent" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "W pikselach" #: src/tilda.ui:1561 msgid "Height" msgstr "Wysokość" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Tytuł" #: src/tilda.ui:1739 msgid "Width" msgstr "Szerokość" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Wyśrodkowanie poziome" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Pozycja Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Pozycja X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Wyśrodkowanie pionowe" #: src/tilda.ui:1865 msgid "Position" msgstr "Pozycja" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Tytuł" #: src/tilda.ui:2030 #, fuzzy msgid "Animation Delay (usec)" msgstr "Opóźnienie animacji (milisekundy)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Orientacja animacji" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animowane rozwijanie" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Poziom przezroczystości" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Włącz przezroczystość" #: src/tilda.ui:2129 msgid "Extras" msgstr "Dodatkowe" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Wygląd" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Mruganie kursora" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Kolor tekstu" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Kolor tła" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Wbudowane schematy" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Wbudowane schematy" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Tytuł" #: src/tilda.ui:2641 msgid "Colors" msgstr "Kolory" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Pasek przewijania jest:" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Przewijaj po naciśnięciu klawisza" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "wiersze" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Przewijanie" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Przewijanie" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Uwaga: Zmiana poniższych opcji może spowodować niewłaściwe " "działanie niektórych aplikacji. Istnieją one tylko w celu obejścia problemów " "z pewnymi aplikacjami i systemami operacyjnymi, które oczekują innego " "zachowania terminala." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "Klawisz _Backspace generuje:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "Klawisz _Delete generuje:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "Przywróć _domyślne wartości opcji zgodności" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Kompatybilność" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatybilność" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Skróty klawiszowe" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Skróty klawiszowe" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Nie można zamknąć pliku konfiguracyjnego\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Nie można zapisać pliku konfiguracyjnego do %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Nie można wykonać polecenia: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać inne." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Zamknij kartę" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać inne." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Problem przy parsowaniu własnej komendy: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Nie można uruchomić domyślnej powłoki: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Nie można uruchomić własnej komeny: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Uruchom własne plecenie zamiast powłoki" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Zamiast tego uruchamiem domyślną powłokę\n" #: src/tilda_terminal.c:458 #, fuzzy, c-format msgid "Problem parsing custom command: %s\n" msgstr "Problem przy parsowaniu własnej komendy: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Nie udało się uruchomić przeglądarki. Wywołano komendę `%s'\n" #: src/tilda_terminal.c:1026 #, fuzzy msgid "Untitled" msgstr "Bez nazwy" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Zła wartość \"d_set_title\" w pliku konfiguracyjnym\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Powinieneś mieć złą wartość tab_pos w swoim pliku konfiguracyjnym\n" #: src/tilda_window.c:811 #, fuzzy, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Nie można ustawić ikony tildy: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Zbyt mało pamięci do utworzenia nowej zakładki\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Konfiguracja" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Nieprawidłowe ustawienie pozycji karty, ignorowanie\n" #~ msgid "Allow Bold Text" #~ msgstr "Pozwól na pogrubioną czcionkę" #~ msgid "Set the background color" #~ msgstr "Ustaw kolor tła" #~ msgid "Run a command at startup" #~ msgstr "Wykonaj polecenie przy starcie" #~ msgid "Set the font to the following string" #~ msgstr "Ustaw czcionkę do następującego ciągu" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Pokaż kreatora ustawień" #~ msgid "Scrollback Lines" #~ msgstr "Ilość przewijanych wierszy" #~ msgid "Use Scrollbar" #~ msgstr "Włącz pasek przewijania" #~ msgid "Print the version, then exit" #~ msgstr "Wyświetl wersję i zakończ" #, fuzzy #~ msgid "Set Initial Working Directory" #~ msgstr "Ustaw katalog startowy" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Nieprzeźroczystość: 0-100%" #, fuzzy #~ msgid "Show Configuration Wizard" #~ msgstr "Pokaż kreatora ustawień" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Błąd przy parsowaniu opcji linii komend. Spróbuj \"tilda --help\"\n" #~ "by zobaczyć wszystkie możliwe opcje.\n" #~ "\n" #~ "Treść błędu: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Błąd przy parsowaniu opcji linii komend. Spróbuj \"tilda --help\"\n" #~ "by zobaczyć wszystkie możliwe opcje.\n" #~ "\n" #~ "Treść błędu: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Włącz antyaliasing" #~ msgid "Use Image for Background" #~ msgstr "Użyj obrazu jako tła" #~ msgid "Scroll Background" #~ msgstr "Przewijaj tło" #~ msgid "Use Antialiased Fonts" #~ msgstr "Włącz anti-aliasing czcionek" #~ msgid "Set Background Image" #~ msgstr "Ustaw obraz jako tło" #~ msgid "Enable Double Buffering" #~ msgstr "Włącz podwójne buforowanie" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Tytuł" #, fuzzy #~ msgid "Quit" #~ msgstr "Tytuł" #, fuzzy #~ msgid "Close Tab" #~ msgstr "_Zamknij kartę" #, fuzzy #~ msgid "Copy" #~ msgstr "Czcionka" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Ekran Terminalu" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "_Zamknij kartę" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Wysokość" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Problem przy parsowaniu pliku konfiguracyjnego\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Przypisanie klawiszy, które wybrałeś jest nieprawidłowe. Proszę wybrać " #~ "inne." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Problem przy parsowaniu pliku konfiguracyjnego\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Góra\n" #~ "Dół\n" #~ "Lewo\n" #~ "Prawo" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Utrzymuj terminal otwarty\n" #~ "Ponownie wykonaj komendę\n" #~ "Wyjdź z terminala" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Własny\n" #~ "Zielony na czarnym\n" #~ "Czarny na białym\n" #~ "Biały na czarnym" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "Po lewej\n" #~ "Po prawej\n" #~ "Wyłączony" #, fuzzy #~ msgid "Key Binding" #~ msgstr "Skrót klawiszowy" #, fuzzy #~ msgid "Grab Keybinding" #~ msgstr "Pobierz skrót klawiszowy" tilda-1.5.0/po/en_GB.gmo0000644000175000017500000001136613617635041011644 00000000000000B,Y<  ' %6 N[ o| z +%6L` g u  ' > J !`  )     . 9 F "X {    2  8 (O x ~  # 8 F (R {       ' =H^+p   #:Qek s}' ! )@T e s}  "09 M X2c((85B23)!:' +A &% /.96<=@, $; 4# 70>1"?-*CommandCompatibilityExtrasFontForeground and Background ColorsHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFont:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLevel of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Delete key generates:_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-01-14 16:23+0000 Last-Translator: John Drinkwater Language-Team: English (United Kingdom) Language: en_GB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) CommandCompatibilityExtrasFontForeground and Background ColoursHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behaviour.Always on topAnimated Pull-downAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColourBad value for "d_set_title" in config file Built-in SchemesCentred HorizontallyCentred VerticallyColoursCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFont:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring Key bindingsLevel of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColourTilda ConfigTitle and CommandUnable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s UntitledWhen command exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Delete key generates:_Reset Compatibility Options to Defaultslinestilda-1.5.0/po/bg.gmo0000644000175000017500000001635713617635041011267 00000000000000Kte`ap  '   /<R :HZq +  ' 5 C S m   7    ' 6 B c !y  )      4 G R _ q $ # "   '; &c   2   , (5 ^ zd )>;z0" .0Fw <1\.f*h-)$+3P=5%X w*l%4GZ$[#+2A^2,%Hn"NEF^9::hUT1*\mi~+&(;d^ 1+=8- !E(K  $G: ".C'F<5?*HJ #A370926B4); ,&@I%D/>CommandCompatibilityExtrasFontForeground and Background ColorsHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2014-07-30 22:44+0000 Last-Translator: Anton Antonov Language-Team: Bulgarian Language: bg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2014-07-30 22:48+0000 X-Generator: Launchpad (build 17131) КомандаСъвместимостЕкстриШрифтЦветове на преден и заден планВисочинаПозицияСкролванеТерминал - представянеЗаглавиеОбработка на URLШирочинаПрозорец - представянеЗабележка: Тези настройки могат да доведът до неправилно поведение на някои приложения. Те са тук само, за да позволят заобикаляне на приложения и операционни системи, които очакват различно терминално поведение.Винаги най-отгореАнимирано паданеЗабавяне на анимацията (usec)Ориентация на анимациятаВъншен видЗвучен Terminal BellЦвят на фонНевалидна стойност за "d_set_title" в конфигурационният файл Вградени цветови схемиЦентрирана хоризонталноЦентрирана вертикалноЦветовеСъвместимостМигащ курсорПроизволна команда:Покажи всички работни средиНе показвай в лентата на задачитеДинамично зададено Заглавие:Позволи прозрачностНе успя да пусне уеб брайзъра. Командата беше `%s' Шрифт:ОбщВ пикселиПървоначално Заглавие:Невалидна настройка за позиция на подпрозорци, игнориране Клавишни комбинацииПускам вместо това shell по подразбиране Ниво на прозрачностНедостиг на памет, не може да създаде подпрозорец ПроцентПозиция на подпрозорци:Пусни произволна команда вместо shellСкрол на натискане на бутонСкрол на изводСкрол лента е:СкролванеПокажи тефтерски ръбовеСтартирай Tilda скритаЦвят на текстTilda конфигурацияЗаглавие и командаНе може да затвори конфигурационният файл Не може да пусне командата по избор: %s Не може да пусне shell по подразбиране: %s Не може да отвори директория: %s Не може да изпълни командата:`%s' Не може да зададе икона на tilda: %s Не може да синхронизира конфигурационният файл на диска Не може да запише конфигурационният фалй на %s НеозаглавенКогато командата приключи:X позицияY позицияВие имате невалидна tab_pos във вашият конфигурационен файл _Backspace копчето генерира:_Затвори подпрозорец_Delete копчето генерира:_Нов подпрозорец_Върни настройките за съвместимост по подразбиранередовеtilda-1.5.0/po/zh_CN.po0000644000175000017500000005731513617635041011533 00000000000000# Chinese (China) translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # Boyuan Yang <073plan@gmail.com>, 2018. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2018-03-19 12:53+0800\n" "Last-Translator: Boyuan Yang <073plan@gmail.com>\n" "Language-Team: Chinese (China) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Poedit 2.0.6\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "新建标签(_N)" #: src/menu.ui:10 msgid "_Close Tab" msgstr "关闭标签(_C)" #: src/menu.ui:16 msgid "_Copy" msgstr "复制(_C)" #: src/menu.ui:20 msgid "_Paste" msgstr "粘贴(_P)" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "切换全屏(_T)" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "切换搜索栏(_T)" #: src/menu.ui:36 msgid "_Preferences" msgstr "首选项(_P)" #: src/menu.ui:42 msgid "_Quit" msgstr "退出(_Q)" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "关闭 Tilda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "打开新终端" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "打开新终端并隐藏" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "顶部" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "底部" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "左侧" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "右侧" #: src/tilda.ui:98 msgid "Hidden" msgstr "隐藏的" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "终端获得焦点" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "隐藏终端" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "块状光标" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "IBeam 光标" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "下划线光标" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "显示整个标签页标题" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "显示标题最前 n 个字符" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "显示标题最后 n 个字符" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "未显示" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "在原始标题之后" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "在原始标题之前" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "替代原始标题" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "回退到默认 shell" #: src/tilda.ui:180 msgid "Restart the command" msgstr "重新启动命令" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "退出终端" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "自定义" #: src/tilda.ui:217 msgid "Green on Black" msgstr "黑底绿字" #: src/tilda.ui:220 msgid "Black on White" msgstr "白底黑字" #: src/tilda.ui:223 msgid "White on Black" msgstr "黑底白字" #: src/tilda.ui:226 msgid "Zenburn" msgstr "Zenburn" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "浅色的 Solarized" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "深色的 Solarized" #: src/tilda.ui:235 msgid "Snazzy" msgstr "Snazzy" #: src/tilda.ui:257 msgid "On the Left" msgstr "左侧" #: src/tilda.ui:260 msgid "On the Right" msgstr "右侧" #: src/tilda.ui:263 msgid "Disabled" msgstr "禁用" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "ASCII DEL" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "转义序列" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "Control-H" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda 配置" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Tilda 启动后隐藏" #: src/tilda.ui:409 msgid "Always on top" msgstr "置顶" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "在所有工作空间上显示" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "不在任务栏显示" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "显示窗口边框" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "设置为桌面窗口" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "启动时全屏" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "非焦点拉起行为:" #: src/tilda.ui:560 msgid "Window Display" msgstr "窗口显示" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "光标闪烁" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "可闻的终端响铃" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "光标形状:" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "终端显示" #: src/tilda.ui:703 msgid "Font:" msgstr "字体:" #: src/tilda.ui:733 msgid "Font" msgstr "字体" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "鼠标离开 Tilda 时隐藏" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "自动隐藏延迟:" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Tilda 失去焦点时隐藏" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "自动隐藏" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "最后一个终端关闭时:" #: src/tilda.ui:895 msgid "Always prompt on exit" msgstr "总是在退出时提示" #: src/tilda.ui:918 msgid "Program Exit" msgstr "程序退出" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" "注意:某些选项修改后需重启 tilda 才能生效。" #: src/tilda.ui:953 msgid "General" msgstr "常规" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "文字字符范围:" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "按文字选择" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "网页浏览器*:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "URL处理" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "原始标题 :" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "标题最大长度:" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "动态设置标题:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "标题行为:" #: src/tilda.ui:1236 msgid "Title" msgstr "标题" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "运行一个自定义命令而非 shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "自定义命令:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "在命令退出时:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "使用一个登录 shell" #: src/tilda.ui:1361 msgid "Command" msgstr "命令" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" "* 必须在这里输入一个可打开浏览器的有效命令。可以使用特定浏览器的名称," "如“firefox”或“google-chrome”,也可以使用通用命令,如“x-www-browser”或“xdg-" "open”。最佳命令和具体系统相关。" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "关闭标签页时显示确认对话框" #: src/tilda.ui:1445 msgid "Close Action" msgstr "关闭行为" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "标题和命令" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "百分比" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "按像素计" #: src/tilda.ui:1561 msgid "Height" msgstr "高度" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "监视器:" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "选择监视器" #: src/tilda.ui:1739 msgid "Width" msgstr "宽度" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "水平居中" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y轴位置" #: src/tilda.ui:1827 msgid "X Position" msgstr "X轴位置" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "垂直居中" #: src/tilda.ui:1865 msgid "Position" msgstr "位置" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "标签页位置:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "展开标签页" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "显示单个标签页" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 msgid "Tabs" msgstr "标签页" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "动画延迟(微秒)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "动画方向" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "下拉动画" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "透明度" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "启用透明" #: src/tilda.ui:2129 msgid "Extras" msgstr "额外" #: src/tilda.ui:2148 msgid "Appearance" msgstr "外观" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "光标颜色" #: src/tilda.ui:2265 msgid "Text Color" msgstr "文字颜色" #: src/tilda.ui:2277 msgid "Background Color" msgstr "背景颜色" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "内置方案" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "前景和背景颜色" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "注意:终端应用程序选择的颜色可能有所不同。" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "选择颜色 14" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "选择颜色 13" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "选择颜色 15" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "选择颜色 12" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "选择颜色 10" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "选择颜色 11" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "选择颜色 9" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "选择颜色 7" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "选择颜色 6" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "选择颜色 5" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "选择颜色 4" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "选择颜色 3" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "选择颜色 2" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "选择颜色 1" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "选择颜色 0" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "选择颜色 8" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "内置方案:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "调色板:" #: src/tilda.ui:2622 msgid "Palette" msgstr "调色板" #: src/tilda.ui:2641 msgid "Colors" msgstr "颜色" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "滚动条位于:" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "限制回滚数量:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "取消选择以设置为无限回滚。" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "输出时滚动" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "击键时滚动" #: src/tilda.ui:2759 msgid "0" msgstr "0" #: src/tilda.ui:2771 msgid "lines" msgstr "行" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "滚动" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "滚动" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "注意:这些选项可能造成一些应用程序产生不正确的行为。仅用于允" "许您在一些应用程序和操作系统中作调整以获得不同的终端行为。" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "按 Backspace 键产生(_B):" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "按 Delete 键产生(_D):" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "重置兼容性选项为默认值(_R)" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "兼容性" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "兼容性" #: src/tilda.ui:3024 msgid "Keybindings" msgstr "键绑定" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "键绑定" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "无法同步磁盘上的配置文件\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "无法关闭配置文件\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "无法将配置文件写入%s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "无法执行命令:`%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "无法打开锁定的目录:%s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "正在创建目录:“%s”\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "在用户配置目录中找到了 style.css,将应用用户 css 风格。\n" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "正在将旧的配置路径迁移至 XDG 文件夹中\n" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "指定的配置文件“%s”不存在。回退到默认路径。\n" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "您为“拉下终端”所选择的键绑定无效。请重新选择。" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "动作" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "快捷键" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "输入键盘快捷键" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "您为“%s”所选择的键绑定无效。请重新选择。" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "读取链接 %s 时出错:%s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "无法启动默认 shell:%s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "无法执行自定义命令:%s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "运行一个自定义命令而非 shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "运行默认shell作为替代\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "解析自定义命令错误:%s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "无法运行 web 浏览器。命令是“%s”\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "未命名" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "配置文件中“d_set_title”的值有误\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "您确认要关闭此标签页吗?" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "您的配置文件中指定了错误的 tab_pos\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "无法设置 tilda 的图标:%s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "内存不够,无法创建标签页\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "您确认要退出吗?" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Tilda %d 配置" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "无效的光标类型,重置为默认\n" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "无效的非焦点拉起行为,忽略\n" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "无效标签页位置,忽略\n" #~ msgid "Allow Bold Text" #~ msgstr "允许粗体" #~ msgid "" #~ "Search term not found, search again to continue the search at the " #~ "beginning." #~ msgstr "搜索内容未找到,再次搜索以从开始位置继续。" #~ msgid "_Next" #~ msgstr "下一个(_N)" #~ msgid "_Prev" #~ msgstr "上一个(_P)" #~ msgid "_Match Case" #~ msgstr "区分大小写(_M)" #~ msgid "_Regex" #~ msgstr "正则表达式(_R)" #~ msgid "Set the background color" #~ msgstr "设置背景颜色" #~ msgid "Run a command at startup" #~ msgstr "启动时运行命令" #~ msgid "Set the font to the following string" #~ msgstr "使用如下字符串的字体" #~ msgid "Configuration file" #~ msgstr "配置文件" #~ msgid "Scrollback Lines" #~ msgstr "回滚行" #~ msgid "Use Scrollbar" #~ msgstr "使用滚动条" #~ msgid "Print the version, then exit" #~ msgstr "显示版本号后退出" #~ msgid "Set Initial Working Directory" #~ msgstr "设定初始工作目录" #~ msgid "Opaqueness: 0-100%" #~ msgstr "不透明: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "显示配置向导" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "解析命令行参数时出错。请尝试\"tilda --help\"\n" #~ "来获得所有可用选项。\n" #~ "\n" #~ "错误信息:%s\n" #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "解析 Glib 和 GTK 特有的命令行选项时出错。请尝试“tilda --help-all”\n" #~ "来获得所有可用选项。\n" #~ "\n" #~ "错误信息:%s\n" #~ msgid "Error allocating memory for a new tilda_cli_options structure.\n" #~ msgstr "为新的 tilda_cli-options 结构体分配内存时出错。\n" #~ msgid "Tango" #~ msgstr "Tango" #~ msgid "Linux console" #~ msgstr "Linux 控制台" #~ msgid "XTerm" #~ msgstr "XTerm" #~ msgid "Rxvt" #~ msgstr "Rxvt" #~ msgid "Enable Antialiasing" #~ msgstr "启用字体抗锯齿" #~ msgid "Use Image for Background" #~ msgstr "使用图片作为背景" #~ msgid "Scroll Background" #~ msgstr "滚动背景" #~ msgid "Use Antialiased Fonts" #~ msgstr "使用平滑字体" #~ msgid "Set Background Image" #~ msgstr "设置背景图片" #~ msgid "Enable Double Buffering" #~ msgstr "启用双重缓存" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Close Tab" #~ msgstr "关闭标签(_C)" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "下拉快捷键" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "关闭标签(_C)" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "高度" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "解析配置文件错误\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "键绑定无效。请重新选择。" #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "解析配置文件错误\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "顶部\n" #~ "底部\n" #~ "左边\n" #~ "右边" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "未显示\n" #~ "在原始标题之后\n" #~ "在原始标题之前\n" #~ "替换原始标题" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "保持终端打开\n" #~ "重启命令\n" #~ "退出终端" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "自定义\n" #~ "黑底绿字\n" #~ "白底黑字\n" #~ "黑底白字" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "左侧\n" #~ "右侧\n" #~ "禁用" #~ msgid "Key Binding" #~ msgstr "键绑定" #~ msgid "Grab Keybinding" #~ msgstr "捕捉键绑定" tilda-1.5.0/po/pt.po0000644000175000017500000005640713617635041011156 00000000000000# Portuguese translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-04-19 11:22+0000\n" "Last-Translator: João Santos \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nova Aba" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Fechar Aba" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Fechar Aba" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Campainha do Terminal Audível" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Título Inicial:" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Incapaz de carregar o shell padrão: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "DEL ASCII\n" "Sequência de escape\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Configuração do Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Iniciar o Tilda escondido" #: src/tilda.ui:409 msgid "Always on top" msgstr "Sempre no topo" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Mostrar em todas as Áreas de Trabalho" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Não mostrar na barra de tarefas" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Mostrar Borda do Bloco de Notas" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Exibição da Janela" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Cursor Pisca" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Campainha do Terminal Audível" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Exibição do Terminal" #: src/tilda.ui:703 msgid "Font:" msgstr "Tipo de letra:" #: src/tilda.ui:733 msgid "Font" msgstr "Fonte" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Título" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Sempre no topo" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Posição" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Geral" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Navegador Web" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Tratamento de URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Título Inicial:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Título definido dinamicamente:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Título" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Correr um comando personalizado em vez da shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Comando personalizado:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Quando o comando sair:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Comando" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Fechar Aba" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Título e Comando" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Percentagem" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "Em Pixeis" #: src/tilda.ui:1561 msgid "Height" msgstr "Altura" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Título" #: src/tilda.ui:1739 msgid "Width" msgstr "Comprimento" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centrado Horizontalmente" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Posição Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Posição X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centrado Verticalmente" #: src/tilda.ui:1865 msgid "Position" msgstr "Posição" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Posição das Abas" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Título" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Atraso da Animação (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Orientação de Animação" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animação" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Nivel de Transparência" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Habilitar Transparência" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extras" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Aparência" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Cursor Pisca" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Cor do Texto" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Cor de Fundo" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Esquemas Pre-definidos" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Cores de Frente e Fundo" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Esquemas Pre-definidos" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Título" #: src/tilda.ui:2641 msgid "Colors" msgstr "Cores" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Barra de Rolamento está à:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Histórico:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Rolar com o conteúdo" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Rodar ao Pressionar Tecla" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "linhas" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Rolamento" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Rolamento" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Nota: Estas opções podem levar a que algumas aplicações se " "comportem incorrectamente. Estão aqui apenas para lhe permitir contornar " "algumas aplicações e sistemas operativos que esperam comportamentos " "diferentes da consola." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "Tecla _backspace gera:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "Tecla _delete gera:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Repor Opções de Compatibilidade nos Valores Pre-definidos" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibilidade" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Compatibilidade" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Atalhos de Teclado" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Atalhos de Teclado" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" "Não foi possível escrever as alterações no ficheiro de configuração no " "disco\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Não foi possível fechar o ficheiro de configuração\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Não foi possível escrever o ficheiro de configuração para %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Não foi possível correr o comando: '%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Não foi possível abrir directório de bloqueio: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Fechar Aba" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Problema ao analisar o comando personalizado: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Incapaz de carregar o shell padrão: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Incapaz de carregar o comando personalizado: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Correr um comando personalizado em vez da shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Carregando antes a shell padrão\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Problema ao analisar o comando personalizado: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Falha ao carregar o navegador web. O comando foi `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Sem título" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Valor inválido para \"d_set_title\" no ficheiro de configuração\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Tem um tab_pos errado no seu ficheiro de configuração\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Não foi possível mudar o ícone do tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Memória Insuficiente, não é possível criar aba\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Configuração do Tilda" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Configuração de posição de aba inválida, ignorando\n" #~ msgid "Allow Bold Text" #~ msgstr "Permitir Texto em Negrito" #~ msgid "Set the background color" #~ msgstr "Definir a cor de fundo" #~ msgid "Run a command at startup" #~ msgstr "Corre um comando ao iniciar" #~ msgid "Set the font to the following string" #~ msgstr "Definir a fonte da seguinte expressão" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Mostrar o Assistente de Configuração" #~ msgid "Scrollback Lines" #~ msgstr "Linhas do Histórico" #~ msgid "Use Scrollbar" #~ msgstr "Usar Barra de Rolamento" #~ msgid "Print the version, then exit" #~ msgstr "Escreve a versão e sai" #~ msgid "Set Initial Working Directory" #~ msgstr "Definir o Directório de Trabalho Inicial" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Opacidade: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Mostrar o Assistente de Configuração" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Erro ao processar as opções da linha de comandos. Tente \"tilda --help\"\n" #~ "para ver todas as opções possíveis.\n" #~ "\n" #~ "Mensagem de erro: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Erro ao processar as opções da linha de comandos. Tente \"tilda --help\"\n" #~ "para ver todas as opções possíveis.\n" #~ "\n" #~ "Mensagem de erro: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Habilitar Antiserrilhado" #~ msgid "Use Image for Background" #~ msgstr "Usar imagem de fundo" #~ msgid "Scroll Background" #~ msgstr "Rolar fundo" #~ msgid "Use Antialiased Fonts" #~ msgstr "Usar fontes não serrilhadas" #~ msgid "Set Background Image" #~ msgstr "Definir a imagem de fundo" #~ msgid "Enable Double Buffering" #~ msgstr "Habilitar Buffering Duplo" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Título" #, fuzzy #~ msgid "Quit" #~ msgstr "Título" #, fuzzy #~ msgid "Close Tab" #~ msgstr "_Fechar Aba" #, fuzzy #~ msgid "Copy" #~ msgstr "Fonte" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Tecla Pulldown" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "_Fechar Aba" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Altura" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Problema ao analisar o arquivo de configuração\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "A combinação de teclas que escolheu é inválida. Por favor escolha outra." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Problema ao analisar o arquivo de configuração\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Cimo\n" #~ "Fundo\n" #~ "Esquerda\n" #~ "Direita" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Não é mostrado\n" #~ "Fica depois do título inicial\n" #~ "Fica antes do título inicial\n" #~ "Substitui o título inicial" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Manter o terminal aberto\n" #~ "Reiniciar o comando\n" #~ "Sair do terminal" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Personalizado\n" #~ "Verde em Preto\n" #~ "Preto em Branco\n" #~ "Branco em Preto" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "Na Esquerda\n" #~ "Na Direita\n" #~ "Desactivado" #~ msgid "Key Binding" #~ msgstr "Atalhos de Teclado" #~ msgid "Grab Keybinding" #~ msgstr "Interceptar Teclas" tilda-1.5.0/po/ca.po0000644000175000017500000003611713617635040011111 00000000000000# Catalan translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-01-22 10:08+0000\n" "Last-Translator: animarval \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 #, fuzzy msgid "_Close Tab" msgstr "Ordre" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Títol Inicial:" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Configuració de Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Inicia Tilda ocultament" #: src/tilda.ui:409 msgid "Always on top" msgstr "Sempre en primer pla" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Mostra en tots els espais de treball" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "No mostrar a la barra de tasques" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Títol" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Sempre en primer pla" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Posició" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Títol Inicial:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Posar un Títol Dinàmic:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Títol" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Ordre personalitzada:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Ordre" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "" #: src/tilda.ui:1561 msgid "Height" msgstr "" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Títol" #: src/tilda.ui:1739 msgid "Width" msgstr "" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Posició Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Posició X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centrat Verticalment" #: src/tilda.ui:1865 msgid "Position" msgstr "Posició" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Posició de les Pestanyes:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Títol" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Retard de l'Animació (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Orientació de l'Animació" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animació del menú desplegable" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Nivell de Transparència" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Habilita la transparència" #: src/tilda.ui:2129 msgid "Extras" msgstr "" #: src/tilda.ui:2148 msgid "Appearance" msgstr "" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Títol" #: src/tilda.ui:2641 msgid "Colors" msgstr "" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "línies" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Desplaçament" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Desplaçament" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Nota: aquestes opcions poden fer que algunes aplicacions no " "funcionin correctament. Només hi són per permetre-us solucionar aspectes de " "certes aplicacions i sistemes operatius que esperen un comportament diferent " "del terminal." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibilitat" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Posició" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Incapaç d'executar l'ordre: '%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Incapaç d'obrir el directori bloquejat: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Sense títol" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Configuració de Tilda" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #~ msgid "Allow Bold Text" #~ msgstr "Permet text en negreta" #~ msgid "Set the background color" #~ msgstr "Indicar color del fons" #~ msgid "Run a command at startup" #~ msgstr "Executar ordre a l'iniciar" #~ msgid "Use Image for Background" #~ msgstr "Usar Imatge per al Fons" #~ msgid "Enable Double Buffering" #~ msgstr "Permet Double Buffering" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Títol" #, fuzzy #~ msgid "Quit" #~ msgstr "Títol" #, fuzzy #~ msgid "Copy" #~ msgstr "Ordre" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Ordre" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Ordre" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Dalt\n" #~ "Baix\n" #~ "Esquerra\n" #~ "Dreta" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "No serà mostrat\n" #~ "Anirà després del títol inicial\n" #~ "Anirà abans del títol inicial\n" #~ "Substituirà el títol inicial" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "A l'Esquerra\n" #~ "A la Dreta\n" #~ "Desactivat" tilda-1.5.0/po/insert-header.sin0000644000175000017500000000124013047677711013430 00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } tilda-1.5.0/po/sl.po0000644000175000017500000003450113617635041011140 00000000000000# Slovenian translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2007-07-11 00:16+0000\n" "Last-Translator: Nejc Lotrič \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 #, fuzzy msgid "_Close Tab" msgstr "Ukaz" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Prvotni Naslov:" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "" #: src/tilda.ui:409 msgid "Always on top" msgstr "Vedno na vrhu" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Prikaži na vseh delovnih površinah" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Ne prikaži v opravilni vrstici" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Okenski prikaz" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Prikaz v Terminalu" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "Pisava" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Naslov" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Vedno na vrhu" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Pozicija" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Splošno" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Prvotni Naslov:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Naslov" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Ukaz" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Naslov in Ukaz" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Odstotek" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "V Pikslih" #: src/tilda.ui:1561 msgid "Height" msgstr "Višina" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Naslov" #: src/tilda.ui:1739 msgid "Width" msgstr "Širina" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Pozicija Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Pozicija X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "" #: src/tilda.ui:1865 #, fuzzy msgid "Position" msgstr "Pozicija" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Naslov" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Zakasnitev Animacij (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Nivo Prozornosti" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Vključi Prosojnost" #: src/tilda.ui:2129 msgid "Extras" msgstr "Dodatki" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Videz" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Naslov" #: src/tilda.ui:2641 msgid "Colors" msgstr "Barve" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Premikanje zaslona" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Združljivost" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Višina" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Ni moč nastaviti ikone tilde: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #~ msgid "Set the background color" #~ msgstr "Nastavi barvo ozadja" #~ msgid "Run a command at startup" #~ msgstr "Poženi ukaz ob zagonu" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Prikaži Čarovnika Nastavitev" #~ msgid "Show Configuration Wizard" #~ msgstr "Prikaži Čarovnika Nastavitev" #~ msgid "Use Image for Background" #~ msgstr "Uporabi Sliko za Ozadje" #~ msgid "Set Background Image" #~ msgstr "Nastavi Sliko Ozadja" #~ msgid "Enable Double Buffering" #~ msgstr "Omogoči Dvojno Medpomnenje" #, fuzzy #~ msgid "Paste" #~ msgstr "Naslov" #, fuzzy #~ msgid "Quit" #~ msgstr "Naslov" #, fuzzy #~ msgid "Copy" #~ msgstr "Pisava" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Prikaz v Terminalu" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Ukaz" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Višina" tilda-1.5.0/po/zh_TW.gmo0000644000175000017500000002641613617635041011727 00000000000000    ' %8GWk|  P]U   $+5a p}/?O^m|     (5DK[d~74CGI  , 9C.R'  )@I f r! #0FZ)`  FXk T  $3#X"|'&+"<_hz  2$,F](f !2 FT q    - E S Mg \ ! !!""3"C"J"c" y"+" """ "" " # ##+#;#K#[#k#{######### $ $$ $$ .$8$ M$ Z$g$w$~$$$$$$$%(%68%o% %M%%%& &)&0&@&\&|&&&1&!& ' '.'H' O'\'-r' '$'''''%( 8(B(R("q((((3(() ) ")/) E)R)a)@q))) )E)/*B*R*b*i****!**% +%0+V+s+*+ ++++$, ',4,M,\,"k,,,, ,1, -_%'YKqJoZ^fyT~ j"G]&g4#a[sD lAn!FU-./012 L<`xtW*N{Pk$}@BQ+,356789:IX|d>\v pbMuzVh );EcOw?irC(mHSe=R* A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system.0Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightKeybindingsPalettePositionProgram ExitScrollingSelect by WordSelect monitorTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Some options require that tilda is restarted.Note: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.ASCII DELAlways on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Black on WhiteBlock CursorBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyChoose Color 0Choose Color 1Choose Color 10Choose Color 11Choose Color 12Choose Color 13Choose Color 14Choose Color 15Choose Color 2Choose Color 3Choose Color 4Choose Color 5Choose Color 6Choose Color 7Choose Color 8Choose Color 9Close TildaColor palette:ColorsCompatibilityControl-HCreating directory:'%s' Cursor BlinksCursor ColorCursor Shape: CustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellDynamically-set Title:Enable TransparencyEscape sequenceExit the terminalFailed to launch the web browser. The command was `%s' Focus TerminalFont:Found style.css in the user config directory, applying user css style. GeneralGoes after initial titleGoes before initial titleGreen on BlackHiddenHide TerminalHide Tilda when mouse leaves itHide when Tilda loses focusIBeam CursorIn PixelsInitial Title:Invalid non-focus pull up behaviour, ignoring Invalid tab position setting, ignoring Isn't displayedKeybindingsLaunching default shell instead LeftLevel of TransparencyLimit scrollback to:Migrating old config path to XDG folders Monitor:Non-focus Pull Up Behaviour:On the LeftOn the RightOpen a new terminalOpen a new terminal and hideOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Problem reading link %s: %s Replace initial titleRestart the commandRightRun a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingSet as Desktop windowShow Notebook BorderSolarized DarkSolarized LightSpecified config file '%s' does not exist. Reverting to default path. Start Tilda hiddenStart in fullscreenText ColorThe keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle and CommandTopUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s Underline CursorUnselect for unlimited scrollback.UntitledUse a login shellWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionYou have a bad tab_pos in your configuration file Zenburn_Backspace key generates:_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2017-07-18 00:31+0800 Last-Translator: Kuang-Lin Pan Language-Team: Chinese (Traditional) Language: zh_TW MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2017-07-17 11:20+0000 X-Generator: Poedit 1.8.9 * 這裡必須輸入一個能啟動瀏覽器的指令。可以使用特定瀏覽器的名稱例如 'firefox'、'google-chrome',或使用通用的指令 'x-www-browser'、'xdg-open'。最適合的指令視作業系統而定。0自動隱藏指令相容性額外選項字型前景和背景顏色高度按鍵對應調色盤位置程式離開捲動以單字為單位選取選擇螢幕終端機顯示標題URL 處理方式寬度視窗顯示注意:有些選項需要重新啟動 tilda。注意:終端機應用程式會使用以下提供的顏色。注意:以下的選項可能令某部分應用程式無法正常運作。它們只是在某些應用程式及作業系統需要不同的終端機運作方式時,提供暫時的解決方法。ASCII DEL永遠顯示在最上層動畫動畫延遲 (微秒)動畫起始點外觀終端機會發出響聲自動隱藏延遲:背景顏色設定檔裡 "d_set_title" 的值不正確 白底黑字區塊狀游標底部內建佈景內建佈景:水平置中垂直置中Choose Color 0選擇顏色 1選擇顏色 10選擇顏色 11選擇顏色 12選擇顏色 13選擇顏色 14選擇顏色 15選擇顏色 2選擇顏色 3選擇顏色 4選擇顏色 5選擇顏色 6選擇顏色 7Choose Color 8選擇顏色 9關閉 Tilda調色盤:色彩相容性Control-H建立目錄:'%s' 閃爍游標游標顏色游標形狀:自訂自訂指令:停用顯示在所有工作區不要顯示在工作列中啟動預設的命令解釋器動態設定標題:啟用透明度「跳脫字元」序列離開終端機無法啟動網頁瀏覽器。用到的指令是 `%s' 將焦點放在終端機上字型:在使用者的設定目錄中發現 style.css,套用使用者樣式中。 一般接在初始標題之後接在初始標題之前黑底綠字隱藏隱藏終端機滑鼠離開時隱藏 Tilda在 Tilda 失去焦點時隱藏I 字形游標以像素為單位初始標題:無效的未取得焦點拉起行為,已忽略 無效的 Tab 順序,已忽略 不顯示按鍵對應作為替代,啟動預設的命令解釋器 左側透明等級限制回捲行數:正在將舊的設定檔搬移至 XDG 目錄 螢幕:未取得焦點時的拉起行為:置左置右開啟新的終端機開啟新的終端機並隱藏記憶體不足。無法建立分頁 百分比頁籤位置:解析自訂指令失敗:%s 跟隨符號連結 %s 失敗:%s 取代初始標題重新執行指令右側執行自訂的指令而不是執行命令解釋器打字時捲動輸出時捲動捲軸在:捲動方式設定為桌面視窗顯示邊框Solarized DarkSolarized Light指定的設定檔 '%s' 不存在。改採用預設的路徑。 啟動 Tilda 時隱藏以全螢幕啟動文字色彩你選擇的「拉下終端機」快捷鍵無效。請選擇別的。Tilda %d 設定值Tilda 設定值標題及指令頂部無法關閉設定檔案 無法啟動自訂指令:%s 無法啟動預設的命令解釋器:%s 無法開啟鎖定的目錄:%s 無法執行指令:`%s' 無法設定 Tilda 的圖示為:%s 無法將設定檔案同步至磁碟 無法將設定檔寫至 %s 底線狀游標取消選擇視為無限制回捲行數。無標題使用登入的命令解釋器網頁瀏覽器 *:當指令結束後:當最後一個終端機被關閉:黑底白字視為單字的字元:X 座標位置Y 座標位置設定檔裡有個錯的定位點 Zenburn後退鍵會產生(_B):刪除鍵會產生(_D):新分頁(_N)將有關相容性的選項重設為預設值(_R)行tilda-1.5.0/po/zh_TW.po0000644000175000017500000005057213617635041011563 00000000000000# Chinese (Traditional) translation for tilda # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2017-07-18 00:31+0800\n" "Last-Translator: Kuang-Lin Pan \n" "Language-Team: Chinese (Traditional) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-07-17 11:20+0000\n" "X-Generator: Poedit 1.8.9\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "新分頁(_N)" #: src/menu.ui:10 #, fuzzy msgid "_Close Tab" msgstr "關閉 Tilda" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "關閉 Tilda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "開啟新的終端機" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "開啟新的終端機並隱藏" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "頂部" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "底部" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "左側" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "右側" #: src/tilda.ui:98 msgid "Hidden" msgstr "隱藏" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "將焦點放在終端機上" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "隱藏終端機" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "區塊狀游標" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "I 字形游標" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "底線狀游標" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "不顯示" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "接在初始標題之後" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "接在初始標題之前" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "取代初始標題" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "啟動預設的命令解釋器" #: src/tilda.ui:180 msgid "Restart the command" msgstr "重新執行指令" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "離開終端機" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "自訂" #: src/tilda.ui:217 msgid "Green on Black" msgstr "黑底綠字" #: src/tilda.ui:220 msgid "Black on White" msgstr "白底黑字" #: src/tilda.ui:223 msgid "White on Black" msgstr "黑底白字" #: src/tilda.ui:226 msgid "Zenburn" msgstr "Zenburn" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "Solarized Light" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "Solarized Dark" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "置左" #: src/tilda.ui:260 msgid "On the Right" msgstr "置右" #: src/tilda.ui:263 msgid "Disabled" msgstr "停用" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "ASCII DEL" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "「跳脫字元」序列" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "Control-H" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda 設定值" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "啟動 Tilda 時隱藏" #: src/tilda.ui:409 msgid "Always on top" msgstr "永遠顯示在最上層" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "顯示在所有工作區" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "不要顯示在工作列中" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "顯示邊框" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "設定為桌面視窗" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "以全螢幕啟動" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "未取得焦點時的拉起行為:" #: src/tilda.ui:560 msgid "Window Display" msgstr "視窗顯示" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "閃爍游標" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "終端機會發出響聲" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "游標形狀:" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "終端機顯示" #: src/tilda.ui:703 msgid "Font:" msgstr "字型:" #: src/tilda.ui:733 msgid "Font" msgstr "字型" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "滑鼠離開時隱藏 Tilda" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "自動隱藏延遲:" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "在 Tilda 失去焦點時隱藏" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "自動隱藏" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "當最後一個終端機被關閉:" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "永遠顯示在最上層" #: src/tilda.ui:918 msgid "Program Exit" msgstr "程式離開" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "注意:有些選項需要重新啟動 tilda。" #: src/tilda.ui:953 msgid "General" msgstr "一般" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "視為單字的字元:" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "以單字為單位選取" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "網頁瀏覽器 *:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "URL 處理方式" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "初始標題:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "動態設定標題:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "標題" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "執行自訂的指令而不是執行命令解釋器" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "自訂指令:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "當指令結束後:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "使用登入的命令解釋器" #: src/tilda.ui:1361 msgid "Command" msgstr "指令" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" "* 這裡必須輸入一個能啟動瀏覽器的指令。可以使用特定瀏覽器的名稱例如 " "'firefox'、'google-chrome',或使用通用的指令 'x-www-browser'、'xdg-open'。最" "適合的指令視作業系統而定。" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "關閉 Tilda" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "標題及指令" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "百分比" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "以像素為單位" #: src/tilda.ui:1561 msgid "Height" msgstr "高度" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "螢幕:" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "選擇螢幕" #: src/tilda.ui:1739 msgid "Width" msgstr "寬度" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "水平置中" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y 座標位置" #: src/tilda.ui:1827 msgid "X Position" msgstr "X 座標位置" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "垂直置中" #: src/tilda.ui:1865 msgid "Position" msgstr "位置" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "頁籤位置:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "額外選項" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "動畫延遲 (微秒)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "動畫起始點" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "動畫" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "透明等級" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "啟用透明度" #: src/tilda.ui:2129 msgid "Extras" msgstr "額外選項" #: src/tilda.ui:2148 msgid "Appearance" msgstr "外觀" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "游標顏色" #: src/tilda.ui:2265 msgid "Text Color" msgstr "文字色彩" #: src/tilda.ui:2277 msgid "Background Color" msgstr "背景顏色" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "內建佈景" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "前景和背景顏色" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "注意:終端機應用程式會使用以下提供的顏色。" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "選擇顏色 14" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "選擇顏色 13" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "選擇顏色 15" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "選擇顏色 12" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "選擇顏色 10" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "選擇顏色 11" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "選擇顏色 9" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "選擇顏色 7" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "選擇顏色 6" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "選擇顏色 5" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "選擇顏色 4" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "選擇顏色 3" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "選擇顏色 2" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "選擇顏色 1" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "Choose Color 0" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "Choose Color 8" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "內建佈景:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "調色盤:" #: src/tilda.ui:2622 msgid "Palette" msgstr "調色盤" #: src/tilda.ui:2641 msgid "Colors" msgstr "色彩" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "捲軸在:" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "限制回捲行數:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "取消選擇視為無限制回捲行數。" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "輸出時捲動" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "打字時捲動" #: src/tilda.ui:2759 msgid "0" msgstr "0" #: src/tilda.ui:2771 msgid "lines" msgstr "行" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "捲動" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "捲動方式" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "注意:以下的選項可能令某部分應用程式無法正常運作。它們只是在" "某些應用程式及作業系統需要不同的終端機運作方式時,提供暫時的解決方法。" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "後退鍵會產生(_B):" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "刪除鍵會產生(_D):" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "將有關相容性的選項重設為預設值(_R)" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "相容性" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "相容性" #: src/tilda.ui:3024 msgid "Keybindings" msgstr "按鍵對應" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "按鍵對應" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "無法將設定檔案同步至磁碟\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "無法關閉設定檔案\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "無法將設定檔寫至 %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "無法執行指令:`%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "無法開啟鎖定的目錄:%s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "建立目錄:'%s'\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "在使用者的設定目錄中發現 style.css,套用使用者樣式中。\n" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "正在將舊的設定檔搬移至 XDG 目錄\n" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "指定的設定檔 '%s' 不存在。改採用預設的路徑。\n" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "你選擇的「拉下終端機」快捷鍵無效。請選擇別的。" #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "關閉 Tilda" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "你選擇的「拉下終端機」快捷鍵無效。請選擇別的。" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "跟隨符號連結 %s 失敗:%s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "無法啟動預設的命令解釋器:%s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "無法啟動自訂指令:%s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "執行自訂的指令而不是執行命令解釋器" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "作為替代,啟動預設的命令解釋器\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "解析自訂指令失敗:%s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "無法啟動網頁瀏覽器。用到的指令是 `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "無標題" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "設定檔裡 \"d_set_title\" 的值不正確\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "設定檔裡有個錯的定位點\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "無法設定 Tilda 的圖示為:%s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "記憶體不足。無法建立分頁\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Tilda %d 設定值" #: src/wizard.c:561 #, fuzzy msgid "Invalid Cursor Type, resetting to default\n" msgstr "無效的游標類型,已重設為預設\n" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "無效的未取得焦點拉起行為,已忽略\n" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "無效的 Tab 順序,已忽略\n" #~ msgid "Allow Bold Text" #~ msgstr "允許粗體字" #~ msgid "" #~ "Search term not found, search again to continue the search at the " #~ "beginning." #~ msgstr "找不到搜尋詞,再次搜尋來繼續從起始位置搜尋。" #~ msgid "_Next" #~ msgstr "下一個 (_N)" #~ msgid "_Prev" #~ msgstr "上一個 (_P)" #~ msgid "_Match Case" #~ msgstr "比對大小寫 (_M)" #~ msgid "_Regex" #~ msgstr "使用正規表示式 (_R)" #~ msgid "Set the background color" #~ msgstr "設定背景顏色" #~ msgid "Run a command at startup" #~ msgstr "啟動時執行指令" #~ msgid "Set the font to the following string" #~ msgstr "將字型設定至以下字串" #~ msgid "Configuration file" #~ msgstr "設定檔" #~ msgid "Scrollback Lines" #~ msgstr "回捲行數" #~ msgid "Use Scrollbar" #~ msgstr "使用捲軸" #~ msgid "Print the version, then exit" #~ msgstr "列印版本號,然後離開" #~ msgid "Set Initial Working Directory" #~ msgstr "設定初始工作目錄" #~ msgid "Opaqueness: 0-100%" #~ msgstr "不透明度:0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "顯示設定精靈" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "解析命令列選項失敗。嘗試 \"tilda --help\"\n" #~ "來顯示所有可能的選項。\n" #~ "\n" #~ "錯誤訊息:%s\n" #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "解析用於 Glib 或 GTK 命令列選項失敗。嘗試 \"tilda --help-all\"\n" #~ "來顯示所有可能的選項。\n" #~ "\n" #~ "錯誤訊息:%s\n" #~ msgid "Error allocating memory for a new tilda_cli_options structure.\n" #~ msgstr "取得記憶體用於新的 tilda_cli_options 結構時發生錯誤。\n" #~ msgid "Tango" #~ msgstr "Tango" #~ msgid "Linux console" #~ msgstr "Linux console" #~ msgid "XTerm" #~ msgstr "XTerm" #~ msgid "Rxvt" #~ msgstr "Rxvt" #~ msgid "Enable Antialiasing" #~ msgstr "啟用抗鋸齒" #~ msgid "Use Image for Background" #~ msgstr "使用圖像做為背景" #~ msgid "Scroll Background" #~ msgstr "捲動背景" #~ msgid "Use Antialiased Fonts" #~ msgstr "使用抗鋸齒字型" #~ msgid "Set Background Image" #~ msgstr "設定背景圖片" #~ msgid "Enable Double Buffering" #~ msgstr "啟用雙緩衝" #~ msgid "Limit maximum length of tab title:" #~ msgstr "限制頁籤標題最大長度:" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "置頂\n" #~ "置底\n" #~ "左側\n" #~ "右側" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "不顯示\n" #~ "接在初始標題之後\n" #~ "接在初始標題之前\n" #~ "取代初始標題" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "保持終端機開啟\n" #~ "重新執行指令\n" #~ "離開終端機" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "自訂\n" #~ "黑底綠字\n" #~ "白底黑字\n" #~ "黑底白字" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "左側\n" #~ "右側\n" #~ "停用" #~ msgid " " #~ msgstr " " #~ msgid "Key Binding" #~ msgstr "按鍵組合" #~ msgid "Grab Keybinding" #~ msgstr "捕捉按鍵" #~ msgid "Pulldown Key" #~ msgstr "下拉按鍵" #~ msgid "Problem parsing config file\n" #~ msgstr "解析設定檔時發生問題\n" tilda-1.5.0/po/de.po0000644000175000017500000006131513617635041011115 00000000000000# German translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2013-07-13 11:12+0000\n" "Last-Translator: Christian Weber \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Neuer Tab" #: src/menu.ui:10 msgid "_Close Tab" msgstr "Tab s_chließen" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 #, fuzzy msgid "_Toggle Fullscreen" msgstr "Vollbild umschalten" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "Tilda Beenden" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "Neues Terminal öffnen" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "Neues Terminal öffnen und ausblenden" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "Oben" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "Unten" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "Links" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "Rechts" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Terminal beenden" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "Nicht angezeigt" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "Kommt nach Anfangstitel" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "Kommt vor Anfangstitel" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "Ersetzt Anfangstitel" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "Standard-Shell öffnen" #: src/tilda.ui:180 msgid "Restart the command" msgstr "Befehl erneut ausführen" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "Terminal beenden" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Benutzerdefiniert" #: src/tilda.ui:217 msgid "Green on Black" msgstr "Grün auf Schwarz" #: src/tilda.ui:220 msgid "Black on White" msgstr "Schwarz auf Weiß" #: src/tilda.ui:223 msgid "White on Black" msgstr "Weiß auf Schwarz" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "Links" #: src/tilda.ui:260 msgid "On the Right" msgstr "Rechts" #: src/tilda.ui:263 msgid "Disabled" msgstr "Deaktiviert" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "Escape-Sequenz" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "Strg-H" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda Konfiguration" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Tilda versteckt starten" #: src/tilda.ui:409 msgid "Always on top" msgstr "Im Vordergrund" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Auf allen Arbeitsbereichen anzeigen" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Nicht in der Taskleiste anzeigen" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Notitzbuchrand anzeigen" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 #, fuzzy msgid "Start in fullscreen" msgstr "Vollbild umschalten" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Fenster-Anzeige" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "blinkender Cursor" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Akkustische Terminalglocke" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminal-Anzeige" #: src/tilda.ui:703 msgid "Font:" msgstr "Schriftart:" #: src/tilda.ui:733 msgid "Font" msgstr "Schriftart" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Ausblenden, wenn Maus Tilda verlässt" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Ausblendeverzögerung" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Ausblenden, wenn Tilda Fokus verliert" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Automatisches Ausblenden" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "Wenn letztes Terminal geschlossen wurde:" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Im Vordergrund" #: src/tilda.ui:918 msgid "Program Exit" msgstr "Beenden" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" "Hinweis: Manche Optionen erfordern einen Neustart von tilda." "" #: src/tilda.ui:953 msgid "General" msgstr "Allgemein" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "Wortzeichen" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Wörter auswählen" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "Webbrowser *:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "URL-Handhabung" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Anfangsüberschrift:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamische Überschrift:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Titel" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Führe benutzerdefinierten Befehl anstelle der Shell aus" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Benutzerdefinierter Befehl:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Wenn Befehl endet:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Befehl" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" "* Ein gültiger Befehl, der einen Browser öffnen kann, muss hier eingesetzt " "werden. Spezifische Befehle wie 'firefox' und 'google-chrome' oder die " "allgemeinen Befehle 'x-www-browser' und 'xdg-open' sind möglich. Der beste " "Befehl kann je nach System unterschiedlich sein." #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "Tilda Beenden" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Titel und Befehl" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Prozentanteil" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "In Pixel" #: src/tilda.ui:1561 msgid "Height" msgstr "Höhe" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "Monitor auswählen" #: src/tilda.ui:1739 msgid "Width" msgstr "Breite" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Horizontal zentriert" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y Position" #: src/tilda.ui:1827 msgid "X Position" msgstr "X Position" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Vertikal zentriert" #: src/tilda.ui:1865 msgid "Position" msgstr "Position" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Position der Tabs:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Tab hinzufügen" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Verzögerte Animation (µsec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Animationsorientierung" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Pulldown animieren" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Transparenzstufe" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Transparenz aktivieren" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extras" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Darstellung" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "blinkender Cursor" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Textfarbe" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Hintergrundfarbe" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Eingebaute Schemata" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Vordergrund- und Hintergrundfarbe" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "Hinweis: Textbasierte Anwendungen können diese Farben " "nutzen." #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "Eingebaute Schemata:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Farbpalette:" #: src/tilda.ui:2622 msgid "Palette" msgstr "Palette" #: src/tilda.ui:2641 msgid "Colors" msgstr "Farben" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Scrollbalken ist:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Gespeicherte Zeilen:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Ausgabe scrollen" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Bei Tastendruck scrollen" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "Zeilen" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Scrollen" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Scrollen" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Hinweis: Diese Einstellungen können zur Folge haben, dass " "sich einige Anwendungen nicht mehr korrekt verhalten. Sie stehen nur zur " "Verfügung, damit problematische Anwendungen oder Betriebssysteme reibungslos " "funktionieren, die ein anderes Terminal-Verhalten erwarten." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "_Rücktaste erzeugt:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "_Entfernen-Taste erzeugt:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "Kompatibilitätseinstellungen auf Vorgabewerte _zurücksetzen" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Kompatibilität" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatibilität" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Tastenbelegungen" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Tastenbelegungen" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Konnte die Konfigurationsdatei nicht speichern\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Kann die Konfigurationsdatei nicht schließen\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Kann die Konfigurationsdatei nicht nach %s schreiben\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Kann Befehl nicht ausführen: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Kann Lock-Verzeichnis nicht öffnen: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "Erstelle Verzeichnis: '%s'\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" "style.css in Nutzer Config-Verzeichnis gefunden, nutze Nutzer css style.\n" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "Verschiebe altes Konfigurationsverzeichnis in XDG-Verzeichnisse\n" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "Das von Ihnen gewählte Tastenkürzel für \"Terminal Einblenden\" ist " "ungültig. Bitte wählen Sie ein Anderes." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "Tilda Beenden" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "Tastenkürzel eingeben" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "Das von Ihnen gewählte Tastenkürzel für \"Einfügen\" ist ungültig. Bitte " "wählen Sie ein Anderes." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Problem beim Lesen eines benutzerdefinierten Befehls: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Konnte die Standard-Shell nicht öffnen: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Konnte benutzerdefinierten Befehl nicht ausführen: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Führe benutzerdefinierten Befehl anstelle der Shell aus" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Öffne stattdessen die Standard-Shell\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Problem beim Lesen eines benutzerdefinierten Befehls: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Konnte Webbrowser nicht starten. Der Befehl lautete `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Unbenannt" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Ungültiger Wert für \"d_set_title\" in der Konfigurationsdatei\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Die Konfigurationsdatei enthält eine falsche tab_pos\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Kann Tildas Symbol nicht festlegen: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Kein Speicher vorhanden, Tab kann nicht erstellt werden\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Tilda %d Konfiguration" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Ungültige Einstellung der Tab-Position. Ignoriere.\n" #~ msgid "Allow Bold Text" #~ msgstr "Fetten Text erlauben" #~ msgid "Set the background color" #~ msgstr "Hintergrundfarbe auswählen" #~ msgid "Run a command at startup" #~ msgstr "Befehl beim Starten ausführen" #~ msgid "Set the font to the following string" #~ msgstr "Setze die Schriftart auf folgenden String" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Konfigurationsassistenten starten" #~ msgid "Scrollback Lines" #~ msgstr "Zurückscrollbare Zeilen" #~ msgid "Use Scrollbar" #~ msgstr "Scrollbalken benutzen" #~ msgid "Print the version, then exit" #~ msgstr "Version ausgeben, danach beenden" #~ msgid "Set Initial Working Directory" #~ msgstr "Startverzeichnis setzen" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Transparenz: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Konfigurationsassistenten starten" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Fehler beim Lesen der Kommandozeilen-Optionen. Versuche \"tilda --help\"\n" #~ "um alle möglichen Optionen zu sehen.\n" #~ "\n" #~ "Fehlermeldung: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Fehler beim Lesen der Kommandozeilen-Optionen. Versuche \"tilda --help\"\n" #~ "um alle möglichen Optionen zu sehen.\n" #~ "\n" #~ "Fehlermeldung: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Antialiasing aktivieren" #~ msgid "Use Image for Background" #~ msgstr "Hintergrundbild verwenden" #~ msgid "Scroll Background" #~ msgstr "Hintergrund scrollen" #~ msgid "Use Antialiased Fonts" #~ msgstr "Zeichensatz mit Antialiasing verwenden" #~ msgid "Set Background Image" #~ msgstr "Hintergrundbild festlegen" #~ msgid "Enable Double Buffering" #~ msgstr "Double Buffering aktivieren" #~ msgid " " #~ msgstr " " #~ msgid "Paste" #~ msgstr "Einfügen" #~ msgid "Go To Next Tab" #~ msgstr "Nächster Tab" #~ msgid "Quit" #~ msgstr "Beenden" #~ msgid "Go To Tab 10" #~ msgstr "Gehe zu Tab 10" #~ msgid "Go To Tab 5" #~ msgstr "Gehe zu Tab 5" #~ msgid "Go To Tab 4" #~ msgstr "Gehe zu Tab 4" #~ msgid "Go To Tab 3" #~ msgstr "Gehe zu Tab 3" #~ msgid "Go To Tab 2" #~ msgstr "Gehe zu Tab 2" #~ msgid "Go To Tab 1" #~ msgstr "Gehe zu Tab 1" #~ msgid "Go To Previous Tab" #~ msgstr "Vorheriger Tab" #~ msgid "Close Tab" #~ msgstr "Tab schließen" #~ msgid "Copy" #~ msgstr "Kopieren" #~ msgid "Pull Down Terminal" #~ msgstr "Terminal Einblenden" #~ msgid "Go To Tab 6" #~ msgstr "Gehe zu Tab 6" #~ msgid "Go To Tab 7" #~ msgstr "Gehe zu Tab 7" #~ msgid "Go To Tab 8" #~ msgstr "Gehe zu Tab 8" #~ msgid "Go To Tab 9" #~ msgstr "Gehe zu Tab 9" #~ msgid "Move Tab Left" #~ msgstr "Bewege Tab nach links" #~ msgid "Move Tab Right" #~ msgstr "Bewege Tab nach rechts" #~ msgid "Problem when opening config file\n" #~ msgstr "Problem beim Öffnen der Konfigurationsdatei\n" #~ msgid "An unexpected error occured while parsing the config file\n" #~ msgstr "" #~ "Ein unerwarteter Fehler ist beim Lesen der Konfigurationsdatei " #~ "aufgetreten\n" #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Tab hinzufügen\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Tab schließen\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Nächster Tab\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Vorheriger Tab\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Bewege Tab nach links\" ist " #~ "ungültig. Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Bewege Tab nach rechts\" ist " #~ "ungültig. Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Kopieren\" ist ungültig. Bitte " #~ "wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Beenden\" ist ungültig. Bitte " #~ "wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 1\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 2\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 3\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 4\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 5\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 6\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 7\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 8\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 9\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Gehe zu Tab 10\" ist ungültig. " #~ "Bitte wählen Sie ein Anderes." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Das von Ihnen gewählte Tastenkürzel für \"Einfügen\" ist ungültig. Bitte " #~ "wählen Sie ein Anderes." #~ msgid "Problem while parsing config file\n" #~ msgstr "Problem beim Lesen der Konfigurationsdatei\n" tilda-1.5.0/po/zh_CN.gmo0000644000175000017500000003135713617635041011675 00000000000000   ' '5HWg{    P ]q   +6(U~+ (>Rap *9 H Uap w    #=Th 7GCKd~   *./'^  )& C O\p! # #7)=g{  )9I^etF DTB  $#3"Wz'&":CUdx  2 ! , 2 I R Y f (l     G"E#G# [#i# z# ## ### ## $$*$A$R$ f$t$ $$Z$\%_% .&8&?&F& _&l& &&&$&&& '-' >' K'X' _'l' |' ''''''''((#(2(A(P(_(n(}( ( ( (( ( (( ( () )!)4);)Z)p)) )) ) ))/)* **L4**** * * *** + +++(:+(c++ + +++ ++6, =,J,c,j,q,,%, ,,!,,-2-E-'L-t----- --'-.&.E.[.w.~..B... />/H[// //////!0:0!Y0{0"0%000'1 61@1Y1m11 11 1 101 2232 D2O2k2 |2 2 2%2222c+. L'bTFDy6 7G_23450189:<=>?,Z!He `;kKPr*z)hlW-naf]CNjAYE"sS#O{~[ i\XgVu%t(Rm@Uo|qwxBQM dJp&}I^/$v* A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system.0Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightKeybindingsPalettePositionProgram ExitScrollingSelect by WordSelect monitorTabsTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Some options require that tilda is restarted.Note: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.ASCII DELActionAlways on topAlways prompt on exitAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAre you sure you want to Quit?Are you sure you want to close this tab?Audible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Black on WhiteBlock CursorBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyChoose Color 0Choose Color 1Choose Color 10Choose Color 11Choose Color 12Choose Color 13Choose Color 14Choose Color 15Choose Color 2Choose Color 3Choose Color 4Choose Color 5Choose Color 6Choose Color 7Choose Color 8Choose Color 9Close ActionClose TildaColor palette:ColorsCompatibilityControl-HCreating directory:'%s' Cursor BlinksCursor ColorCursor Shape: CustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellDynamically-set Title:Enable TransparencyEnter keyboard shortcutEscape sequenceExit the terminalExpand TabsFailed to launch the web browser. The command was `%s' Focus TerminalFont:Found style.css in the user config directory, applying user css style. GeneralGoes after initial titleGoes before initial titleGreen on BlackHiddenHide TerminalHide Tilda when mouse leaves itHide when Tilda loses focusIBeam CursorIn PixelsInitial Title:Invalid Cursor Type, resetting to default Invalid non-focus pull up behaviour, ignoring Invalid tab position setting, ignoring Isn't displayedKeybindingsLaunching default shell instead LeftLevel of TransparencyLimit scrollback to:Migrating old config path to XDG folders Monitor:Non-focus Pull Up Behaviour:On the LeftOn the RightOpen a new terminalOpen a new terminal and hideOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Problem reading link %s: %s Replace initial titleRestart the commandRightRun a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingSet as Desktop windowShortcutShow Notebook BorderShow confirmation dialog when closing tabShow first n chars of titleShow last n chars of titleShow single TabShow whole tab titleSnazzySolarized DarkSolarized LightSpecified config file '%s' does not exist. Reverting to default path. Start Tilda hiddenStart in fullscreenText ColorThe keybinding you chose for "%s" is invalid. Please choose another.The keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle Behaviour:Title Max Length:Title and CommandTopUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s Underline CursorUnselect for unlimited scrollback.UntitledUse a login shellWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionYou have a bad tab_pos in your configuration file Zenburn_Backspace key generates:_Close Tab_Copy_Delete key generates:_New Tab_Paste_Preferences_Quit_Reset Compatibility Options to Defaults_Toggle Fullscreen_Toggle SearchbarlinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2018-03-19 12:53+0800 Last-Translator: Boyuan Yang <073plan@gmail.com> Language-Team: Chinese (China) Language: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Poedit 2.0.6 * 必须在这里输入一个可打开浏览器的有效命令。可以使用特定浏览器的名称,如“firefox”或“google-chrome”,也可以使用通用命令,如“x-www-browser”或“xdg-open”。最佳命令和具体系统相关。0自动隐藏命令兼容性额外字体前景和背景颜色高度键绑定调色板位置程序退出滚动按文字选择选择监视器标签页终端显示标题URL处理宽度窗口显示注意:某些选项修改后需重启 tilda 才能生效。注意:终端应用程序选择的颜色可能有所不同。注意:这些选项可能造成一些应用程序产生不正确的行为。仅用于允许您在一些应用程序和操作系统中作调整以获得不同的终端行为。ASCII DEL动作置顶总是在退出时提示下拉动画动画延迟(微秒)动画方向外观您确认要退出吗?您确认要关闭此标签页吗?可闻的终端响铃自动隐藏延迟:背景颜色配置文件中“d_set_title”的值有误 白底黑字块状光标底部内置方案内置方案:水平居中垂直居中选择颜色 0选择颜色 1选择颜色 10选择颜色 11选择颜色 12选择颜色 13选择颜色 14选择颜色 15选择颜色 2选择颜色 3选择颜色 4选择颜色 5选择颜色 6选择颜色 7选择颜色 8选择颜色 9关闭行为关闭 Tilda调色板:颜色兼容性Control-H正在创建目录:“%s” 光标闪烁光标颜色光标形状:自定义自定义命令:禁用在所有工作空间上显示不在任务栏显示回退到默认 shell动态设置标题:启用透明输入键盘快捷键转义序列退出终端展开标签页无法运行 web 浏览器。命令是“%s” 终端获得焦点字体:在用户配置目录中找到了 style.css,将应用用户 css 风格。 常规在原始标题之后在原始标题之前黑底绿字隐藏的隐藏终端鼠标离开 Tilda 时隐藏Tilda 失去焦点时隐藏IBeam 光标按像素计原始标题 :无效的光标类型,重置为默认 无效的非焦点拉起行为,忽略 无效标签页位置,忽略 未显示键绑定运行默认shell作为替代 左侧透明度限制回滚数量:正在将旧的配置路径迁移至 XDG 文件夹中 监视器:非焦点拉起行为:左侧右侧打开新终端打开新终端并隐藏内存不够,无法创建标签页 百分比标签页位置:解析自定义命令错误:%s 读取链接 %s 时出错:%s 替代原始标题重新启动命令右侧运行一个自定义命令而非 shell击键时滚动输出时滚动滚动条位于:滚动设置为桌面窗口快捷键显示窗口边框关闭标签页时显示确认对话框显示标题最前 n 个字符显示标题最后 n 个字符显示单个标签页显示整个标签页标题Snazzy深色的 Solarized浅色的 Solarized指定的配置文件“%s”不存在。回退到默认路径。 Tilda 启动后隐藏启动时全屏文字颜色您为“%s”所选择的键绑定无效。请重新选择。您为“拉下终端”所选择的键绑定无效。请重新选择。Tilda %d 配置Tilda 配置标题行为:标题最大长度:标题和命令顶部无法关闭配置文件 无法执行自定义命令:%s 无法启动默认 shell:%s 无法打开锁定的目录:%s 无法执行命令:`%s' 无法设置 tilda 的图标:%s 无法同步磁盘上的配置文件 无法将配置文件写入%s 下划线光标取消选择以设置为无限回滚。未命名使用一个登录 shell网页浏览器*:在命令退出时:最后一个终端关闭时:黑底白字文字字符范围:X轴位置Y轴位置您的配置文件中指定了错误的 tab_pos Zenburn按 Backspace 键产生(_B):关闭标签(_C)复制(_C)按 Delete 键产生(_D):新建标签(_N)粘贴(_P)首选项(_P)退出(_Q)重置兼容性选项为默认值(_R)切换全屏(_T)切换搜索栏(_T)行tilda-1.5.0/po/sl.gmo0000644000175000017500000000345213617635041011305 00000000000000%`a p ~      %?Vj r|    r q}   % +$9^~ "     CommandExtrasFontHeightTerminal DisplayTitleWidthWindow DisplayAlways on topAnimation Delay (usec)AppearanceColorsCompatibilityDisplay on all workspacesDo not show in taskbarEnable TransparencyGeneralIn PixelsInitial Title:Level of TransparencyPercentageScrollingTitle and CommandUnable to set tilda's icon: %s X PositionY PositionProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2007-07-11 00:16+0000 Last-Translator: Nejc Lotrič Language-Team: Slovenian Language: sl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) UkazDodatkiPisavaVišinaPrikaz v TerminaluNaslovŠirinaOkenski prikazVedno na vrhuZakasnitev Animacij (usec)VidezBarveZdružljivostPrikaži na vseh delovnih površinahNe prikaži v opravilni vrsticiVključi ProsojnostSplošnoV PikslihPrvotni Naslov:Nivo ProzornostiOdstotekPremikanje zaslonaNaslov in UkazNi moč nastaviti ikone tilde: %s Pozicija XPozicija Ytilda-1.5.0/po/tr.gmo0000644000175000017500000000067313617635041011316 00000000000000$,89Project-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2007-05-22 18:11+0000 Last-Translator: Alperen Yusuf Aybar Language-Team: Turkish Language: tr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) tilda-1.5.0/po/sk.gmo0000644000175000017500000000563613617635041011312 00000000000000*l;     " 8FXo  + 3= LX!n    '?&g  { / >L[n     4 E K !Y {      . M f }    * $ 8 0W ')%$  ! # *"( & CommandExtrasFontHeightPositionTerminal DisplayTitleWidthWindow DisplayAlways on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceCentered HorizontallyCentered VerticallyColorsCompatibilityDisplay on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyGeneralIn PixelsInitial Title:KeybindingsLevel of TransparencyOut of memory, cannot create tab PercentageScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenTitle and CommandUnable to close the config file Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s X PositionY PositionProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2007-11-22 22:15+0000 Last-Translator: Matej Duman Language-Team: Slovak Language: sk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) PríkazDoplnkyPísmoVýškaUmiestnenieZobrazenie termináluTitulokŠírkaZobrazenie oknaVždy navrchuAnimované vysunutieDĺžka animácie (mikrosekundy)Začiatok animácieVzhľadZarovnať vodorovneZarovnať zvisloFarbyKompatibilitaZobraziť na všetkých plocháchNezobrazovať v paneli úlohDynamický titulok:Povoliť priehľadnosťVšeobecnéV pixelochPočiatočný titulok:Klávesové skratkyÚroveň priehľadnostiNedostatok pamäte, nemôžem vytvoriť kartu Percentuálne vyjadreniePosúvať pri výstupePosúvač je:PosúvanieZobraziť rámSpustiť Tildu skrytúTitulok a príkazNemôžem zatvoriť konfiguračný súbor Nemôžem nastaviť ikonu tildy: %s Nemôžem synchronizovať konfiguračný súbor na disk Nemôžem zapísať konfiguračný súbor do %s Pozícia XPozícia Ytilda-1.5.0/po/sk.po0000644000175000017500000004057513617635041011147 00000000000000# Slovak translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2007-11-22 22:15+0000\n" "Last-Translator: Matej Duman \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 #, fuzzy msgid "_Close Tab" msgstr "Príkaz" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Počiatočný titulok:" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Spustiť Tildu skrytú" #: src/tilda.ui:409 msgid "Always on top" msgstr "Vždy navrchu" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Zobraziť na všetkých plochách" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Nezobrazovať v paneli úloh" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Zobraziť rám" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Zobrazenie okna" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Zobrazenie terminálu" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "Písmo" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Titulok" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Vždy navrchu" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Umiestnenie" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Všeobecné" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Počiatočný titulok:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamický titulok:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Titulok" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Príkaz" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Titulok a príkaz" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Percentuálne vyjadrenie" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "V pixeloch" #: src/tilda.ui:1561 msgid "Height" msgstr "Výška" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Titulok" #: src/tilda.ui:1739 msgid "Width" msgstr "Šírka" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Zarovnať vodorovne" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Pozícia Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Pozícia X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Zarovnať zvislo" #: src/tilda.ui:1865 msgid "Position" msgstr "Umiestnenie" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Titulok" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Dĺžka animácie (mikrosekundy)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Začiatok animácie" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animované vysunutie" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Úroveň priehľadnosti" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Povoliť priehľadnosť" #: src/tilda.ui:2129 msgid "Extras" msgstr "Doplnky" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Vzhľad" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Titulok" #: src/tilda.ui:2641 msgid "Colors" msgstr "Farby" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Posúvač je:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "História" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Posúvať pri výstupe" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Posúvanie" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatibilita" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Klávesové skratky" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Klávesové skratky" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Nemôžem synchronizovať konfiguračný súbor na disk\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Nemôžem zatvoriť konfiguračný súbor\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Nemôžem zapísať konfiguračný súbor do %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Nemôžem nastaviť ikonu tildy: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Nedostatok pamäte, nemôžem vytvoriť kartu\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #~ msgid "Set the background color" #~ msgstr "Nastaviť farbu pozadia" #~ msgid "Run a command at startup" #~ msgstr "Spustiť pri štarte príkaz" #~ msgid "Set the font to the following string" #~ msgstr "Nastaviť písmo pre nasledujúci reťazec" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Zobraziť sprievodcu konfiguráciou" #~ msgid "Scrollback Lines" #~ msgstr "História riadkov" #~ msgid "Use Scrollbar" #~ msgstr "Použiť posúvač" #~ msgid "Print the version, then exit" #~ msgstr "Napísať číslo verzie a potom skončiť" #~ msgid "Set Initial Working Directory" #~ msgstr "Nastaviť počiatočný pracovný priečinok" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Priehľadnosť: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Zobraziť sprievodcu konfiguráciou" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Chyba pri skúmaní možnosti príkazového riadku. Skúste \"tilda --help\"\n" #~ "pre zobrazenie všetkých možností.\n" #~ "\n" #~ "Chybové hlásenie: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Chyba pri skúmaní možnosti príkazového riadku. Skúste \"tilda --help\"\n" #~ "pre zobrazenie všetkých možností.\n" #~ "\n" #~ "Chybové hlásenie: %s\n" #~ msgid "Use Image for Background" #~ msgstr "Použiť obrázok ako pozadie" #~ msgid "Scroll Background" #~ msgstr "Posúvať pozadie" #~ msgid "Use Antialiased Fonts" #~ msgstr "Použiť vyhladzovanie písma" #~ msgid "Set Background Image" #~ msgstr "Nastaviť obrázok pozadia" #~ msgid "Enable Double Buffering" #~ msgstr "Povoliť dvojitý buffering" #, fuzzy #~ msgid "Paste" #~ msgstr "Titulok" #, fuzzy #~ msgid "Quit" #~ msgstr "Titulok" #, fuzzy #~ msgid "Copy" #~ msgstr "Písmo" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Zobrazenie terminálu" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Príkaz" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Výška" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Nemôžem zatvoriť konfiguračný súbor\n" #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Nemôžem zatvoriť konfiguračný súbor\n" #~ msgid "Grab Keybinding" #~ msgstr "Zachytiť klávesovú skratku" tilda-1.5.0/po/tilda.pot0000644000175000017500000003126513617635040012006 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Ira W. Snyder # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: tilda 1.5.0\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 msgid "_Close Tab" msgstr "" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "" #: src/tilda.ui:409 msgid "Always on top" msgstr "" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 msgid "Always prompt on exit" msgstr "" #: src/tilda.ui:918 msgid "Program Exit" msgstr "" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "" #: src/tilda.ui:1561 msgid "Height" msgstr "" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "" #: src/tilda.ui:1739 msgid "Width" msgstr "" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "" #: src/tilda.ui:1793 msgid "Y Position" msgstr "" #: src/tilda.ui:1827 msgid "X Position" msgstr "" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "" #: src/tilda.ui:1865 msgid "Position" msgstr "" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 msgid "Tabs" msgstr "" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "" #: src/tilda.ui:2129 msgid "Extras" msgstr "" #: src/tilda.ui:2148 msgid "Appearance" msgstr "" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 msgid "Palette" msgstr "" #: src/tilda.ui:2641 msgid "Colors" msgstr "" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "" #: src/tilda.ui:3024 msgid "Keybindings" msgstr "" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" tilda-1.5.0/po/cs.po0000644000175000017500000005512713617635041011136 00000000000000# Czech translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-02-14 07:57+0000\n" "Last-Translator: Vojtěch Trefný \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nová karta" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Zavřít kartu" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Zavřít kartu" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Terminálové pípání" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Výchozí titulek" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Nemohu spustit výchozí shell: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "ASCII DEL\n" "Escape sekvenci\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Konfigurace" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Spustit Tildu skrytou" #: src/tilda.ui:409 msgid "Always on top" msgstr "Vždy navrchu" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Zobrazovat na všech plochách" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Nezobrazovat na panelu úloh" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Zobrazovat rámeček" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Zobrazení okna" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Kurzor bliká" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Terminálové pípání" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Zobrazení Terminálu" #: src/tilda.ui:703 msgid "Font:" msgstr "Písmo:" #: src/tilda.ui:733 msgid "Font" msgstr "Písmo" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Titulek" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Vždy navrchu" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Umístění" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Obecné" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Webový prohlížeč" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Výchozí titulek" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamický titulek" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Titulek" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Místo shellu spustit vlastní příkaz" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Vlastní příkaz" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Když příkaz skončí" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Příkaz" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Zavřít kartu" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Titulek a příkaz" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Procenta" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "V pixelech" #: src/tilda.ui:1561 msgid "Height" msgstr "Výška" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Titulek" #: src/tilda.ui:1739 msgid "Width" msgstr "Šířka" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Vycentrováno vodorovně" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Pozice Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Pozice X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Vycentrováno svisle" #: src/tilda.ui:1865 msgid "Position" msgstr "Umístění" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Pozice panelů" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Titulek" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Délka animace (mikrosekundy)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Směr animace" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animované vysouvání" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Úroveň průhlednosti" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Povolit průhlednost" #: src/tilda.ui:2129 msgid "Extras" msgstr "Doplňky" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Vzhled" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Kurzor bliká" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Barva textu" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Barva pozadí" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Vestavěná témata" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Barva pozadí a popředí" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Vestavěná témata" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Titulek" #: src/tilda.ui:2641 msgid "Colors" msgstr "Barvy" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Posuvník je:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Odskrolováno:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Posouvat při výstupu" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Posouvat stiskem klávesy" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "řádky" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Posun" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Posouvání" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Poznámka: Tyto volby mohou způsobit, že některé aplikace " "nebudou fungovat správně. Jsou tu pouze proto, abyste mohli obejít to, že " "některé aplikace a operační systémy očekávají jiné chování terminálu." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "Klávesa _Backspace generuje:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "Klávesa _Delete generuje:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "Obnovit standardní nastavení pro _kompatibilitu" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Kompatibilita" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatibilita" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Klávesové zkratky" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Klávesové zkratky" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Nemohu synchronizovat konfigurační soubor na disk\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Nemohu zavřít konfigurační soubor\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Nemohu zapsat konfigurační soubor do %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Nemohu spustit příkaz: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Nemohu otevřít adresář: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Zavřít kartu" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Nemohu spustit výchozí shell: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Nemohu spustit příkaz: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Místo shellu spustit vlastní příkaz" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Spouštím výchozí shell.\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Selhalo spuštění internetového prohlížeče. Příkaz byl `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Bez názvu" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Špatná hodnota \"d_set_title\" v konfiguračním souboru.\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Špatná hodnota tab_pos v konfiguračním souboru.\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Nemohu nastavit ikonu tildy: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Nedostatek paměti, nemohu vytvořit panel\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Konfigurace" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Neplatné nastavení pozice panelu. Ignoruji.\n" #~ msgid "Allow Bold Text" #~ msgstr "Povolit tučný text" #~ msgid "Set the background color" #~ msgstr "Nastavit barvu pozadí" #~ msgid "Run a command at startup" #~ msgstr "Spouštět příkaz při spuštění" #~ msgid "Set the font to the following string" #~ msgstr "Nastavit písmo na následující řetězec" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Zobrazit konfiguračního průvodce" #~ msgid "Scrollback Lines" #~ msgstr "Odskrolovaných řádků" #~ msgid "Use Scrollbar" #~ msgstr "Použít posuvník" #~ msgid "Print the version, then exit" #~ msgstr "Vypsat verzi, poté ukončit" #~ msgid "Set Initial Working Directory" #~ msgstr "Nastavit počáteční pracovní adresář" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Průhlednost: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Zobrazit konfiguračního průvodce" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Chyba při zpracování volby příkazového řádku. Zkuste \"tilda --help\"\n" #~ "pro zobrazení všech možností.\n" #~ "\n" #~ "Chybová zpráva: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Chyba při zpracování volby příkazového řádku. Zkuste \"tilda --help\"\n" #~ "pro zobrazení všech možností.\n" #~ "\n" #~ "Chybová zpráva: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Povolit vyhlazování" #~ msgid "Use Image for Background" #~ msgstr "Obrázek na pozadí" #~ msgid "Scroll Background" #~ msgstr "Posouvat pozadí" #~ msgid "Use Antialiased Fonts" #~ msgstr "Použít vyhlazování písma" #~ msgid "Set Background Image" #~ msgstr "Nastavit obrázek pozadí" #~ msgid "Enable Double Buffering" #~ msgstr "Povolit Double Buffering" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Titulek" #, fuzzy #~ msgid "Quit" #~ msgstr "Titulek" #, fuzzy #~ msgid "Close Tab" #~ msgstr "_Zavřít kartu" #, fuzzy #~ msgid "Copy" #~ msgstr "Písmo" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Rolovací klávesa" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "_Zavřít kartu" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Výška" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Nemohu zavřít konfigurační soubor\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "Vámi zvolená klávesová zkratka je neplatná. Prosím zvolte jinou." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Nemohu zavřít konfigurační soubor\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Nahoře\n" #~ "Dole\n" #~ "Vlevo\n" #~ "Vpravo" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Není zobrazeno\n" #~ "Následuje za výchozím titulkem.\n" #~ "Předchází výchozí titulek\n" #~ "Nahrazuje výchozí titulek" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Nechat terminál otevřený\n" #~ "Zopakovat příkaz\n" #~ "Opustit terminál" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Vlastní\n" #~ "Zelené na černém\n" #~ "Černé na bílém\n" #~ "Bílé na černém" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "Nalevo\n" #~ "Napravo\n" #~ "Zakázaný" #~ msgid "Key Binding" #~ msgstr "Klávesová zkratka" #~ msgid "Grab Keybinding" #~ msgstr "Zabrat klávesové zkratky" tilda-1.5.0/po/quot.sed0000644000175000017500000000023113047677711011647 00000000000000s/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g tilda-1.5.0/po/Makefile.in.in0000644000175000017500000003744213047677711012652 00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.18 GETTEXT_MACRO_VERSION = 0.18 PACKAGE = @PACKAGE@ VERSION = @VERSION@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ GMSGFMT_ = @GMSGFMT@ GMSGFMT_no = @GMSGFMT@ GMSGFMT_yes = @GMSGFMT_015@ GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) MSGFMT_ = @MSGFMT@ MSGFMT_no = @MSGFMT@ MSGFMT_yes = @MSGFMT_015@ MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) XGETTEXT_ = @XGETTEXT@ XGETTEXT_no = @XGETTEXT@ XGETTEXT_yes = @XGETTEXT_015@ XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: check-macro-version all-@USE_NLS@ all-yes: stamp-po all-no: # Ensure that the gettext macros and this Makefile.in.in are in sync. check-macro-version: @test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ exit 1; \ } # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. # In this case, stamp-po is a nop (i.e. a phony target). # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot test ! -f $(srcdir)/$(DOMAIN).pot || \ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ echo timestamp > stamp-poT && \ mv stamp-poT stamp-po; \ } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed if LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \ package_gnu='GNU '; \ else \ package_gnu=''; \ fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ *) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --package-name="$${package_gnu}@PACKAGE@" \ --package-version='@VERSION@' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) \ && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \ esac; \ }; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ dists="$$dists $(DOMAIN).pot stamp-po"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir) || exit 1; \ else \ cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ esac; \ }; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: # Recreate Makefile by invoking config.status. Explicitly invoke the shell, # because execution permission bits may not work on the current file system. # Use @SHELL@, which is the shell determined by autoconf for the use by its # scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && @SHELL@ ./config.status $(subdir)/$@.in po-directories force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tilda-1.5.0/po/hu.gmo0000644000175000017500000001401413617635041011277 00000000000000L|epq  '  + ?Lb JXj +  0 7 E S c }   7     ' F R s !  # )  * ; I S h {  $ # " 2 O 'o &   2 $ > I ` (i   (?N#c 8, es   3!:Qjr""3Q `lu;.1  R ]j&    7DW#h>52(4,]8#   -$.R+ ?2+/>9- !F(L  $H; ".D'G=6@*IK #B481:37C5)< ,&AJ%E0?CommandCompatibilityExtrasFontForeground and Background ColorsHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-03-05 00:28+0000 Last-Translator: Pittmann Tamás Language-Team: Hungarian Language: hu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) ParancsKompatibilitásExtrákBetűkészletElőtér és háttérszínekMagasságElhelyezésGörgetésTerminál beállításokCímURL kezelésSzélességAblak beállításokMegjegyzés: Ezek az opciók néhány program helytelen működését eredményezhetik. Csak azért vannak itt, hogy biztosítsák a terminál bizonyos programokkal és operációs rendszerekkel való együttműködését, amelyek más igényeket támasztanak a terminállal szemben.Mindig felülAnimált lenyitásAnimáció késleltetése (usec)Animáció irányaMegjelenésHangos terminál csengőHáttérszínHibás érték a konfigfájlban itt: "d_set_title" Beépített színsémákVizszintesen középreFüggőlegesen középreSzínekKompatibilitásVillogó kurzorSaját parancs:Minden munkaterületen megjelenjenNe jelenjen meg a feladatlistábanDinamikus ablakcím:Átlátszóság engedélyezéseNem tudtam elindítani a böngészőt, parancs: %s Betűkészlet:ÁltalánosKéppontAblakcím induláskor:Érvénytelen fülpozíció, figyelmen kívül lesz hagyva GyorsbillentyűHelyette indítom az alapértelmezett héjat. Átlátszóság szintje:Elfogyott a memória. a fül nem hozható létre SzázalékFülek helyeParancs értelmezési hiba: %s Héj helyett saját parancs futtatásaGörgetés billentyű leütésreGörgetés kiíráskorGörgetősáv helye:GörgetésKeret megjelenítéseTilda indítása rejtveSzövegszínTilda BeállításCím és parancsNem tudom bezárni a konfigfájlt. Nem tudom elindítani a megadott felhasználói parancsot: %s Nem tudom elindítani az alapértelmezett héjat: %s Nem tudom megnyitni a zárolási könyvtárat :%s A '%s' parancs futtatása nem sikerült Nem tudom a tilda ikonját beállítani: %s Nem tudom elvégezni a konfigfájl szinkronizálását. Nem tudom írni a konfigfájlt: %s NévtelenParancs befejeződésekor:X pozícióY pozícióA konfigfájlban hibás a fülek pozíciója A _Backspace billentyű által küldött kód:Fül _bezárásaA _Delete billentyű által küldött kód:Új _fül_Kompatibilitási beállítások alapértelmezettre állításasortilda-1.5.0/po/sv.po0000644000175000017500000004034613617635041011156 00000000000000# Swedish translation for tilda. # Copyright (C) 2007 Free Software Foundation, Inc. # This file is distributed under the same license as the tilda package. # Daniel Nylander , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2007-05-14 18:18+0000\n" "Last-Translator: Umut \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 #, fuzzy msgid "_Close Tab" msgstr "Kommando" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Initial titel:" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Starta Tilda dold" #: src/tilda.ui:409 msgid "Always on top" msgstr "Alltid överst" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Visa på alla arbetsytor" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Visa inte i aktivitetsfält" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Visa ram" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Fönstervisning" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminalvisning" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "Typsnitt" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Titel" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Alltid överst" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Position" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Allmänt" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Initial titel:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamiskt inställd titel:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Titel" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Kommando" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Titel och kommando" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Procentandel" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "I bildpunkter" #: src/tilda.ui:1561 msgid "Height" msgstr "Höjd" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Titel" #: src/tilda.ui:1739 msgid "Width" msgstr "Bredd" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Horisontellt centrerad" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y-position" #: src/tilda.ui:1827 msgid "X Position" msgstr "X-position" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Vertikalt centrerad" #: src/tilda.ui:1865 msgid "Position" msgstr "Position" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Titel" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Fördröjning för animering (ms)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Orientering för animering" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animerad rullgardin" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Nivå av genomskinlighet" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Aktivera genomskinlighet" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extrafunktioner" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Utseende" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Titel" #: src/tilda.ui:2641 msgid "Colors" msgstr "Färger" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Rullningslisten är:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Rullningslängd:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Rulla vid utmatning" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Rullning" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatibilitet" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Tangentbindningar" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Tangentbindningar" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Kunde inte synkronisera konfigurationsfilen till disk\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Kunde inte stänga konfigurationsfilen\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Kunde inte skriva konfigurationsfilen till %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Kunde inte ställa in ikon för tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Slut på minne, kan inte skapa flik\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #~ msgid "Set the background color" #~ msgstr "Ställ in bakgrundsfärgen" #~ msgid "Run a command at startup" #~ msgstr "Kör ett kommando vid uppstart" #~ msgid "Set the font to the following string" #~ msgstr "Ställ in typsnittet till följande sträng" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Visa konfigurationsguide" #~ msgid "Scrollback Lines" #~ msgstr "Antal rader att rulla tillbaka" #~ msgid "Use Scrollbar" #~ msgstr "Använd rullningslist" #~ msgid "Print the version, then exit" #~ msgstr "Skriv ut versionen, avsluta sedan" #~ msgid "Set Initial Working Directory" #~ msgstr "Ställ in initial arbetskatalog" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Opakhet: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Visa konfigurationsguide" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Fel vid tolkning av kommandoradsflaggor. Prova \"tilda --help\"\n" #~ "för att se alla möjliga flaggor.\n" #~ "\n" #~ "Felmeddelande: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Fel vid tolkning av kommandoradsflaggor. Prova \"tilda --help\"\n" #~ "för att se alla möjliga flaggor.\n" #~ "\n" #~ "Felmeddelande: %s\n" #~ msgid "Use Image for Background" #~ msgstr "Använd bild som bakgrund" #~ msgid "Scroll Background" #~ msgstr "Rulla bakgrunden" #~ msgid "Use Antialiased Fonts" #~ msgstr "Använd kantutjämnade typsnitt" #~ msgid "Set Background Image" #~ msgstr "Ställ in bakgrundsbild" #~ msgid "Enable Double Buffering" #~ msgstr "Aktivera dubbelbuffring" #, fuzzy #~ msgid "Paste" #~ msgstr "Titel" #, fuzzy #~ msgid "Quit" #~ msgstr "Titel" #, fuzzy #~ msgid "Copy" #~ msgstr "Typsnitt" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Terminalvisning" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Kommando" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Höjd" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Kunde inte stänga konfigurationsfilen\n" #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Kunde inte stänga konfigurationsfilen\n" #~ msgid "Grab Keybinding" #~ msgstr "Fånga tangentbindning" tilda-1.5.0/po/el.gmo0000644000175000017500000000103513617635041011262 000000000000004L` a lw  X PositionY PositionProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2007-11-13 19:28+0000 Last-Translator: Alexander Kikis Language-Team: Greek, Modern (1453-) Language: el MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) Θέση XΘέση Ytilda-1.5.0/po/bg.po0000644000175000017500000006552313617635040011121 00000000000000# Bulgarian translation for tilda # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the tilda package. # Anton Antonov , 2014. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2014-07-30 22:44+0000\n" "Last-Translator: Anton Antonov \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-07-30 22:48+0000\n" "X-Generator: Launchpad (build 17131)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Нов подпрозорец" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Затвори подпрозорец" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Затвори подпрозорец" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Звучен Terminal Bell" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Първоначално Заглавие:" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Не може да пусне shell по подразбиране: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "ASCII DEL\n" "Escape последователност\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda конфигурация" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Стартирай Tilda скрита" #: src/tilda.ui:409 msgid "Always on top" msgstr "Винаги най-отгоре" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Покажи всички работни среди" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Не показвай в лентата на задачите" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Покажи тефтерски ръбове" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Прозорец - представяне" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Мигащ курсор" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Звучен Terminal Bell" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Терминал - представяне" #: src/tilda.ui:703 msgid "Font:" msgstr "Шрифт:" #: src/tilda.ui:733 msgid "Font" msgstr "Шрифт" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Заглавие" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Винаги най-отгоре" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Позиция" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Общ" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Уеб Браузър" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Обработка на URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Първоначално Заглавие:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Динамично зададено Заглавие:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Заглавие" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Пусни произволна команда вместо shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Произволна команда:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Когато командата приключи:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Команда" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Затвори подпрозорец" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Заглавие и команда" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Процент" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "В пиксели" #: src/tilda.ui:1561 msgid "Height" msgstr "Височина" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Шрифт" #: src/tilda.ui:1739 msgid "Width" msgstr "Широчина" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Центрирана хоризонтално" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y позиция" #: src/tilda.ui:1827 msgid "X Position" msgstr "X позиция" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Центрирана вертикално" #: src/tilda.ui:1865 msgid "Position" msgstr "Позиция" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Позиция на подпрозорци:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Заглавие" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Забавяне на анимацията (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Ориентация на анимацията" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Анимирано падане" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Ниво на прозрачност" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Позволи прозрачност" #: src/tilda.ui:2129 msgid "Extras" msgstr "Екстри" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Външен вид" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Мигащ курсор" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Цвят на текст" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Цвят на фон" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Вградени цветови схеми" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Цветове на преден и заден план" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Вградени цветови схеми" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Заглавие" #: src/tilda.ui:2641 msgid "Colors" msgstr "Цветове" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Скрол лента е:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Scrollback:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Скрол на извод" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Скрол на натискане на бутон" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "редове" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Скролване" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Скролване" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Забележка: Тези настройки могат да доведът до неправилно " "поведение на някои приложения. Те са тук само, за да позволят заобикаляне на " "приложения и операционни системи, които очакват различно терминално " "поведение." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "_Backspace копчето генерира:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "_Delete копчето генерира:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Върни настройките за съвместимост по подразбиране" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Съвместимост" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Съвместимост" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Клавишни комбинации" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Клавишни комбинации" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Не може да синхронизира конфигурационният файл на диска\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Не може да затвори конфигурационният файл\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Не може да запише конфигурационният фалй на %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Не може да изпълни командата:`%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Не може да отвори директория: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Затвори подпрозорец" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Проблем при разчитане на : %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Не може да пусне shell по подразбиране: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Не може да пусне командата по избор: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Пусни произволна команда вместо shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Пускам вместо това shell по подразбиране\n" #: src/tilda_terminal.c:458 #, fuzzy, c-format msgid "Problem parsing custom command: %s\n" msgstr "Проблем при разчитане на : %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Не успя да пусне уеб брайзъра. Командата беше `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Неозаглавен" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Невалидна стойност за \"d_set_title\" в конфигурационният файл\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Вие имате невалидна tab_pos във вашият конфигурационен файл\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Не може да зададе икона на tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Недостиг на памет, не може да създаде подпрозорец\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Tilda конфигурация" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Невалидна настройка за позиция на подпрозорци, игнориране\n" #~ msgid "Allow Bold Text" #~ msgstr "Позволи удебелен текст" #~ msgid "Set the background color" #~ msgstr "Сложи фоннов цвят" #~ msgid "Run a command at startup" #~ msgstr "Изпълни команда при стартиране" #~ msgid "Set the font to the following string" #~ msgstr "Сложи шрифт на следният стринг" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Покажи помощник при конфигурация" #~ msgid "Scrollback Lines" #~ msgstr "Scrollback редове" #~ msgid "Use Scrollbar" #~ msgstr "Използвай скрол лента" #~ msgid "Print the version, then exit" #~ msgstr "Принтирай версията и излез" #~ msgid "Set Initial Working Directory" #~ msgstr "Определи началната работна директория" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Непрозрачност: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Покажи помощник при конфигурация" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Грешка при разчитане на командните опции. Опитай \"tilda --help\"\n" #~ "за да видиш всички възможни опциии.\n" #~ "\n" #~ "Грешка: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Грешка при разчитане на командните опции. Опитай \"tilda --help\"\n" #~ "за да видиш всички възможни опциии.\n" #~ "\n" #~ "Грешка: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Позволи antialiasing" #~ msgid "Use Image for Background" #~ msgstr "Използвай изображение за фон" #~ msgid "Scroll Background" #~ msgstr "Скрол на фон" #~ msgid "Use Antialiased Fonts" #~ msgstr "Използвай Antialised шрифтове" #~ msgid "Set Background Image" #~ msgstr "Определи фонново изображение" #~ msgid "Enable Double Buffering" #~ msgstr "Позволи двойно буфериране" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Заглавие" #, fuzzy #~ msgid "Quit" #~ msgstr "Заглавие" #, fuzzy #~ msgid "Close Tab" #~ msgstr "_Затвори подпрозорец" #, fuzzy #~ msgid "Copy" #~ msgstr "Шрифт" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Падащо копче" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Височина" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Проблем при разчитане на конфигурационният файл" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Клавишната комбинация, която избрахте е невалидна. Моля изберете друга." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Проблем при разчитане на конфигурационният файл" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Горде\n" #~ "Долу\n" #~ "Ляво\n" #~ "Дясно" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Не е показано\n" #~ "Отива след първоначалното заглавие\n" #~ "Отива преди първоначалното заглавие\n" #~ "Заменя първоначалното заглавие" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Задръж терминала отворен\n" #~ "Рестартирай командата\n" #~ "Излез от терминала" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Произволна\n" #~ "Зелено на черно\n" #~ "Черно на бяло\n" #~ "Бяло на черно" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "В ляво\n" #~ "В дясно\n" #~ "Забранено" #~ msgid "Key Binding" #~ msgstr "Клавишна комбинация" #~ msgid "Grab Keybinding" #~ msgstr "Прихвани клавишна комбинация" #~ msgid "gtk-close" #~ msgstr "gtk-close" tilda-1.5.0/po/en@quot.header0000644000175000017500000000226313047677711012756 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # tilda-1.5.0/po/ru.po0000644000175000017500000006616313617635041011161 00000000000000# Russian translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # Anton Shestakov , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-02-09 09:14+0000\n" "Last-Translator: Anton Shestakov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Новая вкладка" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Закрыть вкладку" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Закрыть вкладку" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Звуковой терминальный сигнал" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Исходный заголовок:" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Не удалось запустить оболочку по умолчанию: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "ASCII DEL\n" "Управляющую последовательность\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Настройка Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Скрыть Tilda при запуске" #: src/tilda.ui:409 msgid "Always on top" msgstr "Поверх всех окон" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Отображать на всех рабочих столах" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Не показывать в панели задач" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Рамка вокруг окна" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Настройки отображения" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Мерцающий курсор" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Звуковой терминальный сигнал" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Внешний вид терминала" #: src/tilda.ui:703 msgid "Font:" msgstr "Шрифт:" #: src/tilda.ui:733 msgid "Font" msgstr "Шрифт" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Заголовок" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Поверх всех окон" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Расположение" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Основные" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Веб-браузер" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Обработка URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Исходный заголовок:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Автоматически установленный заголовок" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Заголовок" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Запускать пользовательскую команду вместо shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Пользовательская команда:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Когда команда завершается:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Команда" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Закрыть вкладку" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Заголовок и команда" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "В процентах:" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "В пикселах:" #: src/tilda.ui:1561 msgid "Height" msgstr "Высота" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Заголовок" #: src/tilda.ui:1739 msgid "Width" msgstr "Ширина" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Центрировать по горизонтали" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Позиция по вертикали" #: src/tilda.ui:1827 msgid "X Position" msgstr "Позиция по горизонтали" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Центрировать по вертикали" #: src/tilda.ui:1865 msgid "Position" msgstr "Расположение" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Расположение закладок:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Заголовок" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Продолжительность анимации (мкс)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Направление анимации" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Анимировать появление/скрытие" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Уровень прозрачности" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Включить прозрачность" #: src/tilda.ui:2129 msgid "Extras" msgstr "Дополнительно" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Внешний вид" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Мерцающий курсор" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Цвет текста" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Цвет фона" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Встроенные схемы" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Цвет текста и фона" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Встроенные схемы" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Заголовок" #: src/tilda.ui:2641 msgid "Colors" msgstr "Цвета" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Полоса прокрутки:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Буфер прокрутки:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Прокручивать по мере появления текста" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Прокручивать клавишами" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "cтрок(и)" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Прокрутка" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Прокрутка" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Замечание: Эти параметры могут вызвать некорректную работу " "некоторых приложений. Они представлены только для того, чтобы позволить " "работать с некоторыми приложениями и операционными ситемами, ожидающими " "другого поведения терминала." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "Клавиша _Backspace вызывает:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "Клавиша _Delete вызывает:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Восстановить параметры совместимости по умолчанию" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Совместимость" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Совместимость" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Сочетание клавиш" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Сочетание клавиш" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Не удалось записать конфигурационный файл на диск\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Не удалось закрыть конфигурационный файл\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Возникла ошибка при записи конфигурационного файла в %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Не удалось выполнить команду: «%s»\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Невозможно открыть директорию lock: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Закрыть вкладку" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Возникла проблема при обработке пользовательской команды: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Не удалось запустить оболочку по умолчанию: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Не удалось запустить пользовательскую команду: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Запускать пользовательскую команду вместо shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Запуск оболочки по умолчанию вместо\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Возникла проблема при обработке пользовательской команды: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Ошибка при запуске веб-браузера командой «%s»\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Безымянный" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Неправильное значение параметра \"d_set_title\" в файле конфигурации\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Неправильный параметр tab_pos в файле конфигурации\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Не удалось установить иконку tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Не удалось создать вкладку: память исчерпана\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Настройка Tilda" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Неправильный вариант положения вкладки, пропущен\n" #~ msgid "Allow Bold Text" #~ msgstr "Разрешить полужирный текст" #~ msgid "Set the background color" #~ msgstr "Установить цвет фона" #~ msgid "Run a command at startup" #~ msgstr "Запустить команду при запуске" #~ msgid "Set the font to the following string" #~ msgstr "Использовать указанный шрифт" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Запустить мастер конфигурации" #~ msgid "Scrollback Lines" #~ msgstr "Размер буфера прокрутки, строк" #~ msgid "Use Scrollbar" #~ msgstr "Использовать полосу прокрутки" #~ msgid "Print the version, then exit" #~ msgstr "Вывести версию и выйти" #~ msgid "Set Initial Working Directory" #~ msgstr "Установить рабочую директорию" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Непрозрачность: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Запустить мастер конфигурации" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Ошибка обработки опций командной строки. Получить список доступных\n" #~ "опций можно, запустив «tilda --help»\n" #~ "\n" #~ "Сообщение об ошибке: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Ошибка обработки опций командной строки. Получить список доступных\n" #~ "опций можно, запустив «tilda --help»\n" #~ "\n" #~ "Сообщение об ошибке: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Включить сглаживание" #~ msgid "Use Image for Background" #~ msgstr "Использовать изображение в качестве фона" #~ msgid "Scroll Background" #~ msgstr "Прокручивать фоновое изображение" #~ msgid "Use Antialiased Fonts" #~ msgstr "Использовать сглаживание шрифтов" #~ msgid "Set Background Image" #~ msgstr "Установить фоновое изображение" #~ msgid "Enable Double Buffering" #~ msgstr "Двойная буферизация" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Заголовок" #, fuzzy #~ msgid "Quit" #~ msgstr "Заголовок" #, fuzzy #~ msgid "Close Tab" #~ msgstr "_Закрыть вкладку" #, fuzzy #~ msgid "Copy" #~ msgstr "Шрифт" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Горячая клавиша" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "_Закрыть вкладку" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Высота" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Возникла проблема при обработке файла конфигурации\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "Комбинация клавиш, которую вы выбрали, неверная. Выберите другую." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Возникла проблема при обработке файла конфигурации\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Сверху\n" #~ "Снизу\n" #~ "Слева\n" #~ "Справа" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Не показывать\n" #~ "После начального заголовка\n" #~ "Перед начальным заголовком\n" #~ "Вместо начального заголовка" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Держать терминал открытым\n" #~ "Перезапустить команду\n" #~ "Выйти из терминала" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Пользовательская\n" #~ "Зеленый на черном\n" #~ "Черный на белом\n" #~ "Белый на черном" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "Слева\n" #~ "Справа\n" #~ "Выключен" #~ msgid "Key Binding" #~ msgstr "Привязка к клавише" #~ msgid "Grab Keybinding" #~ msgstr "Установить комбинацию клавиш" tilda-1.5.0/po/Rules-quot0000644000175000017500000000340013047677711012166 00000000000000# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header tilda-1.5.0/po/es.po0000644000175000017500000006500713617635041011136 00000000000000# Spanish translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # # FIRST AUTHOR , 2007. # micrococo , 2014. msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2014-09-07 12:19+0200\n" "Last-Translator: micrococo \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nueva pestaña" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Cerrar pestaña" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 #, fuzzy msgid "_Toggle Fullscreen" msgstr "Alternar pantalla completa" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "Cerrar Tilda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "Abrir una nueva terminal" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "Abrir una nueva terminal y ocultarla" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "Arriba" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "Abajo" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "Izquierda" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "Derecha" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Salir de la terminal" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "No mostrarlo" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "Ponerlo detrás el título inicial" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "Ponerlo delante del título inicial" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "Sustituir el título Inicial" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "Usar la acción predeterminada de la terminal" #: src/tilda.ui:180 msgid "Restart the command" msgstr "Reiniciar el comando" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "Salir de la terminal" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Personalizado" #: src/tilda.ui:217 msgid "Green on Black" msgstr "Verde sobre negro" #: src/tilda.ui:220 msgid "Black on White" msgstr "Negro sobre blanco" #: src/tilda.ui:223 msgid "White on Black" msgstr "Blanco sobre negro" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "Solarizado claro" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "Solarizado oscuro" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "A la izquierda" #: src/tilda.ui:260 msgid "On the Right" msgstr "A la derecha" #: src/tilda.ui:263 msgid "Disabled" msgstr "Inhabilitada" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "Secuencia de escape" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Configuración de Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Iniciar Tilda oculta" #: src/tilda.ui:409 msgid "Always on top" msgstr "Siempre visible" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Mostrar en todos los espacios de trabajo" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "No mostrar en la barra de tareas" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Mostrar borde del cuaderno" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 #, fuzzy msgid "Start in fullscreen" msgstr "Alternar pantalla completa" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Visualización de la ventana" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Cursor intermitente" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Timbre del sistema audible" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Visualización de la terminal" #: src/tilda.ui:703 msgid "Font:" msgstr "Tipo de letra:" #: src/tilda.ui:733 msgid "Font" msgstr "Fuente" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Ocultar Tilda cuando el ratón salga de su ventana" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Retardo de la ocultación automática" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Ocultar Tilda cuando pierda el foco" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Ocultar automáticamente" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "Al cerrar la última terminal:" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Siempre visible" #: src/tilda.ui:918 msgid "Program Exit" msgstr "Salir del programa" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" "Nota: Algunas opciones requieren que se reinicie Tilda." #: src/tilda.ui:953 msgid "General" msgstr "General" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "Caracteres de palabra:" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Selección de palabras" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "Navegador web *:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Manejo de las URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Título inicial:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Establecer título dinámicamente:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Título" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Ejecutar un comando personalizado en lugar de la terminal" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Comando personalizado:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Cuando el comando termine:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Comando" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" "* Aquí se debe introducir un comando válido que pueda abrir un navegador " "web. Se puede usar el nombre de un navegador específico como 'firefox' y " "'google-chrome' o los comandos genéricos 'x-www-browser' y 'xdg-open'. El " "comando más apropiado puede ser distinto dependiendo del sistema." #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "Cerrar Tilda" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Título y comando" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Porcentaje" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "Píxeles" #: src/tilda.ui:1561 msgid "Height" msgstr "Alto" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "Monitor:" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "Selección del monitor" #: src/tilda.ui:1739 msgid "Width" msgstr "Ancho" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centrado horizontalmente" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Posición Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Posición X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centrado verticalmente" #: src/tilda.ui:1865 msgid "Position" msgstr "Posición" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Posición de las pestañas:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Añadir pestaña" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Retardo de la animación (µseg)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Sentido de la animación" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animar la aparición de la ventana" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Nivel de transparencia" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Activar transparencia" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extras" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Apariencia" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Cursor intermitente" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Color del texto" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Color de fondo" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Esquemas internos" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Color del texto y del fondo" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "Nota: Las aplicaciones de terminal tienen estos colores a " "su disposición." #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "Esquemas internos:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Paleta de color:" #: src/tilda.ui:2622 msgid "Palette" msgstr "Paleta" #: src/tilda.ui:2641 msgid "Colors" msgstr "Colores" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Barra de desplazamiento:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Desplazamiento hacia atrás" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Desplazar tras salida" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Desplazar al teclear" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "líneas" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Desplazamiento" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Desplazamiento" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Nota: Estas opciones pueden causar que algunas aplicaciones " "se comporten incorrectamente. Sólo están aquí para permitirle trabajar con " "ciertas aplicaciones y sistemas operativos que esperan un comportamiento " "diferente del terminal." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "La tecla _Retroceso produce:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "La tecla _Suprimir produce:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Reiniciar las opciones de compatibilidad a las predeterminadas" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibilidad" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Compatibilidad" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Atajos de teclado" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Atajos de teclado" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "No se puede sincronizar el archivo de configuración a disco\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "No se puede cerrar el archivo de configuración\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "No se puede escribir el fichero de configuración en %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "No se puede ejecutar el comando: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "No se puede abrir el directorio bloqueado %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "Crear directorio:'%s'\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" "Encontrado style.css en el directorio de configuración del usuario, " "aplicando el estilo css del usuario.\n" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "Migrando la antigua ruta de configuración a directorios XDG\n" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "El atajo de teclado que ha elegido para \"Mostrar la terminal\" es inválido. " "Seleccione otro, por favor." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "Cerrar Tilda" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "Introduzca el atajo de teclado" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "El atajo de teclado que ha elegido para \"Pegar\" es inválido. Seleccione " "otro, por favor." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Problema procesando el comando personalizado: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "No se puede ejecutar la terminal predeterminada: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "No se puede ejecutar el comando personalizado %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Ejecutar un comando personalizado en lugar de la terminal" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Ejecutando la terminal predeterminada en su lugar\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Problema procesando el comando personalizado: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Fallo al ejecutar el navegador web. El comando era '%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Sin título" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Valor erróneo para \"d_set_title\" en el fichero de configuración\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Tiene un tab_pos erróneo en su archivo de configuración\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "No se puede establecer el icono de Tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "No hay memoria disponible, no se puede crear la pestaña\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Configuración %d de Tilda" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Posición no válida para la pestaña, se ignora\n" #~ msgid "Allow Bold Text" #~ msgstr "Permitir texto en negrita" #~ msgid "Set the background color" #~ msgstr "Establecer el color de fondo" #~ msgid "Run a command at startup" #~ msgstr "Ejecutar un comando al inicio" #~ msgid "Set the font to the following string" #~ msgstr "Establecer la fuente con la cadena siguiente" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Mostrar el asistente de configuración" #~ msgid "Scrollback Lines" #~ msgstr "Desplazar líneas hacia atrás" #~ msgid "Use Scrollbar" #~ msgstr "Usar barra de desplazamiento" #~ msgid "Print the version, then exit" #~ msgstr "Imprimir la version y luego salir" #~ msgid "Set Initial Working Directory" #~ msgstr "Elegir el directorio de trabajo inicial" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Opacidad: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Mostrar el asistente de configuración" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Error procesando las opciones de línea de comandos. Pruebe con \"tilda --" #~ "help\"\n" #~ "para ver todas las opciones posibles.\n" #~ "\n" #~ "Mensaje de error: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Error procesando las opciones de línea de comandos. Pruebe con \"tilda --" #~ "help\"\n" #~ "para ver todas las opciones posibles.\n" #~ "\n" #~ "Mensaje de error: %s\n" #~ msgid "Linux console" #~ msgstr "Consola Linux" #~ msgid "Enable Antialiasing" #~ msgstr "Activar el suavizado de líneas" #~ msgid "Use Image for Background" #~ msgstr "Usar imagen de fondo" #~ msgid "Scroll Background" #~ msgstr "Desplazar el fondo" #~ msgid "Use Antialiased Fonts" #~ msgstr "Usar suavizado de fuentes" #~ msgid "Set Background Image" #~ msgstr "Elegir la imagen de fondo" #~ msgid "Enable Double Buffering" #~ msgstr "Habilitar memoria temporal doble" #~ msgid "Limit maximum length of tab title:" #~ msgstr "Limitar la longitud máxima del título de la pestaña:" #~ msgid " " #~ msgstr " " #~ msgid " " #~ msgstr " " #~ msgid "Paste" #~ msgstr "Pegar" #~ msgid "Go To Next Tab" #~ msgstr "Ir a la siguiente pestaña" #~ msgid "Quit" #~ msgstr "Salir" #~ msgid "Go To Tab 10" #~ msgstr "Ir a la pestaña 10" #~ msgid "Go To Tab 5" #~ msgstr "Ir a la pestaña 5" #~ msgid "Go To Tab 4" #~ msgstr "Ir a la pestaña 4" #~ msgid "Go To Tab 3" #~ msgstr "Ir a la pestaña 3" #~ msgid "Go To Tab 2" #~ msgstr "Ir a la pestaña 2" #~ msgid "Go To Tab 1" #~ msgstr "Ir a la pestaña 1" #~ msgid "Go To Previous Tab" #~ msgstr "Ir a la pestaña anterior" #~ msgid "Close Tab" #~ msgstr "Cerrar pestaña" #~ msgid "Copy" #~ msgstr "Copiar" #~ msgid "Pull Down Terminal" #~ msgstr "Mostrar terminal" #~ msgid "Go To Tab 6" #~ msgstr "Ir a la pestaña 6" #~ msgid "Go To Tab 7" #~ msgstr "Ir a la pestaña 7" #~ msgid "Go To Tab 8" #~ msgstr "Ir a la pestaña 8" #~ msgid "Go To Tab 9" #~ msgstr "Ir a la pestaña 9" #~ msgid "Move Tab Left" #~ msgstr "Mover pestaña a la izquierda" #~ msgid "Move Tab Right" #~ msgstr "Mover pestaña a la derecha" #~ msgid "Problem when opening config file\n" #~ msgstr "Problema al abrir el fichero de configuración\n" #~ msgid "An unexpected error occured while parsing the config file\n" #~ msgstr "" #~ "Ha ocurrido un error inesperado al procesar el archivo de configuración\n" #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Añadir pestaña\" es inválido. " #~ "Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Cerrar pestaña\" es inválido. " #~ "Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Siguiente pestaña\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Pestaña anterior\" es inválido. " #~ "Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Mover pestaña a la izquierda\" " #~ "es inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Mover pestaña a la derecha\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Copiar\" es inválido. " #~ "Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Salir\" es inválido. Seleccione " #~ "otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 1\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 2\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 3\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 4\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 5\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 6\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 7\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 8\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 9\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Ir a la pestaña 10\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "El atajo de teclado que ha elegido para \"Alternar pantalla completa\" es " #~ "inválido. Seleccione otro, por favor." #~ msgid "Problem while parsing config file\n" #~ msgstr "Problema al procesar el fichero de configuración\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Superior\n" #~ "Inferior\n" #~ "Izquierda\n" #~ "Derecha" #, fuzzy #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "No mostrar\n" #~ "Colocar tras el título inicial\n" #~ "Colocar antes del título inicial\n" #~ "Reemplazar por el título inicial" #, fuzzy #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Mantener el terminal abierto\n" #~ "Reejecutar el comando\n" #~ "Salir del terminal" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Personalizado\n" #~ "Verde sobre Negro\n" #~ "Negro sobre Blanco\n" #~ "Blanco sobre Negro" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "A la izquierda\n" #~ "A la derecha\n" #~ "Deshabilitado" #~ msgid "Key Binding" #~ msgstr "Atajo de teclado" #, fuzzy #~ msgid "Grab Keybinding" #~ msgstr "Guardar atajos de teclado" tilda-1.5.0/po/pt_BR.po0000644000175000017500000004112013617635041011523 00000000000000# Brazilian Portuguese translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2014-08-04 22:29+0000\n" "Last-Translator: NatanJMai \n" "Language: pt_BR\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nova Aba" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Fechar Aba" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "Fechar Tilda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "Abrir um novo terminal" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "Abrir um novo terminal e esconder" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "Topo" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "Inferior" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "Esquerda" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "Direita" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Fechar o terminal" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "Não é exibido" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "Após o título inicial" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "Antes do título inicial" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "Substituir título inicial" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "Alterar para o shell padrão" #: src/tilda.ui:180 msgid "Restart the command" msgstr "Reiniciar o comando" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "Fechar o terminal" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Personalizado" #: src/tilda.ui:217 msgid "Green on Black" msgstr "Verde no Preto" #: src/tilda.ui:220 msgid "Black on White" msgstr "Preto no Branco" #: src/tilda.ui:223 msgid "White on Black" msgstr "Branco no Preto" #: src/tilda.ui:226 msgid "Zenburn" msgstr "Zenburn" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "Luz solarizada" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "Escuro solarizado" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "À esquerda" #: src/tilda.ui:260 msgid "On the Right" msgstr "À direita" #: src/tilda.ui:263 msgid "Disabled" msgstr "Inválido" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "ASCII DEL" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "Control-H" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Configurações Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Iniciar escondido" #: src/tilda.ui:409 msgid "Always on top" msgstr "Sempre no topo" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Mostrar em todos os espaços de trabalho" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Não mostrar na barra de tarefas" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Mostrar borda do notebook" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Vitrine" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Efeito do cursor" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Som do terminal" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Visor do terminal" #: src/tilda.ui:703 msgid "Font:" msgstr "Fonte:" #: src/tilda.ui:733 msgid "Font" msgstr "Fonte" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Ocultar Tilda quando mouse sair" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Tempo para esconder automaticamente" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Esconder Tilda quando perder o foco" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Esconder Automaticamente" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "Quando o último terminal é fechado:" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Sempre no topo" #: src/tilda.ui:918 msgid "Program Exit" msgstr "Sair do Programa" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" "Note: Algumas opções requerem que o Tilda seja reiniciado." #: src/tilda.ui:953 msgid "General" msgstr "Geral" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "Caracteres:" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Selecione por palavra" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "Navegador *:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Título Inicial:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Título" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Executar um comando personalizado em vez do shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Comando personalizado:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Quando o comando sair:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Comando" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "Fechar Tilda" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Título e Comando" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Percentual" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "Em Pixels" #: src/tilda.ui:1561 msgid "Height" msgstr "Altura" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "Monitor:" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "Selecione o monitor" #: src/tilda.ui:1739 msgid "Width" msgstr "Largura" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centralizado Horizontalmente" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Posição Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Posição X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centralizado Verticalmente" #: src/tilda.ui:1865 msgid "Position" msgstr "Posição" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Posições das abas" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Adicionar Aba" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Tempo de animação" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Orientação da Animação" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animar a descida" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Nível de Transparência" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Habilitar Transparência" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extras" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Aparência" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Efeito do cursor" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Cor do Texto" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Cor do plano de fundo" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Esquemas embutidos" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "Esquemas Embutidos:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Paleta de cores:" #: src/tilda.ui:2622 msgid "Palette" msgstr "Paleta" #: src/tilda.ui:2641 msgid "Colors" msgstr "Cores" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "0" #: src/tilda.ui:2771 msgid "lines" msgstr "Linhas" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "Voltar opções padrões de compatibilidade" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibilidade" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Compatibilidade" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Altura" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "Criando diretório:'%s'\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "Fechar Tilda" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "Adicione um atalho de teclado" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Executar um comando personalizado em vez do shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Sem título" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #~ msgid "Allow Bold Text" #~ msgstr "Permitir texto em negrito" #~ msgid "Set the background color" #~ msgstr "Mudar a cor de fundo" #~ msgid "Set the font to the following string" #~ msgstr "Mudar a fonte para a seguinte frase" #~ msgid "Print the version, then exit" #~ msgstr "Mostrar a versão, quando fechado" #~ msgid "Set Initial Working Directory" #~ msgstr "Mudar Diretório de Trabalho inicial" #~ msgid "Linux console" #~ msgstr "Terminal do Linux" #~ msgid "XTerm" #~ msgstr "XTerm" #~ msgid "Rxvt" #~ msgstr "Rxvt" #~ msgid "Enable Antialiasing" #~ msgstr "Ativar suavização" #~ msgid "Use Image for Background" #~ msgstr "Usar imagem como plano de fundo" #~ msgid "Set Background Image" #~ msgstr "Alterar imagem de fundo" #~ msgid "Enable Double Buffering" #~ msgstr "Ativar Double Buffering" #~ msgid "Limit maximum length of tab title:" #~ msgstr "Limite de comprimento máximo do título da aba:" #~ msgid " " #~ msgstr "\t" #~ msgid " " #~ msgstr " " #~ msgid "Go To Next Tab" #~ msgstr "Ir para próxima aba" #~ msgid "Quit" #~ msgstr "Fechar" #~ msgid "Go To Tab 10" #~ msgstr "Ir para a aba 10" #~ msgid "Go To Tab 5" #~ msgstr "Ir para a aba 5" #~ msgid "Go To Tab 4" #~ msgstr "Ir para a aba 4" #~ msgid "Go To Tab 3" #~ msgstr "Ir para a aba 3" #~ msgid "Go To Tab 2" #~ msgstr "Ir para a aba 2" #~ msgid "Go To Tab 1" #~ msgstr "Ir para a aba 1" #~ msgid "Go To Previous Tab" #~ msgstr "Ir para a aba anterior" #~ msgid "Close Tab" #~ msgstr "Fechar Aba" #~ msgid "Copy" #~ msgstr "Copiar" #~ msgid "Pull Down Terminal" #~ msgstr "" #~ msgid "Go To Tab 6" #~ msgstr "Ir para a Aba 6" #~ msgid "Go To Tab 7" #~ msgstr "Ir para a Aba 7" #~ msgid "Go To Tab 8" #~ msgstr "Ir para a Aba 8" #~ msgid "Go To Tab 9" #~ msgstr "Ir para a Aba 9" tilda-1.5.0/po/hu.po0000644000175000017500000005552313617635041011145 00000000000000# Hungarian translation for tilda # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-03-05 00:28+0000\n" "Last-Translator: Pittmann Tamás \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "Új _fül" #: src/menu.ui:10 msgid "_Close Tab" msgstr "Fül _bezárása" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "Fül _bezárása" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Hangos terminál csengő" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Ablakcím induláskor:" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Nem tudom elindítani az alapértelmezett héjat: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "ASCII DEL\n" "Escape sorozat\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda Beállítás" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Tilda indítása rejtve" #: src/tilda.ui:409 msgid "Always on top" msgstr "Mindig felül" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Minden munkaterületen megjelenjen" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Ne jelenjen meg a feladatlistában" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Keret megjelenítése" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Ablak beállítások" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Villogó kurzor" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Hangos terminál csengő" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminál beállítások" #: src/tilda.ui:703 msgid "Font:" msgstr "Betűkészlet:" #: src/tilda.ui:733 msgid "Font" msgstr "Betűkészlet" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Cím" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Mindig felül" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Elhelyezés" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Általános" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Webböngésző" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "URL kezelés" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Ablakcím induláskor:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dinamikus ablakcím:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Cím" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Héj helyett saját parancs futtatása" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Saját parancs:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Parancs befejeződésekor:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Parancs" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "Fül _bezárása" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Cím és parancs" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Százalék" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "Képpont" #: src/tilda.ui:1561 msgid "Height" msgstr "Magasság" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Cím" #: src/tilda.ui:1739 msgid "Width" msgstr "Szélesség" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Vizszintesen középre" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y pozíció" #: src/tilda.ui:1827 msgid "X Position" msgstr "X pozíció" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Függőlegesen középre" #: src/tilda.ui:1865 msgid "Position" msgstr "Elhelyezés" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Fülek helye" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Cím" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Animáció késleltetése (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Animáció iránya" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animált lenyitás" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Átlátszóság szintje:" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Átlátszóság engedélyezése" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extrák" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Megjelenés" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Villogó kurzor" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Szövegszín" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Háttérszín" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Beépített színsémák" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Előtér és háttérszínek" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Beépített színsémák" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Cím" #: src/tilda.ui:2641 msgid "Colors" msgstr "Színek" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Görgetősáv helye:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Visszagörgethető sorok száma" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Görgetés kiíráskor" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Görgetés billentyű leütésre" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "sor" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Görgetés" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Görgetés" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Megjegyzés: Ezek az opciók néhány program helytelen " "működését eredményezhetik. Csak azért vannak itt, hogy biztosítsák a " "terminál bizonyos programokkal és operációs rendszerekkel való " "együttműködését, amelyek más igényeket támasztanak a terminállal szemben." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "A _Backspace billentyű által küldött kód:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "A _Delete billentyű által küldött kód:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Kompatibilitási beállítások alapértelmezettre állítása" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Kompatibilitás" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatibilitás" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Gyorsbillentyű" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Gyorsbillentyű" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Nem tudom elvégezni a konfigfájl szinkronizálását.\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Nem tudom bezárni a konfigfájlt.\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Nem tudom írni a konfigfájlt: %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "A '%s' parancs futtatása nem sikerült\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Nem tudom megnyitni a zárolási könyvtárat :%s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "Fül _bezárása" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Parancs értelmezési hiba: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Nem tudom elindítani az alapértelmezett héjat: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Nem tudom elindítani a megadott felhasználói parancsot: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Héj helyett saját parancs futtatása" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Helyette indítom az alapértelmezett héjat.\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Parancs értelmezési hiba: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Nem tudtam elindítani a böngészőt, parancs: %s\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Névtelen" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Hibás érték a konfigfájlban itt: \"d_set_title\"\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "A konfigfájlban hibás a fülek pozíciója\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Nem tudom a tilda ikonját beállítani: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Elfogyott a memória. a fül nem hozható létre\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Tilda Beállítás" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Érvénytelen fülpozíció, figyelmen kívül lesz hagyva\n" #~ msgid "Allow Bold Text" #~ msgstr "Félkövér szöveg engedélyezése" #~ msgid "Set the background color" #~ msgstr "Háttérszín beállítása" #~ msgid "Run a command at startup" #~ msgstr "Parancs futtatása induláskor" #~ msgid "Set the font to the following string" #~ msgstr "Betűkészlet beállítása erre a karakterláncra" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Indítás konfigurációs ablakkal" #~ msgid "Scrollback Lines" #~ msgstr "Visszagördíthető sorok száma" #~ msgid "Use Scrollbar" #~ msgstr "Görgetősáv használata" #~ msgid "Print the version, then exit" #~ msgstr "Verzió kiírása és kilépés" #~ msgid "Set Initial Working Directory" #~ msgstr "Kezdő munkakönyvtár beállítása" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Átlátszóság: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Indítás konfigurációs ablakkal" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Hiba a megadott opciókban. Próbáld a \"tilda --help\"-et.\n" #~ "\n" #~ "Hiba: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Hiba a megadott opciókban. Próbáld a \"tilda --help\"-et.\n" #~ "\n" #~ "Hiba: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Élsimítás bekapcsolása" #~ msgid "Use Image for Background" #~ msgstr "Kép használata háttérként" #~ msgid "Scroll Background" #~ msgstr "Háttér görgetése" #~ msgid "Use Antialiased Fonts" #~ msgstr "Élsimított betűkészletek használata" #~ msgid "Set Background Image" #~ msgstr "Háttérkép beállítása" #~ msgid "Enable Double Buffering" #~ msgstr "Dupla gyorstár engedélyezése" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Cím" #, fuzzy #~ msgid "Quit" #~ msgstr "Cím" #, fuzzy #~ msgid "Close Tab" #~ msgstr "Fül _bezárása" #, fuzzy #~ msgid "Copy" #~ msgstr "Betűkészlet" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Terminálnyitó gyorsbillentyű" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Fül _bezárása" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Magasság" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Hiba a konfigfájlban.\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "A választott gyorsbillentyű érvénytelen. Válasszon másikat." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Hiba a konfigfájlban.\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Fent\n" #~ "Lent\n" #~ "Balra\n" #~ "Jobbra" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Nincs\n" #~ "Az indulási cím után\n" #~ "Az indulási cím előtt\n" #~ "Az indulási cím cseréje" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "A terminál maradjon megnyitva\n" #~ "Induljon újra a parancs\n" #~ "Kilépés a terminálból" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Saját beállítás\n" #~ "Zöld a feketén\n" #~ "Fekete a fehéren\n" #~ "Fehér a Feketén" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "Balra\n" #~ "Jobbra\n" #~ "Letiltva" #~ msgid "Key Binding" #~ msgstr "Gyorsbillentyű" #~ msgid "Grab Keybinding" #~ msgstr "Gyorsbillentyű megadása" tilda-1.5.0/po/tr.po0000644000175000017500000003146513617635041011155 00000000000000# Turkish translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2007-05-22 18:11+0000\n" "Last-Translator: Alperen Yusuf Aybar \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 msgid "_Close Tab" msgstr "" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "" #: src/tilda.ui:409 msgid "Always on top" msgstr "" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 msgid "Always prompt on exit" msgstr "" #: src/tilda.ui:918 msgid "Program Exit" msgstr "" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "" #: src/tilda.ui:1561 msgid "Height" msgstr "" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "" #: src/tilda.ui:1739 msgid "Width" msgstr "" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "" #: src/tilda.ui:1793 msgid "Y Position" msgstr "" #: src/tilda.ui:1827 msgid "X Position" msgstr "" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "" #: src/tilda.ui:1865 msgid "Position" msgstr "" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 msgid "Tabs" msgstr "" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "" #: src/tilda.ui:2129 msgid "Extras" msgstr "" #: src/tilda.ui:2148 msgid "Appearance" msgstr "" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 msgid "Palette" msgstr "" #: src/tilda.ui:2641 msgid "Colors" msgstr "" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "" #: src/tilda.ui:3024 msgid "Keybindings" msgstr "" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" tilda-1.5.0/po/lt.gmo0000644000175000017500000002356213617635041011312 00000000000000~      ' = K Z j ~      P ]h   &7+Ht    *8?OXr7@GF '-U e q)   !* LW#i)  $9HX kTv  $#D"h'& /Cap  2 (@F-)=gw, ESih]0 0:Jaw  4 ",;Kd{    ( D"e+; . X8      " !(!5>!t!}!&!!!9! "" $"/"&I"/p" ""!""" # %#F#b#u# ##### #o#^$w$$$'$$-$+"%!N%*p%,%/% % && (&I&Z& o& z&<&&$&&!'$'34' h'(W^kgHC?+9p NEK<ub|jfzF%i,BGwx[oDad$eZ`&{SL8AX'th)rqy*QJ~/s\Y P"nm;}2Vl TIc.36 05O4=]vR M#U7_1->!: @* A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system.Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightPalettePositionProgram ExitScrollingSelect by WordSelect monitorTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Some options require that tilda is restarted.Note: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.ASCII DELAlways on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Black on WhiteBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyClose TildaColor palette:ColorsCompatibilityControl-HCreating directory:'%s' Cursor BlinksCustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellDynamically-set Title:Enable TransparencyEnter keyboard shortcutEscape sequenceExit the terminalFailed to launch the web browser. The command was `%s' Font:Found style.css in the user config directory, applying user css style. GeneralGoes after initial titleGoes before initial titleGreen on BlackHide Tilda when mouse leaves itHide when Tilda loses focusIn PixelsInitial Title:Invalid tab position setting, ignoring Isn't displayedKeybindingsLaunching default shell instead LeftLevel of TransparencyMigrating old config path to XDG folders Monitor:On the LeftOn the RightOpen a new terminalOpen a new terminal and hideOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Replace initial titleRestart the commandRightRun a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderSolarized DarkSolarized LightStart Tilda hiddenText ColorThe keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle and CommandTopUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionYou have a bad tab_pos in your configuration file Zenburn_Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2014-06-16 09:53+0200 Last-Translator: Algimantas Margevičius Language-Team: Lithuanian Language: lt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2012-08-07 14:16+0000 X-Generator: Poedit 1.6.5 * Čia turi būti įvesta tinkama komanda kuri gali atverti naršyklę. Galima naudoti programos pavadinimą pvz. „firefox“ ar „google-chrome“ ar tiesiog bendrines komandas „x-www-browser“ ir „xdg-open“. Kiekvienai sistemai geriausia komanda yra skirtinga.Automatinis slėpimasKomandaSuderinamumasPapildomiŠriftasPriekinio ir galinio fono spalvos AukštisPaletėPadėtisProgramos išėjimasSlinkimasPasirinkti pagal žodįPasirinkite monitoriųTerminalo rodymasPavadinimasAdresų valdyklėPlotisLango rodymasPastaba: Kai kurios parinktys įsigalios tik iš naujo paleidus „tilda“.Pastaba: Terminalinėms programoms yra prieinamos šios spalvos.Pastaba: Dėl šių nuostatų kai kurios programos gali elgtis nekorektiškai. Jos čia yra tik dėl to, kad būtų galima apeiti kai kurių programų ir operacinių sistemų, kurios tikisi kitokio terminalo veikimo, elgseną.ASCII DELVisada viršujeAnimuotas nusileidimasAnimacijos delsa (ms)Animacijos orientacijaIšvaizdaGirdimas Terminalo SkambutisAutomatinio slėpimo delsa:Fono spalvaBloga reikšmė "d_set_title" konfigūracijos faile Juoda ant baltoApačiojeEsamos schemosEsamos schemos:Centruotas horizontaliaiCentruotas vertikaliaiUžverti tildaSpalvų paletė:SpalvosSuderinamumasVald-HKuriamas aplankas: „%s“ Kursoriaus mirgėjimasTinkintasKomanda:IšjungtasRodyti visuose darbastaliuoseNerodyti įrankių juostojeRodyti pagrindiniame „shell“Dinamiškai nustatyti pavadinimą:Įjungti permatomumąĮveskite klaviatūros greitąjį klavišą„Escape“ sekaIšeiti iš terminaloNepavyko paleisti interneto naršyklės. Komanda buvo `%s' Šriftas:Naudotojo konfigūracijos aplanke rasta „style.css“, pritaikomas naudotojo stilius. BendraPo pradinės antraštėsPrieš pradinę antraštęŽalia ant juodosPelei palikus Tilda paslėptiSlėpti kai Tilda praranda fokusąTaškaisTerminalo pavadinimasNeteisinga kortelės pozicijos nuostata, ignoruojama NerodomaKlavišų susaistymaiPaleisti numatytąją konsolę vietoj KairėjePermatomumo lygisPerkeliamas senas konfigūracijos kelias į XDG aplankus Monitorius:KairėjeDešinėjeAtverti naują terminaląAtverti naują terminalą ir paslėptiTrūksta atminties, negalima sukurti kortelės ProcentaisKortelių pozicija:Klaida analizuojant komandą: %s Pakeisti pradinę antraštęPaleisti komandą iš naujoDešinėjePaleisti komandą vietoj Shell'oSlinkti paspaudus klavišąSlinkti išvestyjeSlinkimo juosta yra:SlinkimasRodyti kraštusIšblukus juodaIšblukus spalvaPaleisti Tildą paslėptąTeksto spalvaJūsų pasirinktas klavišų susiejimas skirtas „Išskleisti terminalą“ yra netinkamas. Pasirinkite kitą.Tildos %d konfigūracijaTildos KonfigūracijaPavadinimas ir komandaViršusNegalima užverti konfigūravimo failo Nepavyko paleisti komandos: %s Negalima paleisti numatytosios konsolės: %s Negalima atidaryti užrakinto katalogo: %s Negalima paleisit komandos: `%s' Negalima nustatyti Tildos piktogramos: %s Negalima sinchronizuoti konfiguravimo failo Negalima įrašyti į konfigūravimo failą %s Be pavadinimoNaršyklė *:Kai komanda "Exit":Užvėrus paskutinį terminalą:Balta ant juodosŽodžių simboliai:X padėtisY padėtisJūs turite blogai nustatytą tab_pos konfigūracijos faile Zenburn„_Backspace“ klavišas siunčia:_Užverti kortelę„_Delete“ klavišas siunčia:_Nauja kortelė_Atstatyti suderinamumo nustatymus į numatytuosiuseilučiųtilda-1.5.0/po/boldquot.sed0000644000175000017500000000033113047677711012511 00000000000000s/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g s/“/“/g s/”/”/g s/‘/‘/g s/’/’/g tilda-1.5.0/po/it.gmo0000644000175000017500000001606213617635041011304 00000000000000X  ' -=Nd | ]   & = S ^ t  +       % 3 A H X r   7     6 @ 'O w  !  # ) G [ l z   T   ) ;$\#"'&-T] q |2 ((~.  (7HYl W0.DUs7 2I^t{!%<> {#%8,Dc2z 35!;]| `(@i/2.,$%Q+w:5 !9O3c <,3V9*+ 5M @ E/084D&T1H?;Q>J<'(!O7"%.6$U:-AP W2 IC=BFK#GNSL )XR,Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightPalettePositionScrollingSelect by WordTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Built-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyColor palette:ColorsCompatibilityCursor BlinksCustomCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralHide Tilda when mouse leaves itHide when Tilda loses focusIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorThe keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2010-08-22 18:58+0000 Last-Translator: Davide Truffa Language-Team: Italian Language: it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2010-08-23 16:08+0000 X-Generator: Launchpad (build Unknown) Scomparsa AutomaticaComandoCompatibilitàExtraCaratterePrimo piano e sfondoAltezzaTavolozzaPosizioneScorrimentoSeleziona ParoleTerminaleTitoloGestione URLLarghezzaFinestraNota: colori disponibili per le applicazioni da terminale.Nota: queste opzioni potrebbero provocare un funzionamento non corretto di alcune applicazioni. Sono state rese disponibili per quelle applicazioni e sistemi operativi che si aspettano un diverso funzionamento del terminale.Sempre in primo pianoComparsa animataDurata dell'animazione (usec)Direzione dell'animazioneAspettoAvviso acusticoRitardo scomparsa automatica:Colore di sfondoValore errato "d_set_title" nel file di configurazione Schemi incorporatiSchemi incorporatiCentra orizzontalmenteCentra verticalmenteTavolozza dei colori:ColoriCompatibilitàCursore intermittentePersonalizzataComando Personalizzato:Mostra su tutti gli schermiNon mostrare nella barra dei taskTitolo impostato dinamicamente:Abilitare la trasparenzaImpossibile avviare il browser web tramite il comando: `%s' Carattere:GeneraleNascondi tilda all'uscita del mouseNascondi tilda alla perdita del focusIn pixelTitolo iniziale:Posizionamento delle schede non valido, verrà ignorato Scorciatoie da tastieraAvvio della shell predefinita Livello di trasparenzaMemoria insufficiente, non posso creare la scheda PercentualePosizione delle schede:Problemi analizzando il comando personalizzato: %s Esegui un comando personalizzato al posto della shellScorrere alla pressione dei tastiScorrere in presenza di outputBarra di scorrimento:ScorrimentoMostra bordo nelle schedeLancia Tilda nascostaColore del testoLa scorciatoia da tastiera scelta per "Comparsa terminale" non è valida. Selezionarne un'altra.Configurazione di di Tilda - Sessione %dConfigurazione di TildaTitolo e comandoImpossibile chiudere il file di configurazione Impossibile avviare il comando personalizzato: %s Impossibile eseguire la shell predefinita: %s Impossibile aprire la directory di lock: %s Impossibile avviare il comando: `%s' Impossibile impostare l'icona di Tilda: %s Impossibile aggiornare il file di configurazione su disco Impossibile scrivere il file di configurazione in %s Senza titoloComando personalizzato:Posizione orizzontalePosizione verticaleValore errato "tab_pos" nel file di configurazione Il tasto «_Backspace» genera:_Chiudi schedaIl tasto «_Canc» genera:_Nuova scheda_Ripristina valori predefiniti per opzioni di compatibilitàrighetilda-1.5.0/po/pl.gmo0000644000175000017500000001174413617635041011305 00000000000000?Y pq        *5K+\  '>7R '   ! > )I s    $ #* N &k 2    ( I pO       + > L a t  5!4Kbiz-B bl t5- 2#V)^#   ,*J.u$1  HXu 0 5?2./'$;)4 #3+178"<& >! 0% ,6-9:*=(CommandCompatibilityExtrasFontHeightPositionScrollingTitleURL HandlingWidthNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentageRun a custom command instead of the shellScroll on KeystrokeScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to run command: `%s' Unable to write the config file to %s X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-03-06 00:10+0000 Last-Translator: Maciej Habant Language-Team: Polish Language: pl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) PolecenieKompatybilnośćDodatkoweCzcionkaWysokośćPozycjaPrzewijanieTytułObsługa URLiSzerokośćUwaga: Zmiana poniższych opcji może spowodować niewłaściwe działanie niektórych aplikacji. Istnieją one tylko w celu obejścia problemów z pewnymi aplikacjami i systemami operacyjnymi, które oczekują innego zachowania terminala.Zawsze na wierzchuAnimowane rozwijanieOrientacja animacjiWyglądGłośny dzwonek terminalaKolor tłaZła wartość "d_set_title" w pliku konfiguracyjnym Wbudowane schematyWyśrodkowanie poziomeWyśrodkowanie pionoweKoloryKompatybilnośćMruganie kursoraWłasne polecenie:Wyświetlaj na wszystkich obszarach roboczychNie pokazuj na pasku zadańDynamicznie ustawiony tytułWłącz przezroczystośćNie udało się uruchomić przeglądarki. Wywołano komendę `%s' Czcionka:OgólneW pikselachPoczątkowy tytułNieprawidłowe ustawienie pozycji karty, ignorowanie Skróty klawiszoweZamiast tego uruchamiem domyślną powłokę Poziom przezroczystościZbyt mało pamięci do utworzenia nowej zakładki ProcentUruchom własne plecenie zamiast powłokiPrzewijaj po naciśnięciu klawiszaPasek przewijania jest:PrzewijaniePokaż obramowanieUruchamiaj Tildę ukrytąKolor tekstuTytuł i polecenieNie można zamknąć pliku konfiguracyjnego Nie można uruchomić własnej komeny: %s Nie można uruchomić domyślnej powłoki: %s Nie można wykonać polecenia: `%s' Nie można zapisać pliku konfiguracyjnego do %s Pozycja XPozycja YPowinieneś mieć złą wartość tab_pos w swoim pliku konfiguracyjnym Klawisz _Backspace generuje:_Zamknij kartęKlawisz _Delete generuje:_Nowa kartaPrzywróć _domyślne wartości opcji zgodnościwierszetilda-1.5.0/po/fr.gmo0000644000175000017500000001361113617635041011274 00000000000000JlePQbq     -:P 8FXo +   , 3 C ] t  7     ! + : F !\ ~  )     ! . @ $a   ' &   / : 2E x   (  u b~4 Q^x *JDb (,)U!> +#= ak{. 9%2X v$/6(+_/C88!A c nTy+! -E<2-<)9/ 8#!J1D% H&F; $0B +E6>(I @4:7A ,".5*?'CG=3Auto HideCommandCompatibilityExtrasFontHeightPalettePositionScrollingSelect by WordTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Centered HorizontallyCentered VerticallyColor palette:ColorsCompatibilityCustomCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralHide Tilda when mouse leaves itHide when Tilda loses focusIn PixelsInitial Title:KeybindingsLevel of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Run a custom command instead of the shellScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-03-10 22:11+0000 Last-Translator: François Boulogne Language-Team: French Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) Masquage automatiqueCommandeCompatibilitéComplémentsPolice de caractèresHauteurPalettePositionDéfilementSélectionner par motsAffichage du terminalTitreTraitement des URLLargeurAffichage de la fenêtreNote : ces options peuvent gêner le fonctionnement de certaines applications. Elles sont seulement là pour vous permettre de faire fonctionner certaines applications et systèmes d'exploitation qui attendent un comportement du terminal différent.Toujours en avant planArrivée animéeDurée de l'animation (µsec)Orientation de l'animationApparenceDélais de masquage automatiqueCouleur d'arrière-planMauvaise valeur pour "d_set_title" dans le fichier de configuration Centré horizontalementCentré verticalementPalette de couleurs :CouleursCompatibilitéPersonnaliséCommande personnalisée :Afficher sur tous les espaces de travailNe pas afficher dans la barre des tâchesTitre paramétré dynamiquement :Activer la transparenceEchec du lancement du navigateur web. La commande était `%s' Police :GénéralitésMasquer Tilda lorsque le pointeur le quitteMasquer lorsque Tilda perd le focusEn pixelsTitre initial :Raccourcis clavierDegré de transparencePlus de mémoire, ne peut pas créer l'onglet PourcentagePosition des onglets :Exécuter une commande personnalisée au lieu du terminalFaire défiler sur la sortie standardLa barre de défilement est :DéfilementAfficher les contours de la fenêtreDémarrer Tilda cachéCouleur du texteConfiguration de TildaTitre et commandeNe peut pas fermer le fichier de configuration Impossible de lancer la commande personnalisée : %s Impossible d'exécuter la commande : '%s' Ne peut pas paramétrer l'icône de tilda : %s Impossible d'enregistrer le fichier de configuration sur le disque Ne peut pas écrire le fichier de configuration dans %s Sans nomLorsque la commande se termine :Position XPosition YVous avez un mauvais positionnement des onglets dans votre fichier de configuration La touche « _Retour arrière » émet :_Fermer l'ongletLa touche « _Suppr » émet :_Nouvel onglet_Réinitialiser les options de compatibilité aux valeurs par défautlignestilda-1.5.0/po/es.gmo0000644000175000017500000002411413617635041011274 00000000000000{h i ~   '   " 6 G ] s   P ] ~ ft +"18I[q   -G^r7G2:Sm| '  6;)Q{  ! # 1G[)a   To  $#" /L'l& % 02;n ("  " * 6DUo$ #T?g" 7X q|%B"(:Mf }  ( 8-Y"8 A jP  " #  !2!#O!s!|!1! !!2! ""=2"p"y" ""$"9" ##14#f###9###$$-$H$Z$k$$g$$%+%=%0D%1u%4%-%& &-1&=_&8& &&&'-'@' W' c':o'''''?(D(`T;pY/d6(nSX@uV?Q KUzfJ03=Eb%-G l 4,87gc+kMCos[Ohr>I]<&q"e:yi!Aj)a_x 9't 1NPvZ{R2H$5\#^.D*WLmFBw* A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system.Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightPalettePositionProgram ExitScrollingSelect by WordSelect monitorTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Some options require that tilda is restarted.Note: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Black on WhiteBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyClose TildaColor palette:ColorsCompatibilityCreating directory:'%s' Cursor BlinksCustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellDynamically-set Title:Enable TransparencyEnter keyboard shortcutEscape sequenceExit the terminalFailed to launch the web browser. The command was `%s' Font:Found style.css in the user config directory, applying user css style. GeneralGoes after initial titleGoes before initial titleGreen on BlackHide Tilda when mouse leaves itHide when Tilda loses focusIn PixelsInitial Title:Invalid tab position setting, ignoring Isn't displayedKeybindingsLaunching default shell instead LeftLevel of TransparencyMigrating old config path to XDG folders Monitor:On the LeftOn the RightOpen a new terminalOpen a new terminal and hideOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Replace initial titleRestart the commandRightRun a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderSolarized DarkSolarized LightStart Tilda hiddenText ColorThe keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle and CommandTopUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2014-09-07 12:19+0200 Last-Translator: micrococo Language-Team: Spanish Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Lokalize 1.5 Plural-Forms: nplurals=2; plural=(n != 1); * Aquí se debe introducir un comando válido que pueda abrir un navegador web. Se puede usar el nombre de un navegador específico como 'firefox' y 'google-chrome' o los comandos genéricos 'x-www-browser' y 'xdg-open'. El comando más apropiado puede ser distinto dependiendo del sistema.Ocultar automáticamenteComandoCompatibilidadExtrasFuenteColor del texto y del fondoAltoPaletaPosiciónSalir del programaDesplazamientoSelección de palabrasSelección del monitorVisualización de la terminalTítuloManejo de las URLAnchoVisualización de la ventanaNota: Algunas opciones requieren que se reinicie Tilda.Nota: Las aplicaciones de terminal tienen estos colores a su disposición.Nota: Estas opciones pueden causar que algunas aplicaciones se comporten incorrectamente. Sólo están aquí para permitirle trabajar con ciertas aplicaciones y sistemas operativos que esperan un comportamiento diferente del terminal.Siempre visibleAnimar la aparición de la ventanaRetardo de la animación (µseg)Sentido de la animaciónAparienciaTimbre del sistema audibleRetardo de la ocultación automáticaColor de fondoValor erróneo para "d_set_title" en el fichero de configuración Negro sobre blancoAbajoEsquemas internosEsquemas internos:Centrado horizontalmenteCentrado verticalmenteCerrar TildaPaleta de color:ColoresCompatibilidadCrear directorio:'%s' Cursor intermitentePersonalizadoComando personalizado:InhabilitadaMostrar en todos los espacios de trabajoNo mostrar en la barra de tareasUsar la acción predeterminada de la terminalEstablecer título dinámicamente:Activar transparenciaIntroduzca el atajo de tecladoSecuencia de escapeSalir de la terminalFallo al ejecutar el navegador web. El comando era '%s' Tipo de letra:Encontrado style.css en el directorio de configuración del usuario, aplicando el estilo css del usuario. GeneralPonerlo detrás el título inicialPonerlo delante del título inicialVerde sobre negroOcultar Tilda cuando el ratón salga de su ventanaOcultar Tilda cuando pierda el focoPíxelesTítulo inicial:Posición no válida para la pestaña, se ignora No mostrarloAtajos de tecladoEjecutando la terminal predeterminada en su lugar IzquierdaNivel de transparenciaMigrando la antigua ruta de configuración a directorios XDG Monitor:A la izquierdaA la derechaAbrir una nueva terminalAbrir una nueva terminal y ocultarlaNo hay memoria disponible, no se puede crear la pestaña PorcentajePosición de las pestañas:Problema procesando el comando personalizado: %s Sustituir el título InicialReiniciar el comandoDerechaEjecutar un comando personalizado en lugar de la terminalDesplazar al teclearDesplazar tras salidaBarra de desplazamiento:DesplazamientoMostrar borde del cuadernoSolarizado oscuroSolarizado claroIniciar Tilda ocultaColor del textoEl atajo de teclado que ha elegido para "Mostrar la terminal" es inválido. Seleccione otro, por favor.Configuración %d de TildaConfiguración de TildaTítulo y comandoArribaNo se puede cerrar el archivo de configuración No se puede ejecutar el comando personalizado %s No se puede ejecutar la terminal predeterminada: %s No se puede abrir el directorio bloqueado %s No se puede ejecutar el comando: `%s' No se puede establecer el icono de Tilda: %s No se puede sincronizar el archivo de configuración a disco No se puede escribir el fichero de configuración en %s Sin títuloNavegador web *:Cuando el comando termine:Al cerrar la última terminal:Blanco sobre negroCaracteres de palabra:Posición XPosición YTiene un tab_pos erróneo en su archivo de configuración La tecla _Retroceso produce:_Cerrar pestañaLa tecla _Suprimir produce:_Nueva pestaña_Reiniciar las opciones de compatibilidad a las predeterminadaslíneastilda-1.5.0/po/ru.gmo0000644000175000017500000001721113617635041011313 00000000000000L|epq  '  + ?Lb JXj +  0 7 E S c }   7     ' F R s !  # )  * ; I S h {  $ # " 2 O 'o &   2 $ > I ` (i  s  !"!Df(x/9W0ki8<'&6<sr40M ~0>44Hi)S 0<M$b\C'HSp*pUw+F @a t($M[`TB>T@]f21*& Y2+(_ {2+/>9- !F(L  $H; ".D'G=6@*IK #B481:37C5)< ,&AJ%E0?CommandCompatibilityExtrasFontForeground and Background ColorsHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-02-09 09:14+0000 Last-Translator: Anton Shestakov Language-Team: Russian Language: ru MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) КомандаСовместимостьДополнительноШрифтЦвет текста и фонаВысотаРасположениеПрокруткаВнешний вид терминалаЗаголовокОбработка URLШиринаНастройки отображенияЗамечание: Эти параметры могут вызвать некорректную работу некоторых приложений. Они представлены только для того, чтобы позволить работать с некоторыми приложениями и операционными ситемами, ожидающими другого поведения терминала.Поверх всех оконАнимировать появление/скрытиеПродолжительность анимации (мкс)Направление анимацииВнешний видЗвуковой терминальный сигналЦвет фонаНеправильное значение параметра "d_set_title" в файле конфигурации Встроенные схемыЦентрировать по горизонталиЦентрировать по вертикалиЦветаСовместимостьМерцающий курсорПользовательская команда:Отображать на всех рабочих столахНе показывать в панели задачАвтоматически установленный заголовокВключить прозрачностьОшибка при запуске веб-браузера командой «%s» Шрифт:ОсновныеВ пикселах:Исходный заголовок:Неправильный вариант положения вкладки, пропущен Сочетание клавишЗапуск оболочки по умолчанию вместо Уровень прозрачностиНе удалось создать вкладку: память исчерпана В процентах:Расположение закладок:Возникла проблема при обработке пользовательской команды: %s Запускать пользовательскую команду вместо shellПрокручивать клавишамиПрокручивать по мере появления текстаПолоса прокрутки:ПрокруткаРамка вокруг окнаСкрыть Tilda при запускеЦвет текстаНастройка TildaЗаголовок и командаНе удалось закрыть конфигурационный файл Не удалось запустить пользовательскую команду: %s Не удалось запустить оболочку по умолчанию: %s Невозможно открыть директорию lock: %s Не удалось выполнить команду: «%s» Не удалось установить иконку tilda: %s Не удалось записать конфигурационный файл на диск Возникла ошибка при записи конфигурационного файла в %s БезымянныйКогда команда завершается:Позиция по горизонталиПозиция по вертикалиНеправильный параметр tab_pos в файле конфигурации Клавиша _Backspace вызывает:_Закрыть вкладкуКлавиша _Delete вызывает:_Новая вкладка_Восстановить параметры совместимости по умолчаниюcтрок(и)tilda-1.5.0/po/en@boldquot.header0000644000175000017500000000247113047677711013620 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # tilda-1.5.0/po/remove-potcdate.sin0000644000175000017500000000066013047677711014001 00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } tilda-1.5.0/po/stamp-po0000644000175000017500000000001213617635041011633 00000000000000timestamp tilda-1.5.0/po/ca.gmo0000644000175000017500000000507713617635041011257 00000000000000)  ,<Vm  "9 B MXy^   .0Ee$  ( C S l   , "  ! , 7     CommandCompatibilityPositionScrollingTitleNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationCentered VerticallyCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyInitial Title:Level of TransparencyPosition of Tabs:ScrollingStart Tilda hiddenTilda ConfigUnable to open lock directory: %s Unable to run command: `%s' UntitledX PositionY PositionlinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-01-22 10:08+0000 Last-Translator: animarval Language-Team: Catalan Language: ca MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) OrdreCompatibilitatPosicióDesplaçamentTítolNota: aquestes opcions poden fer que algunes aplicacions no funcionin correctament. Només hi són per permetre-us solucionar aspectes de certes aplicacions i sistemes operatius que esperen un comportament diferent del terminal.Sempre en primer plaAnimació del menú desplegableRetard de l'Animació (usec)Orientació de l'AnimacióCentrat VerticalmentOrdre personalitzada:Mostra en tots els espais de treballNo mostrar a la barra de tasquesPosar un Títol Dinàmic:Habilita la transparènciaTítol Inicial:Nivell de TransparènciaPosició de les Pestanyes:DesplaçamentInicia Tilda ocultamentConfiguració de TildaIncapaç d'obrir el directori bloquejat: %s Incapaç d'executar l'ordre: '%s' Sense títolPosició XPosició Ylíniestilda-1.5.0/po/nb.po0000644000175000017500000004606713617635041011133 00000000000000# Norwegian (bokmål) translation of Tilda. # Copyright (C) 2018 Ira W. Snyder # This file is distributed under the same license as the tilda package. # Åka Sikrom , 2018. # msgid "" msgstr "" "Project-Id-Version: tilda 1.5~alpha\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2018-05-29 10:38+0100\n" "Last-Translator: Åka Sikrom \n" "Language-Team: Norwegian Bokmaal \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Norwegian Bokmal\n" "X-Poedit-Country: NORWAY\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Ny fane" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Lukk fane" #: src/menu.ui:16 msgid "_Copy" msgstr "_Kopier" #: src/menu.ui:20 msgid "_Paste" msgstr "_Lim inn" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "_Slå på/av fullskjerm" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "_Slå på/av søkelinje" #: src/menu.ui:36 msgid "_Preferences" msgstr "_Innstillinger" #: src/menu.ui:42 msgid "_Quit" msgstr "_Avslutt" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "Lukk Tilda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "Åpne ny terminal" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "Åpne ny terminal og skjul" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "Topp" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "Bunn" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "Venstre" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "Høyre" #: src/tilda.ui:98 msgid "Hidden" msgstr "Skjult" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "Fokuser terminal" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "Skjul terminal" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "Blokk-peker" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "IBeam-peker" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "Understrek-peker" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "Vis fullstendig fanetittel" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "Vis første n antall tegn i tittel" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "Vis siste n antall tegn i tittel" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "Ikke vis" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "Etter opprinnelig tittel" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "Før opprinnelig tittel" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "Erstatt opprinnelig tittel" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "Gå til forvalgt skall" #: src/tilda.ui:180 msgid "Restart the command" msgstr "Start kommandolinje på nytt" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "Avslutt terminal" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Selvvalgt" #: src/tilda.ui:217 msgid "Green on Black" msgstr "Grønt på svart" #: src/tilda.ui:220 msgid "Black on White" msgstr "Svart på hvitt" #: src/tilda.ui:223 msgid "White on Black" msgstr "Hvitt på svart" #: src/tilda.ui:226 msgid "Zenburn" msgstr "Zenburn" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "Høykontrast lys" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "Høykontrast mørk" #: src/tilda.ui:235 msgid "Snazzy" msgstr "Pyntete" #: src/tilda.ui:257 msgid "On the Left" msgstr "Til venstre" #: src/tilda.ui:260 msgid "On the Right" msgstr "Til høyre" #: src/tilda.ui:263 msgid "Disabled" msgstr "Slått av" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "ASCII DEL" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "Skiftesekvens" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "Control-H" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda-oppsett" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Start Tilda skjult" #: src/tilda.ui:409 msgid "Always on top" msgstr "Alltid øverst" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Vis på alle arbeidsområder" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Ikke vis på oppgavelinje" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Vis grenselinje" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "Bruk som skrivebordsvindu" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "Start i fullskjerm" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "Oppførsel ved ufokusert opprulling:" #: src/tilda.ui:560 msgid "Window Display" msgstr "Vinduvisning" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Pekerblinking" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Terminal-varsellyd" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "Pekerutforming:" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminalvisning" #: src/tilda.ui:703 msgid "Font:" msgstr "Skrifttype:" #: src/tilda.ui:733 msgid "Font" msgstr "Skrifttype" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Skjul Tilda når musepeker går utenfor" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Tidsavbrudd for auto-skjul:" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Skjul når Tilda mister fokus" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Auto-skjul" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "Når siste terminal lukkes:" #: src/tilda.ui:895 msgid "Always prompt on exit" msgstr "Spør alltid ved avslutning" #: src/tilda.ui:918 msgid "Program Exit" msgstr "Avslutning" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" "Merk: Enkelte valg trer ikke i kraft før du starter Tilda " "på nytt." #: src/tilda.ui:953 msgid "General" msgstr "Generelt" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "Ordtegn:" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Velg etter ord" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "Nettleser *:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Håndtering av nettadresser" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Opprinnelig tittel:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "Maksimal tittellengde:" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamisk tittel:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "Tittel-oppførsel:" #: src/tilda.ui:1236 msgid "Title" msgstr "Tittel" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Kjør selvvalgt kommando i stedet for forvalgt skall" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Selvvalgt kommando:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Når kommando avslutter:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "Bruk innloggingsskall" #: src/tilda.ui:1361 msgid "Command" msgstr "Kommando" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" "* Dette feltet krever en gyldig nettleser-kommando. Du kan bruke navnet på " "en konkrét nettleser, som f.eks. «firefox» eller «google-chrome», eller " "generiske kommandoer som «x-www-browser» og «xdg-open». Hvilken kommando/" "variant som er best avhenger av systemet ditt." #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "Vis bekreftelsesdialog ved lukking av fane" #: src/tilda.ui:1445 msgid "Close Action" msgstr "Handling ved lukking" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Tittel og kommando" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Prosent" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "I piksler" #: src/tilda.ui:1561 msgid "Height" msgstr "Høyde" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "Skjerm:" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "Velg skjerm" #: src/tilda.ui:1739 msgid "Width" msgstr "Bredde" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Horisontalt midtstilt" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y-posisjon" #: src/tilda.ui:1827 msgid "X Position" msgstr "X-posisjon" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Vertikalt midtstilt" #: src/tilda.ui:1865 msgid "Position" msgstr "Plassering" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Plassering av faner:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "Utvid faner" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "Vis enkeltfane" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 msgid "Tabs" msgstr "Faner" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Animasjonsforsinkelse (i mikrosek.)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Animasjonsretning" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animert nedrulling" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Gjennomsiktighet" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Slå på gjennomsiktighet" #: src/tilda.ui:2129 msgid "Extras" msgstr "Ekstra" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Utseende" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "Pekerfarge" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Tekstfarge" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Bakgrunnsfarge" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Innebygde skjemaer" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Forgrunns- og bakgrunnsfarger" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "Merk: Terminalprogrammer har mulighet til å bruke disse " "fargene." #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "Velg farge 14" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "Velg farge 13" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "Velg farge 15" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "Velg farge 12" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "Velg farge 10" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "Velg farge 11" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "Velg farge 9" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "Velg farge 7" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "Velg farge 6" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "Velg farge 5" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "Velg farge 4" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "Velg farge 3" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "Velg farge 2" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "Velg farge 1" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "Velg farge 0" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "Velg farge 8" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "Innebygde skjemaer:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Fargepalett:" #: src/tilda.ui:2622 msgid "Palette" msgstr "Palett" #: src/tilda.ui:2641 msgid "Colors" msgstr "Farger" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Rullefelt er:" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "Begrens tilbakerulling til:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "Fjern merke for ubegrenset tilbakerulling." #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Rull ved utdata" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Rull ved knappetrykk" #: src/tilda.ui:2759 msgid "0" msgstr "0" #: src/tilda.ui:2771 msgid "lines" msgstr "linjer" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Rulling" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Rulling" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Merk: Disse valgene kan føre til at enkelte programmer " "oppfører seg rart. Valgene ligger her for at du skal kunne tilpasse Tilda " "til operativsystemer og programmer som forventer en annen oppførsel fra " "terminalprogrammer." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "_Rettetast:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "_Delete-tast:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Tilbakestill kompatibilitetsvalg til standardverdier" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Kompatibilitet" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Kompatibilitet" #: src/tilda.ui:3024 msgid "Keybindings" msgstr "Tastatursnarveier" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Tastatursnarveier" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Klarte ikke å synkronisere oppsettsfil til disk\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Klarte ikke å lukke oppsettsfil\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Klarte ikke å lagre oppsettsfil som %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Klarte ikke å kjøre kommando: «%s»\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Klarte ikke å åpne låsemappe: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "Lager mappe: «%s»\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "Fant style.css i brukermappe. Bruker selvvalgt css-stil.\n" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "Flytter gammel oppsettssti til XDG-mapper\n" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "Valgt oppsettsfil «%s» finnes ikke. Bruker forvalgt sti.\n" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "Valgt snarvei for «Pull Down Terminal» er ugyldig. Velg en annen snarvei." #: src/tilda-keybinding.c:115 msgid "Action" msgstr "Handling" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "Snarvei" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "Skriv inn tastatursnarvei" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "Valgt snarvei for «%s» er ugyldig. Velg en annen snarvei." #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "Klarte ikke å lese lenke %s: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Klarte ikke å starte forvalgt skall: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Klarte ikke å starte selvvalgt kommando: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Kjør selvvalgt kommando i stedet for forvalgt skall" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Starter forvalgt skall i stedet\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Klarte ikke å tolke selvvalgt kommando: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Klarte ikke å starte nettleser. Kommandoen som ble forsøkt var «%s»\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Uten navn" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Oppsettsverdien «d_set_title» har ugyldig verdi\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "Er du sikker på at du vil lukke denne fana?" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Oppsettsfila di inneholder ugyldig verdi for «tab_pos»\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Klarte ikke å bytte ikon for tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Minnet er fullt. Klarte ikke å åpne ny fane\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "Er du sikker på at du vil avslutte?" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Oppsett for Tilda %d" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "Ugyldig pekertype. Tilbakestiller til forvalgt verdi\n" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "Ugyldig oppførsel for ufokusert opprulling. Valget blir ignorert\n" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Ugyldig tab-posisjonsvalg. Valget blir ignorert\n" #~ msgid "Allow Bold Text" #~ msgstr "Tillat fet skrift" #~ msgid "Set the background color" #~ msgstr "Endre bakgrunnsfarge" #~ msgid "Run a command at startup" #~ msgstr "Kjør kommando ved oppstart" #~ msgid "Set the font to the following string" #~ msgstr "Bruk følgende streng som skrifttype" #~ msgid "Configuration file" #~ msgstr "Oppsettsfil" #~ msgid "Scrollback Lines" #~ msgstr "Tilbakerullingslinjer" #~ msgid "Use Scrollbar" #~ msgstr "Bruk rullefelt" #~ msgid "Print the version, then exit" #~ msgstr "Skriv ut versjonsnummer og avslutt" #~ msgid "Set Initial Working Directory" #~ msgstr "Endre forvalgt arbeidsmappe" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Ugjennomsiktighet: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Vis oppsettsveiviser" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Feil under tolking av kommandolinjevalg. Bruk «tilda --help»\n" #~ "for å se alle tilgjengelige valg.\n" #~ "\n" #~ "Feilmelding: %s\n" #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Feil under tolking av kommandolinjevalg for Glib og GTK. Bruk «tilda --" #~ "help-all»\n" #~ "for å se alle tilgjengelige valg.\n" #~ "\n" #~ "Feilmelding: %s\n" #~ msgid "Error allocating memory for a new tilda_cli_options structure.\n" #~ msgstr "Feil under tildeling av minn for ny «tilda_cli_options»-struktur.\n" #~ msgid "Tango" #~ msgstr "Tango" #~ msgid "Linux console" #~ msgstr "Linux-konsoll" #~ msgid "XTerm" #~ msgstr "XTerm" #~ msgid "Rxvt" #~ msgstr "Rxvt" tilda-1.5.0/po/de.gmo0000644000175000017500000002315213617635041011256 00000000000000y8 9 N _ n '      - C [ h |  P ] N 6DVm ++A Uap w  !8Ldt7G -GVv '  )+ U an! #,)2\p   T! 1>P T$u#"'&Fmv  2  :E\(er 8F ]k(}  % =J `nY[*;fu ? K]cw   - I#U y9 RI^ %% ? H 4]   &   @ 2!8!?!%V!8|! !!9!"%">"8E"~"""""" "n"l####.#7#,$(A$#j$'$/$5$ % &%4%(G%p% % % %6%%%& &=%&c&psr1<@qYE:;wo\LHh 'dViWn2-UflQ" uM)a^9S bX]`=D3P# .I(yO!,x5+ReF >J&G/Zk_*?c8[K6CAg0t%mjN$vBT74* A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system.Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightPalettePositionProgram ExitScrollingSelect by WordSelect monitorTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Some options require that tilda is restarted.Note: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Black on WhiteBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyClose TildaColor palette:ColorsCompatibilityControl-HCreating directory:'%s' Cursor BlinksCustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellDynamically-set Title:Enable TransparencyEnter keyboard shortcutEscape sequenceExit the terminalFailed to launch the web browser. The command was `%s' Font:Found style.css in the user config directory, applying user css style. GeneralGoes after initial titleGoes before initial titleGreen on BlackHide Tilda when mouse leaves itHide when Tilda loses focusIn PixelsInitial Title:Invalid tab position setting, ignoring Isn't displayedKeybindingsLaunching default shell instead LeftLevel of TransparencyMigrating old config path to XDG folders On the LeftOn the RightOpen a new terminalOpen a new terminal and hideOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Replace initial titleRestart the commandRightRun a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorThe keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle and CommandTopUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2013-07-13 11:12+0000 Last-Translator: Christian Weber Language-Team: German Language: de MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) * Ein gültiger Befehl, der einen Browser öffnen kann, muss hier eingesetzt werden. Spezifische Befehle wie 'firefox' und 'google-chrome' oder die allgemeinen Befehle 'x-www-browser' und 'xdg-open' sind möglich. Der beste Befehl kann je nach System unterschiedlich sein.Automatisches AusblendenBefehlKompatibilitätExtrasSchriftartVordergrund- und HintergrundfarbeHöhePalettePositionBeendenScrollenWörter auswählenMonitor auswählenTerminal-AnzeigeTitelURL-HandhabungBreiteFenster-AnzeigeHinweis: Manche Optionen erfordern einen Neustart von tilda.Hinweis: Textbasierte Anwendungen können diese Farben nutzen.Hinweis: Diese Einstellungen können zur Folge haben, dass sich einige Anwendungen nicht mehr korrekt verhalten. Sie stehen nur zur Verfügung, damit problematische Anwendungen oder Betriebssysteme reibungslos funktionieren, die ein anderes Terminal-Verhalten erwarten.Im VordergrundPulldown animierenVerzögerte Animation (µsec)AnimationsorientierungDarstellungAkkustische TerminalglockeAusblendeverzögerungHintergrundfarbeUngültiger Wert für "d_set_title" in der Konfigurationsdatei Schwarz auf WeißUntenEingebaute SchemataEingebaute Schemata:Horizontal zentriertVertikal zentriertTilda BeendenFarbpalette:FarbenKompatibilitätStrg-HErstelle Verzeichnis: '%s' blinkender CursorBenutzerdefiniertBenutzerdefinierter Befehl:DeaktiviertAuf allen Arbeitsbereichen anzeigenNicht in der Taskleiste anzeigenStandard-Shell öffnenDynamische Überschrift:Transparenz aktivierenTastenkürzel eingebenEscape-SequenzTerminal beendenKonnte Webbrowser nicht starten. Der Befehl lautete `%s' Schriftart:style.css in Nutzer Config-Verzeichnis gefunden, nutze Nutzer css style. AllgemeinKommt nach AnfangstitelKommt vor AnfangstitelGrün auf SchwarzAusblenden, wenn Maus Tilda verlässtAusblenden, wenn Tilda Fokus verliertIn PixelAnfangsüberschrift:Ungültige Einstellung der Tab-Position. Ignoriere. Nicht angezeigtTastenbelegungenÖffne stattdessen die Standard-Shell LinksTransparenzstufeVerschiebe altes Konfigurationsverzeichnis in XDG-Verzeichnisse LinksRechtsNeues Terminal öffnenNeues Terminal öffnen und ausblendenKein Speicher vorhanden, Tab kann nicht erstellt werden ProzentanteilPosition der Tabs:Problem beim Lesen eines benutzerdefinierten Befehls: %s Ersetzt AnfangstitelBefehl erneut ausführenRechtsFühre benutzerdefinierten Befehl anstelle der Shell ausBei Tastendruck scrollenAusgabe scrollenScrollbalken ist:ScrollenNotitzbuchrand anzeigenTilda versteckt startenTextfarbeDas von Ihnen gewählte Tastenkürzel für "Terminal Einblenden" ist ungültig. Bitte wählen Sie ein Anderes.Tilda %d KonfigurationTilda KonfigurationTitel und BefehlObenKann die Konfigurationsdatei nicht schließen Konnte benutzerdefinierten Befehl nicht ausführen: %s Konnte die Standard-Shell nicht öffnen: %s Kann Lock-Verzeichnis nicht öffnen: %s Kann Befehl nicht ausführen: `%s' Kann Tildas Symbol nicht festlegen: %s Konnte die Konfigurationsdatei nicht speichern Kann die Konfigurationsdatei nicht nach %s schreiben UnbenanntWebbrowser *:Wenn Befehl endet:Wenn letztes Terminal geschlossen wurde:Weiß auf SchwarzWortzeichenX PositionY PositionDie Konfigurationsdatei enthält eine falsche tab_pos _Rücktaste erzeugt:Tab s_chließen_Entfernen-Taste erzeugt:_Neuer TabKompatibilitätseinstellungen auf Vorgabewerte _zurücksetzenZeilentilda-1.5.0/po/el.po0000644000175000017500000003321613617635041011124 00000000000000# Greek, Modern (1453-) translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2007-11-13 19:28+0000\n" "Last-Translator: Alexander Kikis \n" "Language-Team: Greek, Modern (1453-) \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 msgid "_Close Tab" msgstr "" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "" #: src/tilda.ui:409 msgid "Always on top" msgstr "" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "" #: src/tilda.ui:703 msgid "Font:" msgstr "" #: src/tilda.ui:733 msgid "Font" msgstr "" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 msgid "Always prompt on exit" msgstr "" #: src/tilda.ui:918 msgid "Program Exit" msgstr "" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "" #: src/tilda.ui:1561 msgid "Height" msgstr "" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "" #: src/tilda.ui:1739 msgid "Width" msgstr "" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Θέση Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Θέση X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "" #: src/tilda.ui:1865 msgid "Position" msgstr "" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 msgid "Tabs" msgstr "" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "" #: src/tilda.ui:2129 msgid "Extras" msgstr "" #: src/tilda.ui:2148 msgid "Appearance" msgstr "" #: src/tilda.ui:2217 msgid "Cursor Color" msgstr "" #: src/tilda.ui:2265 msgid "Text Color" msgstr "" #: src/tilda.ui:2277 msgid "Background Color" msgstr "" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 msgid "Palette" msgstr "" #: src/tilda.ui:2641 msgid "Colors" msgstr "" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "" #: src/tilda.ui:2707 msgid "Limit scrollback to:" msgstr "" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "" #: src/tilda.ui:3024 msgid "Keybindings" msgstr "" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, c-format msgid "Launching custom command failed with error: %s\n" msgstr "" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #, fuzzy #~ msgid "Set the background color" #~ msgstr "Θέσε το χρώμα στο υπόβαθρο" #, fuzzy #~ msgid "Run a command at startup" #~ msgstr "Τρέξε μια εντολή στο ξεκίνημα" #, fuzzy #~ msgid "Set the font to the following string" #~ msgstr "Θέστε την γραμματοσειρά στην ακόλουθη σειρά" #, fuzzy #~ msgid "Use Scrollbar" #~ msgstr "Χρήση Μπάρας Κύλισις" #, fuzzy #~ msgid "Print the version, then exit" #~ msgstr "Τυπώστε την έκδοση, κατόπιν έξοδος" #, fuzzy #~ msgid "Set Initial Working Directory" #~ msgstr "Καθορισμένος αρχικούς καταλογους εργασίας" #, fuzzy #~ msgid "Opaqueness: 0-100%" #~ msgstr "Αδιαφάνεια: 0-100%" tilda-1.5.0/po/sv.gmo0000644000175000017500000000557313617635041011325 00000000000000*l;     " 8FXo  + 3= LX!n    '?&g  t)@ P]m  !  5 I Q ` y       $ ? L ` u ~   ' * 6 .6 e p ')%$  ! # *"( & CommandExtrasFontHeightPositionTerminal DisplayTitleWidthWindow DisplayAlways on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceCentered HorizontallyCentered VerticallyColorsCompatibilityDisplay on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyGeneralIn PixelsInitial Title:KeybindingsLevel of TransparencyOut of memory, cannot create tab PercentageScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenTitle and CommandUnable to close the config file Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s X PositionY PositionProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2007-05-14 18:18+0000 Last-Translator: Umut Language-Team: Swedish Language: sv MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) KommandoExtrafunktionerTypsnittHöjdPositionTerminalvisningTitelBreddFönstervisningAlltid överstAnimerad rullgardinFördröjning för animering (ms)Orientering för animeringUtseendeHorisontellt centreradVertikalt centreradFärgerKompatibilitetVisa på alla arbetsytorVisa inte i aktivitetsfältDynamiskt inställd titel:Aktivera genomskinlighetAllmäntI bildpunkterInitial titel:TangentbindningarNivå av genomskinlighetSlut på minne, kan inte skapa flik ProcentandelRulla vid utmatningRullningslisten är:RullningVisa ramStarta Tilda doldTitel och kommandoKunde inte stänga konfigurationsfilen Kunde inte ställa in ikon för tilda: %s Kunde inte synkronisera konfigurationsfilen till disk Kunde inte skriva konfigurationsfilen till %s X-positionY-positiontilda-1.5.0/po/en_GB.po0000644000175000017500000005266013617635041011502 00000000000000# English (United Kingdom) translation for tilda # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-01-14 16:23+0000\n" "Last-Translator: John Drinkwater \n" "Language-Team: English (United Kingdom) \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "" #: src/menu.ui:10 #, fuzzy msgid "_Close Tab" msgstr "Command" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 msgid "_Toggle Fullscreen" msgstr "" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Audible Terminal Bell" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Initial Title:" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "ASCII DEL\n" "Escape sequence\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tilda Config" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Start Tilda hidden" #: src/tilda.ui:409 msgid "Always on top" msgstr "Always on top" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Display on all workspaces" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Do not show in taskbar" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Show Notebook Border" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 msgid "Start in fullscreen" msgstr "" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Window Display" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Cursor Blinks" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Audible Terminal Bell" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminal Display" #: src/tilda.ui:703 msgid "Font:" msgstr "Font:" #: src/tilda.ui:733 msgid "Font" msgstr "Font" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "" #: src/tilda.ui:829 #, fuzzy msgid "Auto Hide" msgstr "Title" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Always on top" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Position" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "General" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Web Browser" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "URL Handling" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Initial Title:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dynamically-set Title:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Title" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Run a custom command instead of the shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Custom Command:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "When command exits:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Command" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 msgid "Close Action" msgstr "" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Title and Command" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Percentage" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "In Pixels" #: src/tilda.ui:1561 msgid "Height" msgstr "Height" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Title" #: src/tilda.ui:1739 msgid "Width" msgstr "Width" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centred Horizontally" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y Position" #: src/tilda.ui:1827 msgid "X Position" msgstr "X Position" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centred Vertically" #: src/tilda.ui:1865 msgid "Position" msgstr "Position" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Position of Tabs:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Title" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Animation Delay (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Animation Orientation" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animated Pull-down" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Level of Transparency" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Enable Transparency" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extras" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Appearance" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Cursor Blinks" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Text Colour" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Background Colour" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Built-in Schemes" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Foreground and Background Colours" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 #, fuzzy msgid "Built-in schemes:" msgstr "Built-in Schemes" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "" #: src/tilda.ui:2622 #, fuzzy msgid "Palette" msgstr "Title" #: src/tilda.ui:2641 msgid "Colors" msgstr "Colours" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Scrollbar is:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Scroll-back:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Scroll on Output" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Scroll on Keystroke" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "lines" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Scrolling" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Scrolling" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behaviour." "" #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "_Backspace key generates:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "_Delete key generates:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Reset Compatibility Options to Defaults" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibility" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Compatibility" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Key bindings" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Key bindings" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Unable to run command: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Unable to open lock directory: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "The key binding you chose is invalid. Please choose another." #: src/tilda-keybinding.c:115 msgid "Action" msgstr "" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "The key binding you chose is invalid. Please choose another." #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Run a custom command instead of the shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Untitled" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Bad value for \"d_set_title\" in config file\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "You have a bad tab_pos in your configuration file\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Unable to set tilda's icon: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Out of memory, cannot create tab\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, fuzzy, c-format msgid "Tilda %d Config" msgstr "Tilda Config" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Invalid tab position setting, ignoring\n" #~ msgid "Allow Bold Text" #~ msgstr "Allow Bold Text" #~ msgid "Set the background color" #~ msgstr "Set the background colour" #~ msgid "Run a command at startup" #~ msgstr "Run a command at startup" #~ msgid "Set the font to the following string" #~ msgstr "Set the font to the following string" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Show Configuration Wizard" #~ msgid "Scrollback Lines" #~ msgstr "Scroll-back Lines" #~ msgid "Use Scrollbar" #~ msgstr "Use Scrollbar" #~ msgid "Print the version, then exit" #~ msgstr "Print the version, then exit" #~ msgid "Set Initial Working Directory" #~ msgstr "Set Initial Working Directory" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Opaqueness: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Show Configuration Wizard" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgid "Enable Antialiasing" #~ msgstr "Enable Anti-aliasing" #~ msgid "Use Image for Background" #~ msgstr "Use Image for Background" #~ msgid "Scroll Background" #~ msgstr "Scroll Background" #~ msgid "Use Antialiased Fonts" #~ msgstr "Use Anti-aliased Fonts" #~ msgid "Set Background Image" #~ msgstr "Set Background Image" #~ msgid "Enable Double Buffering" #~ msgstr "Enable Double Buffering" #~ msgid " " #~ msgstr " " #, fuzzy #~ msgid "Paste" #~ msgstr "Title" #, fuzzy #~ msgid "Quit" #~ msgstr "Title" #, fuzzy #~ msgid "Copy" #~ msgstr "Font" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Pull-down Key" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Command" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Height" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "The key binding you chose is invalid. Please choose another." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "The key binding you chose is invalid. Please choose another." #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replaces initial title" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgid "Key Binding" #~ msgstr "Key binding" #~ msgid "Grab Keybinding" #~ msgstr "Grab key binding" tilda-1.5.0/po/lt.po0000644000175000017500000006372313617635041011151 00000000000000msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2014-06-16 09:53+0200\n" "Last-Translator: Algimantas Margevičius \n" "Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2012-08-07 14:16+0000\n" "X-Generator: Poedit 1.6.5\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nauja kortelė" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Užverti kortelę" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 #, fuzzy msgid "_Toggle Fullscreen" msgstr "Perjungti viso ekrano veikseną" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 msgid "Close Tilda" msgstr "Užverti tilda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "Atverti naują terminalą" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "Atverti naują terminalą ir paslėpti" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "Viršus" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "Apačioje" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "Kairėje" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "Dešinėje" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Išeiti iš terminalo" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "Nerodoma" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "Po pradinės antraštės" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "Prieš pradinę antraštę" #: src/tilda.ui:166 msgid "Replace initial title" msgstr "Pakeisti pradinę antraštę" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "Rodyti pagrindiniame „shell“" #: src/tilda.ui:180 msgid "Restart the command" msgstr "Paleisti komandą iš naujo" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "Išeiti iš terminalo" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Tinkintas" #: src/tilda.ui:217 msgid "Green on Black" msgstr "Žalia ant juodos" #: src/tilda.ui:220 msgid "Black on White" msgstr "Juoda ant balto" #: src/tilda.ui:223 msgid "White on Black" msgstr "Balta ant juodos" #: src/tilda.ui:226 msgid "Zenburn" msgstr "Zenburn" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "Išblukus spalva" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "Išblukus juoda" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "Kairėje" #: src/tilda.ui:260 msgid "On the Right" msgstr "Dešinėje" #: src/tilda.ui:263 msgid "Disabled" msgstr "Išjungtas" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "ASCII DEL" #: src/tilda.ui:277 src/tilda.ui:294 msgid "Escape sequence" msgstr "„Escape“ seka" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "Vald-H" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Tildos Konfigūracija" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Paleisti Tildą paslėptą" #: src/tilda.ui:409 msgid "Always on top" msgstr "Visada viršuje" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Rodyti visuose darbastaliuose" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Nerodyti įrankių juostoje" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Rodyti kraštus" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 #, fuzzy msgid "Start in fullscreen" msgstr "Perjungti viso ekrano veikseną" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Lango rodymas" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Kursoriaus mirgėjimas" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Girdimas Terminalo Skambutis" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminalo rodymas" #: src/tilda.ui:703 msgid "Font:" msgstr "Šriftas:" #: src/tilda.ui:733 msgid "Font" msgstr "Šriftas" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Pelei palikus Tilda paslėpti" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Automatinio slėpimo delsa:" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Slėpti kai Tilda praranda fokusą" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Automatinis slėpimas" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "Užvėrus paskutinį terminalą:" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Visada viršuje" #: src/tilda.ui:918 msgid "Program Exit" msgstr "Programos išėjimas" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" "Pastaba: Kai kurios parinktys įsigalios tik iš naujo " "paleidus „tilda“." #: src/tilda.ui:953 msgid "General" msgstr "Bendra" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "Žodžių simboliai:" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Pasirinkti pagal žodį" #: src/tilda.ui:1076 msgid "Web Browser *:" msgstr "Naršyklė *:" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Adresų valdyklė" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Terminalo pavadinimas" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Dinamiškai nustatyti pavadinimą:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Pavadinimas" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Paleisti komandą vietoj Shell'o" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Komanda:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Kai komanda \"Exit\":" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Komanda" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" "* Čia turi būti įvesta tinkama komanda kuri gali atverti naršyklę. Galima " "naudoti programos pavadinimą pvz. „firefox“ ar „google-chrome“ ar tiesiog " "bendrines komandas „x-www-browser“ ir „xdg-open“. Kiekvienai sistemai " "geriausia komanda yra skirtinga." #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "Užverti tilda" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Pavadinimas ir komanda" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Procentais" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "Taškais" #: src/tilda.ui:1561 msgid "Height" msgstr "Aukštis" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "Monitorius:" #: src/tilda.ui:1652 msgid "Select monitor" msgstr "Pasirinkite monitorių" #: src/tilda.ui:1739 msgid "Width" msgstr "Plotis" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centruotas horizontaliai" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Y padėtis" #: src/tilda.ui:1827 msgid "X Position" msgstr "X padėtis" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centruotas vertikaliai" #: src/tilda.ui:1865 msgid "Position" msgstr "Padėtis" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Kortelių pozicija:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Pridėti kortelę" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Animacijos delsa (ms)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Animacijos orientacija" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Animuotas nusileidimas" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Permatomumo lygis" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Įjungti permatomumą" #: src/tilda.ui:2129 msgid "Extras" msgstr "Papildomi" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Išvaizda" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Kursoriaus mirgėjimas" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Teksto spalva" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Fono spalva" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Esamos schemos" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Priekinio ir galinio fono spalvos " #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "Pastaba: Terminalinėms programoms yra prieinamos šios " "spalvos." #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "Esamos schemos:" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Spalvų paletė:" #: src/tilda.ui:2622 msgid "Palette" msgstr "Paletė" #: src/tilda.ui:2641 msgid "Colors" msgstr "Spalvos" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Slinkimo juosta yra:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Slinkimas:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Slinkti išvestyje" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Slinkti paspaudus klavišą" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "eilučių" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Slinkimas" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Slinkimas" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Pastaba: Dėl šių nuostatų kai kurios programos gali elgtis " "nekorektiškai. Jos čia yra tik dėl to, kad būtų galima apeiti kai kurių " "programų ir operacinių sistemų, kurios tikisi kitokio terminalo veikimo, " "elgseną." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "„_Backspace“ klavišas siunčia:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "„_Delete“ klavišas siunčia:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Atstatyti suderinamumo nustatymus į numatytuosius" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Suderinamumas" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Suderinamumas" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Klavišų susaistymai" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Klavišų susaistymai" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Negalima sinchronizuoti konfiguravimo failo\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Negalima užverti konfigūravimo failo\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Negalima įrašyti į konfigūravimo failą %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Negalima paleisit komandos: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Negalima atidaryti užrakinto katalogo: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "Kuriamas aplankas: „%s“\n" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" "Naudotojo konfigūracijos aplanke rasta „style.css“, pritaikomas naudotojo " "stilius.\n" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "Perkeliamas senas konfigūracijos kelias į XDG aplankus\n" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "Jūsų pasirinktas klavišų susiejimas skirtas „Išskleisti terminalą“ yra " "netinkamas. Pasirinkite kitą." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "Užverti tilda" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "Įveskite klaviatūros greitąjį klavišą" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "Jūsų pasirinktas klavišų susiejimas skirtas „Įklijuoti“ yra netinkamas. " "Pasirinkite kitą." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Klaida analizuojant komandą: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Negalima paleisti numatytosios konsolės: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Nepavyko paleisti komandos: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Paleisti komandą vietoj Shell'o" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Paleisti numatytąją konsolę vietoj\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Klaida analizuojant komandą: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Nepavyko paleisti interneto naršyklės. Komanda buvo `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Be pavadinimo" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Bloga reikšmė \"d_set_title\" konfigūracijos faile\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Jūs turite blogai nustatytą tab_pos konfigūracijos faile\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Negalima nustatyti Tildos piktogramos: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Trūksta atminties, negalima sukurti kortelės\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Tildos %d konfigūracija" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Neteisinga kortelės pozicijos nuostata, ignoruojama\n" #~ msgid "Allow Bold Text" #~ msgstr "Leisti paryškintą tekstą" #~ msgid "Set the background color" #~ msgstr "Nustatyti fono spalvą" #~ msgid "Run a command at startup" #~ msgstr "Paleisti komandą pasileidus" #~ msgid "Set the font to the following string" #~ msgstr "Nustatyti šriftą sekančiai eilutei" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Rodyti konfiguravimo vediklį" #~ msgid "Scrollback Lines" #~ msgstr "Slinkimo eilutės" #~ msgid "Use Scrollbar" #~ msgstr "Naudoti slankjuostę" #~ msgid "Print the version, then exit" #~ msgstr "Parodyti versiją, tada išeiti" #~ msgid "Set Initial Working Directory" #~ msgstr "Nustatyti pradinį darbo katalogą" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Neskaidrumas: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Rodyti konfiguravimo vediklį" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Klaida komandinės eilutės nuostatose. Pabandykite \"tilda --help\"\n" #~ "kad pamatytumėte visas galimas nuostatas.\n" #~ "\n" #~ "Klaidos žinutė: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Klaida komandinės eilutės nuostatose. Pabandykite \"tilda --help\"\n" #~ "kad pamatytumėte visas galimas nuostatas.\n" #~ "\n" #~ "Klaidos žinutė: %s\n" #~ msgid "Tango" #~ msgstr "Tango" #~ msgid "Linux console" #~ msgstr "Linux konsolė" #~ msgid "XTerm" #~ msgstr "XTerm" #~ msgid "Rxvt" #~ msgstr "Rxvt" #~ msgid "Enable Antialiasing" #~ msgstr "Įgalinti glodinimą" #~ msgid "Use Image for Background" #~ msgstr "Fonui naudoti paveikslėlį" #~ msgid "Scroll Background" #~ msgstr "Slinkti foną" #~ msgid "Use Antialiased Fonts" #~ msgstr "Naudoti šriftus su taškine korekcija" #~ msgid "Set Background Image" #~ msgstr "Nustatyti fono paveikslėlį" #~ msgid "Enable Double Buffering" #~ msgstr "Įgalinti dvigubą buferį" #~ msgid "Limit maximum length of tab title:" #~ msgstr "Riboti didžiausią leidžiamą kortelės pavadinimo ilgį:" #~ msgid " " #~ msgstr " " #~ msgid " " #~ msgstr " " #~ msgid "Paste" #~ msgstr "Įklijuoti" #~ msgid "Go To Next Tab" #~ msgstr "Eiti į sekančią kortelę" #~ msgid "Quit" #~ msgstr "Išeiti" #~ msgid "Go To Tab 10" #~ msgstr "Eiti į kortelę 10" #~ msgid "Go To Tab 5" #~ msgstr "Eiti į kortelę 5" #~ msgid "Go To Tab 4" #~ msgstr "Eiti į kortelę 4" #~ msgid "Go To Tab 3" #~ msgstr "Eiti į kortelę 3" #~ msgid "Go To Tab 2" #~ msgstr "Eiti į kortelę 2" #~ msgid "Go To Tab 1" #~ msgstr "Eiti į kortelę 1" #~ msgid "Go To Previous Tab" #~ msgstr "Eiti į anstesnę kortelę" #~ msgid "Close Tab" #~ msgstr "Užverti kortelę" #~ msgid "Copy" #~ msgstr "Kopijuoti" #~ msgid "Pull Down Terminal" #~ msgstr "Išskleisti terminalą" #~ msgid "Go To Tab 6" #~ msgstr "Eiti į kortelę 6" #~ msgid "Go To Tab 7" #~ msgstr "Eiti į kortelę 7" #~ msgid "Go To Tab 8" #~ msgstr "Eiti į kortelę 8" #~ msgid "Go To Tab 9" #~ msgstr "Eiti į kortelę 9" #~ msgid "Move Tab Left" #~ msgstr "Perkelti kortelę kairėn" #~ msgid "Move Tab Right" #~ msgstr "Perkelti kortelę dešinėn" #~ msgid "Problem when opening config file\n" #~ msgstr "Klaida atveriant konfigūracijos failą\n" #~ msgid "An unexpected error occured while parsing the config file\n" #~ msgstr "Apdorojant konfigūracijos failą įvyko nežinoma klaida\n" #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Pridėti kortelę“ yra " #~ "netinkamas. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Užverti kortelę“ yra " #~ "netinkamas. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Sekanti kortelė“ yra " #~ "netinkamas. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Ankstesnė kortelė“ yra " #~ "netinkamas. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Perkelti kortelę į kairę“ " #~ "yra netinkamas. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Perkelti kortelę į dešinę“ " #~ "yra netinkamas. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Kopijuoti“ yra netinkamas. " #~ "Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Išeiti“ yra netinkamas. " #~ "Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 1“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 2“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 3“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 4“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 5“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 6“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 7“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 8“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 9“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Jūsų pasirinktas klavišo susiejimas skirtas „Eiti į kortelę 10“ yra " #~ "netinkamass. Pasirinkite kitą." #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Jūsų pasirinktas klavišų susiejimas skirtas „Perjungti viso ekrano " #~ "veikseną“ yra netinkamas. Pasirinkite kitą." #~ msgid "Problem while parsing config file\n" #~ msgstr "Apdorojant konfigūracijos failą įvyko klaida\n" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Pasirinktinai\n" #~ "Žaliai ant Juodo\n" #~ "Juodai ant Balto\n" #~ "Baltai ant Juodo" #~ msgid "Grab Keybinding" #~ msgstr "Nustatyti susaistymą" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Laikyti terminalą atvertą\n" #~ "Pakartoti komandą\n" #~ "Išeiti iš teminalo" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Nebuvo rodomas\n" #~ "Eina po pradinio pavadinimo\n" #~ "Eina prieš pradinį pavadinimą\n" #~ "Pakeiskite pradinį pavadinimą" #~ msgid "Key Binding" #~ msgstr "Klavišo susaistymas" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "Kairėje\n" #~ "Dešinėje\n" #~ "Išjungta" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Viršus\n" #~ "Apačia\n" #~ "Kairė\n" #~ "Dešinė" tilda-1.5.0/po/POTFILES.in0000644000175000017500000000027513557047725011751 00000000000000# List of source files which contain translatable strings. src/menu.ui src/tilda.ui src/configsys.c src/tilda.c src/tilda-keybinding.c src/tilda_terminal.c src/tilda_window.c src/wizard.c tilda-1.5.0/po/it.po0000644000175000017500000006156013617635041011143 00000000000000# Italian translation for tilda # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the tilda package. # Davide Truffa , 2008. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2010-08-22 18:58+0000\n" "Last-Translator: Davide Truffa \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-08-23 16:08+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nuova scheda" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Chiudi scheda" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 #, fuzzy msgid "_Toggle Fullscreen" msgstr "Schermo Intero" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Chiudi scheda" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 #, fuzzy msgid "Hide Terminal" msgstr "Avviso acustico" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Titolo iniziale:" #: src/tilda.ui:177 #, fuzzy msgid "Drop to the default shell" msgstr "Impossibile eseguire la shell predefinita: %s\n" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Personalizzata" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "Carattere ASCII DEL\n" "Sequenza di Escape\n" "Control-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Configurazione di Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Lancia Tilda nascosta" #: src/tilda.ui:409 msgid "Always on top" msgstr "Sempre in primo piano" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Mostra su tutti gli schermi" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Non mostrare nella barra dei task" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Mostra bordo nelle schede" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 #, fuzzy msgid "Start in fullscreen" msgstr "Schermo Intero" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Finestra" #: src/tilda.ui:598 msgid "Cursor Blinks" msgstr "Cursore intermittente" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "Avviso acustico" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Terminale" #: src/tilda.ui:703 msgid "Font:" msgstr "Carattere:" #: src/tilda.ui:733 msgid "Font" msgstr "Carattere" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Nascondi tilda all'uscita del mouse" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Ritardo scomparsa automatica:" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Nascondi tilda alla perdita del focus" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Scomparsa Automatica" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Sempre in primo piano" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Posizione" #: src/tilda.ui:936 #, fuzzy msgid "" "Note: Some options require that tilda is restarted." msgstr "" "Nota: colori disponibili per le applicazioni da terminale." #: src/tilda.ui:953 msgid "General" msgstr "Generale" #: src/tilda.ui:998 #, fuzzy msgid "Word Characters:" msgstr "Caratteri selezionabili come parola" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Seleziona Parole" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Browser web" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Gestione URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Titolo iniziale:" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Titolo impostato dinamicamente:" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Titolo" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Esegui un comando personalizzato al posto della shell" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Comando Personalizzato:" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Comando personalizzato:" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Comando" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Chiudi scheda" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Titolo e comando" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Percentuale" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "In pixel" #: src/tilda.ui:1561 msgid "Height" msgstr "Altezza" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Seleziona Parole" #: src/tilda.ui:1739 msgid "Width" msgstr "Larghezza" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centra orizzontalmente" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Posizione verticale" #: src/tilda.ui:1827 msgid "X Position" msgstr "Posizione orizzontale" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centra verticalmente" #: src/tilda.ui:1865 msgid "Position" msgstr "Posizione" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Posizione delle schede:" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Nuova scheda" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Durata dell'animazione (usec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Direzione dell'animazione" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Comparsa animata" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Livello di trasparenza" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Abilitare la trasparenza" #: src/tilda.ui:2129 msgid "Extras" msgstr "Extra" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Aspetto" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Cursore intermittente" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Colore del testo" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Colore di sfondo" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "Schemi incorporati" #: src/tilda.ui:2303 msgid "Foreground and Background Colors" msgstr "Primo piano e sfondo" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" "Nota: colori disponibili per le applicazioni da terminale." #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "Schemi incorporati" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Tavolozza dei colori:" #: src/tilda.ui:2622 msgid "Palette" msgstr "Tavolozza" #: src/tilda.ui:2641 msgid "Colors" msgstr "Colori" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "Barra di scorrimento:" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Scorrimento all'indietro:" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Scorrere in presenza di output" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "Scorrere alla pressione dei tasti" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "righe" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Scorrimento" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Scorrimento" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Nota: queste opzioni potrebbero provocare un funzionamento " "non corretto di alcune applicazioni. Sono state rese disponibili per quelle " "applicazioni e sistemi operativi che si aspettano un diverso funzionamento " "del terminale." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "Il tasto «_Backspace» genera:" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "Il tasto «_Canc» genera:" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Ripristina valori predefiniti per opzioni di compatibilità" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibilità" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Compatibilità" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Scorciatoie da tastiera" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Scorciatoie da tastiera" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Impossibile aggiornare il file di configurazione su disco\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Impossibile chiudere il file di configurazione\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Impossibile scrivere il file di configurazione in %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Impossibile avviare il comando: `%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "Impossibile aprire la directory di lock: %s\n" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "La scorciatoia da tastiera scelta per \"Comparsa terminale\" non è valida. " "Selezionarne un'altra." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Chiudi scheda" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "La scorciatoia da tastiera scelta per \"Incolla\" non è valida. Selezionarne " "un'altra." #: src/tilda_terminal.c:398 #, fuzzy, c-format msgid "Problem reading link %s: %s\n" msgstr "Problemi analizzando il comando personalizzato: %s\n" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "Impossibile eseguire la shell predefinita: %s\n" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Impossibile avviare il comando personalizzato: %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Esegui un comando personalizzato al posto della shell" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "Avvio della shell predefinita\n" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "Problemi analizzando il comando personalizzato: %s\n" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Impossibile avviare il browser web tramite il comando: `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Senza titolo" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "Valore errato \"d_set_title\" nel file di configurazione\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "Valore errato \"tab_pos\" nel file di configurazione\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Impossibile impostare l'icona di Tilda: %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Memoria insufficiente, non posso creare la scheda\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "Configurazione di di Tilda - Sessione %d" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "Posizionamento delle schede non valido, verrà ignorato\n" #~ msgid "Allow Bold Text" #~ msgstr "Consentire il testo in grassetto" #~ msgid "Set the background color" #~ msgstr "Imposta il colore di sfondo" #~ msgid "Run a command at startup" #~ msgstr "Esegui un comando all'avvio" #~ msgid "Set the font to the following string" #~ msgstr "Imposta il carattere alla seguente stringa" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Mostra wizard di configurazione" #~ msgid "Scrollback Lines" #~ msgstr "Linee di scorrimento" #~ msgid "Use Scrollbar" #~ msgstr "Abilita barra di scorrimento" #~ msgid "Print the version, then exit" #~ msgstr "Mostra numero di versione ed esce" #~ msgid "Set Initial Working Directory" #~ msgstr "Imposta directory iniziale" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Opacità: 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Mostra wizard di configurazione" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Opzione non valida: Usare \"tilda --help\"\n" #~ "per maggiori informazioni.\n" #~ "\n" #~ "Messaggio di errore: %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Opzione non valida: Usare \"tilda --help\"\n" #~ "per maggiori informazioni.\n" #~ "\n" #~ "Messaggio di errore: %s\n" #~ msgid "Tango" #~ msgstr "Tango" #~ msgid "Linux console" #~ msgstr "Console Linux" #~ msgid "XTerm" #~ msgstr "XTerm" #~ msgid "Rxvt" #~ msgstr "Rxvt" #~ msgid "Enable Antialiasing" #~ msgstr "Abilita Antialiasing" #~ msgid "Use Image for Background" #~ msgstr "Usa un'immagine per lo sfondo" #~ msgid "Scroll Background" #~ msgstr "Scorrere in background" #~ msgid "Use Antialiased Fonts" #~ msgstr "Abilita l'Antialiasing per i caratteri" #~ msgid "Set Background Image" #~ msgstr "Imposta immagine di sfondo" #~ msgid "Enable Double Buffering" #~ msgstr "Abilita Double Buffering" #~ msgid " " #~ msgstr " " #~ msgid " " #~ msgstr " " #~ msgid "Paste" #~ msgstr "Incolla" #~ msgid "Go To Next Tab" #~ msgstr "Vai alla scheda sucessiva" #~ msgid "Quit" #~ msgstr "Esci" #~ msgid "Go To Tab 10" #~ msgstr "Vai alla scheda 10" #~ msgid "Go To Tab 5" #~ msgstr "Vai alla scheda 5" #~ msgid "Go To Tab 4" #~ msgstr "Vai alla scheda 4" #~ msgid "Go To Tab 3" #~ msgstr "Vai alla scheda 3" #~ msgid "Go To Tab 2" #~ msgstr "Vai alla scheda 3" #~ msgid "Go To Tab 1" #~ msgstr "Vai alla scheda 1" #~ msgid "Go To Previous Tab" #~ msgstr "Vai alla scheda precedente" #~ msgid "Close Tab" #~ msgstr "Chiudi scheda" #~ msgid "Copy" #~ msgstr "Copia" #~ msgid "Pull Down Terminal" #~ msgstr "Comparsa terminale" #~ msgid "Go To Tab 6" #~ msgstr "Vai alla scheda 6" #~ msgid "Go To Tab 7" #~ msgstr "Vai alla scheda 7" #~ msgid "Go To Tab 8" #~ msgstr "Vai alla scheda 8" #~ msgid "Go To Tab 9" #~ msgstr "Vai alla scheda 9" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Chiudi scheda" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Altezza" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Problemi analizzando il file di configurazione\n" #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Aggiungi scheda\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Chiudi scheda\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Scheda successiva\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Scheda precedente\" non è valida. " #~ "Selezionarne un'altra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Chiudi scheda\" non è valida. " #~ "Selezionarne un'altra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Chiudi scheda\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Copia\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Esci\" non è valida. Selezionarne " #~ "un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 1\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 2\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 3\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 4\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 5\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 6\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 7\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 8\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 9\" non è valida. " #~ "Selezionarne un'altra." #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Vai alla scheda 10\" non è " #~ "valida. Selezionarne un'altra." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "La scorciatoia da tastiera scelta per \"Incolla\" non è valida. " #~ "Selezionarne un'altra." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Problemi analizzando il file di configurazione\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "In alto\n" #~ "In basso\n" #~ "Sinistra\n" #~ "Destra" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "Non è mostrato\n" #~ "Va dopo il titolo iniziale\n" #~ "Va prima del titolo iniziale\n" #~ "Sostituisce il titolo iniziale" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Mantenere il terminale aperto\n" #~ "Riavviare il comando\n" #~ "Uscire dal terminale" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Personalizzati\n" #~ "Verde su nero\n" #~ "Nero su bianco\n" #~ "Bianco su nero" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "A sinistra\n" #~ "A destra\n" #~ "Disabilitata" tilda-1.5.0/po/pt_BR.gmo0000644000175000017500000001311313617635041011670 00000000000000]   . :HWg{  P @ J X j          ) = I X _ m w         5 G M U n         , 9 M j u    )     ( 3 @ R V _ n      ( "!DFfu     $=L[Yc  !#1Uk{  !: KY p(z *17Ohw#   (!? al1$ 6CYk p |%     +D2VUAB/] =WS+ O@ 7R4DM'Z:8;&IL X[,-#0C$)6Y5J>(?H3\"G! N<ETQP.1K%9F *0Auto HideCommandCompatibilityExtrasFontHeightPalettePositionProgram ExitSelect by WordSelect monitorTerminal DisplayTitleWidthWindow DisplayNote: Some options require that tilda is restarted.ASCII DELAlways on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellAuto Hide Delay:Background ColorBlack on WhiteBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyClose TildaColor palette:ColorsCompatibilityControl-HCreating directory:'%s' Cursor BlinksCustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellEnable TransparencyEnter keyboard shortcutExit the terminalFont:GeneralGoes after initial titleGoes before initial titleGreen on BlackHide Tilda when mouse leaves itHide when Tilda loses focusIn PixelsInitial Title:Isn't displayedLeftLevel of TransparencyMonitor:On the LeftOn the RightOpen a new terminalOpen a new terminal and hidePercentagePosition of Tabs:Replace initial titleRestart the commandRightRun a custom command instead of the shellShow Notebook BorderSolarized DarkSolarized LightStart Tilda hiddenText ColorTilda ConfigTitle and CommandTopUntitledWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionZenburn_Close Tab_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2014-08-04 22:29+0000 Last-Translator: NatanJMai Language: pt_BR Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 0Esconder AutomaticamenteComandoCompatibilidadeExtrasFonteAlturaPaletaPosiçãoSair do ProgramaSelecione por palavraSelecione o monitorVisor do terminalTítuloLarguraVitrineNote: Algumas opções requerem que o Tilda seja reiniciado.ASCII DELSempre no topoAnimar a descidaTempo de animaçãoOrientação da AnimaçãoAparênciaSom do terminalTempo para esconder automaticamenteCor do plano de fundoPreto no BrancoInferiorEsquemas embutidosEsquemas Embutidos:Centralizado HorizontalmenteCentralizado VerticalmenteFechar TildaPaleta de cores:CoresCompatibilidadeControl-HCriando diretório:'%s' Efeito do cursorPersonalizadoComando personalizado:InválidoMostrar em todos os espaços de trabalhoNão mostrar na barra de tarefasAlterar para o shell padrãoHabilitar TransparênciaAdicione um atalho de tecladoFechar o terminalFonte:GeralApós o título inicialAntes do título inicialVerde no PretoOcultar Tilda quando mouse sairEsconder Tilda quando perder o focoEm PixelsTítulo Inicial:Não é exibidoEsquerdaNível de TransparênciaMonitor:À esquerdaÀ direitaAbrir um novo terminalAbrir um novo terminal e esconderPercentualPosições das abasSubstituir título inicialReiniciar o comandoDireitaExecutar um comando personalizado em vez do shellMostrar borda do notebookEscuro solarizadoLuz solarizadaIniciar escondidoCor do TextoConfigurações TildaTítulo e ComandoTopoSem títuloNavegador *:Quando o comando sair:Quando o último terminal é fechado:Branco no PretoCaracteres:Posição XPosição YZenburn_Fechar Aba_Nova AbaVoltar opções padrões de compatibilidadeLinhastilda-1.5.0/po/Makevars0000664000175000001440000000343312552462014011647 00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --keyword=col # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Ira W. Snyder # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = sloutri@iit.edu # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = tilda-1.5.0/po/fr.po0000644000175000017500000006166413617635041011143 00000000000000# French translation for tilda # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the tilda package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: tilda\n" "Report-Msgid-Bugs-To: sloutri@iit.edu\n" "POT-Creation-Date: 2020-02-08 23:45+0100\n" "PO-Revision-Date: 2008-03-10 22:11+0000\n" "Last-Translator: François Boulogne \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2008-04-28 05:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: src/menu.ui:6 msgid "_New Tab" msgstr "_Nouvel onglet" #: src/menu.ui:10 msgid "_Close Tab" msgstr "_Fermer l'onglet" #: src/menu.ui:16 msgid "_Copy" msgstr "" #: src/menu.ui:20 msgid "_Paste" msgstr "" #: src/menu.ui:26 #, fuzzy msgid "_Toggle Fullscreen" msgstr "Passer en mode plein écran" #: src/menu.ui:30 msgid "_Toggle Searchbar" msgstr "" #: src/menu.ui:36 msgid "_Preferences" msgstr "" #: src/menu.ui:42 msgid "_Quit" msgstr "" #: src/tilda.ui:69 #, fuzzy msgid "Close Tilda" msgstr "_Fermer l'onglet" #: src/tilda.ui:72 msgid "Open a new terminal" msgstr "" #: src/tilda.ui:75 msgid "Open a new terminal and hide" msgstr "" #: src/tilda.ui:86 src/tilda.ui:194 msgid "Top" msgstr "" #: src/tilda.ui:89 src/tilda.ui:197 msgid "Bottom" msgstr "" #: src/tilda.ui:92 src/tilda.ui:200 msgid "Left" msgstr "" #: src/tilda.ui:95 src/tilda.ui:203 msgid "Right" msgstr "" #: src/tilda.ui:98 msgid "Hidden" msgstr "" #: src/tilda.ui:109 msgid "Focus Terminal" msgstr "" #: src/tilda.ui:112 msgid "Hide Terminal" msgstr "" #: src/tilda.ui:123 msgid "Block Cursor" msgstr "" #: src/tilda.ui:126 msgid "IBeam Cursor" msgstr "" #: src/tilda.ui:129 msgid "Underline Cursor" msgstr "" #: src/tilda.ui:140 msgid "Show whole tab title" msgstr "" #: src/tilda.ui:143 msgid "Show first n chars of title" msgstr "" #: src/tilda.ui:146 msgid "Show last n chars of title" msgstr "" #: src/tilda.ui:157 msgid "Isn't displayed" msgstr "" #: src/tilda.ui:160 msgid "Goes after initial title" msgstr "" #: src/tilda.ui:163 msgid "Goes before initial title" msgstr "" #: src/tilda.ui:166 #, fuzzy msgid "Replace initial title" msgstr "Titre initial :" #: src/tilda.ui:177 msgid "Drop to the default shell" msgstr "" #: src/tilda.ui:180 msgid "Restart the command" msgstr "" #: src/tilda.ui:183 msgid "Exit the terminal" msgstr "" #: src/tilda.ui:214 src/tilda.ui:246 msgid "Custom" msgstr "Personnalisé" #: src/tilda.ui:217 msgid "Green on Black" msgstr "" #: src/tilda.ui:220 msgid "Black on White" msgstr "" #: src/tilda.ui:223 msgid "White on Black" msgstr "" #: src/tilda.ui:226 msgid "Zenburn" msgstr "" #: src/tilda.ui:229 msgid "Solarized Light" msgstr "" #: src/tilda.ui:232 msgid "Solarized Dark" msgstr "" #: src/tilda.ui:235 msgid "Snazzy" msgstr "" #: src/tilda.ui:257 msgid "On the Left" msgstr "" #: src/tilda.ui:260 msgid "On the Right" msgstr "" #: src/tilda.ui:263 msgid "Disabled" msgstr "" #: src/tilda.ui:274 src/tilda.ui:291 msgid "ASCII DEL" msgstr "" #: src/tilda.ui:277 src/tilda.ui:294 #, fuzzy msgid "Escape sequence" msgstr "" "Suppression ASCII\n" "Séquence d'échappement\n" "Ctrl-H" #: src/tilda.ui:280 src/tilda.ui:297 msgid "Control-H" msgstr "" #: src/tilda.ui:314 msgid "Tilda Config" msgstr "Configuration de Tilda" #: src/tilda.ui:395 msgid "Start Tilda hidden" msgstr "Démarrer Tilda caché" #: src/tilda.ui:409 msgid "Always on top" msgstr "Toujours en avant plan" #: src/tilda.ui:423 msgid "Display on all workspaces" msgstr "Afficher sur tous les espaces de travail" #: src/tilda.ui:437 msgid "Do not show in taskbar" msgstr "Ne pas afficher dans la barre des tâches" #: src/tilda.ui:451 msgid "Show Notebook Border" msgstr "Afficher les contours de la fenêtre" #: src/tilda.ui:465 msgid "Set as Desktop window" msgstr "" #: src/tilda.ui:480 #, fuzzy msgid "Start in fullscreen" msgstr "Passer en mode plein écran" #: src/tilda.ui:509 msgid "Non-focus Pull Up Behaviour:" msgstr "" #: src/tilda.ui:560 msgid "Window Display" msgstr "Affichage de la fenêtre" #: src/tilda.ui:598 #, fuzzy msgid "Cursor Blinks" msgstr "Curseur clignotant" #: src/tilda.ui:612 msgid "Audible Terminal Bell" msgstr "" #: src/tilda.ui:628 msgid "Cursor Shape: " msgstr "" #: src/tilda.ui:663 msgid "Terminal Display" msgstr "Affichage du terminal" #: src/tilda.ui:703 msgid "Font:" msgstr "Police :" #: src/tilda.ui:733 msgid "Font" msgstr "Police de caractères" #: src/tilda.ui:782 msgid "Hide Tilda when mouse leaves it" msgstr "Masquer Tilda lorsque le pointeur le quitte" #: src/tilda.ui:799 msgid "Auto Hide Delay:" msgstr "Délais de masquage automatique" #: src/tilda.ui:809 msgid "Hide when Tilda loses focus" msgstr "Masquer lorsque Tilda perd le focus" #: src/tilda.ui:829 msgid "Auto Hide" msgstr "Masquage automatique" #: src/tilda.ui:868 msgid "When last terminal is closed:" msgstr "" #: src/tilda.ui:895 #, fuzzy msgid "Always prompt on exit" msgstr "Toujours en avant plan" #: src/tilda.ui:918 #, fuzzy msgid "Program Exit" msgstr "Position" #: src/tilda.ui:936 msgid "" "Note: Some options require that tilda is restarted." msgstr "" #: src/tilda.ui:953 msgid "General" msgstr "Généralités" #: src/tilda.ui:998 msgid "Word Characters:" msgstr "" #: src/tilda.ui:1026 msgid "Select by Word" msgstr "Sélectionner par mots" #: src/tilda.ui:1076 #, fuzzy msgid "Web Browser *:" msgstr "Navigateur Web" #: src/tilda.ui:1093 msgid "URL Handling" msgstr "Traitement des URL" #: src/tilda.ui:1128 msgid "Initial Title:" msgstr "Titre initial :" #: src/tilda.ui:1150 msgid "Title Max Length:" msgstr "" #: src/tilda.ui:1191 msgid "Dynamically-set Title:" msgstr "Titre paramétré dynamiquement :" #: src/tilda.ui:1203 msgid "Title Behaviour:" msgstr "" #: src/tilda.ui:1236 msgid "Title" msgstr "Titre" #: src/tilda.ui:1297 msgid "Run a custom command instead of the shell" msgstr "Exécuter une commande personnalisée au lieu du terminal" #: src/tilda.ui:1313 msgid "Custom Command:" msgstr "Commande personnalisée :" #: src/tilda.ui:1325 msgid "When Command Exits:" msgstr "Lorsque la commande se termine :" #: src/tilda.ui:1335 msgid "Use a login shell" msgstr "" #: src/tilda.ui:1361 msgid "Command" msgstr "Commande" #: src/tilda.ui:1388 msgid "" "* A valid command that can open a browser must be entered here. It is " "possible to use the name of a specific browser such as 'firefox' and 'google-" "chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The " "best command may be different depending on the system." msgstr "" #: src/tilda.ui:1425 msgid "Show confirmation dialog when closing tab" msgstr "" #: src/tilda.ui:1445 #, fuzzy msgid "Close Action" msgstr "_Fermer l'onglet" #: src/tilda.ui:1466 msgid "Title and Command" msgstr "Titre et commande" #: src/tilda.ui:1510 src/tilda.ui:1688 msgid "Percentage" msgstr "Pourcentage" #: src/tilda.ui:1534 src/tilda.ui:1700 msgid "In Pixels" msgstr "En pixels" #: src/tilda.ui:1561 msgid "Height" msgstr "Hauteur" #: src/tilda.ui:1597 msgid "Monitor:" msgstr "" #: src/tilda.ui:1652 #, fuzzy msgid "Select monitor" msgstr "Sélectionner par mots" #: src/tilda.ui:1739 msgid "Width" msgstr "Largeur" #: src/tilda.ui:1775 msgid "Centered Horizontally" msgstr "Centré horizontalement" #: src/tilda.ui:1793 msgid "Y Position" msgstr "Position Y" #: src/tilda.ui:1827 msgid "X Position" msgstr "Position X" #: src/tilda.ui:1837 msgid "Centered Vertically" msgstr "Centré verticalement" #: src/tilda.ui:1865 msgid "Position" msgstr "Position" #: src/tilda.ui:1903 msgid "Position of Tabs:" msgstr "Position des onglets :" #: src/tilda.ui:1930 msgid "Expand Tabs" msgstr "" #: src/tilda.ui:1944 msgid "Show single Tab" msgstr "" #: src/tilda.ui:1958 msgid "Display Title in Tooltip" msgstr "" #: src/tilda.ui:1981 #, fuzzy msgid "Tabs" msgstr "Ajouter un onglet" #: src/tilda.ui:2030 msgid "Animation Delay (usec)" msgstr "Durée de l'animation (µsec)" #: src/tilda.ui:2042 msgid "Animation Orientation" msgstr "Orientation de l'animation" #: src/tilda.ui:2080 msgid "Animated Pulldown" msgstr "Arrivée animée" #: src/tilda.ui:2096 msgid "Level of Transparency" msgstr "Degré de transparence" #: src/tilda.ui:2106 msgid "Enable Transparency" msgstr "Activer la transparence" #: src/tilda.ui:2129 msgid "Extras" msgstr "Compléments" #: src/tilda.ui:2148 msgid "Appearance" msgstr "Apparence" #: src/tilda.ui:2217 #, fuzzy msgid "Cursor Color" msgstr "Curseur clignotant" #: src/tilda.ui:2265 msgid "Text Color" msgstr "Couleur du texte" #: src/tilda.ui:2277 msgid "Background Color" msgstr "Couleur d'arrière-plan" #: src/tilda.ui:2289 msgid "Built-in Schemes" msgstr "" #: src/tilda.ui:2303 #, fuzzy msgid "Foreground and Background Colors" msgstr "Couleurs de premier et d'arrière plan" #: src/tilda.ui:2335 msgid "" "Note: Terminal applications have these colors available to " "them." msgstr "" #: src/tilda.ui:2378 msgid "Choose Color 14" msgstr "" #: src/tilda.ui:2391 msgid "Choose Color 13" msgstr "" #: src/tilda.ui:2404 msgid "Choose Color 15" msgstr "" #: src/tilda.ui:2417 msgid "Choose Color 12" msgstr "" #: src/tilda.ui:2430 msgid "Choose Color 10" msgstr "" #: src/tilda.ui:2443 msgid "Choose Color 11" msgstr "" #: src/tilda.ui:2456 msgid "Choose Color 9" msgstr "" #: src/tilda.ui:2469 msgid "Choose Color 7" msgstr "" #: src/tilda.ui:2482 msgid "Choose Color 6" msgstr "" #: src/tilda.ui:2495 msgid "Choose Color 5" msgstr "" #: src/tilda.ui:2508 msgid "Choose Color 4" msgstr "" #: src/tilda.ui:2521 msgid "Choose Color 3" msgstr "" #: src/tilda.ui:2534 msgid "Choose Color 2" msgstr "" #: src/tilda.ui:2547 msgid "Choose Color 1" msgstr "" #: src/tilda.ui:2560 msgid "Choose Color 0" msgstr "" #: src/tilda.ui:2574 msgid "Choose Color 8" msgstr "" #: src/tilda.ui:2591 msgid "Built-in schemes:" msgstr "" #: src/tilda.ui:2606 msgid "Color palette:" msgstr "Palette de couleurs :" #: src/tilda.ui:2622 msgid "Palette" msgstr "Palette" #: src/tilda.ui:2641 msgid "Colors" msgstr "Couleurs" #: src/tilda.ui:2698 msgid "Scrollbar is:" msgstr "La barre de défilement est :" #: src/tilda.ui:2707 #, fuzzy msgid "Limit scrollback to:" msgstr "Capacité de défilement :" #: src/tilda.ui:2711 msgid "Unselect for unlimited scrollback." msgstr "" #: src/tilda.ui:2723 msgid "Scroll on Output" msgstr "Faire défiler sur la sortie standard" #: src/tilda.ui:2737 msgid "Scroll on Keystroke" msgstr "" #: src/tilda.ui:2759 msgid "0" msgstr "" #: src/tilda.ui:2771 msgid "lines" msgstr "lignes" #: src/tilda.ui:2797 msgid "Scrolling" msgstr "Défilement" #: src/tilda.ui:2818 msgid "Scrolling" msgstr "Défilement" #: src/tilda.ui:2857 msgid "" "Note: These options may cause some applications to behave " "incorrectly. They are only here to allow you to work around certain " "applications and operating systems that expect different terminal behavior." msgstr "" "Note : ces options peuvent gêner le fonctionnement de " "certaines applications. Elles sont seulement là pour vous permettre de faire " "fonctionner certaines applications et systèmes d'exploitation qui attendent " "un comportement du terminal différent." #: src/tilda.ui:2873 msgid "_Backspace key generates:" msgstr "La touche « _Retour arrière » émet :" #: src/tilda.ui:2887 msgid "_Delete key generates:" msgstr "La touche « _Suppr » émet :" #: src/tilda.ui:2899 msgid "_Reset Compatibility Options to Defaults" msgstr "_Réinitialiser les options de compatibilité aux valeurs par défaut" #: src/tilda.ui:2953 msgid "Compatibility" msgstr "Compatibilité" #: src/tilda.ui:2972 msgid "Compatibility" msgstr "Compatibilité" #: src/tilda.ui:3024 #, fuzzy msgid "Keybindings" msgstr "Raccourcis clavier" #: src/tilda.ui:3043 msgid "Keybindings" msgstr "Raccourcis clavier" #: src/configsys.c:384 msgid "Unable to sync the config file to disk\n" msgstr "Impossible d'enregistrer le fichier de configuration sur le disque\n" #: src/configsys.c:394 msgid "Unable to close the config file\n" msgstr "Ne peut pas fermer le fichier de configuration\n" #: src/configsys.c:407 #, c-format msgid "Unable to write the config file to %s\n" msgstr "Ne peut pas écrire le fichier de configuration dans %s\n" #: src/tilda.c:239 #, c-format msgid "Unable to run command: `%s'\n" msgstr "Impossible d'exécuter la commande : '%s'\n" #: src/tilda.c:284 src/tilda.c:459 #, c-format msgid "Unable to open lock directory: %s\n" msgstr "" #: src/tilda.c:396 #, c-format msgid "Creating directory:'%s'\n" msgstr "" #: src/tilda.c:555 msgid "" "Found style.css in the user config directory, applying user css style.\n" msgstr "" #: src/tilda.c:610 msgid "Migrating old config path to XDG folders\n" msgstr "" #: src/tilda.c:673 #, c-format msgid "Specified config file '%s' does not exist. Reverting to default path.\n" msgstr "" #: src/tilda.c:766 src/tilda-keybinding.c:409 #, fuzzy msgid "" "The keybinding you chose for \"Pull Down Terminal\" is invalid. Please " "choose another." msgstr "" "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " "choisissez en un autre." #: src/tilda-keybinding.c:115 #, fuzzy msgid "Action" msgstr "_Fermer l'onglet" #: src/tilda-keybinding.c:121 msgid "Shortcut" msgstr "" #: src/tilda-keybinding.c:306 msgid "Enter keyboard shortcut" msgstr "" #: src/tilda-keybinding.c:417 #, fuzzy, c-format msgid "The keybinding you chose for \"%s\" is invalid. Please choose another." msgstr "" "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " "choisissez en un autre." #: src/tilda_terminal.c:398 #, c-format msgid "Problem reading link %s: %s\n" msgstr "" #: src/tilda_terminal.c:421 #, c-format msgid "Unable to launch default shell: %s\n" msgstr "" #: src/tilda_terminal.c:423 #, c-format msgid "Unable to launch custom command: %s\n" msgstr "Impossible de lancer la commande personnalisée : %s\n" #: src/tilda_terminal.c:424 #, fuzzy, c-format msgid "Launching custom command failed with error: %s\n" msgstr "Exécuter une commande personnalisée au lieu du terminal" #: src/tilda_terminal.c:425 src/tilda_terminal.c:459 msgid "Launching default shell instead\n" msgstr "" #: src/tilda_terminal.c:458 #, c-format msgid "Problem parsing custom command: %s\n" msgstr "" #: src/tilda_terminal.c:976 #, c-format msgid "Failed to launch the web browser. The command was `%s'\n" msgstr "Echec du lancement du navigateur web. La commande était `%s'\n" #: src/tilda_terminal.c:1026 msgid "Untitled" msgstr "Sans nom" #: src/tilda_terminal.c:1044 msgid "Bad value for \"d_set_title\" in config file\n" msgstr "" "Mauvaise valeur pour \"d_set_title\" dans le fichier de configuration\n" #: src/tilda_window.c:109 msgid "Are you sure you want to close this tab?" msgstr "" #: src/tilda_window.c:156 msgid "You have a bad tab_pos in your configuration file\n" msgstr "" "Vous avez un mauvais positionnement des onglets dans votre fichier de " "configuration\n" #: src/tilda_window.c:811 #, c-format msgid "Unable to set tilda's icon: %s\n" msgstr "Ne peut pas paramétrer l'icône de tilda : %s\n" #: src/tilda_window.c:1105 msgid "Out of memory, cannot create tab\n" msgstr "Plus de mémoire, ne peut pas créer l'onglet\n" #: src/tilda_window.c:1225 msgid "Are you sure you want to Quit?" msgstr "" #: src/wizard.c:138 #, c-format msgid "Tilda %d Config" msgstr "" #: src/wizard.c:561 msgid "Invalid Cursor Type, resetting to default\n" msgstr "" #: src/wizard.c:579 msgid "Invalid non-focus pull up behaviour, ignoring\n" msgstr "" #: src/wizard.c:1046 msgid "Invalid tab position setting, ignoring\n" msgstr "" #~ msgid "Allow Bold Text" #~ msgstr "Autoriser le texte en gras" #~ msgid "Set the background color" #~ msgstr "Paramètrer la couleur de fond" #~ msgid "Run a command at startup" #~ msgstr "Lancer une commande au démarrage" #~ msgid "Set the font to the following string" #~ msgstr "Paramètrer la police à la chaine de caractères suivante" #, fuzzy #~ msgid "Configuration file" #~ msgstr "Montrer l'outil de configuration" #~ msgid "Scrollback Lines" #~ msgstr "Lignes d'historique" #~ msgid "Use Scrollbar" #~ msgstr "Utiliser la barre de défilement" #~ msgid "Print the version, then exit" #~ msgstr "Renvoyer la version, puis quitter" #~ msgid "Set Initial Working Directory" #~ msgstr "Paramètrer le dossier de travail initial" #~ msgid "Opaqueness: 0-100%" #~ msgstr "Opacité : 0-100%" #~ msgid "Show Configuration Wizard" #~ msgstr "Montrer l'outil de configuration" #~ msgid "" #~ "Error parsing command-line options. Try \"tilda --help\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Erreur dans les options de la ligne de commande. Essayez \"tilda --help" #~ "\"\n" #~ "pour voir toutes les options possibles.\n" #~ "\n" #~ "Message d'erreur : %s\n" #, fuzzy #~ msgid "" #~ "Error parsing Glib and GTK specific command-line options. Try \"tilda --" #~ "help-all\"\n" #~ "to see all possible options.\n" #~ "\n" #~ "Error message: %s\n" #~ msgstr "" #~ "Erreur dans les options de la ligne de commande. Essayez \"tilda --help" #~ "\"\n" #~ "pour voir toutes les options possibles.\n" #~ "\n" #~ "Message d'erreur : %s\n" #~ msgid "Tango" #~ msgstr "Tango" #~ msgid "XTerm" #~ msgstr "Xterm" #~ msgid "Rxvt" #~ msgstr "Rxvt" #~ msgid "Enable Antialiasing" #~ msgstr "Activer l'Antialiasing" #~ msgid "Use Image for Background" #~ msgstr "Utiliser une image d'arrière-plan" #~ msgid "Scroll Background" #~ msgstr "Faire défiler l'arrière-plan" #~ msgid "Use Antialiased Fonts" #~ msgstr "Utiliser des polices antialiasées" #~ msgid "Set Background Image" #~ msgstr "Paramètrer l'image de fond" #~ msgid "Enable Double Buffering" #~ msgstr "Activer le Double Buffering" #~ msgid " " #~ msgstr " " #~ msgid "Paste" #~ msgstr "Coller" #~ msgid "Go To Next Tab" #~ msgstr "Aller à l'onglet suivant" #~ msgid "Quit" #~ msgstr "Quitter" #~ msgid "Go To Tab 10" #~ msgstr "Aller à l'onglet 10" #~ msgid "Go To Tab 5" #~ msgstr "Aller à l'onglet 5" #~ msgid "Go To Tab 4" #~ msgstr "Aller à l'onglet 4" #~ msgid "Go To Tab 3" #~ msgstr "Aller à l'onglet 3" #~ msgid "Go To Tab 2" #~ msgstr "Aller à l'onglet 2" #~ msgid "Go To Tab 1" #~ msgstr "Aller à l'onglet 1" #~ msgid "Go To Previous Tab" #~ msgstr "Aller à l'onglet précédent" #~ msgid "Close Tab" #~ msgstr "Fermer l'onglet" #~ msgid "Copy" #~ msgstr "Copier" #, fuzzy #~ msgid "Pull Down Terminal" #~ msgstr "Affichage du terminal" #~ msgid "Go To Tab 6" #~ msgstr "Aller à l'onglet 6" #~ msgid "Go To Tab 7" #~ msgstr "Aller à l'onglet 7" #~ msgid "Go To Tab 8" #~ msgstr "Aller à l'onglet 8" #~ msgid "Go To Tab 9" #~ msgstr "Aller à l'onglet 9" #, fuzzy #~ msgid "Move Tab Left" #~ msgstr "Fermer l'onglet" #, fuzzy #~ msgid "Move Tab Right" #~ msgstr "Hauteur" #, fuzzy #~ msgid "Problem when opening config file\n" #~ msgstr "Problème lors de l'analyse du fichier de configuration\n" #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Add Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Close Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Next Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Previous Tab\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Left\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Move Tab to Right\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Copy\" is invalid. Please choose another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Quit\" is invalid. Please choose another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 1\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 2\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 3\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 4\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 5\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 6\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 7\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 8\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 9\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Go To Tab 10\" is invalid. Please choose " #~ "another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "" #~ "The keybinding you chose for \"Toggle Fullscreen\" is invalid. Please " #~ "choose another." #~ msgstr "" #~ "Le raccourcis clavier que vous avez choisi est invalide. S'il-vous-plaît, " #~ "choisissez en un autre." #, fuzzy #~ msgid "Problem while parsing config file\n" #~ msgstr "Problème lors de l'analyse du fichier de configuration\n" #~ msgid "" #~ "Top\n" #~ "Bottom\n" #~ "Left\n" #~ "Right" #~ msgstr "" #~ "Haut\n" #~ "Bas\n" #~ "Gauche\n" #~ "Droite" #~ msgid "" #~ "Isn't displayed\n" #~ "Goes after initial title\n" #~ "Goes before initial title\n" #~ "Replace initial title" #~ msgstr "" #~ "N'est pas affiché\n" #~ "Placé après le titre initial\n" #~ "Placé avant le titre initial\n" #~ "Remplace le titre initial" #~ msgid "" #~ "Hold the terminal open\n" #~ "Restart the command\n" #~ "Exit the terminal" #~ msgstr "" #~ "Garder le terminal ouvert\n" #~ "Redémarrer la commande\n" #~ "Quitter le terminal" #~ msgid "" #~ "Custom\n" #~ "Green on Black\n" #~ "Black on White\n" #~ "White on Black" #~ msgstr "" #~ "Personnalisé\n" #~ "Vert sur noir\n" #~ "Noir sur blanc\n" #~ "Blanc sur noir" #~ msgid "" #~ "On the Left\n" #~ "On the Right\n" #~ "Disabled" #~ msgstr "" #~ "À gauche\n" #~ "À droite\n" #~ "Désactivé" #, fuzzy #~ msgid "Key Binding" #~ msgstr "Raccourci Clavier" #~ msgid "Grab Keybinding" #~ msgstr "Intercepter les raccourcis clavier" tilda-1.5.0/po/cs.gmo0000644000175000017500000001315213617635041011272 00000000000000Kte`ap  '   /<R :HZq +  ' 5 C S m   7    ' 6 B c !y  )      4 G R _ q $ # "   '; &c   2   , (5 ^ d   +ET gt   /:=x   *=DR .$+;gp'    )5&Ho# 4*E p{4 #10b1+=8- !E(K  $G: ".C'F<5?*HJ #A370926B4); ,&@I%D/>CommandCompatibilityExtrasFontForeground and Background ColorsHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-02-14 07:57+0000 Last-Translator: Vojtěch Trefný Language-Team: Czech Language: cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) PříkazKompatibilitaDoplňkyPísmoBarva pozadí a popředíVýškaUmístěníPosunZobrazení TermináluTitulekURLŠířkaZobrazení oknaPoznámka: Tyto volby mohou způsobit, že některé aplikace nebudou fungovat správně. Jsou tu pouze proto, abyste mohli obejít to, že některé aplikace a operační systémy očekávají jiné chování terminálu.Vždy navrchuAnimované vysouváníDélka animace (mikrosekundy)Směr animaceVzhledTerminálové pípáníBarva pozadíŠpatná hodnota "d_set_title" v konfiguračním souboru. Vestavěná témataVycentrováno vodorovněVycentrováno svisleBarvyKompatibilitaKurzor blikáVlastní příkazZobrazovat na všech plocháchNezobrazovat na panelu úlohDynamický titulekPovolit průhlednostSelhalo spuštění internetového prohlížeče. Příkaz byl `%s' Písmo:ObecnéV pixelechVýchozí titulekNeplatné nastavení pozice panelu. Ignoruji. Klávesové zkratkySpouštím výchozí shell. Úroveň průhlednostiNedostatek paměti, nemohu vytvořit panel ProcentaPozice panelůMísto shellu spustit vlastní příkazPosouvat stiskem klávesyPosouvat při výstupuPosuvník je:PosouváníZobrazovat rámečekSpustit Tildu skrytouBarva textuKonfiguraceTitulek a příkazNemohu zavřít konfigurační soubor Nemohu spustit příkaz: %s Nemohu spustit výchozí shell: %s Nemohu otevřít adresář: %s Nemohu spustit příkaz: `%s' Nemohu nastavit ikonu tildy: %s Nemohu synchronizovat konfigurační soubor na disk Nemohu zapsat konfigurační soubor do %s Bez názvuKdyž příkaz skončíPozice XPozice YŠpatná hodnota tab_pos v konfiguračním souboru. Klávesa _Backspace generuje:_Zavřít kartuKlávesa _Delete generuje:_Nová kartaObnovit standardní nastavení pro _kompatibilituřádkytilda-1.5.0/po/nb.gmo0000644000175000017500000003226213617635041011267 00000000000000   ' '5HWg{    P ]q   +6(U~+ (>Rap *9 H Uap w    #=Th 7GCKd~   *./'^  )& C O\p! # #7)=g{  )9I^etF DTB  $#3"Wz'&":CUdx  2 ! , 2 I R Y f (l     k"#### ##$# # $ &$4$F$X$g$}$ $$ $"$ $$a%^i%% &&&&'#':'L'$U',z''''2'( ((4(9(L(`(v( ( ( ( ( ( ( ( ( ( ) ) ) ,) 9) F) S)`) u) ))) )) ) )) )) **0*J*a*r** ** *H*+ ++97+q+z+++++'++ , $,.,5B,Bx,0,,, -(-0-A-*]--$- - ---.-(.0.,E.!r....4.// -/;/C/]/e/*u/"/ ///00)0;:0v00 0;0K0/1 D1R1e1|11!1-1)1$2'32([212(22*2 3%3 ;3H3a3}33 3 3933 3 34 44$4-4<45E4{444c+. L'bTFDy6 7G_23450189:<=>?,Z!He `;kKPr*z)hlW-naf]CNjAYE"sS#O{~[ i\XgVu%t(Rm@Uo|qwxBQM dJp&}I^/$v* A valid command that can open a browser must be entered here. It is possible to use the name of a specific browser such as 'firefox' and 'google-chrome' or to use the generic commands 'x-www-browser' and 'xdg-open'. The best command may be different depending on the system.0Auto HideCommandCompatibilityExtrasFontForeground and Background ColorsHeightKeybindingsPalettePositionProgram ExitScrollingSelect by WordSelect monitorTabsTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: Some options require that tilda is restarted.Note: Terminal applications have these colors available to them.Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.ASCII DELActionAlways on topAlways prompt on exitAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAre you sure you want to Quit?Are you sure you want to close this tab?Audible Terminal BellAuto Hide Delay:Background ColorBad value for "d_set_title" in config file Black on WhiteBlock CursorBottomBuilt-in SchemesBuilt-in schemes:Centered HorizontallyCentered VerticallyChoose Color 0Choose Color 1Choose Color 10Choose Color 11Choose Color 12Choose Color 13Choose Color 14Choose Color 15Choose Color 2Choose Color 3Choose Color 4Choose Color 5Choose Color 6Choose Color 7Choose Color 8Choose Color 9Close ActionClose TildaColor palette:ColorsCompatibilityControl-HCreating directory:'%s' Cursor BlinksCursor ColorCursor Shape: CustomCustom Command:DisabledDisplay on all workspacesDo not show in taskbarDrop to the default shellDynamically-set Title:Enable TransparencyEnter keyboard shortcutEscape sequenceExit the terminalExpand TabsFailed to launch the web browser. The command was `%s' Focus TerminalFont:Found style.css in the user config directory, applying user css style. GeneralGoes after initial titleGoes before initial titleGreen on BlackHiddenHide TerminalHide Tilda when mouse leaves itHide when Tilda loses focusIBeam CursorIn PixelsInitial Title:Invalid Cursor Type, resetting to default Invalid non-focus pull up behaviour, ignoring Invalid tab position setting, ignoring Isn't displayedKeybindingsLaunching default shell instead LeftLevel of TransparencyLimit scrollback to:Migrating old config path to XDG folders Monitor:Non-focus Pull Up Behaviour:On the LeftOn the RightOpen a new terminalOpen a new terminal and hideOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Problem reading link %s: %s Replace initial titleRestart the commandRightRun a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingSet as Desktop windowShortcutShow Notebook BorderShow confirmation dialog when closing tabShow first n chars of titleShow last n chars of titleShow single TabShow whole tab titleSnazzySolarized DarkSolarized LightSpecified config file '%s' does not exist. Reverting to default path. Start Tilda hiddenStart in fullscreenText ColorThe keybinding you chose for "%s" is invalid. Please choose another.The keybinding you chose for "Pull Down Terminal" is invalid. Please choose another.Tilda %d ConfigTilda ConfigTitle Behaviour:Title Max Length:Title and CommandTopUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s Underline CursorUnselect for unlimited scrollback.UntitledUse a login shellWeb Browser *:When Command Exits:When last terminal is closed:White on BlackWord Characters:X PositionY PositionYou have a bad tab_pos in your configuration file Zenburn_Backspace key generates:_Close Tab_Copy_Delete key generates:_New Tab_Paste_Preferences_Quit_Reset Compatibility Options to Defaults_Toggle Fullscreen_Toggle SearchbarlinesProject-Id-Version: tilda 1.5~alpha Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2018-05-29 10:38+0100 Last-Translator: Åka Sikrom Language-Team: Norwegian Bokmaal Language: nb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-Language: Norwegian Bokmal X-Poedit-Country: NORWAY * Dette feltet krever en gyldig nettleser-kommando. Du kan bruke navnet på en konkrét nettleser, som f.eks. «firefox» eller «google-chrome», eller generiske kommandoer som «x-www-browser» og «xdg-open». Hvilken kommando/variant som er best avhenger av systemet ditt.0Auto-skjulKommandoKompatibilitetEkstraSkrifttypeForgrunns- og bakgrunnsfargerHøydeTastatursnarveierPalettPlasseringAvslutningRullingVelg etter ordVelg skjermFanerTerminalvisningTittelHåndtering av nettadresserBreddeVinduvisningMerk: Enkelte valg trer ikke i kraft før du starter Tilda på nytt.Merk: Terminalprogrammer har mulighet til å bruke disse fargene.Merk: Disse valgene kan føre til at enkelte programmer oppfører seg rart. Valgene ligger her for at du skal kunne tilpasse Tilda til operativsystemer og programmer som forventer en annen oppførsel fra terminalprogrammer.ASCII DELHandlingAlltid øverstSpør alltid ved avslutningAnimert nedrullingAnimasjonsforsinkelse (i mikrosek.)AnimasjonsretningUtseendeEr du sikker på at du vil avslutte?Er du sikker på at du vil lukke denne fana?Terminal-varsellydTidsavbrudd for auto-skjul:BakgrunnsfargeOppsettsverdien «d_set_title» har ugyldig verdi Svart på hvittBlokk-pekerBunnInnebygde skjemaerInnebygde skjemaer:Horisontalt midtstiltVertikalt midtstiltVelg farge 0Velg farge 1Velg farge 10Velg farge 11Velg farge 12Velg farge 13Velg farge 14Velg farge 15Velg farge 2Velg farge 3Velg farge 4Velg farge 5Velg farge 6Velg farge 7Velg farge 8Velg farge 9Handling ved lukkingLukk TildaFargepalett:FargerKompatibilitetControl-HLager mappe: «%s» PekerblinkingPekerfargePekerutforming:SelvvalgtSelvvalgt kommando:Slått avVis på alle arbeidsområderIkke vis på oppgavelinjeGå til forvalgt skallDynamisk tittel:Slå på gjennomsiktighetSkriv inn tastatursnarveiSkiftesekvensAvslutt terminalUtvid fanerKlarte ikke å starte nettleser. Kommandoen som ble forsøkt var «%s» Fokuser terminalSkrifttype:Fant style.css i brukermappe. Bruker selvvalgt css-stil. GenereltEtter opprinnelig tittelFør opprinnelig tittelGrønt på svartSkjultSkjul terminalSkjul Tilda når musepeker går utenforSkjul når Tilda mister fokusIBeam-pekerI pikslerOpprinnelig tittel:Ugyldig pekertype. Tilbakestiller til forvalgt verdi Ugyldig oppførsel for ufokusert opprulling. Valget blir ignorert Ugyldig tab-posisjonsvalg. Valget blir ignorert Ikke visTastatursnarveierStarter forvalgt skall i stedet VenstreGjennomsiktighetBegrens tilbakerulling til:Flytter gammel oppsettssti til XDG-mapper Skjerm:Oppførsel ved ufokusert opprulling:Til venstreTil høyreÅpne ny terminalÅpne ny terminal og skjulMinnet er fullt. Klarte ikke å åpne ny fane ProsentPlassering av faner:Klarte ikke å tolke selvvalgt kommando: %s Klarte ikke å lese lenke %s: %s Erstatt opprinnelig tittelStart kommandolinje på nyttHøyreKjør selvvalgt kommando i stedet for forvalgt skallRull ved knappetrykkRull ved utdataRullefelt er:RullingBruk som skrivebordsvinduSnarveiVis grenselinjeVis bekreftelsesdialog ved lukking av faneVis første n antall tegn i tittelVis siste n antall tegn i tittelVis enkeltfaneVis fullstendig fanetittelPynteteHøykontrast mørkHøykontrast lysValgt oppsettsfil «%s» finnes ikke. Bruker forvalgt sti. Start Tilda skjultStart i fullskjermTekstfargeValgt snarvei for «%s» er ugyldig. Velg en annen snarvei.Valgt snarvei for «Pull Down Terminal» er ugyldig. Velg en annen snarvei.Oppsett for Tilda %dTilda-oppsettTittel-oppførsel:Maksimal tittellengde:Tittel og kommandoToppKlarte ikke å lukke oppsettsfil Klarte ikke å starte selvvalgt kommando: %s Klarte ikke å starte forvalgt skall: %s Klarte ikke å åpne låsemappe: %s Klarte ikke å kjøre kommando: «%s» Klarte ikke å bytte ikon for tilda: %s Klarte ikke å synkronisere oppsettsfil til disk Klarte ikke å lagre oppsettsfil som %s Understrek-pekerFjern merke for ubegrenset tilbakerulling.Uten navnBruk innloggingsskallNettleser *:Når kommando avslutter:Når siste terminal lukkes:Hvitt på svartOrdtegn:X-posisjonY-posisjonOppsettsfila di inneholder ugyldig verdi for «tab_pos» Zenburn_Rettetast:_Lukk fane_Kopier_Delete-tast:_Ny fane_Lim inn_Innstillinger_Avslutt_Tilbakestill kompatibilitetsvalg til standardverdier_Slå på/av fullskjerm_Slå på/av søkelinjelinjertilda-1.5.0/po/pt.gmo0000644000175000017500000001401213617635041011304 00000000000000L|epq  '  + ?Lb JXj +  0 7 E S c }   7     ' F R s !  # )  * ; I S h {  $ # " 2 O 'o &   2 $ > I ` (i   ( ? MZ y" 1<X s~ A39 IV&m 6%4 :D8U!3 1./`  !.F7X0(5* /KS{A  4 @8L  <2+/>9- !F(L  $H; ".D'G=6@*IK #B481:37C5)< ,&AJ%E0?CommandCompatibilityExtrasFontForeground and Background ColorsHeightPositionScrollingTerminal DisplayTitleURL HandlingWidthWindow DisplayNote: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.Always on topAnimated PulldownAnimation Delay (usec)Animation OrientationAppearanceAudible Terminal BellBackground ColorBad value for "d_set_title" in config file Built-in SchemesCentered HorizontallyCentered VerticallyColorsCompatibilityCursor BlinksCustom Command:Display on all workspacesDo not show in taskbarDynamically-set Title:Enable TransparencyFailed to launch the web browser. The command was `%s' Font:GeneralIn PixelsInitial Title:Invalid tab position setting, ignoring KeybindingsLaunching default shell instead Level of TransparencyOut of memory, cannot create tab PercentagePosition of Tabs:Problem parsing custom command: %s Run a custom command instead of the shellScroll on KeystrokeScroll on OutputScrollbar is:ScrollingShow Notebook BorderStart Tilda hiddenText ColorTilda ConfigTitle and CommandUnable to close the config file Unable to launch custom command: %s Unable to launch default shell: %s Unable to open lock directory: %s Unable to run command: `%s' Unable to set tilda's icon: %s Unable to sync the config file to disk Unable to write the config file to %s UntitledWhen Command Exits:X PositionY PositionYou have a bad tab_pos in your configuration file _Backspace key generates:_Close Tab_Delete key generates:_New Tab_Reset Compatibility Options to DefaultslinesProject-Id-Version: tilda Report-Msgid-Bugs-To: sloutri@iit.edu PO-Revision-Date: 2008-04-19 11:22+0000 Last-Translator: João Santos Language-Team: Portuguese Language: pt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Launchpad-Export-Date: 2008-04-28 05:36+0000 X-Generator: Launchpad (build Unknown) ComandoCompatibilidadeExtrasFonteCores de Frente e FundoAlturaPosiçãoRolamentoExibição do TerminalTítuloTratamento de URLComprimentoExibição da JanelaNota: Estas opções podem levar a que algumas aplicações se comportem incorrectamente. Estão aqui apenas para lhe permitir contornar algumas aplicações e sistemas operativos que esperam comportamentos diferentes da consola.Sempre no topoAnimaçãoAtraso da Animação (usec)Orientação de AnimaçãoAparênciaCampainha do Terminal AudívelCor de FundoValor inválido para "d_set_title" no ficheiro de configuração Esquemas Pre-definidosCentrado HorizontalmenteCentrado VerticalmenteCoresCompatibilidadeCursor PiscaComando personalizado:Mostrar em todas as Áreas de TrabalhoNão mostrar na barra de tarefasTítulo definido dinamicamente:Habilitar TransparênciaFalha ao carregar o navegador web. O comando foi `%s' Tipo de letra:GeralEm PixeisTítulo Inicial:Configuração de posição de aba inválida, ignorando Atalhos de TecladoCarregando antes a shell padrão Nivel de TransparênciaMemória Insuficiente, não é possível criar aba PercentagemPosição das AbasProblema ao analisar o comando personalizado: %s Correr um comando personalizado em vez da shellRodar ao Pressionar TeclaRolar com o conteúdoBarra de Rolamento está à:RolamentoMostrar Borda do Bloco de NotasIniciar o Tilda escondidoCor do TextoConfiguração do TildaTítulo e ComandoNão foi possível fechar o ficheiro de configuração Incapaz de carregar o comando personalizado: %s Incapaz de carregar o shell padrão: %s Não foi possível abrir directório de bloqueio: %s Não foi possível correr o comando: '%s' Não foi possível mudar o ícone do tilda: %s Não foi possível escrever as alterações no ficheiro de configuração no disco Não foi possível escrever o ficheiro de configuração para %s Sem títuloQuando o comando sair:Posição XPosição YTem um tab_pos errado no seu ficheiro de configuração Tecla _backspace gera:_Fechar AbaTecla _delete gera:_Nova Aba_Repor Opções de Compatibilidade nos Valores Pre-definidoslinhastilda-1.5.0/configure.ac0000644000175000017500000001664713617634726012056 00000000000000dnl **************************************************************************** dnl Tilda autoconf configuration file. dnl Use autogen.sh to bootstrap the build system. dnl **************************************************************************** m4_define ([tilda_issues], [https://github.com/lanoxx/tilda/issues]) m4_define ([tilda_repository], [https://github.com/lanoxx/tilda]) AC_PREREQ([2.68]) AC_INIT([Tilda], [1.5.0], [tilda_issues], [tilda], [tilda_repository]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/tilda.c]) AC_CONFIG_HEADERS([tilda-config.h:tilda-config.h.in]) AM_INIT_AUTOMAKE([foreign subdir-objects]) # We are going to use silent builds which have a much # nicer output. More information can be found here: # https://wiki.gnome.org/Initiatives/GnomeGoals/NicerBuilds AM_SILENT_RULES([yes]) # See http://www.gnu.org/savannah-checkouts/gnu/automake/manual/html_node/maintainer_002dmode.html # for an explanation of using this macro. The short explanation is: # AM_MAINTAINER_MODE is bad but # AM_MAINTAINER_MODE([enable]) is good AM_MAINTAINER_MODE([enable]) # This registers the option '--enable-maintainer-flags' to the ./configure script # If this option is set then it activates both the '--enable-debug' and '--enable-debug-functions' # options that are defined below. It also activates several flags to the compile such that it # will show more warnings and errors to indicate problems in the source code. AC_ARG_ENABLE([maintainer-flags], [AS_HELP_STRING([--enable-maintainer-flags],[\ Enables extra debugging; use this option if you want to develop for tilda, but to not use it as an end user if you just want to compile and use tilda. \ This option includes the --enable-debug and --enable-debug-functions \ options. And sets several CFLAGS to enable more gcc warnings and errors.])]) if test "x$enable_maintainer_flags" = "xyes"; then enable_debug="yes" enable_debug_functions="yes" CFLAGS="$CFLAGS \ -Wall \ -Wextra \ -fno-common \ -Wstrict-aliasing=2 \ -Wshadow \ -Wmissing-prototypes \ -Wmissing-declarations \ -Wcast-align \ -Wuninitialized \ -Wno-strict-aliasing \ -Werror=pointer-arith \ -Werror=missing-declarations \ -Werror=redundant-decls \ -Werror=empty-body \ -Werror=format \ -Werror=format-security \ -Werror=format-nonliteral \ -Werror=init-self \ -Werror=vla \ -Wno-unused-parameter \ " fi # This registers the option '--enable-debug' in the ./configure script # If this option is set, then the the options -g and -ggdb will be # passed to the compiler. AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],[Enables extra debugging output and \ sets debug flags for gdb])]) if test "x$enable_debug" = "xyes"; then AC_DEFINE([DEBUG], [1], [Enable extra debugging output]) CFLAGS="$CFLAGS -g -ggdb" fi # This registers the option '--debug-functions' in the ./configure script # If this option is set, then the name of each entered function will be # printed on the shell. AC_ARG_ENABLE([debug-functions], [AS_HELP_STRING([--enable-debug-functions],[Enables function call tracing. \ When this option is enabled tilda will print \ the name of each function that is called to the \ console.])]) if test "x$enable_debug_functions" = "xyes"; then AC_DEFINE([DEBUG_FUNCTIONS], [1], [Enable function call tracing]) fi AC_ARG_ENABLE([clang], [AS_HELP_STRING([--enable-clang],[use clang instead of gcc as C compiler.])]) #Use C99 compilation mode if test "x$enable_clang" = "xyes"; then # clang uses c99 mode by default, so we just set CC to clang and we are done CC="clang"; else # We do not need to set CC as the default is gcc, but we need to set it to # use C99 compilation mode CFLAGS="$CFLAGS -std=c99"; fi AC_ARG_ENABLE([lto], [AS_HELP_STRING([--enable-lto],[Optimize at link time. This enables the compiler \ to do a better job at optimization and (hopefully) \ produce smaller binaries.])]) if test "x$enable_lto" = "xyes"; then CFLAGS="$CFLAGS -flto" if test "$CC" != "clang"; then # If the user has enabled lto explicitly, we assume he has made sure # that his toolchain can indeed handle lto objects. CFLAGS="$CFLAGS -fno-fat-lto-objects" fi # In the case of lto optimizations, we need to pass the optimization options # to the linker as well as telling it to use the linker plugin. LDFLAGS="$LDFLAGS $CFLAGS -fuse-linker-plugin" fi AC_PATH_PROG(GLIB_MKENUMS, glib-mkenums, no) if test x$GLIB_MKENUMS = xno; then AC_MSG_ERROR(Could not find a glib-mkenums in your PATH) fi AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources, no) if test x$GLIB_COMPILE_RESOURCES = xno; then AC_MSG_ERROR(Could not find a glib-compile-resources in your PATH) fi # Checks for programs. AC_PROG_CC AM_PROG_CC_C_O # This will initialize the internationalization # capabilities of glib (glib/gi18n.h) and gettext AM_GNU_GETTEXT_VERSION([0.18.1]) AM_GNU_GETTEXT([external]) # Checks for libraries. PKG_PROG_PKG_CONFIG PKG_CHECK_MODULES([GTK], [gtk+-3.0 >= 3.10.0]) PKG_CHECK_MODULES([VTE], [vte-2.91 >= 0.40]) PKG_CHECK_MODULES([LIBCONFUSE], [libconfuse]) PKG_CHECK_MODULES([X11], [x11]) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h malloc.h stdlib.h string.h strings.h sys/ioctl.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_PID_T AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_STRTOD AC_CHECK_FUNCS([mkdir strcasecmp strchr strncasecmp strstr strtol]) AC_CONFIG_FILES([Makefile po/Makefile.in]) AC_OUTPUT dnl --------------------------------------------------------------------------- dnl - Show summary dnl --------------------------------------------------------------------------- dnl The following 'for' block splits the CFLAGS variable into multiple lines of 4 options per line cflaglines="" cflagcount=0 for flag in ${CFLAGS}; do cflaglines=$cflaglines$flag" " cflagcount=$(($cflagcount+1)) if (( $cflagcount % 4 == 0)); then dnl Here we concatenate the current cflaglines variable with a newline and enough spaces dnl such that the lines are correctly indented. Do not try to indent or reformat the dnl position of the double quotes (\"). cflaglines=$cflaglines" " fi done; echo " ${PACKAGE} $VERSION `echo ${PACKAGE} $VERSION | sed "s/./=/g"` prefix: ${prefix} datarootdir: ${datarootdir} datadir: ${datadir} pkgdatadir: `if test x${pkgdatadir} != "x"; then echo ${pkgdatadir}; else echo ${datadir}/${PACKAGE}; fi` source code location: ${srcdir} compiler: ${CC} cflags: ${cflaglines} Maintainer mode: ${USE_MAINTAINER_MODE} VTE: ${vte_package} Use *_DISABLE_DEPRECATED: ${enable_deprecation_flags} " tilda-1.5.0/AUTHORS0000664000175000001440000000065012250600242010573 00000000000000# Current developers Sebastian Geiger lanoxx@gmx.net # Previous developers Tristan Sloughter sloutri@iit.edu Ira Snyder tilda@irasnyder.com Ken Dreyer kdreyer@chicagolug.org Jordan Wilberding diginux@gmail.com Daniel Krol dan@danielkrol.com (configurable keyboard shortcuts feature) Thanks to the everyone who has contributed some patches and helped testing tilda. tilda-1.5.0/ChangeLog0000644000175000017500000005123113617633174011322 00000000000000version 1.5.0 (2020-02-02): * Search is now backwards by default (Sebastian Geiger). * Tilda now handles monitor changes and adjusts its size automatically. This is useful in cases when a notebook is connected to an external monitor (Sebastian Geiger). * Tilda now stores the relative sizes of the window in percent rather than the absolute values in pixels (Sebastian Geiger). * The confirmation dialogs for confirm tab close and prompt on exit are now enabled by default (Sebastian Geiger). * When using the block cursor, the background color of the cursor is now correctly applied (Brian Hsu). * Fixed issue in transparency. Fixes #269 (Sebastian Geiger). * Fixed a resize issue in fullscreen mode. Fixes #306 (Sebastian Geiger). * Tilda now uses asynchronous command spawning. A new option supports changing the default timeout when spawning a command (default is 3 seconds) (Sebastian Geiger). * Various fixes related to the window title. Tooltips now display full tab title (Tom Briden). Fixed missing title on initial window and fixed a problem with setting the title when switching between tabs. Also the computation of the title is now more consistent between the window title, tooltips and the tab title (Sebastian Geiger). * When loading configuration files tilda follows symlinks. Fixes #327 (Sebastian Geiger). * Tilda now uses xdg-open to open web links rather than x-www-browser (lucasbru). * In non-X11 environments such as Wayland tilda will now always use the X11 backend (Roman Hoellen). * Exclamation mark '!' is now supported by the HTTP regex for detecting web links. * Added a check if lock dir exists which avoids a warning when tilda starts the first time and the lock dir has not been created yet (Sebastian Geiger). * We now correctly free the resources when closing the a terminal tab (Sebastian Geiger). * Tilda now uses structured logging. In debug mode tilda will automatically output all debug messages. In non-debug mode, debug messages can still be output by exporting G_MESSAGES_DEBUG=tilda (Sebastian Geiger). * Removed 'Allow Bold' option (Sebastian Geiger). * Removed deprecated antialiasing option (Sebastian Geiger). * Dropped support for older VTE versions (Sebastian Geiger). version 1.4.1 (2018-02-08): * Updated language files (Sebastian Geiger) version 1.4.0 (2018-02-03): * Fixes a problem with close-tab action in the context menu (Alexander Maznev) * The default word matching expression now matches IPv6 addresses (Srđan Panić) * The keybindings in the wizard are now displayed in form of a list (Sivno Toranaga-San, Alexander Maznev, Sebastian Geiger) * Fixed an issue which broke the transparency feature after changing the color scheme (Corentin Néau) * Fixed an issue that prevented the initial tab title from being correctly set (Hoel Kervadec) * Tilda now supports a new command line option to specify the configuration file (Corentin Néau) * The 'Tab Position' option has been moved to appearance section in the wizard (Tom Briden) * New option 'Expand Tabs' causes tabs in the tilda window to fill all available horizontal space (Tom Briden) * New option 'Show Single Tab' to show the tab bar also when only a single tab is open (Tom Briden) * Tilda can now be configured to show a confirmation dialog when closing a tab or when when tilda is closed (Sebastian Geiger) * Tilda now knows a new color scheme called 'Snazzy' (Thanks to devtrium) * The tab title learned more options to configure behavior of long tab tiles (Tom Briden) * The option for double buffering has long been deprecated and was removed in this release (Sebastian Geiger) version 1.3.2 (2016-02-14): * Updated Hacking.md's instructions to reflect VTE 2.91 api bump (Thanks to HiTuX) * Added a widget name to the search widget for easier styling (Sebastian Geiger) * Several code cleanups and a few deprecation warnings where removed (Sebastian Geiger) * Added default styling to the tilda search bar (Sebastian Geiger) * Cleanup code for CSS loading. It now reports an error if something went wrong (Sebastian Geiger) * Fixed a problem that caused tilda to close two tabs when the close tab hotkey was used (Sebastian Geiger) * The preference dialog is now also shown above the tilda window if the tilda window is in fullscreen mode (Alexander Maznev) version 1.3.1 (2015-12-16): * Despite the claim that the transparency was fixed for GNOME Shell there was a regression that broke it again. With this version it should finally be fixed (again). * Images in the appdata file and Readme.md have been updated. * Fixed an issue that would the background transparancy to be reset on a color palette change (Sergey Zolotarev). version 1.3.0 (2015-11-17): * Fixed an issue with transparency in GNOME Shell (Ingmar Olsson) * Fixed wrong move-tab behaviour (Andrew Lin) * Allow changing the font size (Alexander Maznev, Sebastian Geiger) * Fixed an issue that caused the preferences window to be shown below the tilda window (Sebastian Geiger) * Migrated context menu to GAction API, as a result it will now show the relevant hotkey bound for each menu item (Sebastian Geiger) * Custom commands are now validated in the wizard (Sebastian Geiger) * The maximum window size for each monitor is based on the workarea size, instead of the monitor size (Sebastian Geiger) * Fixed an issue in command validation * Added a new option "Use login shell" to start the shell as a login shell (Sebastian Geiger). * The UI file was updated to migrate many deprecated widgets to their new replacements (Sebastian Geiger) * The source now contains some documentation for the multi-monitor feature (Sebastian Geiger) * Make sure tilda never starts outside the visible monitor area, this could happen on when monitors had different sizes or rotations (Sebastian Geiger) * Fixed wrong centering on multi-monitor setups (Thanks to Sivno Toranga-San) * Tilda Wizard now uses the correct icon (Sebastian Geiger) * The fullscreen setting is now persistent (Sivno Toranga-San) * Added an AppData file for Tilda (Alexander Maznev) * Tilda will now show an error message when it starts if there was a problem reading the config file (Sebastian Geiger) * There is now a keybinding to toggle the transparency (Alexander Maznev) * There is now an option for cursor shape and color (Alexander Maznev) * The window title is now set to the current tab title, this is useful when tilda is configured to show up in the task list (Sebastian Geiger) * Fixed a bug with the scrollback limit, infinite scrollback should now correctly work (Alexander Maznev) * The default scrollback length is now 5000 lines (Sebastian Geiger) * Fixed an issue that prevented the configuration file to be written back to disk correctly. As a result the file could sometimes be empty (Sebastian Geiger) * Fixed an issue with the copy and paste hotkeys when the scrollbar was configured to be on the left (Sebastian Geiger) * Avoid an error when the wizard was opened multiple times, now the already open window is focused (Sebastian Geiger) * Tilda can now be configured as a desktop window (EWMH Hint) (Paul G) * There is now a search widget that can be shown with CTRL+SHIFT+F and hidden with Esc (Alexander Maznev and Sebastian Geiger) * Support for the new VTE 2.91 API version was added and is enabled by default, it is still possible to use the old 2.90 API by specifying '--disable-vte-2.91' at configure time (Alexander Maznev) * Fixed an issue with the autohide option by preventing repetitive pulls within 150ms (Furkan Mustafa) * The hide animation has been reworked and no longer resizes the tilda window when hiding it. Additionally some issues with different window managers were fixed. (Lean Rada and Sebastian Geiger) * The monitor chooser in the wizard now uses the monitor names instead of the monitor number (Sivno Toranga-San) * The prevtab and nexttab keybindings have been swapped in the wizard to make them more intuitive (Sebastian Geiger) * There have also been several other fixes, code cleanups and changes to the build system, which should improve the overall stability and usability of tilda (Sebastian Geiger and others) version 1.2.4 (2015-06-28): * Fix a bug introduced in the last version that broke the copy/paste hotkeys when the tabs were reordered. version 1.2.3 (2015-06-20): * Fix a transparency issue on GNOME Shell * Fixed some memory and pointer issues * Fix move-tab key-binding behavior * The wizard window will now in front of the terminal and now behind it * An invalid custom command no longer makes tilda hang * Fix an issue with the scrollback limit, infinit scrollback now works correctly * Increase the default scrollback length to 5000 lines * Fix an issue with copy and paste when the scrollbar was configured to appear on the left * Fixed an issue with config file being trunkated when tilda was closed or the process killed forcibly and tilda did not have enough time to write the whole config file to disk. version 1.2.2 (2014-10-28): * Fixed an error where Tilda failed to start when the lock file directory did not exist or could not be opened. version 1.2.1 (2014-10-16): * Readded empty NEWS file to fix debian packaging * Updated po/ folder version 1.2.0 (2014-10-15): * Fixed background option * Updated README, HACKING and TODO files * Fixed bug in focus/pull-up selection * Made tilda icon themable version 1.2~rc1 (2014-09-25): * Fixed an issue with drop-to-default shell option * Added light and dark solarized schemes * Custom color selection improved * New option to set the maximum tab title length * The fullscreen hotkey is now configurable in the preferences. * Its now possible to compile with clang * Fixed some focus issues * Its now possible to open the context menu with the context-menu button on the keyboard if such a key is present. This provides improved usability for people with disabilities. * Tabs can now be switches using the mouse history buttons. * Tilda now uses non-recursive automake, there have been many improvements to the build system and some code cleanups. Its now also possible to make out-of-tree builds. The debugging output has also been improved and now shows in which file a log message was printed. * There is a new unlimited scrollback option. * A positioning bug when unfullscreening was fixed. * Some improvements for different window managers were made. * Tilda can no be focuses with the hotkey instead of hiding it when it is currently not focused. This new behavior is configurable. * A locking issue has been fixed if multiple tilda instances were started at the same time, which caused a race condition to appear and could delete the configuration file. * The UI file from GtkBuilder is now being compiled into the tilda binary. * There is a new option to hide the tab bar and the border when multiple tabs are open. * When a new tab is opened the tab will now inherit its working directory from the old tab. This behavior is active by default and can only be disabled from an option in the config file. version 1.1.13 (2014-09-22): * Fixed focus stealing issue on mouse enter. This caused the tilda window to become active when the mouse entered the window. * Fixed two functions which prevented building on systems with '-Wreturn-type' enabled in the compiler. version 1.1.12 (2014-05-20): * Fixed an issue where the keystroke for the fullscreen hotkey was carried into the terminal and causes a '~' key to be printed. version 1.1.11 (2013-12-13): * Fixed an issue where the window grows bigger than max_width if there are too many tabs open. Fixed by making the tab bar scrollable. version 1.1.10 (2013-12-01): * Fix custom color support and add a "Custom" entry in the drop down list. * Fixed the patch in the .desktop file to point to the correct location of the pixmap file. version 1.1.9 (2013-11-12): * Backport fix for the goto tab hotkey (previously ordering was backwards). version 1.1.8 (2013-09-23): * Fixed an issue which caused tilda to show a grey window on certain window managers. version 1.1.7 (2013-04-09): * Install files to pkgdatadir instead of datadir to fix a bug in the debian package. version 1.1.6 (2013-03-21): * Update Makefiles to allow a better building of the package on Debian. version 1.1.5 (2013-03-10): * Fixed some Changelog dates version 1.1.4 (2013-03-02): * Fix deprecation errors on tilda.desktop version 1.1.3 (2013-02-25): * Update language files version 1.1.2 (2013-02-25): * Fix a small problem when running make distcheck. version 1.1.1 (2013-02-24): * Made some minor changes to the build files to make package bulding easier. This includes no more silent builds and enabled maintainer mode. version 1.1.0 (2013-02-17): * Added multi-monitor awareness. The wizard now has a new drop down in the appearance tab that allows to choose the monitor. Tilda is now constrained to one monitor and automatically adjusts its size to the new monitor when the selected monitor changes. * Added an option to respawn the terminal if the last one was closed. Options are - Close tilda - Open new terminal - Open new terminal and hide * Tabs are movable now with a hotkey * New color scheme 'zenburn' * Added CSS selectors for the termial window and the wizard, which makes it possible to a styles to the tilda tabs without affecting the wizard. * Fixed the choices of what to do when a custom command exits. The first choice is now "Drop to the default shell", the previous choice was to hold the terminal open, which made the terminal unusable because it had no running shell anymore. * Fixed a bug that required to press CTRL while clicking on a link. * Fixed a bug that made hiding the findow very slow. * Fixed a border issue in the wizard and made some other clean ups so the wizard looks more consistent. verson 1.0.2 (2012-10-01): * Fixed next/prev tab hotkey * Fix scrolling in terminal * Fixed a border issue once more * Add tabs at the end not the front version 1.0.1 (skipped): * skipped because of wrong tag version 1.0.0 (2012-09-16): * Port to GTK+3, VTE-2.90, GtkBuilder * Use Modern Autotools * Fixed compilation warnings und runtime errors * Use glib i18n functions instead of separate libarary * Removed some very old migrarion code for the config file * Fixed a bug with the border version 0.9.6 (2008-4-28): * Move bugtracker to http://bugs.launchpad.net/tilda * Fix metacity-2.20 focus problems * Add future plans to the TODO list * Update documentation to reflect the current keybindings * Fix Ubuntu's bugs about copy and paste * Fix metacity-2.22 focus problems * Fix autotools so that it can generate release tarballs * No more visual bell version 0.9.5 (2007-12-12): * Fixed clear/reset issue * Switched to Gnome shortcut keys * Fixed background scrolling bug * Tabs now loop to beginning/end for next/prev * Better animation support * Major code reorganization * Make WWW links Ctrl+Left Click to open in a web browser * Remove old configuration conversion script * Updated documentation * Use glade to generate the config wizard * Gettextize for translations * Added true transparency * Made scrollbar off by default * Fixed another bug in getting the new lock file (Thanks Wilberding) * Removed resize/move from hide when animation is turned off. This will fix the closing of certain program (i.e. nano) when Tilda is hidden * To keep Tilda open on 'exit' set Preferences->Title and Command->When Command Exits to "Hold the Terminal Open" version 0.9.4 (2006-11-28): * Double Buffering is now in the Preferences. Enable or disable to fix problems with blinking on your system * Add support for a window icon. * Add a --hidden command line option. * Change "Display pulled down on start" to "Start Tilda hidden". * Updated the Preferences window. * Add "centered horizontally" and "centered vertically" options. * Enable double buffering by default. * Fix getnextinstance() function. * Changed default slide delay to 15000 * Now installs .desktop file and icon * Set copy/paste to ctrl-shift-c/ctrl-shift-v * Alt-# for switching tabs now :), sorry for all the changes * Changed getinstance back to its old way of working, so it doesn't just count locks but checks the numbers (thanks wilber) version 0.09.3 (2006-06-28): * ctrl-# changes tab, sorry not alt-# (bash uses that) * ctrl-shift-w fix * Added ability to set height/width by percentage of screen resolution * All Tabs are now the same size * Remove stale code (apply() function). * Patch from Danny Milosavljevic (thanks!) which fixes: * "tilda -C", then Cancel quits app now * wizard is a gtk dialog now (modal, not sure if it's used in other places than the -C command line arg) * wizard uses stock buttons now * fixed the command line in the wizard to take command line arguments as well * fixed the restart handling in close_tab_on_exit (combo entry order changed, but the switch statement contained the old order - it seems) * fixed a strlen warning in tilda_window.c * removed the apply button since it was confusing version 0.09.2 (2006-01-21): * Added libConfuse to configure.in. * Better command-line option help generation. * Switch to libConfuse for config-file parsing. * Internal cleanups / documentation. * Increase use of GLib. * Sliding action added * No more blinking terminal * Added shortcuts for adding tabs and going to the next or prev tab * Various bug fixes version 0.09.1 (2005-10-04): * Fixed problem of tab taking other tabs title * Fixed 100% CPU problem when Tilda is started hidden version 0.09 (2005-10-03): * Added Dynamic tab titles * Added lots of added preferences to Tilda Wizard (too many to name here) * Window Maker bug fix * Possible fix to Tilda not grabbing focus on pull down * Cleaned up the autotools build stuff. There were some directories that should have never gotten into CVS. Run autogen.sh to set up the build now. version 0.08.1 (2005-08-18): * Fixed a bug where the scrollbar would not show up on new tabs. * Fixed a bug where all new tabs in the same instance did not take on the same properties as their parent. * Fixed some GCC4 compile warnings. Thanks to Daniel Holbach for pointing them out! * Minor code cleanups. * Misc bugfixes. version 0.08 (2005-07-31): * Tabs have been added -- right cick on the tilda window to add or remove a tab. * May have fixed some focus issues. * Fixed problem with GNU Screen. * Fixed gthread crash problem. * Misc bugfixes. version 0.07 (2005-06-15): * New right-click menu -- you can configure tilda while it is running. This works for everything but changing the key binding. * Removed the dependency on XBindKeys. Tilda now listens for key-presses on it's own. See the README for details. * Removed support for commands of the form 'tilda -T $NUM' * Each instance of tilda now has it's own config file. * Misc bugfixes. version 0.06 (2005-05-24): * New configuration wizard. Still ugly, and it still does not auto-update yet, but I'm saving that for when you can have each tilda instance configured seperately. * Fixed LOTS of possible (and real) buffer overflows. This fixes some GTK crashes that we were having due to overwriting memory. * Changed the config file code around, it's much less hackish now. * Changed the way tilda is built. * Misc bugfixes. version 0.05.1 (2005-03-25): * Fixed a defunct process that was running loose. version 0.05 (2005-03-15): * Added the environmental variable TILDA_NUM which is set to the current tilda's number to move it up and down. * Fixed a bug where tilda would not clean up after itself 100%. Now each time tilda is run it will check the tmp directory and clean it up if it is not completely clean. version 0.04 (2005-02-09): * Added support for running multiple instances of tilda at the same time. * Fixed a bug where tilda would close X when closing tilda. version 0.03 (2005-01-12): * Fixed bugs of not completely leaving the screen on some window managers. * Added many command-line options. Run 'tilda -h' to see them. * Removed the dependency on devilspie. * Changed the configuration wizard and the ~/.tilda/config file syntax. Be sure to run tilda -C if you are migrating from version 0.02 or earlier to version 0.03. * Added fake transparency, option of black or white background color, option of a scrollbar, and many more. version 0.02 (2005-01-05): * Fixed bugs, hopefully, in writing to configuration files. * Added options in configuration wizard for devilspie and xbindkeys. * Tilda can start devilspie and xbindkeys on start of tilda. * Our first release! tilda-1.5.0/m4/0000755000175000017500000000000013617635040010140 500000000000000tilda-1.5.0/m4/lib-link.m40000644000175000017500000010020213047677711012026 00000000000000# lib-link.m4 serial 21 (gettext-0.18) dnl Copyright (C) 2001-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_PREREQ([2.54]) dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[translit([$1],[./-], [___])]) pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes popdef([NAME]) popdef([Name]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. The missing-message dnl defaults to 'no' and may contain additional hints for the user. dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[translit([$1],[./-], [___])]) pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, dnl because these -l options might require -L options that are present in dnl LIBS. -l options benefit only from the -L options listed before it. dnl Otherwise, add it to the front of LIBS, because it may be a static dnl library that depends on another static library that is present in LIBS. dnl Static libraries benefit only from the static libraries listed after dnl it. case " $LIB[]NAME" in *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; *) LIBS="$LIB[]NAME $LIBS" ;; esac AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= LIB[]NAME[]_PREFIX= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) popdef([NAME]) popdef([Name]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl acl_libext, dnl acl_shlibext, dnl acl_hardcode_libdir_flag_spec, dnl acl_hardcode_libdir_separator, dnl acl_hardcode_direct, dnl acl_hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ dnl Tell automake >= 1.10 to complain if config.rpath is missing. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE([rpath], [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_FROMPACKAGE(name, package) dnl declares that libname comes from the given package. The configure file dnl will then not have a --with-libname-prefix option but a dnl --with-package-prefix option. Several libraries can come from the same dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar dnl macro call that searches for libname. AC_DEFUN([AC_LIB_FROMPACKAGE], [ pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) define([acl_frompackage_]NAME, [$2]) popdef([NAME]) pushdef([PACK],[$2]) pushdef([PACKUP],[translit(PACK,[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) define([acl_libsinpackage_]PACKUP, m4_ifdef([acl_libsinpackage_]PACKUP, [acl_libsinpackage_]PACKUP[[, ]],)[lib$1]) popdef([PACKUP]) popdef([PACK]) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) pushdef([PACKUP],[translit(PACK,[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) dnl Autoconf >= 2.61 supports dots in --with options. pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[translit(PACK,[.],[_])],PACK)]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_ARG_WITH(P_A_C_K[-prefix], [[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= LIB[]NAME[]_PREFIX= dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been dnl computed. So it has to be reset here. HAVE_LIB[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" dnl The same code as in the loop below: dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$acl_hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi popdef([P_A_C_K]) popdef([PACKLIBS]) popdef([PACKUP]) popdef([PACK]) popdef([NAME]) ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) dnl For those cases where a variable contains several -L and -l options dnl referring to unknown libraries and directories, this macro determines the dnl necessary additional linker options for the runtime path. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) dnl sets LDADDVAR to linker options needed together with LIBSVALUE. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, dnl otherwise linking without libtool is assumed. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], [ AC_REQUIRE([AC_LIB_RPATH]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) $1= if test "$enable_rpath" != no; then if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode directories into the resulting dnl binary. rpathdirs= next= for opt in $2; do if test -n "$next"; then dir="$next" dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= else case $opt in -L) next=yes ;; -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= ;; *) next= ;; esac fi done if test "X$rpathdirs" != "X"; then if test -n ""$3""; then dnl libtool is used for linking. Use -R options. for dir in $rpathdirs; do $1="${$1}${$1:+ }-R$dir" done else dnl The linker is used for linking directly. if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user dnl must pass all path elements in one option. alldirs= for dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="$flag" else dnl The -rpath options are cumulative. for dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="${$1}${$1:+ }$flag" done fi fi fi fi fi AC_SUBST([$1]) ]) tilda-1.5.0/m4/nls.m40000644000175000017500000000231513047677711011127 00000000000000# nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) tilda-1.5.0/m4/lib-prefix.m40000644000175000017500000002042213047677711012373 00000000000000# lib-prefix.m4 serial 7 (gettext-0.18) dnl Copyright (C) 2001-2005, 2008-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) dnl AC_LIB_PREPARE_MULTILIB creates dnl - a variable acl_libdirstem, containing the basename of the libdir, either dnl "lib" or "lib64" or "lib/64", dnl - a variable acl_libdirstem2, as a secondary possible value for dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or dnl "lib/amd64". AC_DEFUN([AC_LIB_PREPARE_MULTILIB], [ dnl There is no formal standard regarding lib and lib64. dnl On glibc systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine dnl the compiler's default mode by looking at the compiler's library search dnl path. If at least one of its elements ends in /lib64 or points to a dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. dnl Otherwise we use the default, namely "lib". dnl On Solaris systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. AC_REQUIRE([AC_CANONICAL_HOST]) acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment dnl . dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the dnl symlink is missing, so we set acl_libdirstem2 too. AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], [AC_EGREP_CPP([sixtyfour bits], [ #ifdef _LP64 sixtyfour bits #endif ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) ]) if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" ]) tilda-1.5.0/m4/intlmacosx.m40000644000175000017500000000457513047677711012526 00000000000000# intlmacosx.m4 serial 3 (gettext-0.18) dnl Copyright (C) 2004-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Checks for special options needed on MacOS X. dnl Defines INTL_MACOSX_LIBS. AC_DEFUN([gt_INTL_MACOSX], [ dnl Check for API introduced in MacOS X 10.2. AC_CACHE_CHECK([for CFPreferencesCopyAppValue], [gt_cv_func_CFPreferencesCopyAppValue], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFPreferencesCopyAppValue(NULL, NULL)], [gt_cv_func_CFPreferencesCopyAppValue=yes], [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in MacOS X 10.3. AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFLocaleCopyCurrent();], [gt_cv_func_CFLocaleCopyCurrent=yes], [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi AC_SUBST([INTL_MACOSX_LIBS]) ]) tilda-1.5.0/m4/lib-ld.m40000644000175000017500000000660313047677711011502 00000000000000# lib-ld.m4 serial 4 (gettext-0.18) dnl Copyright (C) 1996-2003, 2009-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Subroutines of libtool.m4, dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision dnl with libtool.m4. dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], [# I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by GCC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]* | [A-Za-z]:[\\/]*)] [re_direlt='/[^/][^/]*/\.\./'] # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL([acl_cv_path_LD], [if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi]) LD="$acl_cv_path_LD" if test -n "$LD"; then AC_MSG_RESULT([$LD]) else AC_MSG_RESULT([no]) fi test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) AC_LIB_PROG_LD_GNU ]) tilda-1.5.0/m4/gettext.m40000644000175000017500000003513213047677711012022 00000000000000# gettext.m4 serial 63 (gettext-0.18) dnl Copyright (C) 1995-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2006, 2008-2010. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define([gt_included_intl], ifelse([$1], [external], ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), [yes])) define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) gt_NEEDS_INIT AM_GNU_GETTEXT_NEED([$2]) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation. gt_INTL_MACOSX dnl Set USE_NLS. AC_REQUIRE([AM_NLS]) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl Add a version number to the cache macros. case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH([included-gettext], [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], [AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings], [eval "$gt_func_gnugettext_libc=yes"], [eval "$gt_func_gnugettext_libc=no"])]) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], [$gt_func_gnugettext_libintl], [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *);], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], [eval "$gt_func_gnugettext_libintl=yes"], [eval "$gt_func_gnugettext_libintl=no"]) dnl Now see whether libintl exists and depends on libiconv. if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *);], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Some extra flags are needed during linking. LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE([HAVE_GETTEXT], [1], [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE([HAVE_DCGETTEXT], [1], [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST([BUILD_INCLUDED_LIBINTL]) AC_SUBST([USE_INCLUDED_LIBINTL]) AC_SUBST([CATOBJEXT]) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST([DATADIRNAME]) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST([INSTOBJEXT]) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST([GENCAT]) dnl For backward compatibility. Some Makefiles may be using this. INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST([INTLOBJS]) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX]) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST([INTLLIBS]) dnl Make all documented variables known to autoconf. AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) AC_SUBST([POSUB]) ]) dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. m4_define([gt_NEEDS_INIT], [ m4_divert_text([DEFAULTS], [gt_needs=]) m4_define([gt_NEEDS_INIT], []) ]) dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) AC_DEFUN([AM_GNU_GETTEXT_NEED], [ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) tilda-1.5.0/m4/progtest.m40000644000175000017500000000557313047677711012213 00000000000000# progtest.m4 serial 6 (gettext-0.18) dnl Copyright (C) 1996-2003, 2005, 2008-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. AC_PREREQ([2.50]) # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL([ac_cv_path_$1], [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$][$1]) else AC_MSG_RESULT([no]) fi AC_SUBST([$1])dnl ]) tilda-1.5.0/m4/iconv.m40000644000175000017500000001653713047677711011464 00000000000000# iconv.m4 serial 11 (gettext-0.18.1) dnl Copyright (C) 2000-2002, 2007-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], [am_cv_func_iconv=yes]) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], [am_cv_lib_iconv=yes] [am_cv_func_iconv=yes]) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ dnl This tests against bugs in AIX 5.1, HP-UX 11.11, Solaris 10. am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi AC_TRY_RUN([ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; }], [am_cv_func_iconv_works=yes], [am_cv_func_iconv_works=no], [case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac]) LIBS="$am_save_LIBS" ]) case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function and it works.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST([LIBICONV]) AC_SUBST([LTLIBICONV]) ]) dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to dnl avoid warnings like dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". dnl This is tricky because of the way 'aclocal' is implemented: dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. dnl Otherwise aclocal's initial scan pass would miss the macro definition. dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. dnl Otherwise aclocal would emit many "Use of uninitialized value $1" dnl warnings. m4_define([gl_iconv_AC_DEFUN], m4_version_prereq([2.64], [[AC_DEFUN_ONCE( [$1], [$2])]], [[AC_DEFUN( [$1], [$2])]])) gl_iconv_AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL([am_cv_proto_iconv], [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], [am_cv_proto_iconv_arg1=""], [am_cv_proto_iconv_arg1="const"]) am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([ $am_cv_proto_iconv]) AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], [Define as const if the declaration of iconv() needs const.]) fi ]) tilda-1.5.0/m4/po.m40000644000175000017500000004461613047677711010763 00000000000000# po.m4 serial 17 (gettext-0.18) dnl Copyright (C) 1995-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake AC_REQUIRE([AM_NLS])dnl dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. AC_SUBST([GETTEXT_MACRO_VERSION], [0.18]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) dnl Test whether it is GNU msgfmt >= 0.15. changequote(,)dnl case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac changequote([,])dnl AC_SUBST([MSGFMT_015]) changequote(,)dnl case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac changequote([,])dnl AC_SUBST([GMSGFMT_015]) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Test whether it is GNU xgettext >= 0.15. changequote(,)dnl case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac changequote([,])dnl AC_SUBST([XGETTEXT_015]) dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) dnl Installation directories. dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we dnl have to define it here, so that it can be used in po/Makefile. test -n "$localedir" || localedir='${datadir}/locale' AC_SUBST([localedir]) dnl Support for AM_XGETTEXT_OPTION. test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and tilda_issues about $0: your system, including any error possibly output before $0: this message. Then install a modern shell, or manually $0: run the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Tilda' PACKAGE_TARNAME='tilda' PACKAGE_VERSION='1.5.0' PACKAGE_STRING='Tilda 1.5.0' PACKAGE_BUGREPORT='tilda_issues' PACKAGE_URL='tilda_repository' ac_unique_file="src/tilda.c" gt_needs= # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS POW_LIB LIBOBJS X11_LIBS X11_CFLAGS LIBCONFUSE_LIBS LIBCONFUSE_CFLAGS VTE_LIBS VTE_CFLAGS GTK_LIBS GTK_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG POSUB LTLIBINTL LIBINTL INTLLIBS LTLIBICONV LIBICONV INTL_MACOSX_LIBS EGREP GREP CPP host_os host_vendor host_cpu host build_os build_vendor build_cpu build XGETTEXT_EXTRA_OPTIONS MSGMERGE XGETTEXT_015 XGETTEXT GMSGFMT_015 MSGFMT_015 GMSGFMT MSGFMT GETTEXT_MACRO_VERSION USE_NLS am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC GLIB_COMPILE_RESOURCES GLIB_MKENUMS MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_maintainer_mode enable_maintainer_flags enable_debug enable_debug_functions enable_clang enable_lto enable_dependency_tracking enable_nls with_gnu_ld enable_rpath with_libiconv_prefix with_libintl_prefix ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR GTK_CFLAGS GTK_LIBS VTE_CFLAGS VTE_LIBS LIBCONFUSE_CFLAGS LIBCONFUSE_LIBS X11_CFLAGS X11_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures Tilda 1.5.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/tilda] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of Tilda 1.5.0:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer --enable-maintainer-flags Enables extra debugging; use this option if you want to develop for tilda, but to not use it as an end user if you just want to compile and use tilda. This option includes the --enable-debug and --enable-debug-functions options. And sets several CFLAGS to enable more gcc warnings and errors. --enable-debug Enables extra debugging output and sets debug flags for gdb --enable-debug-functions Enables function call tracing. When this option is enabled tilda will print the name of each function that is called to the console. --enable-clang use clang instead of gcc as C compiler. --enable-lto Optimize at link time. This enables the compiler to do a better job at optimization and (hopefully) produce smaller binaries. --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-nls do not use Native Language Support --disable-rpath do not hardcode runtime library paths Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path GTK_CFLAGS C compiler flags for GTK, overriding pkg-config GTK_LIBS linker flags for GTK, overriding pkg-config VTE_CFLAGS C compiler flags for VTE, overriding pkg-config VTE_LIBS linker flags for VTE, overriding pkg-config LIBCONFUSE_CFLAGS C compiler flags for LIBCONFUSE, overriding pkg-config LIBCONFUSE_LIBS linker flags for LIBCONFUSE, overriding pkg-config X11_CFLAGS C compiler flags for X11, overriding pkg-config X11_LIBS linker flags for X11, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . Tilda home page: . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF Tilda configure 1.5.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## --------------------------- ## ## Report this to tilda_issues ## ## --------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by Tilda $as_me 1.5.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi gt_needs="$gt_needs " # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in build-aux "$srcdir"/build-aux; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. ac_config_headers="$ac_config_headers tilda-config.h:tilda-config.h.in" am__api_version='1.15' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='tilda' VERSION='1.5.0' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi # We are going to use silent builds which have a much # nicer output. More information can be found here: # https://wiki.gnome.org/Initiatives/GnomeGoals/NicerBuilds # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' # See http://www.gnu.org/savannah-checkouts/gnu/automake/manual/html_node/maintainer_002dmode.html # for an explanation of using this macro. The short explanation is: # AM_MAINTAINER_MODE is bad but # AM_MAINTAINER_MODE([enable]) is good { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE # This registers the option '--enable-maintainer-flags' to the ./configure script # If this option is set then it activates both the '--enable-debug' and '--enable-debug-functions' # options that are defined below. It also activates several flags to the compile such that it # will show more warnings and errors to indicate problems in the source code. # Check whether --enable-maintainer-flags was given. if test "${enable_maintainer_flags+set}" = set; then : enableval=$enable_maintainer_flags; fi if test "x$enable_maintainer_flags" = "xyes"; then enable_debug="yes" enable_debug_functions="yes" CFLAGS="$CFLAGS \ -Wall \ -Wextra \ -fno-common \ -Wstrict-aliasing=2 \ -Wshadow \ -Wmissing-prototypes \ -Wmissing-declarations \ -Wcast-align \ -Wuninitialized \ -Wno-strict-aliasing \ -Werror=pointer-arith \ -Werror=missing-declarations \ -Werror=redundant-decls \ -Werror=empty-body \ -Werror=format \ -Werror=format-security \ -Werror=format-nonliteral \ -Werror=init-self \ -Werror=vla \ -Wno-unused-parameter \ " fi # This registers the option '--enable-debug' in the ./configure script # If this option is set, then the the options -g and -ggdb will be # passed to the compiler. # Check whether --enable-debug was given. if test "${enable_debug+set}" = set; then : enableval=$enable_debug; fi if test "x$enable_debug" = "xyes"; then $as_echo "#define DEBUG 1" >>confdefs.h CFLAGS="$CFLAGS -g -ggdb" fi # This registers the option '--debug-functions' in the ./configure script # If this option is set, then the name of each entered function will be # printed on the shell. # Check whether --enable-debug-functions was given. if test "${enable_debug_functions+set}" = set; then : enableval=$enable_debug_functions; fi if test "x$enable_debug_functions" = "xyes"; then $as_echo "#define DEBUG_FUNCTIONS 1" >>confdefs.h fi # Check whether --enable-clang was given. if test "${enable_clang+set}" = set; then : enableval=$enable_clang; fi #Use C99 compilation mode if test "x$enable_clang" = "xyes"; then # clang uses c99 mode by default, so we just set CC to clang and we are done CC="clang"; else # We do not need to set CC as the default is gcc, but we need to set it to # use C99 compilation mode CFLAGS="$CFLAGS -std=c99"; fi # Check whether --enable-lto was given. if test "${enable_lto+set}" = set; then : enableval=$enable_lto; fi if test "x$enable_lto" = "xyes"; then CFLAGS="$CFLAGS -flto" if test "$CC" != "clang"; then # If the user has enabled lto explicitly, we assume he has made sure # that his toolchain can indeed handle lto objects. CFLAGS="$CFLAGS -fno-fat-lto-objects" fi # In the case of lto optimizations, we need to pass the optimization options # to the linker as well as telling it to use the linker plugin. LDFLAGS="$LDFLAGS $CFLAGS -fuse-linker-plugin" fi # Extract the first word of "glib-mkenums", so it can be a program name with args. set dummy glib-mkenums; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GLIB_MKENUMS+:} false; then : $as_echo_n "(cached) " >&6 else case $GLIB_MKENUMS in [\\/]* | ?:[\\/]*) ac_cv_path_GLIB_MKENUMS="$GLIB_MKENUMS" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GLIB_MKENUMS="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GLIB_MKENUMS" && ac_cv_path_GLIB_MKENUMS="no" ;; esac fi GLIB_MKENUMS=$ac_cv_path_GLIB_MKENUMS if test -n "$GLIB_MKENUMS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_MKENUMS" >&5 $as_echo "$GLIB_MKENUMS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x$GLIB_MKENUMS = xno; then as_fn_error $? "Could not find a glib-mkenums in your PATH" "$LINENO" 5 fi # Extract the first word of "glib-compile-resources", so it can be a program name with args. set dummy glib-compile-resources; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GLIB_COMPILE_RESOURCES+:} false; then : $as_echo_n "(cached) " >&6 else case $GLIB_COMPILE_RESOURCES in [\\/]* | ?:[\\/]*) ac_cv_path_GLIB_COMPILE_RESOURCES="$GLIB_COMPILE_RESOURCES" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GLIB_COMPILE_RESOURCES="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GLIB_COMPILE_RESOURCES" && ac_cv_path_GLIB_COMPILE_RESOURCES="no" ;; esac fi GLIB_COMPILE_RESOURCES=$ac_cv_path_GLIB_COMPILE_RESOURCES if test -n "$GLIB_COMPILE_RESOURCES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_RESOURCES" >&5 $as_echo "$GLIB_COMPILE_RESOURCES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x$GLIB_COMPILE_RESOURCES = xno; then as_fn_error $? "Could not find a glib-compile-resources in your PATH" "$LINENO" 5 fi # Checks for programs. ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi # This will initialize the internationalization # capabilities of glib (glib/gi18n.h) and gettext mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } GETTEXT_MACRO_VERSION=0.18 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5 $as_echo_n "checking for ld used by GCC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | [A-Za-z]:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 $as_echo_n "checking for 64-bit host... " >&6; } if ${gl_cv_solaris_64bit+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _LP64 sixtyfour bits #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sixtyfour bits" >/dev/null 2>&1; then : gl_cv_solaris_64bit=yes else gl_cv_solaris_64bit=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 $as_echo "$gl_cv_solaris_64bit" >&6; } if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= HAVE_LIBICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFPreferencesCopyAppValue=yes else gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFLocaleCopyCurrent=yes else gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if eval \${$gt_func_gnugettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libc=yes" else eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$gt_func_gnugettext_libc { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 $as_echo_n "checking for working iconv... " >&6; } if ${am_cv_func_iconv_works+:} false; then : $as_echo_n "(cached) " >&6 else am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi if test "$cross_compiling" = yes; then : case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : am_cv_func_iconv_works=yes else am_cv_func_iconv_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi LIBS="$am_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 $as_echo "$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= HAVE_LIBINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if eval \${$gt_func_gnugettext_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libintl=yes" else eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi eval ac_res=\$$gt_func_gnugettext_libintl { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi INTLLIBS="$LIBINTL" # Checks for libraries. if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= 3.10.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= 3.10.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0 >= 3.10.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= 3.10.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= 3.10.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0 >= 3.10.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0 >= 3.10.0" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0 >= 3.10.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (gtk+-3.0 >= 3.10.0) were not met: $GTK_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for VTE" >&5 $as_echo_n "checking for VTE... " >&6; } if test -n "$VTE_CFLAGS"; then pkg_cv_VTE_CFLAGS="$VTE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte-2.91 >= 0.40\""; } >&5 ($PKG_CONFIG --exists --print-errors "vte-2.91 >= 0.40") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_VTE_CFLAGS=`$PKG_CONFIG --cflags "vte-2.91 >= 0.40" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$VTE_LIBS"; then pkg_cv_VTE_LIBS="$VTE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte-2.91 >= 0.40\""; } >&5 ($PKG_CONFIG --exists --print-errors "vte-2.91 >= 0.40") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_VTE_LIBS=`$PKG_CONFIG --libs "vte-2.91 >= 0.40" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then VTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vte-2.91 >= 0.40" 2>&1` else VTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vte-2.91 >= 0.40" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$VTE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (vte-2.91 >= 0.40) were not met: $VTE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables VTE_CFLAGS and VTE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables VTE_CFLAGS and VTE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else VTE_CFLAGS=$pkg_cv_VTE_CFLAGS VTE_LIBS=$pkg_cv_VTE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCONFUSE" >&5 $as_echo_n "checking for LIBCONFUSE... " >&6; } if test -n "$LIBCONFUSE_CFLAGS"; then pkg_cv_LIBCONFUSE_CFLAGS="$LIBCONFUSE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libconfuse\""; } >&5 ($PKG_CONFIG --exists --print-errors "libconfuse") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBCONFUSE_CFLAGS=`$PKG_CONFIG --cflags "libconfuse" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBCONFUSE_LIBS"; then pkg_cv_LIBCONFUSE_LIBS="$LIBCONFUSE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libconfuse\""; } >&5 ($PKG_CONFIG --exists --print-errors "libconfuse") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBCONFUSE_LIBS=`$PKG_CONFIG --libs "libconfuse" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBCONFUSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libconfuse" 2>&1` else LIBCONFUSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libconfuse" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBCONFUSE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (libconfuse) were not met: $LIBCONFUSE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBCONFUSE_CFLAGS and LIBCONFUSE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBCONFUSE_CFLAGS and LIBCONFUSE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBCONFUSE_CFLAGS=$pkg_cv_LIBCONFUSE_CFLAGS LIBCONFUSE_LIBS=$pkg_cv_LIBCONFUSE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X11" >&5 $as_echo_n "checking for X11... " >&6; } if test -n "$X11_CFLAGS"; then pkg_cv_X11_CFLAGS="$X11_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5 ($PKG_CONFIG --exists --print-errors "x11") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_X11_CFLAGS=`$PKG_CONFIG --cflags "x11" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$X11_LIBS"; then pkg_cv_X11_LIBS="$X11_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"x11\""; } >&5 ($PKG_CONFIG --exists --print-errors "x11") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_X11_LIBS=`$PKG_CONFIG --libs "x11" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then X11_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "x11" 2>&1` else X11_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "x11" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$X11_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (x11) were not met: $X11_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables X11_CFLAGS and X11_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables X11_CFLAGS and X11_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else X11_CFLAGS=$pkg_cv_X11_CFLAGS X11_LIBS=$pkg_cv_X11_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # Checks for header files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in fcntl.h malloc.h stdlib.h string.h strings.h sys/ioctl.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done # Checks for typedefs, structures, and compiler characteristics. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" if test "x$ac_cv_type_pid_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi # Checks for library functions. for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_malloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC 0" >>confdefs.h case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac $as_echo "#define malloc rpl_malloc" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strtod" >&5 $as_echo_n "checking for working strtod... " >&6; } if ${ac_cv_func_strtod+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_strtod=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default #ifndef strtod double strtod (); #endif int main() { { /* Some versions of Linux strtod mis-parse strings with leading '+'. */ char *string = " +69"; char *term; double value; value = strtod (string, &term); if (value != 69 || term != (string + 4)) return 1; } { /* Under Solaris 2.4, strtod returns the wrong value for the terminating character under some conditions. */ char *string = "NaN"; char *term; strtod (string, &term); if (term != string && *(term - 1) == 0) return 1; } return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_strtod=yes else ac_cv_func_strtod=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_strtod" >&5 $as_echo "$ac_cv_func_strtod" >&6; } if test $ac_cv_func_strtod = no; then case " $LIBOBJS " in *" strtod.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS strtod.$ac_objext" ;; esac ac_fn_c_check_func "$LINENO" "pow" "ac_cv_func_pow" if test "x$ac_cv_func_pow" = xyes; then : fi if test $ac_cv_func_pow = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5 $as_echo_n "checking for pow in -lm... " >&6; } if ${ac_cv_lib_m_pow+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pow (); int main () { return pow (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_pow=yes else ac_cv_lib_m_pow=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5 $as_echo "$ac_cv_lib_m_pow" >&6; } if test "x$ac_cv_lib_m_pow" = xyes; then : POW_LIB=-lm else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cannot find library containing definition of pow" >&5 $as_echo "$as_me: WARNING: cannot find library containing definition of pow" >&2;} fi fi fi for ac_func in mkdir strcasecmp strchr strncasecmp strstr strtol do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_config_files="$ac_config_files Makefile po/Makefile.in" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by Tilda $as_me 1.5.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to . Tilda home page: ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ Tilda config.status 1.5.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "tilda-config.h") CONFIG_HEADERS="$CONFIG_HEADERS tilda-config.h:tilda-config.h.in" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi cflaglines="" cflagcount=0 for flag in ${CFLAGS}; do cflaglines=$cflaglines$flag" " cflagcount=$(($cflagcount+1)) if (( $cflagcount % 4 == 0)); then cflaglines=$cflaglines" " fi done; echo " ${PACKAGE} $VERSION `echo ${PACKAGE} $VERSION | sed "s/./=/g"` prefix: ${prefix} datarootdir: ${datarootdir} datadir: ${datadir} pkgdatadir: `if test x${pkgdatadir} != "x"; then echo ${pkgdatadir}; else echo ${datadir}/${PACKAGE}; fi` source code location: ${srcdir} compiler: ${CC} cflags: ${cflaglines} Maintainer mode: ${USE_MAINTAINER_MODE} VTE: ${vte_package} Use *_DISABLE_DEPRECATED: ${enable_deprecation_flags} " tilda-1.5.0/tilda-config.h.in0000644000175000017500000000646313617635024012671 00000000000000/* tilda-config.h.in. Generated from configure.ac by autoheader. */ /* Enable extra debugging output */ #undef DEBUG /* Enable function call tracing */ #undef DEBUG_FUNCTIONS /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the header file. */ #undef HAVE_MALLOC_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `mkdir' function. */ #undef HAVE_MKDIR /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `strcasecmp' function. */ #undef HAVE_STRCASECMP /* Define to 1 if you have the `strchr' function. */ #undef HAVE_STRCHR /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strncasecmp' function. */ #undef HAVE_STRNCASECMP /* Define to 1 if you have the `strstr' function. */ #undef HAVE_STRSTR /* Define to 1 if you have the `strtol' function. */ #undef HAVE_STRTOL /* Define to 1 if you have the header file. */ #undef HAVE_SYS_IOCTL_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to `int' if does not define. */ #undef pid_t /* Define to `unsigned int' if does not define. */ #undef size_t tilda-1.5.0/Makefile.am0000644000175000017500000000220013610675734011575 00000000000000## Process this file with automake to produce a Makefile.in # vim: set noexpandtab ts=8 sts=8 sw=8: SUBDIRS = po CLEANFILES = tilda.desktop MAINTAINERCLEANFILES = \ ABOUT-NLS \ Makefile.in \ aclocal.m4 \ stamp-h1 \ missing \ install-sh \ decomp \ compile \ INSTALL \ m4/*.m4 \ tilda-config.h \ config.guess \ config.rpath \ config.sub \ configure \ depcomp \ m4/Makefile.in \ po/Makefile.in.in \ po/Makevars.template \ po/Rules-quot \ po/boldquot.sed \ po/en@boldquot.header \ po/en@quot.header \ po/insert-header.sin \ po/quot.sed \ po/remove-potcdate.sin \ po/tilda.pot \ tilda-config.h.in \ tilda-config.h.in~ Applicationsdir = ${datadir}/applications Applications_DATA = tilda.desktop Appdatadir = ${datadir}/metainfo Appdata_DATA = tilda.appdata.xml Pixmapsdir = ${datadir}/pixmaps Pixmaps_DATA = tilda.png EXTRA_DIST = tilda.desktop.in tilda.png tilda.appdata.xml README.md tilda.desktop: tilda.desktop.in sed -e 's|\@BINDIR\@|$(bindir)|' \ -e 's|\@PIXMAPSDIR\@|$(Pixmapsdir)|' $< > $@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} bin_PROGRAMS = include src/Makefile.am tilda-1.5.0/README.md0000644000175000017500000001533413276007273011027 00000000000000# What is Tilda? Tilda is a terminal emulator and can be compared with other popular terminal emulators such as gnome-terminal (Gnome), Konsole (KDE), xterm and many others. The specialities of Tilda are that it does not behave like a normal window but instead it can be pulled up and down from the top of the screen with a special hotkey. Additionally Tilda is highly configurable. It is possible to configure the hotkeys for keybindings, change the appearance and many options that affect the behavior of Tilda. The screen shots below show some of the options that Tilda provides. ## Tilda Terminal ![Tilda window with search bar](images/tilda_terminal_with_search_bar.png) Starting with version 1.3 Tilda comes with a search bar. Currently we support searching forwards and backwards as well as options to search case sensitive and to use regular expressions. The search bar can be activated from the context menu or with a configurable hotkey that defaults to `F` ## General options ![General](images/tilda_general-16-9.png) ## Title and Command ![Title And Command](images/tilda_title_and_command-16-9.png) ## Appearance options ![Appearance](images/tilda_appearance-16-9.png) ## Colors ![Colors](images/tilda_colors-16-9.png) ## Keybindings options Starting with version 1.4 Tilda's keybindings page switches to a new list based layout that is easier to use. ![Keybindings](images/tilda_keybindings-16-9.png) ## Supported Platforms Tilda currently works only on Xorg-based desktops. Previously that meant that virtually all Linux distributions and some BSD's would be supported. Recently however, some Linux distributions (such as Ubuntu 17.10) have started to use Wayland as their default display server. Tilda currently does not support Wayland and will not work on such desktops. As a result it will fail to start. Patches that introduce wayland support for tilda are very welcome. Please look into the issue section or write me a mail if you would like to contribute to tilda. # Installing Tilda Tilda should be packaged for your distribution if you are running Debian or any Debian derived distribution such as Ubuntu or Linux Mint. For other distributions please check your package manager if it provides Tilda. You can also install Tilda from source. For instructions to compile, install and optionally package tilda please see **[HACKING.md](HACKING.md)**. # Running Tilda Once you have installed tilda, it should have automatically registered a menu entry in your desktops application menu. Alternatively, you can run `tilda` from your command line. The first time you run Tilda, it will create the default configuration file for you, and show the configuration wizard. If you do not want to change any settings, just press the "OK" button to accept the defaults. The default keybindings to show and hide Tilda are as follows: * F1 - the first instance * F2 - the second instance * F3 - the third instance * ... Other default keybindings are: * Shift-Ctrl-T - Open new tab * Ctrl-PageUp - Next tab * Ctrl-PageDown - Previous tab * Shift-Ctrl-W - Close current tab * Shift-Ctrl-Q - Exit Tilda # Specifying your own keybinding to hide / show Tilda We, the developers, have attempted to make the keybinding setting work with as little trouble as possible. Some example keybindings follow: | Keybinding String | Notes | |-------------------|-------------------------------------------------------------------| | `grave` | This will use the tilde key. Many people want this. | | `~` | This is the same as `grave` | | `space` | This will use the spacebar to show / hide Tilda. NOT RECOMMENDED! | | `A` | Press Shift, Control, and the "a" key at the same time | | `space` | Press Shift and the spacebar at the same time | | `z` | Press Control and the "z" key at the same time | That should cover most of the cases. If you want to use something else, it probably follows the pattern, so give it a try. Alternatively, you can use the configuration wizard, and press the "Pull Down Terminal" button on the "Keybindings" tab, then type the combination you want to use. Hopefully, Tilda will be able to grab it for you. The `` key cannot be grabbed, so at the moment combinations such as `` are not possible. # Files that Tilda creates Since approximately version 0.9.6 Tilda adheres to the XDG Base Directory Specification and creates its files in the $XDG_CONFIG_HOME and $XDG_CACHE_HOME folders which normally default to ~/.config/ and ~/.cache/. Tilda will create a lock file in the cache directory each time it starts, to keep track of how many instances are running: ~/.cache/tilda/locks/lock_$PID_$INSTANCE Tilda will also create the config files in: ~/.config/tilda/config_$INSTANCE where `$INSTANCE` is the number of how many instances are running and `$PID` the process id. Tilda automatically migrates the files for you if it detects configuration file at the old location `~/.tilda`. # Getting more help / Questions and Comments To get more help, you should first open a command prompt, and run `tilda --help`. You can also take a look at the **[Wiki](https://github.com/lanoxx/tilda/wiki)**, or email questions and comments to anyone listed in the [AUTHORS](AUTHORS) file. # Reporting Bugs We have done our best to make sure that Tilda is free from bugs, but it is inevitable that we have missed some. You may open bugs in the **[issue section](http://github.com/lanoxx/tilda/issues)** or email them to the developers directly. # Contributing to Tilda Tilda is an open source project that lives by the help of volunteers who fix bugs and implement new features in their spare time. Everybody is welcome to join and help us to fix bugs or to implement new features. Pull requests and patches are always welcome. ## Prerequisites Tilda is written in C with the use of the libraries **glib**, **GTK+**, **libconfuse** and **X11**. You should have a good background in C and some experience with GTK and glib already. Some areas of tilda will also require to know a little about X11 programming. ## What to work on? If you already have the necessary background feel free to submit a patch that fixes an issue or implements a new feature. If you are unsure if your patch will be accepted then open an issue first, describe your issue and ask if its likely that the patch gets accepted. You can also look into the [TODO.md](TODO.md) file and see if there is something there that you would like to do. ## Getting help Feel free to mail the developers if you have questions about the tilda source code or if you are unsure how something works. tilda-1.5.0/tilda.appdata.xml0000664000175000017500000000401213102162754012763 00000000000000 tilda.desktop CC0-1.0 GPL-2.0 Tilda A configurable drop-down terminal

Tilda is a highly-configurable terminal emulator. The specialty of Tilda is that it does not behave like a normal window but instead it can be pulled up and down from the top of the screen with a hotkey.

Tilda provides support for tabs (tabbed terminals), transparency, appearance adjustments, configurable hotkeys for various functions, and other options that affect the behavior of Tilda. The screenshots show some of the options that Tilda provides.

https://raw.githubusercontent.com/lanoxx/tilda/20489575e27852b58aa4c734998bcf1d5216c097/images/tilda_general-16-9.png General options https://raw.githubusercontent.com/lanoxx/tilda/20489575e27852b58aa4c734998bcf1d5216c097/images/tilda_appearance-16-9.png Appearance options https://raw.githubusercontent.com/lanoxx/tilda/20489575e27852b58aa4c734998bcf1d5216c097/images/tilda_keybindings-16-9.png Keybinding options https://raw.githubusercontent.com/lanoxx/tilda/20489575e27852b58aa4c734998bcf1d5216c097/images/tilda_title_and_command-16-9.png Title and Command options https://raw.githubusercontent.com/lanoxx/tilda/20489575e27852b58aa4c734998bcf1d5216c097/images/tilda_colors-16-9.png Title and Command options https://github.com/lanoxx/tilda lanoxx_at_gmx.net