wxMaxima-13.04.2/000755 000765 000024 00000000000 12150104173 014054 5ustar00andrejstaff000000 000000 wxMaxima-13.04.2/ABOUT-NLS000644 000765 000024 00000000000 11670654443 015311 0ustar00andrejstaff000000 000000 wxMaxima-13.04.2/._acinclude.m4000644 000765 000024 00000000345 11665634042 016501 0ustar00andrejstaff000000 000000 Mac OS X  2ATTRMMcom.apple.quarantineq/0001;4ed3a2de;Safari;0C23034B-99B6-4DFC-BE9D-D51A1873C8D5|com.apple.SafariwxMaxima-13.04.2/acinclude.m4000644 000765 000024 00000117367 11665634042 016301 0ustar00andrejstaff000000 000000 dnl --------------------------------------------------------------------------- dnl Author: wxWidgets development team, dnl Francesco Montorsi, dnl Bob McCown (Mac-testing) dnl Creation date: 24/11/2001 dnl RCS-ID: $Id$ dnl --------------------------------------------------------------------------- dnl =========================================================================== dnl Table of Contents of this macro file: dnl ------------------------------------- dnl dnl SECTION A: wxWidgets main macros dnl - WX_CONFIG_OPTIONS dnl - WX_CONFIG_CHECK dnl - WXRC_CHECK dnl - WX_STANDARD_OPTIONS dnl - WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS dnl - WX_DETECT_STANDARD_OPTION_VALUES dnl dnl SECTION B: wxWidgets-related utilities dnl - WX_LIKE_LIBNAME dnl - WX_ARG_ENABLE_YESNOAUTO dnl - WX_ARG_WITH_YESNOAUTO dnl dnl SECTION C: messages to the user dnl - WX_STANDARD_OPTIONS_SUMMARY_MSG dnl - WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN dnl - WX_STANDARD_OPTIONS_SUMMARY_MSG_END dnl - WX_BOOLOPT_SUMMARY dnl dnl The special "WX_DEBUG_CONFIGURE" variable can be set to 1 to enable extra dnl debug output on stdout from these macros. dnl =========================================================================== dnl --------------------------------------------------------------------------- dnl Macros for wxWidgets detection. Typically used in configure.in as: dnl dnl AC_ARG_ENABLE(...) dnl AC_ARG_WITH(...) dnl ... dnl WX_CONFIG_OPTIONS dnl ... dnl ... dnl WX_CONFIG_CHECK([2.6.0], [wxWin=1]) dnl if test "$wxWin" != 1; then dnl AC_MSG_ERROR([ dnl wxWidgets must be installed on your system dnl but wx-config script couldn't be found. dnl dnl Please check that wx-config is in path, the directory dnl where wxWidgets libraries are installed (returned by dnl 'wx-config --libs' command) is in LD_LIBRARY_PATH or dnl equivalent variable and wxWidgets version is 2.3.4 or above. dnl ]) dnl fi dnl CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS" dnl CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY" dnl CFLAGS="$CFLAGS $WX_CFLAGS_ONLY" dnl dnl LIBS="$LIBS $WX_LIBS" dnl dnl If you want to support standard --enable-debug/unicode/shared options, you dnl may do the following: dnl dnl ... dnl AC_CANONICAL_SYSTEM dnl dnl # define configure options dnl WX_CONFIG_OPTIONS dnl WX_STANDARD_OPTIONS([debug,unicode,shared,toolkit,wxshared]) dnl dnl # basic configure checks dnl ... dnl dnl # we want to always have DEBUG==WX_DEBUG and UNICODE==WX_UNICODE dnl WX_DEBUG=$DEBUG dnl WX_UNICODE=$UNICODE dnl dnl WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS dnl WX_CONFIG_CHECK([2.8.0], [wxWin=1],,[html,core,net,base],[$WXCONFIG_FLAGS]) dnl WX_DETECT_STANDARD_OPTION_VALUES dnl dnl # write the output files dnl AC_CONFIG_FILES([Makefile ...]) dnl AC_OUTPUT dnl dnl # optional: just to show a message to the user dnl WX_STANDARD_OPTIONS_SUMMARY_MSG dnl dnl --------------------------------------------------------------------------- dnl --------------------------------------------------------------------------- dnl WX_CONFIG_OPTIONS dnl dnl adds support for --wx-prefix, --wx-exec-prefix, --with-wxdir and dnl --wx-config command line options dnl --------------------------------------------------------------------------- AC_DEFUN([WX_CONFIG_OPTIONS], [ AC_ARG_WITH(wxdir, [ --with-wxdir=PATH Use uninstalled version of wxWidgets in PATH], [ wx_config_name="$withval/wx-config" wx_config_args="--inplace"]) AC_ARG_WITH(wx-config, [ --with-wx-config=CONFIG wx-config script to use (optional)], wx_config_name="$withval" ) AC_ARG_WITH(wx-prefix, [ --with-wx-prefix=PREFIX Prefix where wxWidgets is installed (optional)], wx_config_prefix="$withval", wx_config_prefix="") AC_ARG_WITH(wx-exec-prefix, [ --with-wx-exec-prefix=PREFIX Exec prefix where wxWidgets is installed (optional)], wx_config_exec_prefix="$withval", wx_config_exec_prefix="") ]) dnl Helper macro for checking if wx version is at least $1.$2.$3, set's dnl wx_ver_ok=yes if it is: AC_DEFUN([_WX_PRIVATE_CHECK_VERSION], [ wx_ver_ok="" if test "x$WX_VERSION" != x ; then if test $wx_config_major_version -gt $1; then wx_ver_ok=yes else if test $wx_config_major_version -eq $1; then if test $wx_config_minor_version -gt $2; then wx_ver_ok=yes else if test $wx_config_minor_version -eq $2; then if test $wx_config_micro_version -ge $3; then wx_ver_ok=yes fi fi fi fi fi fi ]) dnl --------------------------------------------------------------------------- dnl WX_CONFIG_CHECK(VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND dnl [, WX-LIBS [, ADDITIONAL-WX-CONFIG-FLAGS]]]]) dnl dnl Test for wxWidgets, and define WX_C*FLAGS, WX_LIBS and WX_LIBS_STATIC dnl (the latter is for static linking against wxWidgets). Set WX_CONFIG_NAME dnl environment variable to override the default name of the wx-config script dnl to use. Set WX_CONFIG_PATH to specify the full path to wx-config - in this dnl case the macro won't even waste time on tests for its existence. dnl dnl Optional WX-LIBS argument contains comma- or space-separated list of dnl wxWidgets libraries to link against. If it is not specified then WX_LIBS dnl and WX_LIBS_STATIC will contain flags to link with all of the core dnl wxWidgets libraries. dnl dnl Optional ADDITIONAL-WX-CONFIG-FLAGS argument is appended to wx-config dnl invocation command in present. It can be used to fine-tune lookup of dnl best wxWidgets build available. dnl dnl Example use: dnl WX_CONFIG_CHECK([2.6.0], [wxWin=1], [wxWin=0], [html,core,net] dnl [--unicode --debug]) dnl --------------------------------------------------------------------------- dnl dnl Get the cflags and libraries from the wx-config script dnl AC_DEFUN([WX_CONFIG_CHECK], [ dnl do we have wx-config name: it can be wx-config or wxd-config or ... if test x${WX_CONFIG_NAME+set} != xset ; then WX_CONFIG_NAME=wx-config fi if test "x$wx_config_name" != x ; then WX_CONFIG_NAME="$wx_config_name" fi dnl deal with optional prefixes if test x$wx_config_exec_prefix != x ; then wx_config_args="$wx_config_args --exec-prefix=$wx_config_exec_prefix" WX_LOOKUP_PATH="$wx_config_exec_prefix/bin" fi if test x$wx_config_prefix != x ; then wx_config_args="$wx_config_args --prefix=$wx_config_prefix" WX_LOOKUP_PATH="$WX_LOOKUP_PATH:$wx_config_prefix/bin" fi if test "$cross_compiling" = "yes"; then wx_config_args="$wx_config_args --host=$host_alias" fi dnl don't search the PATH if WX_CONFIG_NAME is absolute filename if test -x "$WX_CONFIG_NAME" ; then AC_MSG_CHECKING(for wx-config) WX_CONFIG_PATH="$WX_CONFIG_NAME" AC_MSG_RESULT($WX_CONFIG_PATH) else AC_PATH_PROG(WX_CONFIG_PATH, $WX_CONFIG_NAME, no, "$WX_LOOKUP_PATH:$PATH") fi if test "$WX_CONFIG_PATH" != "no" ; then WX_VERSION="" min_wx_version=ifelse([$1], ,2.2.1,$1) if test -z "$5" ; then AC_MSG_CHECKING([for wxWidgets version >= $min_wx_version]) else AC_MSG_CHECKING([for wxWidgets version >= $min_wx_version ($5)]) fi dnl don't add the libraries ($4) to this variable as this would result in dnl an error when it's used with --version below WX_CONFIG_WITH_ARGS="$WX_CONFIG_PATH $wx_config_args $5" WX_VERSION=`$WX_CONFIG_WITH_ARGS --version 2>/dev/null` wx_config_major_version=`echo $WX_VERSION | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` wx_config_minor_version=`echo $WX_VERSION | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` wx_config_micro_version=`echo $WX_VERSION | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` wx_requested_major_version=`echo $min_wx_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` wx_requested_minor_version=`echo $min_wx_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` wx_requested_micro_version=`echo $min_wx_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` _WX_PRIVATE_CHECK_VERSION([$wx_requested_major_version], [$wx_requested_minor_version], [$wx_requested_micro_version]) if test -n "$wx_ver_ok"; then AC_MSG_RESULT(yes (version $WX_VERSION)) WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs $4` dnl is this even still appropriate? --static is a real option now dnl and WX_CONFIG_WITH_ARGS is likely to contain it if that is dnl what the user actually wants, making this redundant at best. dnl For now keep it in case anyone actually used it in the past. AC_MSG_CHECKING([for wxWidgets static library]) WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static --libs $4 2>/dev/null` if test "x$WX_LIBS_STATIC" = "x"; then AC_MSG_RESULT(no) else AC_MSG_RESULT(yes) fi dnl starting with version 2.2.6 wx-config has --cppflags argument wx_has_cppflags="" if test $wx_config_major_version -gt 2; then wx_has_cppflags=yes else if test $wx_config_major_version -eq 2; then if test $wx_config_minor_version -gt 2; then wx_has_cppflags=yes else if test $wx_config_minor_version -eq 2; then if test $wx_config_micro_version -ge 6; then wx_has_cppflags=yes fi fi fi fi fi dnl starting with version 2.7.0 wx-config has --rescomp option wx_has_rescomp="" if test $wx_config_major_version -gt 2; then wx_has_rescomp=yes else if test $wx_config_major_version -eq 2; then if test $wx_config_minor_version -ge 7; then wx_has_rescomp=yes fi fi fi if test "x$wx_has_rescomp" = x ; then dnl cannot give any useful info for resource compiler WX_RESCOMP= else WX_RESCOMP=`$WX_CONFIG_WITH_ARGS --rescomp` fi if test "x$wx_has_cppflags" = x ; then dnl no choice but to define all flags like CFLAGS WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags $4` WX_CPPFLAGS=$WX_CFLAGS WX_CXXFLAGS=$WX_CFLAGS WX_CFLAGS_ONLY=$WX_CFLAGS WX_CXXFLAGS_ONLY=$WX_CFLAGS else dnl we have CPPFLAGS included in CFLAGS included in CXXFLAGS WX_CPPFLAGS=`$WX_CONFIG_WITH_ARGS --cppflags $4` WX_CXXFLAGS=`$WX_CONFIG_WITH_ARGS --cxxflags $4` WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags $4` WX_CFLAGS_ONLY=`echo $WX_CFLAGS | sed "s@^$WX_CPPFLAGS *@@"` WX_CXXFLAGS_ONLY=`echo $WX_CXXFLAGS | sed "s@^$WX_CFLAGS *@@"` fi ifelse([$2], , :, [$2]) else if test "x$WX_VERSION" = x; then dnl no wx-config at all AC_MSG_RESULT(no) else AC_MSG_RESULT(no (version $WX_VERSION is not new enough)) fi WX_CFLAGS="" WX_CPPFLAGS="" WX_CXXFLAGS="" WX_LIBS="" WX_LIBS_STATIC="" WX_RESCOMP="" if test ! -z "$5"; then wx_error_message=" The configuration you asked for $PACKAGE_NAME requires a wxWidgets build with the following settings: $5 but such build is not available. To see the wxWidgets builds available on this system, please use 'wx-config --list' command. To use the default build, returned by 'wx-config --selected-config', use the options with their 'auto' default values." fi wx_error_message=" The requested wxWidgets build couldn't be found. $wx_error_message If you still get this error, then check that 'wx-config' is in path, the directory where wxWidgets libraries are installed (returned by 'wx-config --libs' command) is in LD_LIBRARY_PATH or equivalent variable and wxWidgets version is $1 or above." ifelse([$3], , AC_MSG_ERROR([$wx_error_message]), [$3]) fi else WX_CFLAGS="" WX_CPPFLAGS="" WX_CXXFLAGS="" WX_LIBS="" WX_LIBS_STATIC="" WX_RESCOMP="" ifelse([$3], , :, [$3]) fi AC_SUBST(WX_CPPFLAGS) AC_SUBST(WX_CFLAGS) AC_SUBST(WX_CXXFLAGS) AC_SUBST(WX_CFLAGS_ONLY) AC_SUBST(WX_CXXFLAGS_ONLY) AC_SUBST(WX_LIBS) AC_SUBST(WX_LIBS_STATIC) AC_SUBST(WX_VERSION) AC_SUBST(WX_RESCOMP) dnl need to export also WX_VERSION_MINOR and WX_VERSION_MAJOR symbols dnl to support wxpresets bakefiles (we export also WX_VERSION_MICRO for completeness): WX_VERSION_MAJOR="$wx_config_major_version" WX_VERSION_MINOR="$wx_config_minor_version" WX_VERSION_MICRO="$wx_config_micro_version" AC_SUBST(WX_VERSION_MAJOR) AC_SUBST(WX_VERSION_MINOR) AC_SUBST(WX_VERSION_MICRO) ]) dnl --------------------------------------------------------------------------- dnl Get information on the wxrc program for making C++, Python and xrs dnl resource files. dnl dnl AC_ARG_ENABLE(...) dnl AC_ARG_WITH(...) dnl ... dnl WX_CONFIG_OPTIONS dnl ... dnl WX_CONFIG_CHECK(2.6.0, wxWin=1) dnl if test "$wxWin" != 1; then dnl AC_MSG_ERROR([ dnl wxWidgets must be installed on your system dnl but wx-config script couldn't be found. dnl dnl Please check that wx-config is in path, the directory dnl where wxWidgets libraries are installed (returned by dnl 'wx-config --libs' command) is in LD_LIBRARY_PATH or dnl equivalent variable and wxWidgets version is 2.6.0 or above. dnl ]) dnl fi dnl dnl WXRC_CHECK([HAVE_WXRC=1], [HAVE_WXRC=0]) dnl if test "x$HAVE_WXRC" != x1; then dnl AC_MSG_ERROR([ dnl The wxrc program was not installed or not found. dnl dnl Please check the wxWidgets installation. dnl ]) dnl fi dnl dnl CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS" dnl CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY" dnl CFLAGS="$CFLAGS $WX_CFLAGS_ONLY" dnl dnl LDFLAGS="$LDFLAGS $WX_LIBS" dnl --------------------------------------------------------------------------- dnl --------------------------------------------------------------------------- dnl WXRC_CHECK([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) dnl dnl Test for wxWidgets' wxrc program for creating either C++, Python or XRS dnl resources. The variable WXRC will be set and substituted in the configure dnl script and Makefiles. dnl dnl Example use: dnl WXRC_CHECK([wxrc=1], [wxrc=0]) dnl --------------------------------------------------------------------------- dnl dnl wxrc program from the wx-config script dnl AC_DEFUN([WXRC_CHECK], [ AC_ARG_VAR([WXRC], [Path to wxWidget's wxrc resource compiler]) if test "x$WX_CONFIG_NAME" = x; then AC_MSG_ERROR([The wxrc tests must run after wxWidgets test.]) else AC_MSG_CHECKING([for wxrc]) if test "x$WXRC" = x ; then dnl wx-config --utility is a new addition to wxWidgets: _WX_PRIVATE_CHECK_VERSION(2,5,3) if test -n "$wx_ver_ok"; then WXRC=`$WX_CONFIG_WITH_ARGS --utility=wxrc` fi fi if test "x$WXRC" = x ; then AC_MSG_RESULT([not found]) ifelse([$2], , :, [$2]) else AC_MSG_RESULT([$WXRC]) ifelse([$1], , :, [$1]) fi AC_SUBST(WXRC) fi ]) dnl --------------------------------------------------------------------------- dnl WX_LIKE_LIBNAME([output-var] [prefix], [name]) dnl dnl Sets the "output-var" variable to the name of a library named with same dnl wxWidgets rule. dnl E.g. for output-var=='lib', name=='test', prefix='mine', sets dnl the $lib variable to: dnl 'mine_gtk2ud_test-2.8' dnl if WX_PORT=gtk2, WX_UNICODE=1, WX_DEBUG=1 and WX_RELEASE=28 dnl --------------------------------------------------------------------------- AC_DEFUN([WX_LIKE_LIBNAME], [ wx_temp="$2""_""$WX_PORT" dnl add the [u][d] string if test "$WX_UNICODE" = "1"; then wx_temp="$wx_temp""u" fi if test "$WX_DEBUG" = "1"; then wx_temp="$wx_temp""d" fi dnl complete the name of the lib wx_temp="$wx_temp""_""$3""-$WX_VERSION_MAJOR.$WX_VERSION_MINOR" dnl save it in the user's variable $1=$wx_temp ]) dnl --------------------------------------------------------------------------- dnl WX_ARG_ENABLE_YESNOAUTO/WX_ARG_WITH_YESNOAUTO dnl dnl Two little custom macros which define the ENABLE/WITH configure arguments. dnl Macro arguments: dnl $1 = the name of the --enable / --with feature dnl $2 = the name of the variable associated dnl $3 = the description of that feature dnl $4 = the default value for that feature dnl $5 = additional action to do in case option is given with "yes" value dnl --------------------------------------------------------------------------- AC_DEFUN([WX_ARG_ENABLE_YESNOAUTO], [AC_ARG_ENABLE($1, AC_HELP_STRING([--enable-$1], [$3 (default is $4)]), [], [enableval="$4"]) dnl Show a message to the user about this option AC_MSG_CHECKING([for the --enable-$1 option]) if test "$enableval" = "yes" ; then AC_MSG_RESULT([yes]) $2=1 $5 elif test "$enableval" = "no" ; then AC_MSG_RESULT([no]) $2=0 elif test "$enableval" = "auto" ; then AC_MSG_RESULT([will be automatically detected]) $2="auto" else AC_MSG_ERROR([ Unrecognized option value (allowed values: yes, no, auto) ]) fi ]) AC_DEFUN([WX_ARG_WITH_YESNOAUTO], [AC_ARG_WITH($1, AC_HELP_STRING([--with-$1], [$3 (default is $4)]), [], [withval="$4"]) dnl Show a message to the user about this option AC_MSG_CHECKING([for the --with-$1 option]) if test "$withval" = "yes" ; then AC_MSG_RESULT([yes]) $2=1 $5 dnl NB: by default we don't allow --with-$1=no option dnl since it does not make much sense ! elif test "$6" = "1" -a "$withval" = "no" ; then AC_MSG_RESULT([no]) $2=0 elif test "$withval" = "auto" ; then AC_MSG_RESULT([will be automatically detected]) $2="auto" else AC_MSG_ERROR([ Unrecognized option value (allowed values: yes, auto) ]) fi ]) dnl --------------------------------------------------------------------------- dnl WX_STANDARD_OPTIONS([options-to-add]) dnl dnl Adds to the configure script one or more of the following options: dnl --enable-[debug|unicode|shared|wxshared|wxdebug] dnl --with-[gtk|msw|motif|x11|mac|mgl|dfb] dnl --with-wxversion dnl Then checks for their presence and eventually set the DEBUG, UNICODE, SHARED, dnl PORT, WX_SHARED, WX_DEBUG, variables to one of the "yes", "no", "auto" values. dnl dnl Note that e.g. UNICODE != WX_UNICODE; the first is the value of the dnl --enable-unicode option (in boolean format) while the second indicates dnl if wxWidgets was built in Unicode mode (and still is in boolean format). dnl --------------------------------------------------------------------------- AC_DEFUN([WX_STANDARD_OPTIONS], [ dnl the following lines will expand to WX_ARG_ENABLE_YESNOAUTO calls if and only if dnl the $1 argument contains respectively the debug,unicode or shared options. dnl be careful here not to set debug flag if only "wxdebug" was specified ifelse(regexp([$1], [\bdebug]), [-1],, [WX_ARG_ENABLE_YESNOAUTO([debug], [DEBUG], [Build in debug mode], [auto])]) ifelse(index([$1], [unicode]), [-1],, [WX_ARG_ENABLE_YESNOAUTO([unicode], [UNICODE], [Build in Unicode mode], [auto])]) ifelse(regexp([$1], [\bshared]), [-1],, [WX_ARG_ENABLE_YESNOAUTO([shared], [SHARED], [Build as shared library], [auto])]) dnl WX_ARG_WITH_YESNOAUTO cannot be used for --with-toolkit since it's an option dnl which must be able to accept the auto|gtk1|gtk2|msw|... values ifelse(index([$1], [toolkit]), [-1],, [ AC_ARG_WITH([toolkit], AC_HELP_STRING([--with-toolkit], [Build against a specific wxWidgets toolkit (default is auto)]), [], [withval="auto"]) dnl Show a message to the user about this option AC_MSG_CHECKING([for the --with-toolkit option]) if test "$withval" = "auto" ; then AC_MSG_RESULT([will be automatically detected]) TOOLKIT="auto" else TOOLKIT="$withval" dnl PORT must be one of the allowed values if test "$TOOLKIT" != "gtk1" -a "$TOOLKIT" != "gtk2" -a \ "$TOOLKIT" != "msw" -a "$TOOLKIT" != "motif" -a \ "$TOOLKIT" != "x11" -a "$TOOLKIT" != "mac" -a \ "$TOOLKIT" != "mgl" -a "$TOOLKIT" != "dfb" ; then AC_MSG_ERROR([ Unrecognized option value (allowed values: auto, gtk1, gtk2, msw, motif, x11, mac, mgl, dfb) ]) fi AC_MSG_RESULT([$TOOLKIT]) fi ]) dnl ****** IMPORTANT ******* dnl Unlike for the UNICODE setting, you can build your program in dnl shared mode against a static build of wxWidgets. Thus we have the dnl following option which allows these mixtures. E.g. dnl dnl ./configure --disable-shared --with-wxshared dnl dnl will build your library in static mode against the first available dnl shared build of wxWidgets. dnl dnl Note that's not possible to do the viceversa: dnl dnl ./configure --enable-shared --without-wxshared dnl dnl Doing so you would try to build your library in shared mode against a static dnl build of wxWidgets. This is not possible (you would mix PIC and non PIC code) ! dnl A check for this combination of options is in WX_DETECT_STANDARD_OPTION_VALUES dnl (where we know what 'auto' should be expanded to). dnl dnl If you try to build something in ANSI mode against a UNICODE build dnl of wxWidgets or in RELEASE mode against a DEBUG build of wxWidgets, dnl then at best you'll get ton of linking errors ! dnl ************************ ifelse(index([$1], [wxshared]), [-1],, [ WX_ARG_WITH_YESNOAUTO( [wxshared], [WX_SHARED], [Force building against a shared build of wxWidgets, even if --disable-shared is given], [auto], [], [1]) ]) dnl Just like for SHARED and WX_SHARED it may happen that some adventurous dnl peoples will want to mix a wxWidgets release build with a debug build of dnl his app/lib. So, we have both DEBUG and WX_DEBUG variables. ifelse(index([$1], [wxdebug]), [-1],, [ WX_ARG_WITH_YESNOAUTO( [wxdebug], [WX_DEBUG], [Force building against a debug build of wxWidgets, even if --disable-debug is given], [auto], [], [1]) ]) dnl WX_ARG_WITH_YESNOAUTO cannot be used for --with-wxversion since it's an option dnl which accepts the "auto|2.6|2.7|2.8|2.9|3.0" etc etc values ifelse(index([$1], [wxversion]), [-1],, [ AC_ARG_WITH([wxversion], AC_HELP_STRING([--with-wxversion], [Build against a specific version of wxWidgets (default is auto)]), [], [withval="auto"]) dnl Show a message to the user about this option AC_MSG_CHECKING([for the --with-wxversion option]) if test "$withval" = "auto" ; then AC_MSG_RESULT([will be automatically detected]) WX_RELEASE="auto" else wx_requested_major_version=`echo $withval | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).*/\1/'` wx_requested_minor_version=`echo $withval | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).*/\2/'` dnl both vars above must be exactly 1 digit if test "${#wx_requested_major_version}" != "1" -o \ "${#wx_requested_minor_version}" != "1" ; then AC_MSG_ERROR([ Unrecognized option value (allowed values: auto, 2.6, 2.7, 2.8, 2.9, 3.0) ]) fi WX_RELEASE="$wx_requested_major_version"".""$wx_requested_minor_version" AC_MSG_RESULT([$WX_RELEASE]) fi ]) if test "$WX_DEBUG_CONFIGURE" = "1"; then echo "[[dbg]] DEBUG: $DEBUG, WX_DEBUG: $WX_DEBUG" echo "[[dbg]] UNICODE: $UNICODE, WX_UNICODE: $WX_UNICODE" echo "[[dbg]] SHARED: $SHARED, WX_SHARED: $WX_SHARED" echo "[[dbg]] TOOLKIT: $TOOLKIT, WX_TOOLKIT: $WX_TOOLKIT" echo "[[dbg]] VERSION: $VERSION, WX_RELEASE: $WX_RELEASE" fi ]) dnl --------------------------------------------------------------------------- dnl WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS dnl dnl Sets the WXCONFIG_FLAGS string using the SHARED,DEBUG,UNICODE variable values dnl which are different from "auto". dnl Thus this macro needs to be called only once all options have been set. dnl --------------------------------------------------------------------------- AC_DEFUN([WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS], [ if test "$WX_SHARED" = "1" ; then WXCONFIG_FLAGS="--static=no " elif test "$WX_SHARED" = "0" ; then WXCONFIG_FLAGS="--static=yes " fi if test "$WX_DEBUG" = "1" ; then WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--debug=yes " elif test "$WX_DEBUG" = "0" ; then WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--debug=no " fi dnl The user should have set WX_UNICODE=UNICODE if test "$WX_UNICODE" = "1" ; then WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--unicode=yes " elif test "$WX_UNICODE" = "0" ; then WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--unicode=no " fi if test "$TOOLKIT" != "auto" ; then WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--toolkit=$TOOLKIT " fi if test "$WX_RELEASE" != "auto" ; then WXCONFIG_FLAGS="$WXCONFIG_FLAGS""--version=$WX_RELEASE " fi dnl strip out the last space of the string WXCONFIG_FLAGS=${WXCONFIG_FLAGS% } if test "$WX_DEBUG_CONFIGURE" = "1"; then echo "[[dbg]] WXCONFIG_FLAGS: $WXCONFIG_FLAGS" fi ]) dnl --------------------------------------------------------------------------- dnl _WX_SELECTEDCONFIG_CHECKFOR([RESULTVAR], [STRING], [MSG] dnl [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) dnl dnl Outputs the given MSG. Then searches the given STRING in the wxWidgets dnl additional CPP flags and put the result of the search in WX_$RESULTVAR dnl also adding the "yes" or "no" message result to MSG. dnl --------------------------------------------------------------------------- AC_DEFUN([_WX_SELECTEDCONFIG_CHECKFOR], [ if test "$$1" = "auto" ; then dnl The user does not have particular preferences for this option; dnl so we will detect the wxWidgets relative build setting and use it AC_MSG_CHECKING([$3]) dnl set WX_$1 variable to 1 if the $WX_SELECTEDCONFIG contains the $2 dnl string or to 0 otherwise. dnl NOTE: 'expr match STRING REGEXP' cannot be used since on Mac it dnl doesn't work; we use 'expr STRING : REGEXP' instead WX_$1=$(expr "$WX_SELECTEDCONFIG" : ".*$2.*") if test "$WX_$1" != "0"; then WX_$1=1 AC_MSG_RESULT([yes]) ifelse([$4], , :, [$4]) else WX_$1=0 AC_MSG_RESULT([no]) ifelse([$5], , :, [$5]) fi else dnl Use the setting given by the user WX_$1=$$1 fi ]) dnl --------------------------------------------------------------------------- dnl WX_DETECT_STANDARD_OPTION_VALUES dnl dnl Detects the values of the following variables: dnl 1) WX_RELEASE dnl 2) WX_UNICODE dnl 3) WX_DEBUG dnl 4) WX_SHARED (and also WX_STATIC) dnl 5) WX_PORT dnl from the previously selected wxWidgets build; this macro in fact must be dnl called *after* calling the WX_CONFIG_CHECK macro. dnl dnl Note that the WX_VERSION_MAJOR, WX_VERSION_MINOR symbols are already set dnl by WX_CONFIG_CHECK macro dnl --------------------------------------------------------------------------- AC_DEFUN([WX_DETECT_STANDARD_OPTION_VALUES], [ dnl IMPORTANT: WX_VERSION contains all three major.minor.micro digits, dnl while WX_RELEASE only the major.minor ones. WX_RELEASE="$WX_VERSION_MAJOR""$WX_VERSION_MINOR" if test $WX_RELEASE -lt 26 ; then AC_MSG_ERROR([ Cannot detect the wxWidgets configuration for the selected wxWidgets build since its version is $WX_VERSION < 2.6.0; please install a newer version of wxWidgets. ]) fi dnl The wx-config we are using understands the "--selected_config" dnl option which returns an easy-parseable string ! WX_SELECTEDCONFIG=$($WX_CONFIG_WITH_ARGS --selected_config) if test "$WX_DEBUG_CONFIGURE" = "1"; then echo "[[dbg]] Using wx-config --selected-config" echo "[[dbg]] WX_SELECTEDCONFIG: $WX_SELECTEDCONFIG" fi dnl we could test directly for WX_SHARED with a line like: dnl _WX_SELECTEDCONFIG_CHECKFOR([SHARED], [shared], dnl [if wxWidgets was built in SHARED mode]) dnl but wx-config --selected-config DOES NOT outputs the 'shared' dnl word when wx was built in shared mode; it rather outputs the dnl 'static' word when built in static mode. if test $WX_SHARED = "1"; then STATIC=0 elif test $WX_SHARED = "0"; then STATIC=1 elif test $WX_SHARED = "auto"; then STATIC="auto" fi dnl Now set the WX_UNICODE, WX_DEBUG, WX_STATIC variables _WX_SELECTEDCONFIG_CHECKFOR([UNICODE], [unicode], [if wxWidgets was built with UNICODE enabled]) _WX_SELECTEDCONFIG_CHECKFOR([DEBUG], [debug], [if wxWidgets was built in DEBUG mode]) _WX_SELECTEDCONFIG_CHECKFOR([STATIC], [static], [if wxWidgets was built in STATIC mode]) dnl init WX_SHARED from WX_STATIC if test "$WX_STATIC" != "0"; then WX_SHARED=0 else WX_SHARED=1 fi AC_SUBST(WX_UNICODE) AC_SUBST(WX_DEBUG) AC_SUBST(WX_SHARED) dnl detect the WX_PORT to use if test "$TOOLKIT" = "auto" ; then dnl The user does not have particular preferences for this option; dnl so we will detect the wxWidgets relative build setting and use it AC_MSG_CHECKING([which wxWidgets toolkit was selected]) WX_GTKPORT1=$(expr "$WX_SELECTEDCONFIG" : ".*gtk1.*") WX_GTKPORT2=$(expr "$WX_SELECTEDCONFIG" : ".*gtk2.*") WX_MSWPORT=$(expr "$WX_SELECTEDCONFIG" : ".*msw.*") WX_MOTIFPORT=$(expr "$WX_SELECTEDCONFIG" : ".*motif.*") WX_OSXCOCOAPORT=$(expr "$WX_SELECTEDCONFIG" : ".*osx_cocoa.*") WX_OSXCARBONPORT=$(expr "$WX_SELECTEDCONFIG" : ".*osx_carbon.*") WX_X11PORT=$(expr "$WX_SELECTEDCONFIG" : ".*x11.*") WX_MGLPORT=$(expr "$WX_SELECTEDCONFIG" : ".*mgl.*") WX_DFBPORT=$(expr "$WX_SELECTEDCONFIG" : ".*dfb.*") WX_PORT="unknown" if test "$WX_GTKPORT1" != "0"; then WX_PORT="gtk1"; fi if test "$WX_GTKPORT2" != "0"; then WX_PORT="gtk2"; fi if test "$WX_MSWPORT" != "0"; then WX_PORT="msw"; fi if test "$WX_MOTIFPORT" != "0"; then WX_PORT="motif"; fi if test "$WX_OSXCOCOAPORT" != "0"; then WX_PORT="osx_cocoa"; fi if test "$WX_OSXCARBONPORT" != "0"; then WX_PORT="osx_carbon"; fi if test "$WX_X11PORT" != "0"; then WX_PORT="x11"; fi if test "$WX_MGLPORT" != "0"; then WX_PORT="mgl"; fi if test "$WX_DFBPORT" != "0"; then WX_PORT="dfb"; fi dnl NOTE: backward-compatible check for wx2.8; in wx2.9 the mac dnl ports are called 'osx_cocoa' and 'osx_carbon' (see above) WX_MACPORT=$(expr "$WX_SELECTEDCONFIG" : ".*mac.*") if test "$WX_MACPORT" != "0"; then WX_PORT="mac"; fi dnl check at least one of the WX_*PORT has been set ! if test "$WX_PORT" = "unknown" ; then AC_MSG_ERROR([ Cannot detect the currently installed wxWidgets port ! Please check your 'wx-config --cxxflags'... ]) fi AC_MSG_RESULT([$WX_PORT]) else dnl Use the setting given by the user if test -z "$TOOLKIT" ; then WX_PORT=$TOOLKIT else dnl try with PORT WX_PORT=$PORT fi fi AC_SUBST(WX_PORT) if test "$WX_DEBUG_CONFIGURE" = "1"; then echo "[[dbg]] Values of all WX_* options after final detection:" echo "[[dbg]] WX_DEBUG: $WX_DEBUG" echo "[[dbg]] WX_UNICODE: $WX_UNICODE" echo "[[dbg]] WX_SHARED: $WX_SHARED" echo "[[dbg]] WX_RELEASE: $WX_RELEASE" echo "[[dbg]] WX_PORT: $WX_PORT" fi dnl Avoid problem described in the WX_STANDARD_OPTIONS which happens when dnl the user gives the options: dnl ./configure --enable-shared --without-wxshared dnl or just do dnl ./configure --enable-shared dnl but there is only a static build of wxWidgets available. if test "$WX_SHARED" = "0" -a "$SHARED" = "1"; then AC_MSG_ERROR([ Cannot build shared library against a static build of wxWidgets ! This error happens because the wxWidgets build which was selected has been detected as static while you asked to build $PACKAGE_NAME as shared library and this is not possible. Use the '--disable-shared' option to build $PACKAGE_NAME as static library or '--with-wxshared' to use wxWidgets as shared library. ]) fi dnl now we can finally update the DEBUG,UNICODE,SHARED options dnl to their final values if they were set to 'auto' if test "$DEBUG" = "auto"; then DEBUG=$WX_DEBUG fi if test "$UNICODE" = "auto"; then UNICODE=$WX_UNICODE fi if test "$SHARED" = "auto"; then SHARED=$WX_SHARED fi if test "$TOOLKIT" = "auto"; then TOOLKIT=$WX_PORT fi dnl in case the user needs a BUILD=debug/release var... if test "$DEBUG" = "1"; then BUILD="debug" elif test "$DEBUG" = "0" -o "$DEBUG" = ""; then BUILD="release" fi dnl respect the DEBUG variable adding the optimize/debug flags dnl NOTE: the CXXFLAGS are merged together with the CPPFLAGS so we dnl don't need to set them, too if test "$DEBUG" = "1"; then CXXFLAGS="$CXXFLAGS -g -O0" CFLAGS="$CFLAGS -g -O0" else CXXFLAGS="$CXXFLAGS -O2" CFLAGS="$CFLAGS -O2" fi ]) dnl --------------------------------------------------------------------------- dnl WX_BOOLOPT_SUMMARY([name of the boolean variable to show summary for], dnl [what to print when var is 1], dnl [what to print when var is 0]) dnl dnl Prints $2 when variable $1 == 1 and prints $3 when variable $1 == 0. dnl This macro mainly exists just to make configure.ac scripts more readable. dnl dnl NOTE: you need to use the [" my message"] syntax for 2nd and 3rd arguments dnl if you want that m4 avoid to throw away the spaces prefixed to the dnl argument value. dnl --------------------------------------------------------------------------- AC_DEFUN([WX_BOOLOPT_SUMMARY], [ if test "x$$1" = "x1" ; then echo $2 elif test "x$$1" = "x0" ; then echo $3 else echo "$1 is $$1" fi ]) dnl --------------------------------------------------------------------------- dnl WX_STANDARD_OPTIONS_SUMMARY_MSG dnl dnl Shows a summary message to the user about the WX_* variable contents. dnl This macro is used typically at the end of the configure script. dnl --------------------------------------------------------------------------- AC_DEFUN([WX_STANDARD_OPTIONS_SUMMARY_MSG], [ echo echo " The wxWidgets build which will be used by $PACKAGE_NAME $PACKAGE_VERSION" echo " has the following settings:" WX_BOOLOPT_SUMMARY([WX_DEBUG], [" - DEBUG build"], [" - RELEASE build"]) WX_BOOLOPT_SUMMARY([WX_UNICODE], [" - UNICODE mode"], [" - ANSI mode"]) WX_BOOLOPT_SUMMARY([WX_SHARED], [" - SHARED mode"], [" - STATIC mode"]) echo " - VERSION: $WX_VERSION" echo " - PORT: $WX_PORT" ]) dnl --------------------------------------------------------------------------- dnl WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN, WX_STANDARD_OPTIONS_SUMMARY_MSG_END dnl dnl Like WX_STANDARD_OPTIONS_SUMMARY_MSG macro but these two macros also gives info dnl about the configuration of the package which used the wxpresets. dnl dnl Typical usage: dnl WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN dnl echo " - Package setting 1: $SETTING1" dnl echo " - Package setting 2: $SETTING1" dnl ... dnl WX_STANDARD_OPTIONS_SUMMARY_MSG_END dnl dnl --------------------------------------------------------------------------- AC_DEFUN([WX_STANDARD_OPTIONS_SUMMARY_MSG_BEGIN], [ echo echo " ----------------------------------------------------------------" echo " Configuration for $PACKAGE_NAME $PACKAGE_VERSION successfully completed." echo " Summary of main configuration settings for $PACKAGE_NAME:" WX_BOOLOPT_SUMMARY([DEBUG], [" - DEBUG build"], [" - RELEASE build"]) WX_BOOLOPT_SUMMARY([UNICODE], [" - UNICODE mode"], [" - ANSI mode"]) WX_BOOLOPT_SUMMARY([SHARED], [" - SHARED mode"], [" - STATIC mode"]) ]) AC_DEFUN([WX_STANDARD_OPTIONS_SUMMARY_MSG_END], [ WX_STANDARD_OPTIONS_SUMMARY_MSG echo echo " Now, just run make." echo " ----------------------------------------------------------------" echo ]) dnl --------------------------------------------------------------------------- dnl Deprecated macro wrappers dnl --------------------------------------------------------------------------- AC_DEFUN([AM_OPTIONS_WXCONFIG], [WX_CONFIG_OPTIONS]) AC_DEFUN([AM_PATH_WXCONFIG], [ WX_CONFIG_CHECK([$1],[$2],[$3],[$4],[$5]) ]) AC_DEFUN([AM_PATH_WXRC], [WXRC_CHECK([$1],[$2])]) wxMaxima-13.04.2/aclocal.m4000644 000765 000024 00000077045 12150103453 015731 0ustar00andrejstaff000000 000000 # generated automatically by aclocal 1.10 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006 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_if(m4_PACKAGE_VERSION, [2.61],, [m4_fatal([this file was generated for autoconf 2.61. You have another version of autoconf. If you want to use that, you should regenerate the build system entirely.], [63])]) # Copyright (C) 2002, 2003, 2005, 2006 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.10' 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.10], [], [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 AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10])dnl _AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 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], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 # 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. # serial 8 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$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 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, 2000, 2001, 2002, 2003, 2004, 2005, 2006 # 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. # serial 9 # 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", "GCJ", or "OBJC". # 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 ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" 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'. 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 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # 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. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; 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 10q "$mf" | grep '^#.*generated by automake' > /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"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //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' -e 's/\$U/'"$U"'/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"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # 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. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006 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. # serial 12 # 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. # 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.60])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], [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], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [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) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. 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)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) ]) # 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_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $1 | $1:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 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 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 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. # serial 2 # 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])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 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. # serial 3 # 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 done .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 # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi 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, 1999, 2000, 2001, 2003, 2004, 2005 # 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. # serial 5 # 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 supports --run. # If it does, 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 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 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 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, 2002, 2003, 2005 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. # serial 3 # _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], [AC_FOREACH([_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])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # 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. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # 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 ( 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 rm -f conftest.file 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 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)]) # Copyright (C) 2001, 2003, 2005 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 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 outputing VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 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. # serial 2 # _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. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. 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([acinclude.m4]) wxMaxima-13.04.2/art/000755 000765 000024 00000000000 12150104171 014640 5ustar00andrejstaff000000 000000 wxMaxima-13.04.2/AUTHORS000644 000765 000024 00000001403 12073007012 015120 0ustar00andrejstaff000000 000000 Developers: Andrej Vodopivec Ziga Lenarcic Doug Ilijev Patches: - Sandro Montanari: xml based document (SF-patch 2537150) Translators: - Czeck: Josef Barak - Danish: Jens Thostrup - French: Eric Delevaux, Michele Gosse - German: Harald Geyer, Dieter Kaiser - Greek: Alkis Akritas, Evgenia Kelepesi-Akritas, Kostantinos Derekas - Hungarian: Blahota Istvn - Italian: Marco Ciampa - Polish: Rafal Topolnicki - Portuguese BR: Eduardo M. Kalinowski - Russian: Vadim V. Zhytnikov, Alexey Beshenov - Spanish: Antonio Ulln, Mario Rodrigues Riotorto - Ukrainian: Sergey Semerikov - Chinese TW: Frenk Weng, cw.ahbong wxMaxima-13.04.2/bootstrap000755 000765 000024 00000000124 11670654443 016034 0ustar00andrejstaff000000 000000 #! /bin/sh aclocal \ && autoheader \ && automake --gnu --add-missing \ && autoconf wxMaxima-13.04.2/ChangeLog000644 000765 000024 00000000000 11670654443 015634 0ustar00andrejstaff000000 000000 wxMaxima-13.04.2/config.guess000755 000765 000024 00000126260 11654607013 016414 0ustar00andrejstaff000000 000000 #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. timestamp='2006-07-02' # 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 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, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # 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 Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -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 (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 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 # 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 tupples: *-*-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=`(/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 ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null 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 # 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/[-_].*/\./'` ;; 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}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${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 ;; 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'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; 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 ;; 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:SunOS:5.*:*) echo i386-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:*:[45]) 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/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` 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:BSD:*) 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 __LP64__ >/dev/null 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:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; x86:Interix*:[3456]*) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T:Interix*:[3456]*) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-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-gnu`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 '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu 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 ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${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-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^LIBC/{ s: ::g p }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; 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.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V: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 i386. echo i386-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; } ;; 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.0*:*) 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 ;; 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 ;; 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 case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac 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 ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-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 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp 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` /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-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: wxMaxima-13.04.2/config.sub000755 000765 000024 00000077460 11654607013 016066 0ustar00andrejstaff000000 000000 #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. timestamp='2006-09-20' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # 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 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, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # 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. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # 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. # 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 $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -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 (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 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-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) 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) os= basic_machine=$1 ;; -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*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -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 \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ | sh | sh[1234] | sh[24]a | 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 \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-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-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | 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-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; # 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-unknown 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 ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; 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 ;; cr16c) basic_machine=cr16c-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 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; 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 ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? 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 ;; i386-vsta | 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 ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; 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 ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; 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 ;; nsr-tandem) basic_machine=nsr-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 ;; 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) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) 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 | ppc64-le | powerpc64-little) 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) 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 ;; sh) basic_machine=sh-hitachi os=-hms ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | 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 ;; 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 ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; 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 ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; 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 ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; 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. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First 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* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -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* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers*) # 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 | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -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 ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -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 ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -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 ;; # 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 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; 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 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-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 ;; *-next) os=-nextstep3 ;; *-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 ;; -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-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: wxMaxima-13.04.2/configure000755 000765 000024 00000511326 12150103455 015775 0ustar00andrejstaff000000 000000 #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 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=: # Zsh 3.x and 4.x performs 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 # PATH needs CR # 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 # 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 # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false 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.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. 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 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. 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 # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH if test "x$CONFIG_SHELL" = x; then if (eval ":") 2>/dev/null; then as_have_required=yes else as_have_required=no fi if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=\$LINENO as_lineno_2=\$LINENO test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ") 2> /dev/null; then : else as_candidate_shells= as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. case $as_dir in /*) for as_base in sh bash ksh sh5; do as_candidate_shells="$as_candidate_shells $as_dir/$as_base" done;; esac done IFS=$as_save_IFS for as_shell in $as_candidate_shells $SHELL; do # Try only shells that exist, to save several forks. if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { ("$as_shell") 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 : _ASEOF }; then CONFIG_SHELL=$as_shell as_have_required=yes if { "$as_shell" 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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_func_return () { (exit $1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = "$1" ); then : else exitcode=1 echo positional parameters were not saved. fi test $exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } _ASEOF }; then break fi fi done if test "x$CONFIG_SHELL" != x; then for as_var in BASH_ENV ENV do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test $as_have_required = no; then echo This script requires a shell more modern than all the echo shells that I found on your system. Please install a echo modern shell, or manually run the script under such a echo shell if you do have one. { (exit 1); exit 1; } fi fi fi (eval "as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0") || { echo No shell found that supports shell functions. echo Please tell autoconf@gnu.org about your system, echo including any error possibly output before this echo message } as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. 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" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # 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 } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi 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 fi echo >conf$$.file 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' 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=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, 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= SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= ac_unique_file="wxMaxima" ac_unique_file="src/wxMaxima.h" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir localstatedir includedir oldincludedir docdir infodir htmldir dvidir pdfdir psdir libdir localedir mandir DEFS ECHO_C ECHO_N ECHO_T LIBS build_alias host_alias target_alias build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT CC CFLAGS ac_ct_CC INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA SET_MAKE am__isrc CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE WX_CONFIG_PATH WX_CPPFLAGS WX_CFLAGS WX_CXXFLAGS WX_CFLAGS_ONLY WX_CXXFLAGS_ONLY WX_LIBS WX_LIBS_STATIC WX_VERSION WX_RESCOMP WX_VERSION_MAJOR WX_VERSION_MINOR WX_VERSION_MICRO CATALOGS_TO_INSTALL WX_RC_PATH RC_OBJ LIBOBJS LTLIBOBJS' ac_subst_files='' ac_precious_vars='build_alias host_alias target_alias CXX CXXFLAGS LDFLAGS LIBS CPPFLAGS CCC CC CFLAGS' # Initialize some variables set by options. ac_init_help= ac_init_version=false # 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' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' 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=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_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=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_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=\$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 ;; -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_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=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 ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 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'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute directory names. 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 do eval ac_val=\$$ac_var case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; } 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 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 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 .` || { echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { echo "$as_me: error: pwd does not report name of working directory" >&2 { (exit 1); exit 1; }; } # 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 -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | 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 .." { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } 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 this package 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] --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/PACKAGE] --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] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-printing Enable printing support. --enable-static-wx Compile with static wx libraries. Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-wxdir=PATH Use uninstalled version of wxWidgets in PATH --with-wx-config=CONFIG wx-config script to use (optional) --with-wx-prefix=PREFIX Prefix where wxWidgets is installed (optional) --with-wx-exec-prefix=PREFIX Exec prefix where wxWidgets is installed (optional) --with-macosx-sdk=PATH use an OS X SDK at PATH --with-macosx-version-min=VER build binaries which require at least this OS X version --with-macosx-arch=ARCH build for the specified architecture Some influential environment variables: CXX C++ compiler command CXXFLAGS 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 C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _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" || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 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 configure generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 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 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 $as_me, which was generated by GNU Autoconf 2.61. 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=. 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=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$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 ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export 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 cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX 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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_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 cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------------- ## ## File substitutions. ## ## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo cat confdefs.h echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" 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'; { (exit 1); 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 # 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 # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then set x "$CONFIG_SITE" elif test "x$prefix" != xNONE; then set x "$prefix/share/config.site" "$prefix/etc/config.site" else set x "$ac_default_prefix/share/config.site" \ "$ac_default_prefix/etc/config.site" fi shift for ac_site_file do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" 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. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # 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,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 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 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`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. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } 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_config_headers="$ac_config_headers src/Setup.h" ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; 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 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} { (exit 1); exit 1; }; } 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. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6; } if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 echo "$as_me: error: invalid value of canonical build" >&2;} { (exit 1); exit 1; }; };; 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 { echo "$as_me:$LINENO: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6; } if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 echo "$as_me: error: invalid value of canonical host" >&2;} { (exit 1); exit 1; }; };; 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 { echo "$as_me:$LINENO: checking target system type" >&5 echo $ECHO_N "checking target system type... $ECHO_C" >&6; } if test "${ac_cv_target+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: result: $ac_cv_target" >&5 echo "${ECHO_T}$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 echo "$as_me: error: invalid value of canonical target" >&2;} { (exit 1); exit 1; }; };; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out 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. { echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # # List of possible output files, starting from the most likely. # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) # only as a last resort. b.out is created by i960 compilers. ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' # # The IRIX 6 linker writes into existing files which may not be # executable, retaining their permissions. Remove them first so a # subsequent execution test works. ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 | *.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 { echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6; } if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C++ compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C++ compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6; } { echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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_cxx_werror_flag=$ac_save_cxx_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi 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 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* 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" 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac 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 # 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. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS 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 { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$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' { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi am__api_version='1.10' { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file # 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 ( 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 rm -f conftest.file 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". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } 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 $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 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. test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 echo "${ECHO_T}$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done 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 DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi { echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_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='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi 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 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } 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=wxMaxima VERSION=13.04.2 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"} install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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'. 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 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$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 depcc="$CXX" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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'. 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_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi case "$host" in *mingw*) win32=true ;; *cygwin*) win32=true ;; *) win32=false esac # Check whether --enable-printing was given. if test "${enable_printing+set}" = set; then enableval=$enable_printing; case "${enableval}" in yes) wxm_print=true ;; no) wxm_print=false ;; *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-printing" >&5 echo "$as_me: error: bad value ${enableval} for --enable-printing" >&2;} { (exit 1); exit 1; }; } ;; esac else wxm_print=true fi if test x"${wxm_print}" = x"true" ; then cat >>confdefs.h <<\_ACEOF #define WXM_PRINT 1 _ACEOF else cat >>confdefs.h <<\_ACEOF #define WXM_PRINT 0 _ACEOF fi # Check whether --with-wxdir was given. if test "${with_wxdir+set}" = set; then withval=$with_wxdir; wx_config_name="$withval/wx-config" wx_config_args="--inplace" fi # Check whether --with-wx-config was given. if test "${with_wx_config+set}" = set; then withval=$with_wx_config; wx_config_name="$withval" fi # Check whether --with-wx-prefix was given. if test "${with_wx_prefix+set}" = set; then withval=$with_wx_prefix; wx_config_prefix="$withval" else wx_config_prefix="" fi # Check whether --with-wx-exec-prefix was given. if test "${with_wx_exec_prefix+set}" = set; then withval=$with_wx_exec_prefix; wx_config_exec_prefix="$withval" else wx_config_exec_prefix="" fi # Check whether --enable-static-wx was given. if test "${enable_static_wx+set}" = set; then enableval=$enable_static_wx; case "${enableval}" in yes) static_wx=true ;; no) static_wx=false ;; *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-static-wx" >&5 echo "$as_me: error: bad value ${enableval} for --enable-static-wx" >&2;} { (exit 1); exit 1; }; } ;; esac else static_wx=false fi # Check whether --with-macosx-sdk was given. if test "${with_macosx_sdk+set}" = set; then withval=$with_macosx_sdk; MACOSX_SDK=$withval fi if test "x$MACOSX_SDK" != "x"; then eval "CC=\"$CC -isysroot $MACOSX_SDK\"" eval "CXX=\"$CXX -isysroot $MACOSX_SDK\"" eval "LD=\"$LD -isysroot $MACOSX_SDK\"" fi # Check whether --with-macosx-version-min was given. if test "${with_macosx_version_min+set}" = set; then withval=$with_macosx_version_min; MACOSX_VERSION_MIN=$withval fi if test "x$MACOSX_VERSION_MIN" != "x"; then eval "CC=\"$CC -mmacosx-version-min=$MACOSX_VERSION_MIN\"" eval "CXX=\"$CXX -mmacosx-version-min=$MACOSX_VERSION_MIN\"" eval "LD=\"$LD -mmacosx-version-min=$MACOSX_VERSION_MIN\"" fi # Check whether --with-macosx-arch was given. if test "${with_macosx_arch+set}" = set; then withval=$with_macosx_arch; MACOSX_ARCH=$withval fi if test "x$MACOSX_ARCH" != "x"; then eval "CFLAGS=\"$CFLAGS -arch $MACOSX_ARCH\"" eval "CXXFLAGS=\"$CXXFLAGS -arch $MACOSX_ARCH\"" eval "CPPFLAGS=\"$CPPFLAGS -arch $MACOSX_ARCH\"" eval "LDFLAGS=\"$LDFLAGS -arch $MACOSX_ARCH\"" eval "OBJCFLAGS=\"$OBJFLAGS -arch $MACOSX_ARCH\"" eval "OBJXXFLAGS=\"$OBJXXFLAGS -arch $MACOSX_ARCH\"" fi if test x${WX_CONFIG_NAME+set} != xset ; then WX_CONFIG_NAME=wx-config fi if test "x$wx_config_name" != x ; then WX_CONFIG_NAME="$wx_config_name" fi if test x$wx_config_exec_prefix != x ; then wx_config_args="$wx_config_args --exec-prefix=$wx_config_exec_prefix" WX_LOOKUP_PATH="$wx_config_exec_prefix/bin" fi if test x$wx_config_prefix != x ; then wx_config_args="$wx_config_args --prefix=$wx_config_prefix" WX_LOOKUP_PATH="$WX_LOOKUP_PATH:$wx_config_prefix/bin" fi if test "$cross_compiling" = "yes"; then wx_config_args="$wx_config_args --host=$host_alias" fi if test -x "$WX_CONFIG_NAME" ; then { echo "$as_me:$LINENO: checking for wx-config" >&5 echo $ECHO_N "checking for wx-config... $ECHO_C" >&6; } WX_CONFIG_PATH="$WX_CONFIG_NAME" { echo "$as_me:$LINENO: result: $WX_CONFIG_PATH" >&5 echo "${ECHO_T}$WX_CONFIG_PATH" >&6; } else # Extract the first word of "$WX_CONFIG_NAME", so it can be a program name with args. set dummy $WX_CONFIG_NAME; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_WX_CONFIG_PATH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $WX_CONFIG_PATH in [\\/]* | ?:[\\/]*) ac_cv_path_WX_CONFIG_PATH="$WX_CONFIG_PATH" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy=""$WX_LOOKUP_PATH:$PATH"" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_WX_CONFIG_PATH="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_WX_CONFIG_PATH" && ac_cv_path_WX_CONFIG_PATH="no" ;; esac fi WX_CONFIG_PATH=$ac_cv_path_WX_CONFIG_PATH if test -n "$WX_CONFIG_PATH"; then { echo "$as_me:$LINENO: result: $WX_CONFIG_PATH" >&5 echo "${ECHO_T}$WX_CONFIG_PATH" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test "$WX_CONFIG_PATH" != "no" ; then WX_VERSION="" min_wx_version=2.8.4 if test -z "" ; then { echo "$as_me:$LINENO: checking for wxWidgets version >= $min_wx_version" >&5 echo $ECHO_N "checking for wxWidgets version >= $min_wx_version... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking for wxWidgets version >= $min_wx_version ()" >&5 echo $ECHO_N "checking for wxWidgets version >= $min_wx_version ()... $ECHO_C" >&6; } fi WX_CONFIG_WITH_ARGS="$WX_CONFIG_PATH $wx_config_args " WX_VERSION=`$WX_CONFIG_WITH_ARGS --version 2>/dev/null` wx_config_major_version=`echo $WX_VERSION | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` wx_config_minor_version=`echo $WX_VERSION | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` wx_config_micro_version=`echo $WX_VERSION | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` wx_requested_major_version=`echo $min_wx_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` wx_requested_minor_version=`echo $min_wx_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` wx_requested_micro_version=`echo $min_wx_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` wx_ver_ok="" if test "x$WX_VERSION" != x ; then if test $wx_config_major_version -gt $wx_requested_major_version; then wx_ver_ok=yes else if test $wx_config_major_version -eq $wx_requested_major_version; then if test $wx_config_minor_version -gt $wx_requested_minor_version; then wx_ver_ok=yes else if test $wx_config_minor_version -eq $wx_requested_minor_version; then if test $wx_config_micro_version -ge $wx_requested_micro_version; then wx_ver_ok=yes fi fi fi fi fi fi if test -n "$wx_ver_ok"; then { echo "$as_me:$LINENO: result: yes (version $WX_VERSION)" >&5 echo "${ECHO_T}yes (version $WX_VERSION)" >&6; } WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs adv,xml,html,aui,core,net,base` { echo "$as_me:$LINENO: checking for wxWidgets static library" >&5 echo $ECHO_N "checking for wxWidgets static library... $ECHO_C" >&6; } WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static --libs adv,xml,html,aui,core,net,base 2>/dev/null` if test "x$WX_LIBS_STATIC" = "x"; then { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } else { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } fi wx_has_cppflags="" if test $wx_config_major_version -gt 2; then wx_has_cppflags=yes else if test $wx_config_major_version -eq 2; then if test $wx_config_minor_version -gt 2; then wx_has_cppflags=yes else if test $wx_config_minor_version -eq 2; then if test $wx_config_micro_version -ge 6; then wx_has_cppflags=yes fi fi fi fi fi wx_has_rescomp="" if test $wx_config_major_version -gt 2; then wx_has_rescomp=yes else if test $wx_config_major_version -eq 2; then if test $wx_config_minor_version -ge 7; then wx_has_rescomp=yes fi fi fi if test "x$wx_has_rescomp" = x ; then WX_RESCOMP= else WX_RESCOMP=`$WX_CONFIG_WITH_ARGS --rescomp` fi if test "x$wx_has_cppflags" = x ; then WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags adv,xml,html,aui,core,net,base` WX_CPPFLAGS=$WX_CFLAGS WX_CXXFLAGS=$WX_CFLAGS WX_CFLAGS_ONLY=$WX_CFLAGS WX_CXXFLAGS_ONLY=$WX_CFLAGS else WX_CPPFLAGS=`$WX_CONFIG_WITH_ARGS --cppflags adv,xml,html,aui,core,net,base` WX_CXXFLAGS=`$WX_CONFIG_WITH_ARGS --cxxflags adv,xml,html,aui,core,net,base` WX_CFLAGS=`$WX_CONFIG_WITH_ARGS --cflags adv,xml,html,aui,core,net,base` WX_CFLAGS_ONLY=`echo $WX_CFLAGS | sed "s@^$WX_CPPFLAGS *@@"` WX_CXXFLAGS_ONLY=`echo $WX_CXXFLAGS | sed "s@^$WX_CFLAGS *@@"` fi wxWin=1 else if test "x$WX_VERSION" = x; then { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } else { echo "$as_me:$LINENO: result: no (version $WX_VERSION is not new enough)" >&5 echo "${ECHO_T}no (version $WX_VERSION is not new enough)" >&6; } fi WX_CFLAGS="" WX_CPPFLAGS="" WX_CXXFLAGS="" WX_LIBS="" WX_LIBS_STATIC="" WX_RESCOMP="" if test ! -z ""; then wx_error_message=" The configuration you asked for $PACKAGE_NAME requires a wxWidgets build with the following settings: but such build is not available. To see the wxWidgets builds available on this system, please use 'wx-config --list' command. To use the default build, returned by 'wx-config --selected-config', use the options with their 'auto' default values." fi wx_error_message=" The requested wxWidgets build couldn't be found. $wx_error_message If you still get this error, then check that 'wx-config' is in path, the directory where wxWidgets libraries are installed (returned by 'wx-config --libs' command) is in LD_LIBRARY_PATH or equivalent variable and wxWidgets version is 2.8.4 or above." wxWin=0 fi else WX_CFLAGS="" WX_CPPFLAGS="" WX_CXXFLAGS="" WX_LIBS="" WX_LIBS_STATIC="" WX_RESCOMP="" wxWin=0 fi WX_VERSION_MAJOR="$wx_config_major_version" WX_VERSION_MINOR="$wx_config_minor_version" WX_VERSION_MICRO="$wx_config_micro_version" if test "$wxWin" != 1; then { { echo "$as_me:$LINENO: error: wxWidgets must be installed on your system. Please check that wx-config is in path, the directory where wxWidgets libraries are installed (returned by 'wx-config --libs' or 'wx-config --static --libs' command) is in LD_LIBRARY_PATH or equivalent variable and wxWidgets version is 2.8.4 or above. " >&5 echo "$as_me: error: wxWidgets must be installed on your system. Please check that wx-config is in path, the directory where wxWidgets libraries are installed (returned by 'wx-config --libs' or 'wx-config --static --libs' command) is in LD_LIBRARY_PATH or equivalent variable and wxWidgets version is 2.8.4 or above. " >&2;} { (exit 1); exit 1; }; } else if test x"${static_wx}" = x"true" ; then WX_LIBS="$WX_LIBS_STATIC" fi ac_save_LIBS=$LIBS ac_save_CXXFLAGS=$CXXFLAGS LIBS=$WX_LIBS CXXFLAGS=$WX_CXXFLAGS ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { echo "$as_me:$LINENO: checking if we can compile a wxWidgets program" >&5 echo $ECHO_N "checking if we can compile a wxWidgets program... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { wxString test=wxT("") ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "" echo "" echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means that wxWidgets library was" echo "*** incorrectly installed." echo "" { { echo "$as_me:$LINENO: error: Failed to compile a test program" >&5 echo "$as_me: error: Failed to compile a test program" >&2;} { (exit 1); exit 1; }; } fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext 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 LIBS=$ac_save_LIBS CXXFLAGS="$ac_save_CXXFLAGS $WX_CXXFLAGS" fi if test x"${win32}" = x"true" ; then RC_OBJ="Resources.o" wx_prefix=`$WX_CONFIG_NAME --prefix` WX_RC_PATH="${wx_prefix}/include" else RC_OBJ="" WX_RC_PATH="" fi CATALOGS_TO_INSTALL="install-wxmaxima-catalogs" if test x"${static_wx}" = x"true" ; then CATALOGS_TO_INSTALL="$CATALOGS_TO_INSTALL install-wxstd-catalogs" fi # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. ac_config_files="$ac_config_files Makefile src/Makefile locales/Makefile data/Makefile" ac_config_files="$ac_config_files wxmaxima.spec data/Info.plist" 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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_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 test "x$cache_file" != "x/dev/null" && { echo "$as_me:$LINENO: updating cache $cache_file" >&5 echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 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= 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=`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. ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $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} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## 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=: # Zsh 3.x and 4.x performs 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 # PATH needs CR # 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 # 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 # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false 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.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. 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 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. 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 # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. 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" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # 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 } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi 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 fi echo >conf$$.file 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' 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=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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 # 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 $as_me, which was generated by GNU Autoconf 2.61. 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 cat >>$CONFIG_STATUS <<_ACEOF # 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_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2006 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' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. 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=$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 ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) 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. -*) { echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *) ac_config_targets="$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 if \$ac_cs_recheck; then echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=$SHELL export CONFIG_SHELL exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "src/Setup.h") CONFIG_HEADERS="$CONFIG_HEADERS src/Setup.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "locales/Makefile") CONFIG_FILES="$CONFIG_FILES locales/Makefile" ;; "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; "wxmaxima.spec") CONFIG_FILES="$CONFIG_FILES wxmaxima.spec" ;; "data/Info.plist") CONFIG_FILES="$CONFIG_FILES data/Info.plist" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; 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= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF SHELL!$SHELL$ac_delim PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim PACKAGE_NAME!$PACKAGE_NAME$ac_delim PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim PACKAGE_STRING!$PACKAGE_STRING$ac_delim PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim exec_prefix!$exec_prefix$ac_delim prefix!$prefix$ac_delim program_transform_name!$program_transform_name$ac_delim bindir!$bindir$ac_delim sbindir!$sbindir$ac_delim libexecdir!$libexecdir$ac_delim datarootdir!$datarootdir$ac_delim datadir!$datadir$ac_delim sysconfdir!$sysconfdir$ac_delim sharedstatedir!$sharedstatedir$ac_delim localstatedir!$localstatedir$ac_delim includedir!$includedir$ac_delim oldincludedir!$oldincludedir$ac_delim docdir!$docdir$ac_delim infodir!$infodir$ac_delim htmldir!$htmldir$ac_delim dvidir!$dvidir$ac_delim pdfdir!$pdfdir$ac_delim psdir!$psdir$ac_delim libdir!$libdir$ac_delim localedir!$localedir$ac_delim mandir!$mandir$ac_delim DEFS!$DEFS$ac_delim ECHO_C!$ECHO_C$ac_delim ECHO_N!$ECHO_N$ac_delim ECHO_T!$ECHO_T$ac_delim LIBS!$LIBS$ac_delim build_alias!$build_alias$ac_delim host_alias!$host_alias$ac_delim target_alias!$target_alias$ac_delim build!$build$ac_delim build_cpu!$build_cpu$ac_delim build_vendor!$build_vendor$ac_delim build_os!$build_os$ac_delim host!$host$ac_delim host_cpu!$host_cpu$ac_delim host_vendor!$host_vendor$ac_delim host_os!$host_os$ac_delim target!$target$ac_delim target_cpu!$target_cpu$ac_delim target_vendor!$target_vendor$ac_delim target_os!$target_os$ac_delim CXX!$CXX$ac_delim CXXFLAGS!$CXXFLAGS$ac_delim LDFLAGS!$LDFLAGS$ac_delim CPPFLAGS!$CPPFLAGS$ac_delim ac_ct_CXX!$ac_ct_CXX$ac_delim EXEEXT!$EXEEXT$ac_delim OBJEXT!$OBJEXT$ac_delim CC!$CC$ac_delim CFLAGS!$CFLAGS$ac_delim ac_ct_CC!$ac_ct_CC$ac_delim INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim SET_MAKE!$SET_MAKE$ac_delim am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim ACLOCAL!$ACLOCAL$ac_delim AUTOCONF!$AUTOCONF$ac_delim AUTOMAKE!$AUTOMAKE$ac_delim AUTOHEADER!$AUTOHEADER$ac_delim MAKEINFO!$MAKEINFO$ac_delim install_sh!$install_sh$ac_delim STRIP!$STRIP$ac_delim INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim mkdir_p!$mkdir_p$ac_delim AWK!$AWK$ac_delim am__leading_dot!$am__leading_dot$ac_delim AMTAR!$AMTAR$ac_delim am__tar!$am__tar$ac_delim am__untar!$am__untar$ac_delim DEPDIR!$DEPDIR$ac_delim am__include!$am__include$ac_delim am__quote!$am__quote$ac_delim AMDEP_TRUE!$AMDEP_TRUE$ac_delim AMDEP_FALSE!$AMDEP_FALSE$ac_delim AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim CCDEPMODE!$CCDEPMODE$ac_delim am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim CXXDEPMODE!$CXXDEPMODE$ac_delim am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim WX_CONFIG_PATH!$WX_CONFIG_PATH$ac_delim WX_CPPFLAGS!$WX_CPPFLAGS$ac_delim WX_CFLAGS!$WX_CFLAGS$ac_delim WX_CXXFLAGS!$WX_CXXFLAGS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF CEOF$ac_eof _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF WX_CFLAGS_ONLY!$WX_CFLAGS_ONLY$ac_delim WX_CXXFLAGS_ONLY!$WX_CXXFLAGS_ONLY$ac_delim WX_LIBS!$WX_LIBS$ac_delim WX_LIBS_STATIC!$WX_LIBS_STATIC$ac_delim WX_VERSION!$WX_VERSION$ac_delim WX_RESCOMP!$WX_RESCOMP$ac_delim WX_VERSION_MAJOR!$WX_VERSION_MAJOR$ac_delim WX_VERSION_MINOR!$WX_VERSION_MINOR$ac_delim WX_VERSION_MICRO!$WX_VERSION_MICRO$ac_delim CATALOGS_TO_INSTALL!$CATALOGS_TO_INSTALL$ac_delim WX_RC_PATH!$WX_RC_PATH$ac_delim RC_OBJ!$RC_OBJ$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 14; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF :end s/|#_!!_#|//g CEOF$ac_eof _ACEOF # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ 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[ ]*=/{ s/:*\$(srcdir):*/:/ s/:*\${srcdir}:*/:/ s/:*@srcdir@:*/:/ s/^\([^=]*=[ ]*\):*/\1/ s/:*$// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 echo "$as_me: error: Invalid tag $ac_tag." >&2;} { (exit 1); exit 1; }; };; :[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="$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 || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; esac ac_file_inputs="$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 "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; 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 || 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" case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 # 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= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF 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 sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;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 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 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 "$tmp/stdin" case $ac_file in -) cat "$tmp/out"; rm -f "$tmp/out";; *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; esac ;; :H) # # CONFIG_HEADER # _ACEOF # Transform confdefs.h into a sed script `conftest.defines', that # substitutes the proper values into config.h.in to produce config.h. rm -f conftest.defines conftest.tail # First, append a space to every undef/define line, to ease matching. echo 's/$/ /' >conftest.defines # Then, protect against being on the right side of a sed subst, or in # an unquoted here document, in config.status. If some macros were # called several times there might be several #defines for the same # symbol, which is useless. But do not sort them, since the last # AC_DEFINE must be honored. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where # NAME is the cpp macro being defined, VALUE is the value it is being given. # PARAMS is the parameter list in the macro definition--in most cases, it's # just an empty string. ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ac_dB='\\)[ (].*,\\1define\\2' ac_dC=' ' ac_dD=' ,' uniq confdefs.h | sed -n ' t rset :rset s/^[ ]*#[ ]*define[ ][ ]*// t ok d :ok s/[\\&,]/\\&/g s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ' >>conftest.defines # Remove the space that was appended to ease matching. # Then 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. # (The regexp can be short, since the line contains either #define or #undef.) echo 's/ $// s,^[ #]*u.*,/* & */,' >>conftest.defines # Break up conftest.defines: ac_max_sed_lines=50 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" # et cetera. ac_in='$ac_file_inputs' ac_out='"$tmp/out1"' ac_nxt='"$tmp/out2"' while : do # Write a here document: cat >>$CONFIG_STATUS <<_ACEOF # First, check the format of the line: cat >"\$tmp/defines.sed" <<\\CEOF /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*/b def /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def b :def _ACEOF sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail grep . conftest.tail >/dev/null || break rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines conftest.tail echo "ac_result=$ac_in" >>$CONFIG_STATUS cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then echo "/* $configure_input */" >"$tmp/config.h" cat "$ac_result" >>"$tmp/config.h" if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file mv "$tmp/config.h" $ac_file fi else echo "/* $configure_input */" cat "$ac_result" fi rm -f "$tmp/out12" # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $ac_file | $ac_file:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $ac_file" >`$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 || echo X$ac_file | 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) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; 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 10q "$mf" | grep '^#.*generated by automake' > /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 || 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"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //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' -e 's/\$U/'"$U"'/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 || 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 case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # 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 || { (exit 1); exit 1; } fi wxMaxima-13.04.2/configure.in000644 000765 000024 00000011347 12150103443 016372 0ustar00andrejstaff000000 000000 # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(wxMaxima) AC_CONFIG_SRCDIR([src/wxMaxima.h]) AM_CONFIG_HEADER(src/Setup.h) AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_CANONICAL_TARGET dnl Checks for programs. AC_PROG_CXX AC_PROG_CC AC_PROG_INSTALL AC_PROG_MAKE_SET AM_INIT_AUTOMAKE(wxMaxima, 13.04.2) dnl check for host case "$host" in *mingw*) win32=true ;; *cygwin*) win32=true ;; *) win32=false esac dnl optional support for glyphs drawing, printing and drag'n'drop AC_ARG_ENABLE(printing, [ --enable-printing Enable printing support.], [case "${enableval}" in yes) wxm_print=true ;; no) wxm_print=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-printing) ;; esac], [wxm_print=true]) if test x"${wxm_print}" = x"true" ; then AC_DEFINE([WXM_PRINT], [1], ["Add printing support"]) else AC_DEFINE([WXM_PRINT], [0], ["Add printing support"]) fi dnl check for wxWidgets AM_OPTIONS_WXCONFIG AC_ARG_ENABLE(static-wx, [ --enable-static-wx Compile with static wx libraries.], [case "${enableval}" in yes) static_wx=true ;; no) static_wx=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-static-wx) ;; esac], [static_wx=false]) AC_ARG_WITH(macosx-sdk, [ --with-macosx-sdk=PATH use an OS X SDK at PATH], [MACOSX_SDK=$withval]) if test "x$MACOSX_SDK" != "x"; then eval "CC=\"$CC -isysroot $MACOSX_SDK\"" eval "CXX=\"$CXX -isysroot $MACOSX_SDK\"" eval "LD=\"$LD -isysroot $MACOSX_SDK\"" fi AC_ARG_WITH(macosx-version-min, [ --with-macosx-version-min=VER build binaries which require at least this OS X version], [MACOSX_VERSION_MIN=$withval]) if test "x$MACOSX_VERSION_MIN" != "x"; then eval "CC=\"$CC -mmacosx-version-min=$MACOSX_VERSION_MIN\"" eval "CXX=\"$CXX -mmacosx-version-min=$MACOSX_VERSION_MIN\"" eval "LD=\"$LD -mmacosx-version-min=$MACOSX_VERSION_MIN\"" fi AC_ARG_WITH(macosx-arch, [ --with-macosx-arch=ARCH build for the specified architecture], [MACOSX_ARCH=$withval]) if test "x$MACOSX_ARCH" != "x"; then eval "CFLAGS=\"$CFLAGS -arch $MACOSX_ARCH\"" eval "CXXFLAGS=\"$CXXFLAGS -arch $MACOSX_ARCH\"" eval "CPPFLAGS=\"$CPPFLAGS -arch $MACOSX_ARCH\"" eval "LDFLAGS=\"$LDFLAGS -arch $MACOSX_ARCH\"" eval "OBJCFLAGS=\"$OBJFLAGS -arch $MACOSX_ARCH\"" eval "OBJXXFLAGS=\"$OBJXXFLAGS -arch $MACOSX_ARCH\"" fi AM_PATH_WXCONFIG([2.8.4], [wxWin=1], [wxWin=0], [adv,xml,html,aui,core,net,base]) if test "$wxWin" != 1; then AC_MSG_ERROR([ wxWidgets must be installed on your system. Please check that wx-config is in path, the directory where wxWidgets libraries are installed (returned by 'wx-config --libs' or 'wx-config --static --libs' command) is in LD_LIBRARY_PATH or equivalent variable and wxWidgets version is 2.8.4 or above. ]) else if test x"${static_wx}" = x"true" ; then WX_LIBS="$WX_LIBS_STATIC" fi dnl Quick hack until wx-config does it ac_save_LIBS=$LIBS ac_save_CXXFLAGS=$CXXFLAGS LIBS=$WX_LIBS CXXFLAGS=$WX_CXXFLAGS AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_MSG_CHECKING([if we can compile a wxWidgets program]) AC_TRY_LINK([#include ], [wxString test=wxT("")], [AC_MSG_RESULT([yes])], [echo "" echo "" echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means that wxWidgets library was" echo "*** incorrectly installed." echo "" AC_MSG_ERROR([Failed to compile a test program])]) AC_LANG_RESTORE LIBS=$ac_save_LIBS CXXFLAGS="$ac_save_CXXFLAGS $WX_CXXFLAGS" fi dnl dnl we have to setup rc compiling under Windows dnl if test x"${win32}" = x"true" ; then RC_OBJ="Resources.o" wx_prefix=`$WX_CONFIG_NAME --prefix` WX_RC_PATH="${wx_prefix}/include" else RC_OBJ="" WX_RC_PATH="" fi dnl dnl translations dnl CATALOGS_TO_INSTALL="install-wxmaxima-catalogs" if test x"${static_wx}" = x"true" ; then CATALOGS_TO_INSTALL="$CATALOGS_TO_INSTALL install-wxstd-catalogs" fi AC_SUBST(CATALOGS_TO_INSTALL) AC_SUBST(WX_LIBS) AC_SUBST(WX_RC_PATH) AC_SUBST(RC_OBJ) # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_CONFIG_FILES([ Makefile src/Makefile locales/Makefile data/Makefile ]) AC_OUTPUT(wxmaxima.spec data/Info.plist) wxMaxima-13.04.2/COPYING000644 000765 000024 00000043110 11670654443 015126 0ustar00andrejstaff000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. wxMaxima-13.04.2/data/000755 000765 000024 00000000000 12150104173 014765 5ustar00andrejstaff000000 000000 wxMaxima-13.04.2/depcomp000755 000765 000024 00000042246 11654607013 015452 0ustar00andrejstaff000000 000000 #! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2006-10-15.18 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 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, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # 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 outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac 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" # 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 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 -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## 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). ## - 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 -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## 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. tr ' ' ' ' < "$tmpdepfile" | ## 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. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -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 -eq 0; then : else 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 ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; 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. stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test -f "$tmpdepfile"; then : else stripped=`echo "$stripped" | sed 's,^.*/,,'` tmpdepfile="$stripped.u" fi if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then outname="$stripped.o" # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else 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. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 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 -eq 0; then : else 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,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#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. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # 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.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #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 $1 != '--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:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. 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 $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac 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. -*|$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" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. 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 $1 != '--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, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; 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-end: "$" # End: wxMaxima-13.04.2/INSTALL000644 000765 000024 00000022030 11670654443 015122 0ustar00andrejstaff000000 000000 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. (Caching is disabled by default to prevent problems with accidental use of stale cache files.) If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You only need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not support the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=PATH' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the `--target=TYPE' option to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc will cause the specified gcc to be used as the C compiler (unless it is overridden in the site shell script). `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of the options to `configure', and exit. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. wxMaxima-13.04.2/install-sh000755 000765 000024 00000031600 11654607013 016071 0ustar00andrejstaff000000 000000 #!/bin/sh # install - install a program, script, or datafile scriptversion=2006-10-14.15 # 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. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" posix_glob= posix_mkdir= # Desired mode of installed file. mode=0755 chmodcmd=$chmodprog chowncmd= chgrpcmd= stripcmd= rmcmd="$rmprog -f" mvcmd="$mvprog" src= dst= dir_arg= dstarg= no_target_directory= 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: -c (ignored) -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. --help display this help and exit. --version display version info and exit. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) shift continue;; -d) dir_arg=true shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; --help) echo "$usage"; exit $?;; -m) mode=$2 shift shift case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -s) stripcmd=$stripprog shift continue;; -t) dstarg=$2 shift shift continue;; -T) no_target_directory=true shift continue;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac done if test $# -ne 0 && test -z "$dir_arg$dstarg"; 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 "$dstarg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dstarg" shift # fnord fi shift # arg dstarg=$arg 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 trap '(exit $?); exit' 1 2 13 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 starting with `-'. 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 "$dstarg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dstarg # Protect names starting with `-'. case $dst in -*) dst=./$dst ;; esac # 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 -n "$no_target_directory"; then echo "$0: $dstarg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` 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. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/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-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 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 case $posix_glob in '') if (set -f) 2>/dev/null; then posix_glob=true else posix_glob=false fi ;; esac oIFS=$IFS IFS=/ $posix_glob && set -f set fnord $dstdir shift $posix_glob && set +f IFS=$oIFS prefixes= for d do test -z "$d" && 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"; } && # Now 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. { if test -f "$dst"; then $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 } else : fi } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } } || 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-end: "$" # End: wxMaxima-13.04.2/locales/000755 000765 000024 00000000000 12150104173 015476 5ustar00andrejstaff000000 000000 wxMaxima-13.04.2/Makefile.am000644 000765 000024 00000006011 12072763525 016125 0ustar00andrejstaff000000 000000 SUBDIRS = src locales data EXTRA_DIST = bootstrap wxmaxima.spec.in wxmaxima.desktop \ art/readme.txt art/license.txt \ art/toolbar/configure.png art/toolbar/cut.png \ art/toolbar/input.png art/toolbar/print.png \ art/toolbar/stop.png art/toolbar/copy.png \ art/toolbar/help.png art/toolbar/open.png \ art/toolbar/save.png art/toolbar/text.png \ art/toolbar/playback-start.png \ art/toolbar/playback-stop.png \ art/toolbar/paste.png \ art/toolbar/find.png \ art/toolbar/new.png \ art/config/options.png \ art/config/maxima.png \ art/config/styles.png \ art/wxmac-doc-wxm.icns art/wxmac-doc-wxmx.icns \ art/wxmac-doc.icns art/wxmac.icns \ art/maximaicon.ico docdir = ${datadir}/wxMaxima doc_DATA = README COPYING art/config/options.png art/config/maxima.png \ art/config/styles.png LANGS = fr es it de pt_BR ru hu uk pl zh_TW da cs el ja ca gl zh_CN wxMaxima.app: all mkdir -p wxMaxima.app/Contents/MacOS mkdir -p wxMaxima.app/Contents/Resources cp data/wxmathml.lisp wxMaxima.app/Contents/Resources cp data/wxmaxima.png wxMaxima.app/Contents/Resources cp data/autocomplete.txt wxMaxima.app/Contents/Resources cp data/tips*.txt wxMaxima.app/Contents/Resources cp art/wxmac.icns wxMaxima.app/Contents/Resources cp art/wxmac-doc.icns wxMaxima.app/Contents/Resources cp art/wxmac-doc-wxm.icns wxMaxima.app/Contents/Resources cp art/wxmac-doc-wxmx.icns wxMaxima.app/Contents/Resources cp data/Info.plist wxMaxima.app/Contents cp data/PkgInfo wxMaxima.app/Contents cp src/wxmaxima wxMaxima.app/Contents/MacOS for i in $(LANGS) ; do \ mkdir -p wxMaxima.app/Contents/Resources/locale/$$i/LC_MESSAGES ; \ cp locales/$$i.mo wxMaxima.app/Contents/Resources/locale/$$i/LC_MESSAGES/wxMaxima.mo ; \ cp locales/wxwin/$$i.mo wxMaxima.app/Contents/Resources/locale/$$i/LC_MESSAGES/wxMaxima-wxstd.mo ; \ done mkdir -p wxMaxima.app/Contents/Resources/toolbar mkdir -p wxMaxima.app/Contents/Resources/config cp art/toolbar/*.png wxMaxima.app/Contents/Resources/toolbar cp art/config/*.png wxMaxima.app/Contents/Resources/config wxMaxima.win: all mkdir -p wxMaxima/art mkdir -p wxMaxima/data cp data/wxmathml.lisp wxMaxima/data cp data/wxmaxima.png wxMaxima/data cp data/autocomplete.txt wxMaxima/data cp data/tips*.txt wxMaxima/data mkdir -p wxMaxima/art/toolbar cp art/toolbar/*.png wxMaxima/art/toolbar mkdir -p wxMaxima/art/config cp art/config/*.png wxMaxima/art/config for i in $(LANGS) ; do \ mkdir -p wxMaxima/locale/$$i/LC_MESSAGES ; \ cp locales/$$i.mo wxMaxima/locale/$$i/LC_MESSAGES/wxMaxima.mo ; \ cp locales/wxwin/$$i.mo wxMaxima/locale/$$i/LC_MESSAGES/wxMaxima-wxstd.mo ; \ done cp src/wxmaxima.exe wxMaxima/ wxMaxima-13.04.2/Makefile.in000644 000765 000024 00000055353 12150103454 016135 0ustar00andrejstaff000000 000000 # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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@ target_triplet = @target@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/wxmaxima.spec.in \ $(top_srcdir)/configure ABOUT-NLS AUTHORS COPYING ChangeLog \ INSTALL NEWS config.guess config.sub depcomp install-sh \ missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/Setup.h CONFIG_CLEAN_FILES = wxmaxima.spec SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-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 uninstall-recursive 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 = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(docdir)" docDATA_INSTALL = $(INSTALL_DATA) DATA = $(doc_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS_TO_INSTALL = @CATALOGS_TO_INSTALL@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RC_OBJ = @RC_OBJ@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ WX_CFLAGS = @WX_CFLAGS@ WX_CFLAGS_ONLY = @WX_CFLAGS_ONLY@ WX_CONFIG_PATH = @WX_CONFIG_PATH@ WX_CPPFLAGS = @WX_CPPFLAGS@ WX_CXXFLAGS = @WX_CXXFLAGS@ WX_CXXFLAGS_ONLY = @WX_CXXFLAGS_ONLY@ WX_LIBS = @WX_LIBS@ WX_LIBS_STATIC = @WX_LIBS_STATIC@ WX_RC_PATH = @WX_RC_PATH@ WX_RESCOMP = @WX_RESCOMP@ WX_VERSION = @WX_VERSION@ WX_VERSION_MAJOR = @WX_VERSION_MAJOR@ WX_VERSION_MICRO = @WX_VERSION_MICRO@ WX_VERSION_MINOR = @WX_VERSION_MINOR@ 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@ ac_ct_CXX = @ac_ct_CXX@ 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 = ${datadir}/wxMaxima 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src locales data EXTRA_DIST = bootstrap wxmaxima.spec.in wxmaxima.desktop \ art/readme.txt art/license.txt \ art/toolbar/configure.png art/toolbar/cut.png \ art/toolbar/input.png art/toolbar/print.png \ art/toolbar/stop.png art/toolbar/copy.png \ art/toolbar/help.png art/toolbar/open.png \ art/toolbar/save.png art/toolbar/text.png \ art/toolbar/playback-start.png \ art/toolbar/playback-stop.png \ art/toolbar/paste.png \ art/toolbar/find.png \ art/toolbar/new.png \ art/config/options.png \ art/config/maxima.png \ art/config/styles.png \ art/wxmac-doc-wxm.icns art/wxmac-doc-wxmx.icns \ art/wxmac-doc.icns art/wxmac.icns \ art/maximaicon.ico doc_DATA = README COPYING art/config/options.png art/config/maxima.png \ art/config/styles.png LANGS = fr es it de pt_BR ru hu uk pl zh_TW da cs el ja ca gl zh_CN all: all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: 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; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) wxmaxima.spec: $(top_builddir)/config.status $(srcdir)/wxmaxima.spec.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-docDATA: $(doc_DATA) @$(NORMAL_INSTALL) test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" @list='$(doc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \ $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ done uninstall-docDATA: @$(NORMAL_UNINSTALL) @list='$(doc_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \ rm -f "$(DESTDIR)$(docdir)/$$f"; \ done # 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. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; 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; \ (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" $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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 || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -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) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__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*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(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 $(am__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: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { 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: check-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-docDATA install-dvi: install-dvi-recursive install-exec-am: install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-docDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-generic distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-docDATA 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-generic pdf \ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-docDATA wxMaxima.app: all mkdir -p wxMaxima.app/Contents/MacOS mkdir -p wxMaxima.app/Contents/Resources cp data/wxmathml.lisp wxMaxima.app/Contents/Resources cp data/wxmaxima.png wxMaxima.app/Contents/Resources cp data/autocomplete.txt wxMaxima.app/Contents/Resources cp data/tips*.txt wxMaxima.app/Contents/Resources cp art/wxmac.icns wxMaxima.app/Contents/Resources cp art/wxmac-doc.icns wxMaxima.app/Contents/Resources cp art/wxmac-doc-wxm.icns wxMaxima.app/Contents/Resources cp art/wxmac-doc-wxmx.icns wxMaxima.app/Contents/Resources cp data/Info.plist wxMaxima.app/Contents cp data/PkgInfo wxMaxima.app/Contents cp src/wxmaxima wxMaxima.app/Contents/MacOS for i in $(LANGS) ; do \ mkdir -p wxMaxima.app/Contents/Resources/locale/$$i/LC_MESSAGES ; \ cp locales/$$i.mo wxMaxima.app/Contents/Resources/locale/$$i/LC_MESSAGES/wxMaxima.mo ; \ cp locales/wxwin/$$i.mo wxMaxima.app/Contents/Resources/locale/$$i/LC_MESSAGES/wxMaxima-wxstd.mo ; \ done mkdir -p wxMaxima.app/Contents/Resources/toolbar mkdir -p wxMaxima.app/Contents/Resources/config cp art/toolbar/*.png wxMaxima.app/Contents/Resources/toolbar cp art/config/*.png wxMaxima.app/Contents/Resources/config wxMaxima.win: all mkdir -p wxMaxima/art mkdir -p wxMaxima/data cp data/wxmathml.lisp wxMaxima/data cp data/wxmaxima.png wxMaxima/data cp data/autocomplete.txt wxMaxima/data cp data/tips*.txt wxMaxima/data mkdir -p wxMaxima/art/toolbar cp art/toolbar/*.png wxMaxima/art/toolbar mkdir -p wxMaxima/art/config cp art/config/*.png wxMaxima/art/config for i in $(LANGS) ; do \ mkdir -p wxMaxima/locale/$$i/LC_MESSAGES ; \ cp locales/$$i.mo wxMaxima/locale/$$i/LC_MESSAGES/wxMaxima.mo ; \ cp locales/wxwin/$$i.mo wxMaxima/locale/$$i/LC_MESSAGES/wxMaxima-wxstd.mo ; \ done cp src/wxmaxima.exe wxMaxima/ # 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: wxMaxima-13.04.2/missing000755 000765 000024 00000025577 11654607013 015504 0ustar00andrejstaff000000 000000 #! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally 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, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # 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 run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] 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 # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: wxMaxima-13.04.2/NEWS000644 000765 000024 00000000000 11670654443 014561 0ustar00andrejstaff000000 000000 wxMaxima-13.04.2/README000644 000765 000024 00000005336 11670654443 014763 0ustar00andrejstaff000000 000000 WXMAXIMA ========= wxMaxima is a document based interface for the computer algebra system Maxima. For more information about Maxima, visit http://maxima.sourceforge.net/. wxMaxima uses wxWidgets and runs natively on Windows, X11 and Mac OS X. wxMaxima provides menus and dialogs for many common maxima commands, autocompletion, inline plots and simple animations. wxMaxima is distributed under the GPL license. wxMaxima is included with the Windows installer for Maxima. Packages are available for many Linux distributions. If you wish to compile wxMaxima from source, read the instructions below. BUILDING WXMAXIMA FROM SOURCE ============================== To build wxMaxima from sources you need to have a c++ compiler and the wxWidgets library installed. Compiling on Mac OS X ---------------------- On Mac OS X you should install XCode. To build wxMaxima open the Terminal application and follow the instructions for building with gnu autotools. It is recommended that you compile you own version of wxMac. See the section about compiling wxWidgets. Compiling on Windows --------------------- On Windows install MinGW (http://sourceforge.net/projects/mingw/). In the installation process make sure you select g++, "MSYS Basic System" and "MinGW Developer ToolKit" in the "Select components" page of the installer. Then run MinGW Shell and follow the instructions for compiling wxWidgets and wxMaxima with autotools. Compiling wxWidgets on Mac OS X and Windows -------------------------------------------- Before compiling wxMaxima you need to compile the wxWidgets library. Download the source, unarchive and in the source directory execute mkdir build cd build On Mac OS X configure wxWidgets with ../configure --disable-shared --enable-unicode and on Windows with ../configure --disable-shared Now build wxWidgets with make You do not need to install the library with make install. You will need to specify a path to wx-config when configuring wxMaxima. There are two files in build/lib/wx/config. The correct file to use is inplace-msw-ansi-release-static-2.8 on Windows and implace-mac-unicode-release-static-2.8 on Mac OS X. You will also need to copy the file wxwin.m4 to acinclude.m4 in the wxMaxima source directory. Compiling with autotools ------------------------- If you are building from git, execute ./bootstrap first. To build wxMaxima on Linux execute ./configure make sudo make install To build wxMaxima on Mac OS X and Windows first execute ./configure --with-wx-config= make cd locales make allmo cd .. On Mac OS X you should build an application bundle: make wxMaxima.app On Windows execute make wxMaxima.win which builds the directory structure necessary for running wxMaxima. wxMaxima-13.04.2/src/000755 000765 000024 00000000000 12150104172 014642 5ustar00andrejstaff000000 000000 wxMaxima-13.04.2/wxmaxima.desktop000644 000765 000024 00000000406 11705765322 017320 0ustar00andrejstaff000000 000000 [Desktop Entry] Name=wxMaxima Comment=Perform symbolic and numeric calculations using Maxima Exec=wxmaxima %f Icon=wxmaxima.png Terminal=false Type=Application Categories=Education;Science;Math;X-Red-Hat-Base;X-Red-Hat-Base-Only; MimeType=text/x-wxmaxima-batch; wxMaxima-13.04.2/wxmaxima.spec.in000644 000765 000024 00000002332 11670654443 017210 0ustar00andrejstaff000000 000000 Summary: wxWidgets interface for maxima Name: wxMaxima Version: @VERSION@ Release: 1 License: GPL Group: Sciences/Mathematics URL: http://wxmaxima.sourceforge.net/ Source0: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot Requires: gtk2, libxml2, wxGTK BuildRequires: libxml2-devel, wxGTK-devel %description wxMaxima is a wxWidgets interface for the computer algebra system Maxima. %prep %setup -q %build %{configure} --disable-dnd make DESTDIR=${RPM_BUILD_ROOT} %install make install DESTDIR=${RPM_BUILD_ROOT} install -D -m 644 wxmaxima.desktop ${RPM_BUILD_ROOT}/usr/share/applications/wxmaxima.desktop install -D -m 644 wxmaxima.png ${RPM_BUILD_ROOT}/usr/share/pixmaps/wxmaxima.png %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %{_bindir}/wxmaxima %{_datadir}/wxMaxima/* /usr/share/pixmaps/wxmaxima.png /usr/share/applications/wxmaxima.desktop %changelog * Fri Jun 23 2006 Andrej Vodopivec - Updated for wxMaxima 0.6.6 * Wed Dec 15 2004 Andrej Vodopivec - Added french translation files. * Wed Aug 25 2004 Andrej Vodopivec - Initial spec file. wxMaxima-13.04.2/src/AbsCell.cpp000644 000765 000024 00000011563 11736321752 016677 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "AbsCell.h" #include "TextCell.h" AbsCell::AbsCell() : MathCell() { m_innerCell = NULL; m_open = new TextCell(wxT("abs(")); m_close = new TextCell(wxT(")")); } AbsCell::~AbsCell() { if (m_innerCell != NULL) delete m_innerCell; if (m_next != NULL) delete m_next; delete m_open; delete m_close; } void AbsCell::SetParent(MathCell *parent, bool all) { if (m_innerCell != NULL) m_innerCell->SetParent(parent, true); if (m_open != NULL) m_open->SetParent(parent, true); if (m_close != NULL) m_close->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* AbsCell::Copy(bool all) { AbsCell* tmp = new AbsCell; CopyData(this, tmp); tmp->SetInner(m_innerCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void AbsCell::Destroy() { if (m_innerCell != NULL) delete m_innerCell; m_innerCell = NULL; m_next = NULL; } void AbsCell::SetInner(MathCell *inner) { if (inner == NULL) return ; if (m_innerCell != NULL) delete m_innerCell; m_innerCell = inner; m_last = m_innerCell; while (m_last->m_next != NULL) m_last = m_last->m_next; } void AbsCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_innerCell->RecalculateWidths(parser, fontsize, true); m_width = m_innerCell->GetFullWidth(scale) + SCALE_PX(8, scale); m_open->RecalculateWidths(parser, fontsize, true); m_close->RecalculateWidths(parser, fontsize, true); MathCell::RecalculateWidths(parser, fontsize, all); } void AbsCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_innerCell->RecalculateSize(parser, fontsize, true); m_height = m_innerCell->GetMaxHeight() + SCALE_PX(4, scale); m_center = m_innerCell->GetMaxCenter() + SCALE_PX(2, scale); m_open->RecalculateSize(parser, fontsize, true); m_close->RecalculateSize(parser, fontsize, true); MathCell::RecalculateSize(parser, fontsize, all); } void AbsCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { double scale = parser.GetScale(); wxDC& dc = parser.GetDC(); if (DrawThisCell(parser, point)) { SetPen(parser); wxPoint in; in.x = point.x + SCALE_PX(4, scale); in.y = point.y; m_innerCell->Draw(parser, in, fontsize, true); dc.DrawLine(point.x + SCALE_PX(2, scale), point.y - m_center + SCALE_PX(2, scale), point.x + SCALE_PX(2, scale), point.y - m_center + m_height - SCALE_PX(2, scale)); dc.DrawLine(point.x + m_width - SCALE_PX(2, scale) - 1, point.y - m_center + SCALE_PX(2, scale), point.x + m_width - SCALE_PX(2, scale) - 1, point.y - m_center + m_height - SCALE_PX(2, scale)); UnsetPen(parser); } MathCell::Draw(parser, point, fontsize, all); } wxString AbsCell::ToString(bool all) { return wxT("abs(") + m_innerCell->ToString(true) + wxT(")") + MathCell::ToString(all); } wxString AbsCell::ToTeX(bool all) { return wxT("\\left| ") + m_innerCell->ToTeX(true) + wxT("\\right| ") + MathCell::ToTeX(all); } wxString AbsCell::ToXML(bool all) { return wxT("") + m_innerCell->ToXML(true) + wxT("") + MathCell::ToXML(all); } void AbsCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_innerCell->ContainsRect(rect)) m_innerCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } bool AbsCell::BreakUp() { if (!m_isBroken) { m_isBroken = true; m_open->m_nextToDraw = m_innerCell; m_innerCell->m_previousToDraw = m_open; m_last->m_nextToDraw = m_close; m_close->m_previousToDraw = m_last; m_close->m_nextToDraw = m_nextToDraw; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = m_close; m_nextToDraw = m_open; return true; } return false; } void AbsCell::Unbreak(bool all) { if (m_isBroken) m_innerCell->Unbreak(true); MathCell::Unbreak(all); } wxMaxima-13.04.2/src/AbsCell.h000644 000765 000024 00000003110 11705765322 016332 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _ABSCELL_H_ #define _ABSCELL_H_ #include "MathCell.h" class AbsCell : public MathCell { public: AbsCell(); ~AbsCell(); void Destroy(); void SetInner(MathCell *inner); MathCell* Copy(bool all); void SelectInner(wxRect& rect, MathCell** first, MathCell** last); bool BreakUp(); void Unbreak(bool all); void SetParent(MathCell *parent, bool all); protected: MathCell *m_innerCell; MathCell *m_open, *m_close, *m_last; void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!!! }; #endif //_ABSCELL_H_ wxMaxima-13.04.2/src/AtCell.cpp000644 000765 000024 00000011140 11721146117 016517 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "AtCell.h" AtCell::AtCell() : MathCell() { m_baseCell = NULL; m_indexCell = NULL; } AtCell::~AtCell() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; if (m_next != NULL) delete m_next; } void AtCell::SetParent(MathCell *parent, bool all) { if (m_baseCell != NULL) m_baseCell->SetParent(parent, true); if (m_indexCell != NULL) m_indexCell->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* AtCell::Copy(bool all) { AtCell* tmp = new AtCell; CopyData(this, tmp); tmp->SetBase(m_baseCell->Copy(true)); tmp->SetIndex(m_indexCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void AtCell::Destroy() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; m_baseCell = NULL; m_indexCell = NULL; m_next = NULL; } void AtCell::SetIndex(MathCell *index) { if (index == NULL) return ; if (m_indexCell != NULL) delete m_indexCell; m_indexCell = index; } void AtCell::SetBase(MathCell *base) { if (base == NULL) return ; if (m_baseCell != NULL) delete m_baseCell; m_baseCell = base; } void AtCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateWidths(parser, fontsize, true); m_indexCell->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - 4), true); m_width = m_baseCell->GetFullWidth(scale) + m_indexCell->GetFullWidth(scale) + SCALE_PX(4, scale); MathCell::RecalculateWidths(parser, fontsize, all); } void AtCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateSize(parser, fontsize, true); m_indexCell->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - 3), true); m_height = m_baseCell->GetMaxHeight() + m_indexCell->GetMaxHeight() - SCALE_PX(7, scale); m_center = m_baseCell->GetCenter(); MathCell::RecalculateSize(parser, fontsize, all); } void AtCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { double scale = parser.GetScale(); wxDC& dc = parser.GetDC(); if (DrawThisCell(parser, point)) { wxPoint bs, in; bs.x = point.x; bs.y = point.y; m_baseCell->Draw(parser, bs, fontsize, true); in.x = point.x + m_baseCell->GetFullWidth(scale) + SCALE_PX(4, scale); in.y = point.y + m_baseCell->GetMaxDrop() + + m_indexCell->GetMaxCenter() - SCALE_PX(7, scale); m_indexCell->Draw(parser, in, MAX(MC_MIN_SIZE, fontsize - 3), true); SetPen(parser); dc.DrawLine(in.x - SCALE_PX(2, scale), bs.y - m_baseCell->GetMaxCenter(), in.x - SCALE_PX(2, scale), in.y); UnsetPen(parser); } MathCell::Draw(parser, point, fontsize, all); } wxString AtCell::ToString(bool all) { wxString s = wxT("at("); s += m_baseCell->ToString(true); s += wxT(",") + m_indexCell->ToString(true) + wxT(")"); s += MathCell::ToString(all); return s; } wxString AtCell::ToTeX(bool all) { wxString s = wxT("\\left. "); s += m_baseCell->ToTeX(true); s += wxT("\\right|_{") + m_indexCell->ToTeX(true) + wxT("}"); s += MathCell::ToTeX(all); return s; } wxString AtCell::ToXML(bool all) { return wxT("") + m_baseCell->ToXML(true) + wxT("") + m_indexCell->ToXML(true) + wxT("") + MathCell::ToXML(all); } void AtCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; if (m_baseCell->ContainsRect(rect)) m_baseCell->SelectRect(rect, first, last); else if (m_indexCell->ContainsRect(rect)) m_indexCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/AtCell.h000644 000765 000024 00000003046 11705765322 016201 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _ATCELL_H_ #define _ATTCELL_H_ #include "MathCell.h" class AtCell : public MathCell { public: AtCell(); ~AtCell(); MathCell* Copy(bool all); void Destroy(); void SetBase(MathCell *base); void SetIndex(MathCell *index); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!!! void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SetParent(MathCell *parent, bool all); protected: MathCell *m_baseCell; MathCell *m_indexCell; }; #endif //_ATCELL_H_ wxMaxima-13.04.2/src/._Autocomplete.cpp000644 000765 000024 00000000344 11705765322 020244 0ustar00andrejstaff000000 000000 Mac OS X  2ATTRcom.macromates.selectionRangecom.macromates.visibleRect5:33{{0, 0}, {888, 350}}wxMaxima-13.04.2/src/Autocomplete.cpp000644 000765 000024 00000013151 11705765322 020027 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2009-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Autocomplete.h" #include AutoComplete::AutoComplete() { m_args.Compile(wxT("[[]<([^>]*)>[]]")); } bool AutoComplete::LoadSymbols(wxString file) { if (!wxFileExists(file)) return false; if (m_symbolList.GetCount() > 0) m_symbolList.Empty(); if (m_templateList.GetCount() > 0) m_templateList.Empty(); wxString line; wxString rest, function; wxTextFile index(file); index.Open(); for(line = index.GetFirstLine(); !index.Eof(); line = index.GetNextLine()) { if (line.StartsWith(wxT("FUNCTION: ")) || line.StartsWith(wxT("OPTION : "))) m_symbolList.Add(line.Mid(10)); else if (line.StartsWith(wxT("TEMPLATE: "))) m_templateList.Add(FixTemplate(line.Mid(10))); } index.Close(); /// Add wxMaxima functions m_symbolList.Add(wxT("set_display")); m_symbolList.Add(wxT("wxplot2d")); m_templateList.Add(wxT("wxplot2d(,)")); m_symbolList.Add(wxT("wxplot3d")); m_templateList.Add(wxT("wxplot3d(,,)")); m_symbolList.Add(wxT("wximplicit_plot")); m_symbolList.Add(wxT("wxcontour_plot")); m_symbolList.Add(wxT("wxanimate")); m_symbolList.Add(wxT("wxanimate_draw")); m_symbolList.Add(wxT("wxanimate_draw3d")); m_symbolList.Add(wxT("with_slider")); m_templateList.Add(wxT("with_slider(,,,)")); m_symbolList.Add(wxT("with_slider_draw")); m_symbolList.Add(wxT("with_slider_draw3d")); m_symbolList.Add(wxT("wxdraw")); m_symbolList.Add(wxT("wxdraw2d")); m_symbolList.Add(wxT("wxdraw3d")); m_symbolList.Add(wxT("wxhistogram")); m_symbolList.Add(wxT("wxscatterplot")); m_symbolList.Add(wxT("wxbarsplot")); m_symbolList.Add(wxT("wxpiechart")); m_symbolList.Add(wxT("wxboxplot")); m_symbolList.Add(wxT("wxplot_size")); m_symbolList.Add(wxT("wxdraw_list")); m_symbolList.Add(wxT("table_form")); m_templateList.Add(wxT("table_form()")); m_templateList.Add(wxT("table_form(,<[options]>)")); /// Load private symbol list (do something different on Windows). wxString privateList; #if defined __WXMSW__ privateList = wxGetHomeDir() + wxT("\\wxmax.ac"); #else privateList = wxGetHomeDir() + wxT("/.wxmaxima.ac"); #endif if (wxFileExists(privateList)) { wxTextFile priv(privateList); priv.Open(); for(line = priv.GetFirstLine(); !priv.Eof(); line = priv.GetNextLine()) { if (line.StartsWith(wxT("FUNCTION: ")) || line.StartsWith(wxT("OPTION : "))) m_symbolList.Add(line.Mid(10)); else if (line.StartsWith(wxT("TEMPLATE: "))) m_templateList.Add(FixTemplate(line.Mid(10))); else m_symbolList.Add(line); } priv.Close(); } m_symbolList.Sort(); return false; } /// Returns a string array with functions which start with partial. wxArrayString AutoComplete::CompleteSymbol(wxString partial, bool templates) { wxArrayString completions; wxArrayString perfectCompletions; if (!templates) { for (int i=0; i 0) return perfectCompletions; return completions; } void AutoComplete::AddSymbol(wxString fun, bool templ) { /// Check for function of template if (fun.StartsWith(wxT("FUNCTION: "))) { fun = fun.Mid(10); templ = false; } else if (fun.StartsWith(wxT("TEMPLATE: "))) { fun = fun.Mid(10); templ = true; } /// Add symbols if (!templ && m_symbolList.Index(fun, true, true) == wxNOT_FOUND) m_symbolList.Add(fun); /// Add templates - for given function and given argument count we /// only add one template. We count the arguments by counting '<' if (templ) { fun = FixTemplate(fun); wxString funName = fun.SubString(0, fun.Find(wxT("("))); int count = fun.Freq('<'), i=0; for (i=0; i")); return templ; } wxMaxima-13.04.2/src/Autocomplete.h000644 000765 000024 00000002407 11705765322 017476 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2009-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _AUTOCOMPL_H_ #define _AUTOCOMPL_H_ #include #include #include class AutoComplete { public: AutoComplete(); bool LoadSymbols(wxString file); void AddSymbol(wxString fun, bool templ = false); wxArrayString CompleteSymbol(wxString partial, bool templates = false); wxString FixTemplate(wxString templ); private: wxArrayString m_symbolList; wxArrayString m_templateList; wxRegEx m_args; }; #endif wxMaxima-13.04.2/src/BC2Wiz.cpp000644 000765 000024 00000010102 11705765322 016417 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "BC2Wiz.h" BC2Wiz::BC2Wiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Solution:")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, _("Point:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x="), wxDefaultPosition, wxSize(70, -1)); label_4 = new wxStaticText(this, -1, _("Value:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("y="), wxDefaultPosition, wxSize(70, -1)); label_5 = new wxStaticText(this, -1, _("Point:")); text_ctrl_4 = new BTextCtrl(this, -1, wxT("x="), wxDefaultPosition, wxSize(70, -1)); label_6 = new wxStaticText(this, -1, _("Value:")); text_ctrl_5 = new BTextCtrl(this, -1, wxT("y="), wxDefaultPosition, wxSize(70, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void BC2Wiz::set_properties() { SetTitle(_("BC2")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } void BC2Wiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(2, 2, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_3 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_1->Add(text_ctrl_2, 0, wxALL, 5); sizer_1->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_1->Add(text_ctrl_3, 0, wxALL, 5); grid_sizer_2->Add(sizer_1, 0, wxALL, 0); grid_sizer_2->Add(label_5, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_2->Add(text_ctrl_4, 0, wxALL, 5); sizer_2->Add(label_6, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_2->Add(text_ctrl_5, 0, wxALL, 5); grid_sizer_2->Add(sizer_2, 0, wxALL, 0); grid_sizer_1->Add(grid_sizer_2, 1, 0, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_3->Add(button_1, 0, wxALL, 5); sizer_3->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_3, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString BC2Wiz::GetValue() { wxString s; s += wxT("bc2("); s += text_ctrl_1->GetValue(); s += wxT(", "); s += text_ctrl_2->GetValue(); s += wxT(", "); s += text_ctrl_3->GetValue(); s += wxT(", "); s += text_ctrl_4->GetValue(); s += wxT(", "); s += text_ctrl_5->GetValue(); s += wxT(");"); return s; } wxMaxima-13.04.2/src/BC2Wiz.h000644 000765 000024 00000003253 11705765322 016075 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef BC2WIZ_H #define BC2WIZ_H #include #include #include "BTextCtrl.h" class BC2Wiz: public wxDialog { public: BC2Wiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void set_properties(); void do_layout(); wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticText* label_5; BTextCtrl* text_ctrl_4; wxStaticText* label_6; BTextCtrl* text_ctrl_5; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // BC2WIZ_H wxMaxima-13.04.2/src/Bitmap.cpp000644 000765 000024 00000015736 11770042542 016607 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Bitmap.h" #include "CellParser.h" #include "GroupCell.h" #include #include #define BM_FULL_WIDTH 800 Bitmap::Bitmap() { m_tree = NULL; m_bmp.Create(10,10); } Bitmap::~Bitmap() { if (m_tree != NULL) DestroyTree(); } void Bitmap::SetData(MathCell* tree) { if (m_tree != NULL) delete m_tree; m_tree = tree; Layout(); } void Bitmap::Layout() { if (m_tree->GetType() != MC_TYPE_GROUP) { RecalculateWidths(); BreakUpCells(); BreakLines(); RecalculateSize(); } else { int fontsize = 12; wxConfig::Get()->Read(wxT("fontSize"), &fontsize); int mfontsize = fontsize; wxConfig::Get()->Read(wxT("mathfontsize"), &mfontsize); GroupCell* tmp = (GroupCell *)m_tree; wxMemoryDC dc; dc.SelectObject(m_bmp); CellParser parser(dc); parser.SetClientWidth(BM_FULL_WIDTH); while (tmp != NULL) { tmp->Recalculate(parser, fontsize, mfontsize); tmp = (GroupCell *)tmp->m_next; } } int width, height; GetMaxPoint(&width, &height); m_bmp.Create(width, height); Draw(); } void Bitmap::RecalculateSize() { int fontsize = 12; wxConfig::Get()->Read(wxT("fontSize"), &fontsize); int mfontsize = fontsize; wxConfig::Get()->Read(wxT("mathfontsize"), &mfontsize); MathCell* tmp = m_tree; wxMemoryDC dc; dc.SelectObject(m_bmp); CellParser parser(dc); while (tmp != NULL) { tmp->RecalculateSize(parser, tmp->IsMath() ? mfontsize : fontsize, false); tmp = tmp->m_next; } } void Bitmap::RecalculateWidths() { int fontsize = 12; wxConfig::Get()->Read(wxT("fontSize"), &fontsize); int mfontsize = fontsize; wxConfig::Get()->Read(wxT("mathfontsize"), &mfontsize); MathCell* tmp = m_tree; wxMemoryDC dc; dc.SelectObject(m_bmp); CellParser parser(dc); parser.SetClientWidth(BM_FULL_WIDTH); while (tmp != NULL) { tmp->RecalculateWidths(parser, tmp->IsMath() ? mfontsize : fontsize, false); tmp = tmp->m_next; } } void Bitmap::BreakLines() { int fullWidth = BM_FULL_WIDTH; int currentWidth = 0; MathCell* tmp = m_tree; while (tmp != NULL) { if (!tmp->m_isBroken) { tmp->BreakLine(false); tmp->ResetData(); if (tmp->BreakLineHere() || (currentWidth + tmp->GetWidth() >= fullWidth)) { currentWidth = tmp->GetWidth(); tmp->BreakLine(true); } else currentWidth += (tmp->GetWidth() + MC_CELL_SKIP); } tmp = tmp->m_nextToDraw; } } void Bitmap::GetMaxPoint(int* width, int* height) { MathCell* tmp = m_tree; int currentHeight = 0; int currentWidth = 0; *width = 0; *height = 0; bool bigSkip = false; bool firstCell = true; while (tmp != NULL) { if (!tmp->m_isBroken) { if (tmp->BreakLineHere() || firstCell) { firstCell = false; currentHeight += tmp->GetMaxHeight(); if (bigSkip) currentHeight += MC_LINE_SKIP; *height = currentHeight; currentWidth = tmp->GetWidth(); *width = MAX(currentWidth, *width); } else { currentWidth += (tmp->GetWidth() + MC_CELL_SKIP); *width = MAX(currentWidth - MC_CELL_SKIP, *width); } bigSkip = tmp->m_bigSkip; } tmp = tmp->m_nextToDraw; } } void Bitmap::Draw() { MathCell* tmp = m_tree; wxMemoryDC dc; dc.SelectObject(m_bmp); wxString bgColStr = wxT("white"); wxConfig::Get()->Read(wxT("Style/Background/color"), &bgColStr); dc.SetBackground(*(wxTheBrushList->FindOrCreateBrush(bgColStr, wxSOLID))); dc.Clear(); if (tmp != NULL) { wxPoint point; point.x = 0; point.y = tmp->GetMaxCenter(); int fontsize = 12; int drop = tmp->GetMaxDrop(); wxConfig::Get()->Read(wxT("fontSize"), &fontsize); int mfontsize = fontsize; wxConfig::Get()->Read(wxT("mathfontsize"), &mfontsize); CellParser parser(dc); while (tmp != NULL) { if (!tmp->m_isBroken) { tmp->Draw(parser, point, tmp->IsMath() ? mfontsize : fontsize, false); if (tmp->m_next != NULL && tmp->m_next->BreakLineHere()) { point.x = 0; point.y += drop + tmp->m_next->GetMaxCenter(); if (tmp->m_bigSkip) point.y += MC_LINE_SKIP; drop = tmp->m_next->GetMaxDrop(); } else point.x += (tmp->GetWidth() + MC_CELL_SKIP); } else { if (tmp->m_next != NULL && tmp->m_next->BreakLineHere()) { point.x = 0; point.y += drop + tmp->m_next->GetMaxCenter(); if (tmp->m_bigSkip) point.y += MC_LINE_SKIP; drop = tmp->m_next->GetMaxDrop(); } } tmp = tmp->m_nextToDraw; } } dc.SelectObject(wxNullBitmap); } bool Bitmap::ToFile(wxString file) { bool res = false; if (file.Right(4) == wxT(".bmp")) res = m_bmp.SaveFile(file, wxBITMAP_TYPE_BMP); else if (file.Right(4) == wxT(".xpm")) res = m_bmp.SaveFile(file, wxBITMAP_TYPE_XPM); else if (file.Right(4) == wxT(".jpg")) res = m_bmp.SaveFile(file, wxBITMAP_TYPE_JPEG); else { if (file.Right(4) != wxT(".png")) file = file + wxT(".png"); res = m_bmp.SaveFile(file, wxBITMAP_TYPE_PNG); } return res; } bool Bitmap::ToClipboard() { if (wxTheClipboard->Open()) { bool res = wxTheClipboard->SetData(new wxBitmapDataObject(m_bmp)); wxTheClipboard->Close(); return res; } return false; } void Bitmap::DestroyTree() { if (m_tree != NULL) { MathCell *tmp1, *tmp = m_tree; while (tmp != NULL) { tmp1 = tmp; tmp = tmp->m_next; tmp1->Destroy(); delete tmp1; } } m_tree = NULL; } void Bitmap::BreakUpCells() { MathCell *tmp = m_tree; int fontsize = 12; wxConfig::Get()->Read(wxT("fontSize"), &fontsize); int mfontsize = fontsize; wxConfig::Get()->Read(wxT("mathfontsize"), &mfontsize); wxMemoryDC dc; CellParser parser(dc); while (tmp != NULL) { if (tmp->GetWidth() > BM_FULL_WIDTH) { if (tmp->BreakUp()) { tmp->RecalculateWidths(parser, tmp->IsMath() ? mfontsize : fontsize, false); tmp->RecalculateSize(parser, tmp->IsMath() ? mfontsize : fontsize, false); } } tmp = tmp->m_nextToDraw; } } wxMaxima-13.04.2/src/Bitmap.h000644 000765 000024 00000002400 11705765322 016242 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _BITMAP_H_ #define _BITMAP_H_ #include "MathCell.h" class Bitmap { public: Bitmap(); ~Bitmap(); void SetData(MathCell* tree); bool ToFile(wxString file); bool ToClipboard(); protected: void DestroyTree(); void RecalculateWidths(); void BreakLines(); void RecalculateSize(); void GetMaxPoint(int* width, int* height); void BreakUpCells(); void Layout(); void Draw(); MathCell *m_tree; wxBitmap m_bmp; }; #endif wxMaxima-13.04.2/src/BTextCtrl.cpp000644 000765 000024 00000007722 12102421332 017226 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "BTextCtrl.h" #include BTextCtrl::BTextCtrl(wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos, const wxSize& size, long style) : wxTextCtrl(parent, id, value, pos, size, style) { bool fixedFont = true; m_matchParens = true; m_skipTab = true; wxConfigBase *config = wxConfig::Get(); config->Read(wxT("matchParens"), &m_matchParens); config->Read(wxT("fixedFontTC"), &fixedFont); if (fixedFont) { #if defined (__WXGTK12__) && !defined (__WXGTK20__) SetFont(wxFont(12, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, 0, wxEmptyString)); #elif defined (__WXMAC__) SetFont(wxFont(12, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, 0, wxEmptyString)); #else SetFont(wxFont(10, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, 0, wxEmptyString)); #endif } } BTextCtrl::~BTextCtrl() {} void BTextCtrl::OnChar(wxKeyEvent& event) { #if wxUSE_UNICODE if (!m_matchParens || MatchParenthesis(event.GetUnicodeKey())) event.Skip(); #else if (!m_matchParens || MatchParenthesis(event.GetKeyCode())) event.Skip(); #endif } bool BTextCtrl::MatchParenthesis(int code) { bool skip = true; switch (code) { case '(': CloseParenthesis(wxT("("), wxT(")"), true); skip = false; break; case ')': CloseParenthesis(wxT("("), wxT(")"), false); skip = false; break; case '[': CloseParenthesis(wxT("["), wxT("]"), true); skip = false; break; case ']': CloseParenthesis(wxT("["), wxT("]"), false); skip = false; break; case '{': CloseParenthesis(wxT("{"), wxT("}"), true); skip = false; break; case '}': CloseParenthesis(wxT("{"), wxT("}"), false); skip = false; break; case '"': CloseParenthesis(wxT("\""), wxT("\""), true); skip = false; break; case WXK_UP: case WXK_DOWN: case WXK_TAB: skip = m_skipTab; default: break; } return skip; } void BTextCtrl::CloseParenthesis(wxString open, wxString close, bool fromOpen) { long from, to; GetSelection(&from, &to); if (from == to) // nothing selected { wxString text = GetValue(); wxString charHere = wxT(" ");//text.GetChar((size_t)GetInsertionPoint()); size_t insp = GetInsertionPoint(); if (!fromOpen && charHere == close) SetInsertionPoint(insp + 1); else { wxString newtext = (insp > 0 ? text.SubString(0, insp-1) : wxT("")) + (fromOpen ? open : wxT("")) + close + text.SubString(insp, text.length()); ChangeValue(newtext); SetInsertionPoint(insp + 1); } } else { wxString text = GetValue(); size_t insp = GetInsertionPoint(); wxString newtext = (from > 0 ? text.SubString(0, from - 1) : wxT("")) + open + text.SubString(from, to - 1) + close + text.SubString(to, text.length()); ChangeValue(newtext); if (fromOpen) SetInsertionPoint(from + 1); else SetInsertionPoint(to + 1); } } BEGIN_EVENT_TABLE(BTextCtrl, wxTextCtrl) EVT_CHAR(BTextCtrl::OnChar) END_EVENT_TABLE() wxMaxima-13.04.2/src/BTextCtrl.h000644 000765 000024 00000003007 12073011256 016672 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _BTEXTCTRL_H_ #define _BTEXTCTRL_H_ #include class BTextCtrl: public wxTextCtrl { public: BTextCtrl(wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0); ~BTextCtrl(); void SetMatchParens(bool match) { m_matchParens = match; } void SetSkipTab(bool skip) { m_skipTab = skip; } private: bool m_matchParens; bool m_skipTab; bool MatchParenthesis(int code); void CloseParenthesis(wxString open, wxString close, bool fromOpen); void OnChar(wxKeyEvent& event); DECLARE_EVENT_TABLE() }; #endif //_TEXTCTRL_H_ wxMaxima-13.04.2/src/CellParser.cpp000644 000765 000024 00000025354 11705765322 017432 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "CellParser.h" #include #include #include "MathCell.h" CellParser::CellParser(wxDC& dc) : m_dc(dc) { m_scale = 1.0; m_zoomFactor = 1.0; // affects returned fontsizes m_top = -1; m_bottom = -1; m_forceUpdate = false; m_indent = MC_GROUP_LEFT_INDENT; m_changeAsterisk = false; m_outdated = false; m_TeXFonts = false; if (wxFontEnumerator::IsValidFacename(m_fontCMEX = wxT("jsMath-cmex10")) && wxFontEnumerator::IsValidFacename(m_fontCMSY = wxT("jsMath-cmsy10")) && wxFontEnumerator::IsValidFacename(m_fontCMRI = wxT("jsMath-cmr10")) && wxFontEnumerator::IsValidFacename(m_fontCMMI = wxT("jsMath-cmmi10")) && wxFontEnumerator::IsValidFacename(m_fontCMTI = wxT("jsMath-cmti10"))) { m_TeXFonts = true; wxConfig::Get()->Read(wxT("usejsmath"), &m_TeXFonts); } m_keepPercent = true; wxConfig::Get()->Read(wxT("keepPercent"), &m_keepPercent); ReadStyle(); } CellParser::CellParser(wxDC& dc, double scale) : m_dc(dc) { m_scale = scale; m_zoomFactor = 1.0; // affects returned fontsizes m_top = -1; m_bottom = -1; m_forceUpdate = false; m_indent = MC_GROUP_LEFT_INDENT; m_changeAsterisk = false; m_outdated = false; m_TeXFonts = false; if (wxFontEnumerator::IsValidFacename(m_fontCMEX = wxT("jsMath-cmex10")) && wxFontEnumerator::IsValidFacename(m_fontCMSY = wxT("jsMath-cmsy10")) && wxFontEnumerator::IsValidFacename(m_fontCMRI = wxT("jsMath-cmr10")) && wxFontEnumerator::IsValidFacename(m_fontCMMI = wxT("jsMath-cmmi10")) && wxFontEnumerator::IsValidFacename(m_fontCMTI = wxT("jsMath-cmti10"))) { m_TeXFonts = true; wxConfig::Get()->Read(wxT("usejsmath"), &m_TeXFonts); } m_keepPercent = true; wxConfig::Get()->Read(wxT("keepPercent"), &m_keepPercent); ReadStyle(); } CellParser::~CellParser() {} wxString CellParser::GetFontName(int type) { if (type == TS_TITLE || type == TS_SUBSECTION || type == TS_SECTION || type == TS_TEXT) return m_styles[type].font; else if (type == TS_NUMBER || type == TS_VARIABLE || type == TS_FUNCTION || type == TS_SPECIAL_CONSTANT || type == TS_STRING) return m_mathFontName; return m_fontName; } void CellParser::ReadStyle() { wxConfigBase* config = wxConfig::Get(); // Font config->Read(wxT("Style/fontname"), &m_fontName); // Default fontsize m_defaultFontSize = 12; config->Read(wxT("fontSize"), &m_defaultFontSize); m_mathFontSize = m_defaultFontSize; config->Read(wxT("mathfontsize"), &m_mathFontSize); // Encogind - used only for comments m_fontEncoding = wxFONTENCODING_DEFAULT; int encoding = m_fontEncoding; config->Read(wxT("fontEncoding"), &encoding); m_fontEncoding = (wxFontEncoding)encoding; // Math font m_mathFontName = wxEmptyString; config->Read(wxT("Style/Math/fontname"), &m_mathFontName); wxString tmp; #define READ_STYLES(type, where) \ if (config->Read(wxT(where "color"), &tmp)) m_styles[type].color.Set(tmp); \ config->Read(wxT(where "bold"), &m_styles[type].bold); \ config->Read(wxT(where "italic"), &m_styles[type].italic); \ config->Read(wxT(where "underlined"), &m_styles[type].underlined); // Normal text m_styles[TS_DEFAULT].color = wxT("black"); m_styles[TS_DEFAULT].bold = false; m_styles[TS_DEFAULT].italic = true; m_styles[TS_DEFAULT].underlined = false; READ_STYLES(TS_DEFAULT, "Style/NormalText/") // Text m_styles[TS_TEXT].color = wxT("black"); m_styles[TS_TEXT].bold = false; m_styles[TS_TEXT].italic = false; m_styles[TS_TEXT].underlined = false; m_styles[TS_TEXT].fontSize = 0; config->Read(wxT("Style/Text/fontsize"), &m_styles[TS_TEXT].fontSize); config->Read(wxT("Style/Text/fontname"), &m_styles[TS_TEXT].font); READ_STYLES(TS_TEXT, "Style/Text/") // Subsection m_styles[TS_SUBSECTION].color = wxT("black"); m_styles[TS_SUBSECTION].bold = true; m_styles[TS_SUBSECTION].italic = false; m_styles[TS_SUBSECTION].underlined = false; m_styles[TS_SUBSECTION].fontSize = 16; config->Read(wxT("Style/Subsection/fontsize"), &m_styles[TS_SUBSECTION].fontSize); config->Read(wxT("Style/Subsection/fontname"), &m_styles[TS_SUBSECTION].font); READ_STYLES(TS_SUBSECTION, "Style/Subsection/") // Section m_styles[TS_SECTION].color = wxT("black"); m_styles[TS_SECTION].bold = true; m_styles[TS_SECTION].italic = true; m_styles[TS_SECTION].underlined = false; m_styles[TS_SECTION].fontSize = 18; config->Read(wxT("Style/Section/fontsize"), &m_styles[TS_SECTION].fontSize); config->Read(wxT("Style/Section/fontname"), &m_styles[TS_SECTION].font); READ_STYLES(TS_SECTION, "Style/Section/") // Title m_styles[TS_TITLE].color = wxT("black"); m_styles[TS_TITLE].bold = true; m_styles[TS_TITLE].italic = false; m_styles[TS_TITLE].underlined = true; m_styles[TS_TITLE].fontSize = 24; config->Read(wxT("Style/Title/fontsize"), &m_styles[TS_TITLE].fontSize); config->Read(wxT("Style/Title/fontname"), &m_styles[TS_TITLE].font); READ_STYLES(TS_TITLE, "Style/Title/") // Main prompt m_styles[TS_MAIN_PROMPT].color = wxT("red"); m_styles[TS_MAIN_PROMPT].bold = false; m_styles[TS_MAIN_PROMPT].italic = false; m_styles[TS_MAIN_PROMPT].underlined = false; READ_STYLES(TS_MAIN_PROMPT, "Style/MainPrompt/") // Other prompt m_styles[TS_OTHER_PROMPT].color = wxT("red"); m_styles[TS_OTHER_PROMPT].bold = false; m_styles[TS_OTHER_PROMPT].italic = true; m_styles[TS_OTHER_PROMPT].underlined = false; READ_STYLES(TS_OTHER_PROMPT, "Style/OtherPrompt/"); // Labels m_styles[TS_LABEL].color = wxT("brown"); m_styles[TS_LABEL].bold = false; m_styles[TS_LABEL].italic = false; m_styles[TS_LABEL].underlined = false; READ_STYLES(TS_LABEL, "Style/Label/") // Special m_styles[TS_SPECIAL_CONSTANT].color = m_styles[TS_DEFAULT].color; m_styles[TS_SPECIAL_CONSTANT].bold = false; m_styles[TS_SPECIAL_CONSTANT].italic = false; m_styles[TS_SPECIAL_CONSTANT].underlined = false; READ_STYLES(TS_SPECIAL_CONSTANT, "Style/Special/") // Input m_styles[TS_INPUT].color = wxT("blue"); m_styles[TS_INPUT].bold = false; m_styles[TS_INPUT].italic = false; m_styles[TS_INPUT].underlined = false; READ_STYLES(TS_INPUT, "Style/Input/") // Number m_styles[TS_NUMBER].color = m_styles[TS_DEFAULT].color; m_styles[TS_NUMBER].bold = false; m_styles[TS_NUMBER].italic = false; m_styles[TS_NUMBER].underlined = false; READ_STYLES(TS_NUMBER, "Style/Number/") // String m_styles[TS_STRING].color = m_styles[TS_DEFAULT].color; m_styles[TS_STRING].bold = false; m_styles[TS_STRING].italic = true; m_styles[TS_STRING].underlined = false; READ_STYLES(TS_STRING, "Style/String/") // Greek m_styles[TS_GREEK_CONSTANT].color = m_styles[TS_DEFAULT].color; m_styles[TS_GREEK_CONSTANT].bold = false; m_styles[TS_GREEK_CONSTANT].italic = false; m_styles[TS_GREEK_CONSTANT].underlined = false; READ_STYLES(TS_GREEK_CONSTANT, "Style/Greek/") // Variables m_styles[TS_VARIABLE].color = m_styles[TS_DEFAULT].color; m_styles[TS_VARIABLE].bold = false; m_styles[TS_VARIABLE].italic = true; m_styles[TS_VARIABLE].underlined = false; READ_STYLES(TS_VARIABLE, "Style/Variable/") // FUNCTIONS m_styles[TS_FUNCTION].color = m_styles[TS_DEFAULT].color; m_styles[TS_FUNCTION].bold = false; m_styles[TS_FUNCTION].italic = false; m_styles[TS_FUNCTION].underlined = false; READ_STYLES(TS_FUNCTION, "Style/Function/") // Highlight m_styles[TS_HIGHLIGHT].color = m_styles[TS_DEFAULT].color; if (config->Read(wxT("Style/Highlight/color"), &tmp)) m_styles[TS_HIGHLIGHT].color.Set(tmp); // Text background m_styles[TS_TEXT_BACKGROUND].color = wxColour(wxT("light blue")); if (config->Read(wxT("Style/TextBackground/color"), &tmp)) m_styles[TS_TEXT_BACKGROUND].color.Set(tmp); // Cell bracket colors m_styles[TS_CELL_BRACKET].color = wxColour(wxT("rgb(0,0,0)")); if (config->Read(wxT("Style/CellBracket/color"), &tmp)) m_styles[TS_CELL_BRACKET].color.Set(tmp); m_styles[TS_ACTIVE_CELL_BRACKET].color = wxT("rgb(255,0,0)"); if (config->Read(wxT("Style/ActiveCellBracket/color"), &tmp)) m_styles[TS_ACTIVE_CELL_BRACKET].color.Set(tmp); // Cursor (hcaret in MathCtrl and caret in EditorCell) m_styles[TS_CURSOR].color = wxT("rgb(0,0,0)"); if (config->Read(wxT("Style/Cursor/color"), &tmp)) m_styles[TS_CURSOR].color.Set(tmp); // Selection color defaults to light grey on windows #if defined __WXMSW__ m_styles[TS_SELECTION].color = wxColour(wxT("light grey")); #else m_styles[TS_SELECTION].color = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); #endif if (config->Read(wxT("Style/Selection/color"), &tmp)) m_styles[TS_SELECTION].color.Set(tmp); // Outdated cells m_styles[TS_OUTDATED].color = wxT("rgb(153,153,153)"); if (config->Read(wxT("Style/Outdated/color"), &tmp)) m_styles[TS_OUTDATED].color.Set(tmp); #undef READ_STYLES m_dc.SetPen(*(wxThePenList->FindOrCreatePen(m_styles[TS_DEFAULT].color, 1, wxSOLID))); } wxFontWeight CellParser::IsBold(int st) { if (m_styles[st].bold) return wxFONTWEIGHT_BOLD; return wxFONTWEIGHT_NORMAL; } int CellParser::IsItalic(int st) { if (m_styles[st].italic) return wxFONTSTYLE_SLANT; return wxFONTSTYLE_NORMAL; } bool CellParser::IsUnderlined(int st) { return m_styles[st].underlined; } wxString CellParser::GetSymbolFontName() { #if defined __WXMSW__ return wxT("Symbol"); #endif return m_fontName; } wxColour CellParser::GetColor(int st) { if (m_outdated) return m_styles[TS_OUTDATED].color; return m_styles[st].color; } /* wxFontEncoding CellParser::GetGreekFontEncoding() { #if wxUSE_UNICODE || defined (__WXGTK20__) || defined (__WXMAC__) return wxFONTENCODING_DEFAULT; #elif defined __WXMSW__ return wxFONTENCODING_CP1253; #else return wxFONTENCODING_ISO8859_7; #endif } */ wxMaxima-13.04.2/src/CellParser.h000644 000765 000024 00000006522 11705765322 017073 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _CELLPARSER_H #define _CELLPARSER_H #include #include #include "TextStyle.h" #include "Setup.h" class CellParser { public: CellParser(wxDC& dc); CellParser(wxDC& dc, double scale); ~CellParser(); void SetZoomFactor(double newzoom) { m_zoomFactor = newzoom; } void SetScale(double scale) { m_scale = scale; } double GetScale() { return m_scale; } wxDC& GetDC() { return m_dc; } void SetBounds(int top, int bottom) { m_top = top; m_bottom = bottom; } int GetTop() { return m_top; } int GetBottom() { return m_bottom; } wxString GetFontName(int type = TS_DEFAULT); wxString GetSymbolFontName(); wxColour GetColor(int st); wxFontWeight IsBold(int st); int IsItalic(int st); bool IsUnderlined(int st); void ReadStyle(); void SetForceUpdate(bool force) { m_forceUpdate = force; } bool ForceUpdate() { return m_forceUpdate; } wxFontEncoding GetFontEncoding() { return m_fontEncoding; } bool GetChangeAsterisk() { return m_changeAsterisk; } void SetChangeAsterisk(bool changeAsterisk) { m_changeAsterisk = changeAsterisk; } int GetIndent() { return m_indent; } void SetIndent(int indent) { m_indent = indent; } void SetClientWidth(int width) { m_clientWidth = width; } int GetClientWidth() { return m_clientWidth; } int GetDefaultFontSize() { return int(m_zoomFactor * double(m_defaultFontSize)); } int GetMathFontSize() { return int(m_zoomFactor * double(m_mathFontSize)); } int GetFontSize(int st) { if (st == TS_TEXT || st == TS_SUBSECTION || st == TS_SECTION || st == TS_TITLE) return int(m_zoomFactor * double(m_styles[st].fontSize)); return 0; } void Outdated(bool outdated) { m_outdated = outdated; } bool CheckTeXFonts() { return m_TeXFonts; } bool CheckKeepPercent() { return m_keepPercent; } wxString GetTeXCMRI() { return m_fontCMRI; } wxString GetTeXCMSY() { return m_fontCMSY; } wxString GetTeXCMEX() { return m_fontCMEX; } wxString GetTeXCMMI() { return m_fontCMMI; } wxString GetTeXCMTI() { return m_fontCMTI; } private: int m_indent; double m_scale; double m_zoomFactor; wxDC& m_dc; int m_top, m_bottom; wxString m_fontName; int m_defaultFontSize, m_mathFontSize; wxString m_mathFontName; bool m_forceUpdate; bool m_changeAsterisk; bool m_outdated; bool m_TeXFonts; bool m_keepPercent; wxString m_fontCMRI, m_fontCMSY, m_fontCMEX, m_fontCMMI, m_fontCMTI; int m_clientWidth; wxFontEncoding m_fontEncoding; style m_styles[STYLE_NUM]; }; #endif wxMaxima-13.04.2/src/Config.cpp000644 000765 000024 00000111035 12135220031 016550 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2008-2009 Ziga Lenarcic /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Config.h" #include "MathCell.h" #include #include #include #include #include #include #include #include #define MAX(a,b) ((a)>(b) ? (a) : (b)) #define MIN(a,b) ((a)>(b) ? (b) : (a)) // Should match whatever is put in the m_language const int langs[] = { wxLANGUAGE_DEFAULT, wxLANGUAGE_CATALAN, wxLANGUAGE_CHINESE_SIMPLIFIED, wxLANGUAGE_CHINESE_TRADITIONAL, wxLANGUAGE_CZECH, wxLANGUAGE_DANISH, wxLANGUAGE_ENGLISH, wxLANGUAGE_FRENCH, wxLANGUAGE_GALICIAN, wxLANGUAGE_GERMAN, wxLANGUAGE_GREEK, wxLANGUAGE_HUNGARIAN, wxLANGUAGE_ITALIAN, wxLANGUAGE_JAPANESE, wxLANGUAGE_POLISH, wxLANGUAGE_PORTUGUESE_BRAZILIAN, wxLANGUAGE_RUSSIAN, wxLANGUAGE_SPANISH, wxLANGUAGE_UKRAINIAN }; #define LANGUAGE_NUMBER 18 Config::Config(wxWindow* parent) { #if defined __WXMAC__ #if wxCHECK_VERSION(2,9,1) SetSheetStyle(wxPROPSHEET_BUTTONTOOLBOOK | wxPROPSHEET_SHRINKTOFIT); #else SetSheetStyle(wxPROPSHEET_LISTBOOK | wxPROPSHEET_SHRINKTOFIT); #endif #else SetSheetStyle(wxPROPSHEET_LISTBOOK); #endif SetSheetInnerBorder(3); SetSheetOuterBorder(3); #if defined __WXMAC__ #define IMAGE(img) wxImage(wxT("wxMaxima.app/Contents/Resources/config/") wxT(img)) #elif defined __WXMSW__ #define IMAGE(img) wxImage(wxT("art/config/") wxT(img)) #else wxString prefix = wxT(PREFIX); #define IMAGE(img) wxImage(prefix + wxT("/share/wxMaxima/") + wxT(img)) #endif wxSize imageSize(32, 32); m_imageList = new wxImageList(32, 32); m_imageList->Add(IMAGE("options.png")); m_imageList->Add(IMAGE("maxima.png")); m_imageList->Add(IMAGE("styles.png")); Create(parent, wxID_ANY, _("wxMaxima configuration"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE); m_notebook = GetBookCtrl(); m_notebook->SetImageList(m_imageList); m_notebook->AddPage(CreateOptionsPanel(), _("Options"), true, 0); m_notebook->AddPage(CreateMaximaPanel(), _("Maxima"), false, 1); m_notebook->AddPage(CreateStylePanel(), _("Style"), false, 2); #ifndef __WXMAC__ CreateButtons(wxOK | wxCANCEL); #endif LayoutDialog(); SetProperties(); UpdateExample(); } Config::~Config() { if (m_imageList != NULL) delete m_imageList; } void Config::SetProperties() { SetTitle(_("wxMaxima configuration")); m_maximaProgram->SetToolTip(_("Enter the path to the Maxima executable.")); m_additionalParameters->SetToolTip(_("Additional parameters for Maxima" " (e.g. -l clisp).")); m_saveSize->SetToolTip(_("Save wxMaxima window size/position between sessions.")); m_savePanes->SetToolTip(_("Save panes layout between sessions.")); m_matchParens->SetToolTip(_("Write matching parenthesis in text controls.")); m_showLong->SetToolTip(_("Show long expressions in wxMaxima document.")); m_language->SetToolTip(_("Language used for wxMaxima GUI.")); m_fixedFontInTC->SetToolTip(_("Set fixed font in text controls.")); m_getFont->SetToolTip(_("Font used for display in document.")); m_getMathFont->SetToolTip(_("Font used for displaying math characters in document.")); m_changeAsterisk->SetToolTip(_("Use centered dot character for multiplication")); m_defaultPort->SetToolTip(_("The default port used for communication between Maxima and wxMaxima.")); wxConfig *config = (wxConfig *)wxConfig::Get(); wxString mp, mc, ib, mf; bool match = true, showLongExpr = false, savePanes = false; bool fixedFontTC = true, changeAsterisk = false, usejsmath = true, keepPercent = true; bool enterEvaluates = false, saveUntitled = true, openHCaret = false; bool insertAns = true; int rs = 0; int lang = wxLANGUAGE_UNKNOWN; int panelSize = 1; config->Read(wxT("maxima"), &mp); config->Read(wxT("parameters"), &mc); config->Read(wxT("AUI/savePanes"), &savePanes); config->Read(wxT("pos-restore"), &rs); config->Read(wxT("matchParens"), &match); config->Read(wxT("showLong"), &showLongExpr); config->Read(wxT("language"), &lang); config->Read(wxT("changeAsterisk"), &changeAsterisk); config->Read(wxT("fixedFontTC"), &fixedFontTC); config->Read(wxT("panelSize"), &panelSize); config->Read(wxT("enterEvaluates"), &enterEvaluates); config->Read(wxT("saveUntitled"), &saveUntitled); config->Read(wxT("openHCaret"), &openHCaret); config->Read(wxT("insertAns"), &insertAns); config->Read(wxT("usejsmath"), &usejsmath); config->Read(wxT("keepPercent"), &keepPercent); int i = 0; for (i = 0; i < LANGUAGE_NUMBER; i++) if (langs[i] == lang) break; if (i < LANGUAGE_NUMBER) m_language->SetSelection(i); else m_language->SetSelection(0); #if defined __WXMSW__ wxString cwd = wxGetCwd(); cwd.Replace(wxT("wxMaxima"), wxT("\\bin\\maxima.bat")); if (wxFileExists(cwd)) { m_maximaProgram->SetValue(cwd); m_maximaProgram->Enable(false); m_mpBrowse->Enable(false); } else { if (mp.Length()) m_maximaProgram->SetValue(mp); else m_maximaProgram->SetValue(wxT("maxima.bat")); } #elif defined __WXMAC__ if (mp.Length()) m_maximaProgram->SetValue(mp); else // this is where the mac installer installs maxima m_maximaProgram->SetValue(wxT("/Applications/Maxima.app")); #else if (mp.Length()) m_maximaProgram->SetValue(mp); else m_maximaProgram->SetValue(wxT("maxima")); #endif m_additionalParameters->SetValue(mc); if (rs == 1) m_saveSize->SetValue(true); else m_saveSize->SetValue(false); m_savePanes->SetValue(savePanes); m_matchParens->SetValue(match); m_showLong->SetValue(showLongExpr); m_changeAsterisk->SetValue(changeAsterisk); m_enterEvaluates->SetValue(enterEvaluates); m_saveUntitled->SetValue(saveUntitled); m_openHCaret->SetValue(openHCaret); m_insertAns->SetValue(insertAns); m_fixedFontInTC->SetValue(fixedFontTC); m_useJSMath->SetValue(usejsmath); m_keepPercentWithSpecials->SetValue(keepPercent); m_getStyleFont->Enable(false); if (!wxFontEnumerator::IsValidFacename(wxT("jsMath-cmex10")) || !wxFontEnumerator::IsValidFacename(wxT("jsMath-cmsy10")) || !wxFontEnumerator::IsValidFacename(wxT("jsMath-cmr10")) || !wxFontEnumerator::IsValidFacename(wxT("jsMath-cmmi10")) || !wxFontEnumerator::IsValidFacename(wxT("jsMath-cmti10"))) m_useJSMath->Enable(false); ReadStyles(); } wxPanel* Config::CreateOptionsPanel() { wxPanel *panel = new wxPanel(m_notebook, -1); wxFlexGridSizer* grid_sizer = new wxFlexGridSizer(2, 2, 5, 5); wxFlexGridSizer* vsizer = new wxFlexGridSizer(12,1,5,5); int defaultPort = 4010; wxConfig::Get()->Read(wxT("defaultPort"), &defaultPort); wxStaticText *lang = new wxStaticText(panel, -1, _("Language:")); const wxString m_language_choices[] = { _("(Use default language)"), _("Catalan"), _("Chinese Simplified"), _("Chinese traditional"), _("Czech"), _("Danish"), _("English"), _("French"), _("Galician"), _("German"), _("Greek"), _("Hungarian"), _("Italian"), _("Japanese"), _("Polish"), _("Portuguese (Brazilian)"), _("Russian"), _("Spanish"), _("Ukrainian") }; m_language = new wxComboBox(panel, language_id, wxEmptyString, wxDefaultPosition, wxSize(230, -1), LANGUAGE_NUMBER, m_language_choices, wxCB_DROPDOWN | wxCB_READONLY); wxStaticText* dp = new wxStaticText(panel, -1, _("Default port:")); m_defaultPort = new wxSpinCtrl(panel, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1), wxSP_ARROW_KEYS, 50, 5000, defaultPort); m_defaultPort->SetValue(defaultPort); m_saveSize = new wxCheckBox(panel, -1, _("Save wxMaxima window size/position")); m_savePanes = new wxCheckBox(panel, -1, _("Save panes layout")); m_matchParens = new wxCheckBox(panel, -1, _("Match parenthesis in text controls")); m_fixedFontInTC = new wxCheckBox(panel, -1, _("Fixed font in text controls")); m_showLong = new wxCheckBox(panel, -1, _("Show long expressions")); m_changeAsterisk = new wxCheckBox(panel, -1, _("Use centered dot character for multiplication")); m_keepPercentWithSpecials = new wxCheckBox(panel, -1, _("Keep percent sign with special symbols: %e, %i, etc.")); m_enterEvaluates = new wxCheckBox(panel, -1, _("Enter evaluates cells")); m_saveUntitled = new wxCheckBox(panel, -1, _("Ask to save untitled documents")); m_openHCaret = new wxCheckBox(panel, -1, _("Open a cell when Maxima expects input")); m_insertAns = new wxCheckBox(panel, -1, _("Insert % before an operator at the beginning of a cell")); // TAB 1 // Maxima options box // wxMaxima options box grid_sizer->Add(lang, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer->Add(m_language, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer->Add(dp, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer->Add(m_defaultPort, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); vsizer->Add(grid_sizer, 1, wxEXPAND, 5); vsizer->Add(m_saveSize, 0, wxALL, 5); vsizer->Add(m_savePanes, 0, wxALL, 5); vsizer->Add(m_matchParens, 0, wxALL, 5); vsizer->Add(m_fixedFontInTC, 0, wxALL, 5); vsizer->Add(m_showLong, 0, wxALL, 5); vsizer->Add(m_changeAsterisk, 0, wxALL, 5); vsizer->Add(m_keepPercentWithSpecials, 0, wxALL, 5); vsizer->Add(m_enterEvaluates, 0, wxALL, 5); vsizer->Add(m_saveUntitled, 0, wxALL, 5); vsizer->Add(m_openHCaret, 0, wxALL, 5); vsizer->Add(m_insertAns, 0, wxALL, 5); vsizer->AddGrowableRow(10); panel->SetSizer(vsizer); vsizer->Fit(panel); return panel; } wxPanel* Config::CreateMaximaPanel() { wxPanel* panel = new wxPanel(m_notebook, -1); wxFlexGridSizer* sizer = new wxFlexGridSizer(5, 2, 0, 0); wxStaticText *mp = new wxStaticText(panel, -1, _("Maxima program:")); m_maximaProgram = new wxTextCtrl(panel, -1, wxEmptyString, wxDefaultPosition, wxSize(250, -1), wxTE_RICH); m_mpBrowse = new wxButton(panel, wxID_OPEN, _("Open")); wxStaticText *ap = new wxStaticText(panel, -1, _("Additional parameters:")); m_additionalParameters = new wxTextCtrl(panel, -1, wxEmptyString, wxDefaultPosition, wxSize(250, -1), wxTE_RICH); sizer->Add(mp, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer->Add(10, 10); sizer->Add(m_maximaProgram, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer->Add(m_mpBrowse, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer->Add(10, 10); sizer->Add(10, 10); sizer->Add(ap, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer->Add(10, 10); sizer->Add(m_additionalParameters, 0, wxALL, 5); panel->SetSizer(sizer); sizer->Fit(panel); return panel; } wxPanel* Config::CreateStylePanel() { wxPanel *panel = new wxPanel(m_notebook, -1); wxStaticBox* fonts = new wxStaticBox(panel, -1, _("Fonts")); wxStaticBox* styles = new wxStaticBox(panel, -1, _("Styles")); wxFlexGridSizer* vsizer = new wxFlexGridSizer(3,1,5,5); wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(3, 2, 2, 2); wxStaticBoxSizer* sb_sizer_1 = new wxStaticBoxSizer(fonts, wxVERTICAL); wxStaticBoxSizer* sb_sizer_2 = new wxStaticBoxSizer(styles, wxVERTICAL); wxBoxSizer* hbox_sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* hbox_sizer_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* hbox_sizer_3 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* vbox_sizer = new wxBoxSizer(wxVERTICAL); wxStaticText* df = new wxStaticText(panel, -1, _("Default font:")); m_getFont = new wxButton(panel, font_family, _("Choose font"), wxDefaultPosition, wxSize(250, -1)); m_mathFont = new wxStaticText(panel, -1, _("Math font:")); m_getMathFont = new wxButton(panel, button_mathFont, _("Choose font"), wxDefaultPosition, wxSize(250, -1)); m_useJSMath = new wxCheckBox(panel, -1, _("Use jsMath fonts")); const wxString m_styleFor_choices[] = { _("Default"), _("Variables"), _("Numbers"), _("Function names"), _("Special constants"), _("Greek constants"), _("Strings"), _("Maxima input"), _("Input labels"), _("Maxima questions"), _("Output labels"), _("Highlight (dpart)"), _("Text cell"), _("Subsection cell"), _("Section cell"), _("Title cell"), _("Text cell background"), _("Document background"), _("Cell bracket"), _("Active cell bracket"), _("Cursor"), _("Selection"), _("Outdated cells") }; m_styleFor = new wxListBox(panel, listbox_styleFor, wxDefaultPosition, wxSize(200, -1), 23, m_styleFor_choices, wxLB_SINGLE); m_getStyleFont = new wxButton(panel, style_font_family, _("Choose font"), wxDefaultPosition, wxSize(150, -1)); #ifndef __WXMSW__ m_styleColor = new ColorPanel(this, panel, color_id, wxDefaultPosition, wxSize(150, 30), wxSUNKEN_BORDER | wxFULL_REPAINT_ON_RESIZE); #else m_styleColor = new wxButton(panel, color_id, wxEmptyString, wxDefaultPosition, wxSize(150, -1)); #endif m_boldCB = new wxCheckBox(panel, checkbox_bold, _("Bold")); m_italicCB = new wxCheckBox(panel, checkbox_italic, _("Italic")); m_underlinedCB = new wxCheckBox(panel, checkbox_underlined, _("Underlined")); m_examplePanel = new ExamplePanel(panel, -1, wxDefaultPosition, wxSize(250, 60)); m_loadStyle = new wxButton(panel, load_id, _("Load")); m_saveStyle = new wxButton(panel, save_id, _("Save")); grid_sizer_1->Add(df, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_1->Add(m_getFont, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_1->Add(m_mathFont, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_1->Add(m_getMathFont, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_1->Add(10, 10); grid_sizer_1->Add(m_useJSMath, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sb_sizer_1->Add(grid_sizer_1, 1, wxALL | wxEXPAND, 0); vsizer->Add(sb_sizer_1, 1, wxALL | wxEXPAND, 3); vbox_sizer->Add(m_styleColor, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); vbox_sizer->Add(m_getStyleFont, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); hbox_sizer_1->Add(m_boldCB, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); hbox_sizer_1->Add(m_italicCB, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); hbox_sizer_1->Add(m_underlinedCB, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); vbox_sizer->Add(hbox_sizer_1, 1, wxALL | wxEXPAND, 0); vbox_sizer->Add(m_examplePanel, 0, wxALL | wxEXPAND | wxALIGN_CENTER_HORIZONTAL, 5); hbox_sizer_2->Add(m_styleFor, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); hbox_sizer_2->Add(vbox_sizer, 1, wxALL | wxEXPAND, 0); sb_sizer_2->Add(hbox_sizer_2, 0, wxALL | wxEXPAND, 0); vsizer->Add(sb_sizer_2, 1, wxALL | wxEXPAND, 3); // load save buttons hbox_sizer_3->Add(m_loadStyle, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); hbox_sizer_3->Add(m_saveStyle, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); vsizer->Add(hbox_sizer_3, 1, wxALIGN_RIGHT, 3); panel->SetSizer(vsizer); vsizer->Fit(panel); return panel; } void Config::OnClose(wxCloseEvent& event) { #if defined __WXMAC__ EndModal(wxID_OK); #else EndModal(wxID_CANCEL); #endif } void Config::WriteSettings() { int i = 0; wxString search = wxT("maxima-htmldir"); wxArrayString out; wxString maxima = m_maximaProgram->GetValue(); wxConfig *config = (wxConfig *)wxConfig::Get(); config->Write(wxT("maxima"), m_maximaProgram->GetValue()); config->Write(wxT("parameters"), m_additionalParameters->GetValue()); config->Write(wxT("fontSize"), m_fontSize); config->Write(wxT("mathFontsize"), m_mathFontSize); config->Write(wxT("matchParens"), m_matchParens->GetValue()); config->Write(wxT("showLong"), m_showLong->GetValue()); config->Write(wxT("fixedFontTC"), m_fixedFontInTC->GetValue()); config->Write(wxT("changeAsterisk"), m_changeAsterisk->GetValue()); config->Write(wxT("enterEvaluates"), m_enterEvaluates->GetValue()); config->Write(wxT("saveUntitled"), m_saveUntitled->GetValue()); config->Write(wxT("openHCaret"), m_openHCaret->GetValue()); config->Write(wxT("insertAns"), m_insertAns->GetValue()); config->Write(wxT("defaultPort"), m_defaultPort->GetValue()); config->Write(wxT("AUI/savePanes"), m_savePanes->GetValue()); config->Write(wxT("usejsmath"), m_useJSMath->GetValue()); config->Write(wxT("keepPercent"), m_keepPercentWithSpecials->GetValue()); if (m_saveSize->GetValue()) config->Write(wxT("pos-restore"), 1); else config->Write(wxT("pos-restore"), 0); i = m_language->GetSelection(); if (i > -1 && i < LANGUAGE_NUMBER) config->Write(wxT("language"), langs[i]); WriteStyles(); config->Flush(); } void Config::OnMpBrowse(wxCommandEvent& event) { wxConfig *config = (wxConfig *)wxConfig::Get(); wxString dd; config->Read(wxT("maxima"), &dd); #if defined __WXMSW__ wxString file = wxFileSelector(_("Select Maxima program"), wxPathOnly(dd), wxFileNameFromPath(dd), wxEmptyString, _("Bat files (*.bat)|*.bat|All|*"), wxFD_OPEN); #else wxString file = wxFileSelector(_("Select Maxima program"), wxPathOnly(dd), wxFileNameFromPath(dd), wxEmptyString, _("All|*"), wxFD_OPEN); #endif if (file.Length()) { if (file.Right(8) == wxT("wxmaxima") || file.Right(12) == wxT("wxmaxima.exe") || file.Right(12) == wxT("wxMaxima.exe")) wxMessageBox(_("Invalid entry for Maxima program.\n\nPlease enter the path to Maxima program again."), _("Error"), wxOK|wxICON_ERROR); else m_maximaProgram->SetValue(file); } } void Config::OnMathBrowse(wxCommandEvent& event) { wxFont math; math = wxGetFontFromUser(this, wxFont(m_mathFontSize, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false, m_mathFontName)); if (math.Ok()) { m_mathFontName = math.GetFaceName(); m_mathFontSize = math.GetPointSize(); m_getMathFont->SetLabel(m_mathFontName + wxString::Format(wxT(" (%d)"), m_mathFontSize)); UpdateExample(); } } void Config::OnChangeFontFamily(wxCommandEvent& event) { wxFont font; int fontsize = m_fontSize; style *tmp = GetStylePointer(); wxString fontName; if (tmp == &m_styleText || tmp == &m_styleTitle || tmp == &m_styleSubsection || tmp == &m_styleSection) { if (tmp->fontSize != 0) fontsize = tmp->fontSize; fontName = tmp->font; } else fontName = m_styleDefault.font; font = wxGetFontFromUser(this, wxFont(fontsize, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false, fontName, m_fontEncoding)); if (font.Ok()) { if (event.GetId() == font_family) { m_styleDefault.font = font.GetFaceName(); m_fontEncoding = font.GetEncoding(); m_fontSize = font.GetPointSize(); m_fontSize = MIN(m_fontSize, MC_MAX_SIZE); m_fontSize = MAX(m_fontSize, MC_MIN_SIZE); m_getFont->SetLabel(m_styleDefault.font + wxString::Format(wxT(" (%d)"), m_fontSize)); } else { tmp->font = font.GetFaceName(); tmp->fontSize = font.GetPointSize(); tmp->fontSize = MAX(tmp->fontSize, MC_MIN_SIZE); } UpdateExample(); } } void Config::ReadStyles(wxString file) { wxConfigBase* config; if (file == wxEmptyString) config = wxConfig::Get(); else { wxFileInputStream str(file); config = new wxFileConfig(str); } m_fontSize = m_mathFontSize = 12; config->Read(wxT("fontsize"), &m_fontSize); config->Read(wxT("mathfontsize"), &m_mathFontSize); config->Read(wxT("Style/fontname"), &m_styleDefault.font); if (m_styleDefault.font.Length()) m_getFont->SetLabel(m_styleDefault.font + wxString::Format(wxT(" (%d)"), m_fontSize)); int encoding = wxFONTENCODING_DEFAULT; config->Read(wxT("fontEncoding"), &encoding); m_fontEncoding = (wxFontEncoding)encoding; m_mathFontName = wxEmptyString; config->Read(wxT("Style/Math/fontname"), &m_mathFontName); if (m_mathFontName.Length() > 0) m_getMathFont->SetLabel(m_mathFontName + wxString::Format(wxT(" (%d)"), m_mathFontSize)); wxString tmp; // Document background color m_styleBackground.color = wxT("white"); if (config->Read(wxT("Style/Background/color"), &tmp)) m_styleBackground.color.Set(tmp); // Text background m_styleTextBackground.color = wxT("light blue"); if (config->Read(wxT("Style/TextBackground/color"), &tmp)) m_styleTextBackground.color.Set(tmp); // Highlighting color m_styleHighlight.color = wxT("red"); if (config->Read(wxT("Style/Highlight/color"), &tmp)) m_styleHighlight.color.Set(tmp); // Groupcell bracket color m_styleCellBracket.color = wxT("rgb(0,0,0)"); if (config->Read(wxT("Style/CellBracket/color"), &tmp)) m_styleCellBracket.color.Set(tmp); // Active groupcell bracket color m_styleActiveCellBracket.color = wxT("rgb(255,0,0)"); if (config->Read(wxT("Style/ActiveCellBracket/color"), &tmp)) m_styleActiveCellBracket.color.Set(tmp); // Horizontal caret color/ cursor color m_styleCursor.color = wxT("rgb(0,0,0)"); if (config->Read(wxT("Style/Cursor/color"), &tmp)) m_styleCursor.color.Set(tmp); // Outdated cells m_styleOutdated.color = wxT("rgb(153,153,153)"); if (config->Read(wxT("Style/Outdated/color"), &tmp)) m_styleOutdated.color.Set(tmp); // Selection color defaults to light grey on windows #if defined __WXMSW__ m_styleSelection.color = wxColour(wxT("light grey")); #else m_styleSelection.color = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); #endif if (config->Read(wxT("Style/Selection/color"), &tmp)) m_styleSelection.color.Set(tmp); #define READ_STYLE(style, where) \ if (config->Read(wxT(where "color"), &tmp)) style.color.Set(tmp); \ config->Read(wxT(where "bold"), \ &style.bold); \ config->Read(wxT(where "italic"), \ &style.italic); \ config->Read(wxT(where "underlined"), \ &style.underlined); // Text in math output m_styleDefault.color = wxT("black"); m_styleDefault.bold = false; m_styleDefault.italic = false; m_styleDefault.underlined = false; READ_STYLE(m_styleDefault, "Style/NormalText/") // Main prompt m_styleMainPrompt.color = wxT("red"); m_styleMainPrompt.bold = false; m_styleMainPrompt.italic = false; m_styleMainPrompt.underlined = false; READ_STYLE(m_styleMainPrompt, "Style/MainPrompt/") // Other prompt m_styleOtherPrompt.color = wxT("red"); m_styleOtherPrompt.bold = false; m_styleOtherPrompt.italic = true; m_styleOtherPrompt.underlined = false; READ_STYLE(m_styleOtherPrompt, "Style/OtherPrompt/") // Labels m_styleLabel.color = wxT("brown"); m_styleLabel.bold = false; m_styleLabel.italic = false; m_styleLabel.underlined = false; READ_STYLE(m_styleLabel, "Style/Label/") // Special m_styleSpecial.color = m_styleDefault.color; m_styleSpecial.bold = false; m_styleSpecial.italic = false; m_styleSpecial.underlined = false; READ_STYLE(m_styleSpecial, "Style/Special/") // Input m_styleInput.color = wxT("blue"); m_styleInput.bold = false; m_styleInput.italic = false; m_styleInput.underlined = false; READ_STYLE(m_styleInput, "Style/Input/") // Number m_styleNumber.color = m_styleDefault.color; m_styleNumber.bold = false; m_styleNumber.italic = false; m_styleNumber.underlined = false; READ_STYLE(m_styleNumber, "Style/Number/") // String m_styleString.color = m_styleDefault.color; m_styleString.bold = false; m_styleString.italic = true; m_styleString.underlined = false; READ_STYLE(m_styleString, "Style/String/") // Greek m_styleGreek.color = m_styleDefault.color; m_styleGreek.bold = false; m_styleGreek.italic = false; m_styleGreek.underlined = false; READ_STYLE(m_styleGreek, "Style/Greek/") // Variable m_styleVariable.color = m_styleVariable.color; m_styleVariable.bold = false; m_styleVariable.italic = true; m_styleVariable.underlined = false; READ_STYLE(m_styleVariable, "Style/Variable/") // Function m_styleFunction.color = m_styleVariable.color; m_styleFunction.bold = false; m_styleFunction.italic = false; m_styleFunction.underlined = false; READ_STYLE(m_styleFunction, "Style/Function/") // Text m_styleText.color = wxT("black"); m_styleText.bold = false; m_styleText.italic = false; m_styleText.underlined = false; m_styleText.font = m_styleDefault.font; m_styleText.fontSize = m_fontSize; config->Read(wxT("Style/Text/fontsize"), &m_styleText.fontSize); config->Read(wxT("Style/Text/fontname"), &m_styleText.font); READ_STYLE(m_styleText, "Style/Text/") // Subsection m_styleSubsection.color = wxT("black"); m_styleSubsection.bold = true; m_styleSubsection.italic = false; m_styleSubsection.underlined = false; m_styleSubsection.font = m_styleDefault.font; m_styleSubsection.fontSize = 16; config->Read(wxT("Style/Subsection/fontsize"), &m_styleSubsection.fontSize); config->Read(wxT("Style/Subsection/fontname"), &m_styleSubsection.font); READ_STYLE(m_styleSubsection, "Style/Subsection/") // Section m_styleSection.color = wxT("black"); m_styleSection.bold = true; m_styleSection.italic = true; m_styleSection.underlined = false; m_styleSection.font = m_styleDefault.font; m_styleSection.fontSize = 18; config->Read(wxT("Style/Section/fontsize"), &m_styleSection.fontSize); config->Read(wxT("Style/Section/fontname"), &m_styleSection.font); READ_STYLE(m_styleSection, "Style/Section/") // Title m_styleTitle.color = wxT("black"); m_styleTitle.bold = true; m_styleTitle.italic = false; m_styleTitle.underlined = true; m_styleTitle.font = m_styleDefault.font; m_styleTitle.fontSize = 24; config->Read(wxT("Style/Title/fontsize"), &m_styleTitle.fontSize); config->Read(wxT("Style/Title/fontname"), &m_styleTitle.font); READ_STYLE(m_styleTitle, "Style/Title/") #undef READ_STYLE // Set values in dialog m_styleFor->SetSelection(0); m_styleColor->SetBackgroundColour(m_styleDefault.color); // color the panel, after the styles are loaded m_boldCB->SetValue(m_styleDefault.bold); m_italicCB->SetValue(m_styleDefault.italic); m_underlinedCB->SetValue(m_styleDefault.underlined); if (file != wxEmptyString) delete config; } void Config::WriteStyles(wxString file) { wxConfigBase* config; if (file == wxEmptyString) config = wxConfig::Get(); else { wxStringInputStream str(wxEmptyString); config = new wxFileConfig(str); } config->Write(wxT("Style/Background/color"), m_styleBackground.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/Highlight/color"), m_styleHighlight.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/TextBackground/color"), m_styleTextBackground.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/CellBracket/color"), m_styleCellBracket.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/ActiveCellBracket/color"), m_styleActiveCellBracket.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/Cursor/color"), m_styleCursor.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/Selection/color"), m_styleSelection.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/Outdated/color"), m_styleOutdated.color.GetAsString(wxC2S_CSS_SYNTAX)); config->Write(wxT("Style/fontname"), m_styleDefault.font); config->Write(wxT("fontEncoding"), (int)m_fontEncoding); config->Write(wxT("Style/Math/fontname"), m_mathFontName); #define WRITE_STYLE(style, where) \ config->Write(wxT(where "color"), style.color.GetAsString(wxC2S_CSS_SYNTAX)); \ config->Write(wxT(where "bold"), style.bold); \ config->Write(wxT(where "italic"), style.italic); \ config->Write(wxT(where "underlined"), style.underlined); // Normal text WRITE_STYLE(m_styleDefault, "Style/NormalText/") // Main prompt WRITE_STYLE(m_styleMainPrompt, "Style/MainPrompt/") // Other prompt WRITE_STYLE(m_styleOtherPrompt, "Style/OtherPrompt/") // Label WRITE_STYLE(m_styleLabel, "Style/Label/") // Special WRITE_STYLE(m_styleSpecial, "Style/Special/") // Input WRITE_STYLE(m_styleInput, "Style/Input/") // Number WRITE_STYLE(m_styleNumber, "Style/Number/") // Greek WRITE_STYLE(m_styleGreek, "Style/Greek/") // String WRITE_STYLE(m_styleString, "Style/String/") // Variable WRITE_STYLE(m_styleVariable, "Style/Variable/") // Text config->Write(wxT("Style/Text/fontname"), m_styleText.font); config->Write(wxT("Style/Text/fontsize"), m_styleText.fontSize); WRITE_STYLE(m_styleText, "Style/Text/") // Section config->Write(wxT("Style/Subsection/fontname"), m_styleSubsection.font); config->Write(wxT("Style/Subsection/fontsize"), m_styleSubsection.fontSize); WRITE_STYLE(m_styleSubsection, "Style/Subsection/") // Section config->Write(wxT("Style/Section/fontname"), m_styleSection.font); config->Write(wxT("Style/Section/fontsize"), m_styleSection.fontSize); WRITE_STYLE(m_styleSection, "Style/Section/") // Title config->Write(wxT("Style/Title/fontname"), m_styleTitle.font); config->Write(wxT("Style/Title/fontsize"), m_styleTitle.fontSize); WRITE_STYLE(m_styleTitle, "Style/Title/") // Function names WRITE_STYLE(m_styleFunction, "Style/Function/") config->Flush(); if (file != wxEmptyString) { wxFile fl(file, wxFile::write); wxFileOutputStream str(fl); ((wxFileConfig *)config)->Save(str); delete config; } } void Config::OnChangeColor() { style* tmp = GetStylePointer(); wxColour col = wxGetColourFromUser(this, tmp->color); if (col.IsOk()) { tmp->color = col.GetAsString(wxC2S_CSS_SYNTAX); UpdateExample(); m_styleColor->SetBackgroundColour(tmp->color); } } void Config::OnChangeStyle(wxCommandEvent& event) { style* tmp = GetStylePointer(); int st = m_styleFor->GetSelection(); m_styleColor->SetBackgroundColour(tmp->color); if (st >= 12 && st <= 15) m_getStyleFont->Enable(true); else m_getStyleFont->Enable(false); // Background color only if (st >= 16) { m_boldCB->Enable(false); m_italicCB->Enable(false); m_underlinedCB->Enable(false); } else { m_boldCB->Enable(true); m_italicCB->Enable(true); m_underlinedCB->Enable(true); m_boldCB->SetValue(tmp->bold); m_italicCB->SetValue(tmp->italic); m_underlinedCB->SetValue(tmp->underlined); } UpdateExample(); } void Config::OnCheckbox(wxCommandEvent& event) { style* tmp = GetStylePointer(); tmp->bold = m_boldCB->GetValue(); tmp->italic = m_italicCB->GetValue(); tmp->underlined = m_underlinedCB->GetValue(); UpdateExample(); } void Config::OnChangeWarning(wxCommandEvent &event) { wxMessageBox(_("Please restart wxMaxima for changes to take effect!"), _("Configuration warning"), wxOK|wxICON_WARNING); } // // Should match whatever is put in m_styleFor // style* Config::GetStylePointer() { style* tmp = &m_styleDefault; switch (m_styleFor->GetSelection()) { case 1: tmp = &m_styleVariable; break; case 2: tmp = &m_styleNumber; break; case 3: tmp = &m_styleFunction; break; case 4: tmp = &m_styleSpecial; break; case 5: tmp = &m_styleGreek; break; case 6: tmp = &m_styleString; break; case 7: tmp = &m_styleInput; break; case 8: tmp = &m_styleMainPrompt; break; case 9: tmp = &m_styleOtherPrompt; break; case 10: tmp = &m_styleLabel; break; case 11: tmp = &m_styleHighlight; break; case 12: tmp = &m_styleText; break; case 13: tmp = &m_styleSubsection; break; case 14: tmp = &m_styleSection; break; case 15: tmp = &m_styleTitle; break; case 16: tmp = &m_styleTextBackground; break; case 17: tmp = &m_styleBackground; break; case 18: tmp = &m_styleCellBracket; break; case 19: tmp = &m_styleActiveCellBracket; break; case 20: tmp = &m_styleCursor; break; case 21: tmp = &m_styleSelection; break; case 22: tmp = &m_styleOutdated; break; } return tmp; } void Config::UpdateExample() { style *tmp = GetStylePointer(); wxString example = _("Example text"); wxColour color(tmp->color); wxString font(m_styleDefault.font); if (tmp == &m_styleBackground) color = m_styleInput.color; int fontsize = m_fontSize; if (tmp == &m_styleText || tmp == &m_styleSubsection || tmp == &m_styleSection || tmp == &m_styleTitle) { fontsize = tmp->fontSize; font = tmp->font; if (fontsize == 0) fontsize = m_fontSize; } else if (tmp == &m_styleVariable || tmp == &m_styleNumber || tmp == &m_styleFunction || tmp == &m_styleSpecial) { fontsize = m_mathFontSize; font = m_mathFontName; } if (tmp == &m_styleTextBackground) { m_examplePanel->SetFontSize(m_styleText.fontSize); m_examplePanel->SetStyle(m_styleText.color, m_styleText.italic, m_styleText.bold, m_styleText.underlined, m_styleText.font); } else { m_examplePanel->SetFontSize(fontsize); m_examplePanel->SetStyle(color, tmp->italic, tmp->bold, tmp->underlined, font); } if (tmp == &m_styleTextBackground || tmp == &m_styleText) m_examplePanel->SetBackgroundColour(m_styleTextBackground.color); else m_examplePanel->SetBackgroundColour(m_styleBackground.color); m_examplePanel->Refresh(); } void Config::LoadSave(wxCommandEvent& event) { if (event.GetId() == save_id) { wxString file = wxFileSelector(_("Save style to file"), wxEmptyString, wxT("style.ini"), wxT("ini"), _("Config file (*.ini)|*.ini"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file != wxEmptyString) WriteStyles(file); } else { wxString file = wxFileSelector(_("Load style from file"), wxEmptyString, wxT("style.ini"), wxT("ini"), _("Config file (*.ini)|*.ini"), wxFD_OPEN); if (file != wxEmptyString) { ReadStyles(file); UpdateExample(); } } } #if defined __WXMSW__ void Config::OnColorButton(wxCommandEvent &event) { OnChangeColor(); } #endif BEGIN_EVENT_TABLE(Config, wxPropertySheetDialog) EVT_BUTTON(wxID_OPEN, Config::OnMpBrowse) EVT_BUTTON(button_mathFont, Config::OnMathBrowse) EVT_BUTTON(font_family, Config::OnChangeFontFamily) #if defined __WXMSW__ EVT_BUTTON(color_id, Config::OnColorButton) #endif EVT_LISTBOX(listbox_styleFor, Config::OnChangeStyle) EVT_COMBOBOX(language_id, Config::OnChangeWarning) EVT_CHECKBOX(checkbox_bold, Config::OnCheckbox) EVT_CHECKBOX(checkbox_italic, Config::OnCheckbox) EVT_CHECKBOX(checkbox_underlined, Config::OnCheckbox) EVT_BUTTON(save_id, Config::LoadSave) EVT_BUTTON(load_id, Config::LoadSave) EVT_BUTTON(style_font_family, Config::OnChangeFontFamily) EVT_CLOSE(Config::OnClose) END_EVENT_TABLE() void ExamplePanel::OnPaint(wxPaintEvent& event) { wxString example(_("Example text")); wxPaintDC dc(this); int panel_width, panel_height; int text_width, text_height; int bold = wxFONTWEIGHT_NORMAL, italic = wxFONTSTYLE_NORMAL, underlined = 0; GetClientSize(&panel_width, &panel_height); dc.SetTextForeground(m_fgColor); if (m_bold) bold = wxBOLD; if (m_italic) italic = wxSLANT; if (m_underlined) underlined = 1; dc.SetFont(wxFont(m_size, wxFONTFAMILY_MODERN, italic, bold, underlined, m_font)); dc.GetTextExtent(example, &text_width, &text_height); dc.DrawText(example, (panel_width - text_width) / 2, (panel_height - text_height) / 2); } BEGIN_EVENT_TABLE(ExamplePanel, wxPanel) EVT_PAINT(ExamplePanel::OnPaint) END_EVENT_TABLE() #ifndef __WXMSW__ BEGIN_EVENT_TABLE(ColorPanel, wxPanel) EVT_LEFT_UP(ColorPanel::OnClick) END_EVENT_TABLE() #endif wxMaxima-13.04.2/src/Config.h000644 000765 000024 00000012147 12073007012 016224 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include #include #include #include #include #include #include #include #include #ifndef CONFIG_H #define CONFIG_H #include "TextStyle.h" #include "Setup.h" enum { color_id, listbox_styleFor, checkbox_bold, checkbox_italic, checkbox_underlined, button_mathFont, font_family, style_font_family, language_id, save_id, load_id }; class ExamplePanel : public wxPanel { public: ExamplePanel(wxWindow *parent, int id, wxPoint pos, wxSize size) : wxPanel(parent, id, pos, size) { #if defined (__WXGTK12__) && !defined (__WXGTK20__) m_size = 12; #elif defined (__WXMAC__) m_size = 12; #else m_size = 10; #endif }; void SetStyle(wxColour fg_color, bool italic, bool bold, bool underlined, wxString font) { m_fgColor = fg_color; m_italic = italic; m_bold = bold; m_underlined = underlined; m_font = font; } void SetFontSize(int size) { m_size = size; } private: void OnPaint(wxPaintEvent& event); wxColour m_fgColor; bool m_italic, m_bold, m_underlined; wxString m_font; int m_size; DECLARE_EVENT_TABLE() }; class Config: public wxPropertySheetDialog { public: Config(wxWindow* parent); ~Config(); void OnChangeColor(); // called from class ColorPanel void WriteSettings(); private: // begin wxGlade: Config::methods void SetProperties(); wxPanel* CreateOptionsPanel(); wxPanel* CreateStylePanel(); wxPanel* CreateMaximaPanel(); // end wxGlade protected: // begin wxGlade: Config::attributes wxTextCtrl* m_maximaProgram; wxButton* m_mpBrowse; wxTextCtrl* m_additionalParameters; wxComboBox* m_language; wxCheckBox* m_saveSize; wxCheckBox* m_savePanes; wxCheckBox* m_matchParens; wxCheckBox* m_showLong; wxCheckBox* m_enterEvaluates; wxCheckBox* m_saveUntitled; wxCheckBox* m_openHCaret; wxCheckBox* m_insertAns; wxButton* m_getFont; wxButton* m_getStyleFont; wxFontEncoding m_fontEncoding; wxListBox* m_styleFor; #ifndef __WXMSW__ wxPanel* m_styleColor; #else wxButton* m_styleColor; #endif wxCheckBox* m_boldCB; wxCheckBox* m_italicCB; wxCheckBox* m_underlinedCB; wxCheckBox* m_fixedFontInTC; wxCheckBox* m_unixCopy; wxCheckBox* m_changeAsterisk; wxCheckBox* m_useJSMath; wxCheckBox* m_keepPercentWithSpecials; wxBookCtrlBase* m_notebook; wxStaticText* m_mathFont; wxButton* m_getMathFont; wxString m_mathFontName; wxButton *m_saveStyle, *m_loadStyle; wxSpinCtrl* m_defaultPort; ExamplePanel* m_examplePanel; // end wxGlade style m_styleDefault, m_styleVariable, m_styleFunction, m_styleNumber, m_styleSpecial, m_styleGreek, m_styleString, m_styleInput, m_styleMainPrompt, m_styleOtherPrompt, m_styleLabel, m_styleHighlight, m_styleText, m_styleSubsection, m_styleSection, m_styleTitle, m_styleTextBackground, m_styleBackground, m_styleCellBracket, m_styleActiveCellBracket, m_styleCursor, m_styleSelection, m_styleOutdated; void OnClose(wxCloseEvent& event); void OnMpBrowse(wxCommandEvent& event); #if defined __WXMSW__ void OnColorButton(wxCommandEvent& event); #endif void OnMathBrowse(wxCommandEvent& event); void OnChangeStyle(wxCommandEvent& event); void OnChangeWarning(wxCommandEvent& event); void OnCheckbox(wxCommandEvent& event); void ReadStyles(wxString file = wxEmptyString); void WriteStyles(wxString file = wxEmptyString); void SetupFontList(); void UpdateExample(); void OnChangeFontFamily(wxCommandEvent& event); void LoadSave(wxCommandEvent& event); int m_fontSize, m_mathFontSize; style* GetStylePointer(); wxImageList *m_imageList; DECLARE_EVENT_TABLE() }; #ifndef __WXMSW__ class ColorPanel : public wxPanel { public: ColorPanel(Config * conf, wxWindow *parent, int id, wxPoint pos, wxSize size, long style) : wxPanel(parent, id, pos, size, style) { config = conf; SetBackgroundColour(wxColour(0,0,0)); }; void OnClick(wxMouseEvent &event) { config->OnChangeColor(); } private: Config * config; DECLARE_EVENT_TABLE() }; #endif // __WXMSW__ #endif // CONFIG_H wxMaxima-13.04.2/src/DiffCell.cpp000644 000765 000024 00000010027 11705765322 017035 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "DiffCell.h" DiffCell::DiffCell() : MathCell() { m_baseCell = NULL; m_diffCell = NULL; } DiffCell::~DiffCell() { if (m_baseCell != NULL) delete m_baseCell; if (m_diffCell != NULL) delete m_diffCell; if (m_next != NULL) delete m_next; } void DiffCell::SetParent(MathCell *parent, bool all) { if (m_baseCell != NULL) m_baseCell->SetParent(parent, true); if (m_diffCell != NULL) m_diffCell->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* DiffCell::Copy(bool all) { DiffCell* tmp = new DiffCell; CopyData(this, tmp); tmp->SetDiff(m_diffCell->Copy(true)); tmp->SetBase(m_baseCell->Copy(true)); if (all && m_next!= NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void DiffCell::Destroy() { if (m_baseCell != NULL) delete m_baseCell; if (m_diffCell != NULL) delete m_diffCell; m_baseCell = NULL; m_diffCell = NULL; m_next = NULL; } void DiffCell::SetDiff(MathCell *diff) { if (diff == NULL) return; if (m_diffCell != NULL) delete m_diffCell; m_diffCell = diff; } void DiffCell::SetBase(MathCell *base) { if (base == NULL) return; if (m_baseCell != NULL) delete m_baseCell; m_baseCell = base; } void DiffCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateWidths(parser, fontsize, true); m_diffCell->RecalculateWidths(parser, fontsize, true); m_width = m_baseCell->GetFullWidth(scale) + m_diffCell->GetFullWidth(scale) + 2*MC_CELL_SKIP; MathCell::RecalculateWidths(parser, fontsize, all); } void DiffCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { m_baseCell->RecalculateSize(parser, fontsize, true); m_diffCell->RecalculateSize(parser, fontsize, true); m_center = MAX(m_diffCell->GetMaxCenter(), m_baseCell->GetMaxCenter()); m_height = m_center + MAX(m_diffCell->GetMaxDrop(), m_baseCell->GetMaxDrop()); MathCell::RecalculateSize(parser, fontsize, all); } void DiffCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { wxPoint bs, df; df.x = point.x; df.y = point.y; m_diffCell->Draw(parser, df, fontsize, true); bs.x = point.x + m_diffCell->GetFullWidth(parser.GetScale()) + 2*MC_CELL_SKIP; bs.y = point.y; m_baseCell->Draw(parser, bs, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString DiffCell::ToString(bool all) { MathCell* tmp = m_baseCell->m_next; wxString s = wxT("'diff("); if (tmp != NULL) s += tmp->ToString(true); s += m_diffCell->ToString(true); s += wxT(")"); s += MathCell::ToString(all); return s; } wxString DiffCell::ToTeX(bool all) { wxString s = m_diffCell->ToTeX(true) + m_baseCell->ToTeX(true); s += MathCell::ToTeX(all); return s; } wxString DiffCell::ToXML(bool all) { return _T("") + m_baseCell->ToXML(true) + m_diffCell->ToXML(true) + _T("") + MathCell::ToXML(all); } void DiffCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; if (m_baseCell->ContainsRect(rect)) m_baseCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/DiffCell.h000644 000765 000024 00000003053 11705765322 016503 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _DIFFCELL_H_ #define _DIFFCELL_H_ #include "MathCell.h" class DiffCell : public MathCell { public: DiffCell(); ~DiffCell(); void Destroy(); MathCell* Copy(bool all); void SetBase(MathCell *base); void SetDiff(MathCell *diff); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void SelectInner(wxRect& rect, MathCell** first, MathCell** last); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!! void SetParent(MathCell *parent, bool all); protected: MathCell *m_baseCell; MathCell *m_diffCell; }; #endif //_EXPTCELL_H_ wxMaxima-13.04.2/src/EditorCell.cpp000644 000765 000024 00000161047 12150101606 017404 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2006-2011 Andrej Vodopivec /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include #include #include "EditorCell.h" #include "wxMaxima.h" #include "wxMaximaFrame.h" #define ESC_CHAR wxT('\xA6') EditorCell::EditorCell() : MathCell() { m_text = wxEmptyString; m_fontSize = -1; m_positionOfCaret = 0; m_caretColumn = -1; // used when moving up/down between lines m_selectionStart = -1; m_selectionEnd = -1; m_isActive = false; m_matchParens = true; m_paren1 = m_paren2 = -1; m_insertAns = true; m_isDirty = false; m_hasFocus = false; m_underlined = false; m_fontWeight = wxFONTWEIGHT_NORMAL; m_fontStyle = wxFONTSTYLE_NORMAL; m_fontEncoding = wxFONTENCODING_DEFAULT; m_saveValue = false; m_containsChanges = false; m_containsChangesCheck = false; m_firstLineOnly = false; m_historyPosition = -1; } EditorCell::~EditorCell() { if (m_next != NULL) delete m_next; } MathCell *EditorCell::Copy(bool all) { EditorCell *tmp = new EditorCell(); tmp->SetValue(m_text); tmp->m_containsChanges = m_containsChanges; CopyData(this, tmp); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void EditorCell::Destroy() { m_next = NULL; } wxString EditorCell::ToString(bool all) { wxString text = m_text; if (m_selectionStart > -1) { long start = MIN(m_selectionStart, m_selectionEnd); long end = MAX(m_selectionStart, m_selectionEnd) - 1; text = m_text.SubString(start, end); } return text + MathCell::ToString(all); } wxString EditorCell::ToTeX(bool all) { wxString text = m_text; return text + MathCell::ToTeX(all); } wxString EditorCell::ToXML(bool all) { wxString xmlstring = m_text; // convert it, so that the XML parser doesn't fail xmlstring.Replace(wxT("&"), wxT("&")); xmlstring.Replace(wxT("<"), wxT("<")); xmlstring.Replace(wxT(">"), wxT(">")); xmlstring.Replace(wxT("'"), wxT("'")); xmlstring.Replace(wxT("\""), wxT(""")); xmlstring.Replace(wxT("\n"), wxT("\n")); xmlstring = wxT("") + xmlstring + wxT("\n"); wxString head = wxT("\n"); return head + xmlstring + wxT("\n") + MathCell::ToXML(all); } void EditorCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { m_isDirty = false; if (m_height == -1 || m_width == -1 || fontsize != m_fontSize || parser.ForceUpdate()) { m_fontSize = fontsize; wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); SetFont(parser, fontsize); dc.GetTextExtent(wxT("X"), &m_charWidth, &m_charHeight); unsigned int newLinePos = 0, prevNewLinePos = 0; int width = 0, width1, height1; m_numberOfLines = 1; while (newLinePos < m_text.Length()) { while (newLinePos < m_text.Length()) { if (m_text.GetChar(newLinePos) == '\n') break; newLinePos++; } dc.GetTextExtent(m_text.SubString(prevNewLinePos, newLinePos), &width1, &height1); width = MAX(width, width1); while (newLinePos < m_text.Length() && m_text.GetChar(newLinePos) == '\n') { newLinePos++; m_numberOfLines++; } prevNewLinePos = newLinePos; } // new if (m_firstLineOnly) m_numberOfLines = 1; if (m_text == wxEmptyString) width = m_charWidth; m_width = width + 2 * SCALE_PX(2, scale); m_height = m_numberOfLines * m_charHeight + 2 * SCALE_PX(2, scale); m_center = m_charHeight / 2 + SCALE_PX(2, scale); } MathCell::RecalculateWidths(parser, fontsize, all); } void EditorCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { MathCell::RecalculateSize(parser, fontsize, all); } /////////////////////////// // EditorCell::Draw // Draws the editor cell in the following order: // 1. draw selection (wxCOPY), TS_SELECTION color // 2. mark matching parenthesis (wxCOPY), TS_SELECTION color // 3. draw text (wxCOPY) // 4. draw caret (wxCOPY), TS_CURSOR color //////////////////////////// void EditorCell::Draw(CellParser& parser, wxPoint point1, int fontsize, bool all) { double scale = parser.GetScale(); wxDC& dc = parser.GetDC(); wxPoint point(point1); if (m_width == -1 || m_height == -1) RecalculateWidths(parser, fontsize, false); if (DrawThisCell(parser, point) && !m_isHidden) { dc.SetLogicalFunction(wxCOPY); // opaque (for everything except the caret) // Need correct m_currentPoint before we call MathCell::Draw! m_currentPoint.x = point.x; m_currentPoint.y = point.y; if (m_isActive) // draw selection or matching parens { // // Mark selection // if (m_selectionStart > -1) { #if defined(__WXMAC__) wxRect rect = GetRect(); // rectangle representing the cell dc.SetPen(wxNullPen); // no border on rectangles #else dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_SELECTION), 1, 1)) ); // window linux, set a pen #endif dc.SetBrush( *(wxTheBrushList->FindOrCreateBrush(parser.GetColor(TS_SELECTION))) ); //highlight c. wxPoint point, point1; long start = MIN(m_selectionStart, m_selectionEnd); long end = MAX(m_selectionStart, m_selectionEnd); long pos1 = start, pos2 = start; while (pos1 < end) // go through selection, draw a rect for each line of selection { while (pos1 < end && m_text.GetChar(pos1) != '\n') pos1++; point = PositionToPoint(parser, pos2); // left point point1 = PositionToPoint(parser, pos1); // right point long selectionWidth = point1.x - point.x; #if defined(__WXMAC__) if (pos1 != end) // we have a \n, draw selection to the right border (mac behaviour) selectionWidth = rect.GetRight() - point.x - SCALE_PX(2,scale); #endif dc.DrawRectangle(point.x + SCALE_PX(2, scale), // draw the rectangle point.y + SCALE_PX(2, scale) - m_center, selectionWidth, m_charHeight); pos1++; pos2 = pos1; } } // if (m_selectionStart > -1) // // Matching parens - draw only if we dont have selection // else if (m_paren1 != -1 && m_paren2 != -1) { #if defined(__WXMAC__) wxRect rect = GetRect(); // rectangle representing the cell dc.SetPen(wxNullPen); // no border on rectangles #else dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_SELECTION), 1, 1))); // window linux, set a pen #endif dc.SetBrush( *(wxTheBrushList->FindOrCreateBrush(parser.GetColor(TS_SELECTION))) ); //highlight c. wxPoint point = PositionToPoint(parser, m_paren1); int width, height; dc.GetTextExtent(m_text.GetChar(m_paren1), &width, &height); dc.DrawRectangle(point.x + SCALE_PX(2, scale) + 1, point.y + SCALE_PX(2, scale) - m_center + 1, width - 1, height - 1); point = PositionToPoint(parser, m_paren2); dc.GetTextExtent(m_text.GetChar(m_paren1), &width, &height); dc.DrawRectangle(point.x + SCALE_PX(2, scale) + 1, point.y + SCALE_PX(2, scale) - m_center + 1, width - 1, height - 1); } // else if (m_paren1 != -1 && m_paren2 != -1) } // if (m_isActive) // // Draw the text // SetForeground(parser); SetPen(parser); SetFont(parser, fontsize); unsigned int newLinePos = 0, prevNewLinePos = 0, numberOfLines = 0; #if defined __WXMSW__ || wxUSE_UNICODE if (parser.GetChangeAsterisk()) // replace "*" with centerdot for the time of drawing m_text.Replace(wxT("*"), wxT("\xB7")); #endif if (!m_firstLineOnly) // draw whole text while (newLinePos < m_text.Length()) { while (newLinePos < m_text.Length()) { if (m_text.GetChar(newLinePos) == '\n') break; newLinePos++; } dc.DrawText(m_text.SubString(prevNewLinePos, newLinePos - 1), point.x + SCALE_PX(2, scale), point.y - m_center + SCALE_PX(2, scale) + m_charHeight * numberOfLines); newLinePos++; prevNewLinePos = newLinePos; numberOfLines++; } else { // draw only first line (+ some info) wxString firstline; while (newLinePos < m_text.Length()) { while (newLinePos < m_text.Length()) { if (m_text.GetChar(newLinePos) == '\n') break; newLinePos++; } if (numberOfLines == 0) firstline = m_text.SubString(0, newLinePos - 1); newLinePos++; numberOfLines++; } if (numberOfLines < 1) numberOfLines = 1; firstline << wxT("... (") << numberOfLines - 1 << wxT(" ") << _("lines hidden") << wxT(")"); dc.DrawText(firstline, point.x + SCALE_PX(2, scale), point.y - m_center + SCALE_PX(2, scale)); } #if defined __WXMSW__ || wxUSE_UNICODE if (parser.GetChangeAsterisk()) // replace centerdot with "*" m_text.Replace(wxT("\xB7"), wxT("*")); #endif // // Draw the caret // if (m_displayCaret && m_hasFocus && m_isActive) { int caretInLine = 0; int caretInColumn = 0; PositionToXY(m_positionOfCaret, &caretInColumn, &caretInLine); wxString line = GetLineString(caretInLine, 0, caretInColumn); int lineWidth, lineHeight; dc.GetTextExtent(line, &lineWidth, &lineHeight); dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_CURSOR), 1, wxSOLID))); //TODO is there more efficient way to do this? #if defined(__WXMAC__) // draw 1 pixel shorter caret than on windows dc.DrawLine(point.x + SCALE_PX(2, scale) + lineWidth, point.y + SCALE_PX(2, scale) - m_center + caretInLine * m_charHeight, point.x + SCALE_PX(2, scale) + lineWidth, point.y + SCALE_PX(1, scale) - m_center + (caretInLine + 1) * m_charHeight); #else dc.DrawLine(point.x + SCALE_PX(2, scale) + lineWidth, point.y + SCALE_PX(2, scale) - m_center + caretInLine * m_charHeight, point.x + SCALE_PX(2, scale) + lineWidth, point.y + SCALE_PX(2, scale) - m_center + (caretInLine + 1) * m_charHeight); #endif } UnsetPen(parser); } // if (DrawThisCell(parser, point) && !m_isHidden) MathCell::Draw(parser, point1, fontsize, all); } void EditorCell::SetFont(CellParser& parser, int fontsize) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); int fontsize1 = parser.GetFontSize(m_textStyle); if (fontsize1 == 0) fontsize1 = fontsize; m_fontSize = fontsize1; fontsize1 = (int) (((double)fontsize1) * scale + 0.5); fontsize1 = MAX(fontsize1, 1); m_fontName = parser.GetFontName(m_textStyle); m_fontStyle = parser.IsItalic(m_textStyle); m_fontWeight = parser.IsBold(m_textStyle); m_underlined = parser.IsUnderlined(m_textStyle); m_fontEncoding = parser.GetFontEncoding(); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, m_fontStyle, m_fontWeight, m_underlined, m_fontName, m_fontEncoding)); } void EditorCell::SetForeground(CellParser& parser) { wxDC& dc = parser.GetDC(); dc.SetTextForeground(parser.GetColor(m_textStyle)); } #ifndef WX_USE_UNICODE int ChangeNumpadToChar(int c) { switch (c) { case WXK_NUMPAD0: return '0'; break; case WXK_NUMPAD1: return '1'; break; case WXK_NUMPAD2: return '2'; break; case WXK_NUMPAD3: return '3'; break; case WXK_NUMPAD4: return '4'; break; case WXK_NUMPAD5: return '5'; break; case WXK_NUMPAD6: return '6'; break; case WXK_NUMPAD7: return '7'; break; case WXK_NUMPAD8: return '8'; break; case WXK_NUMPAD9: return '9'; break; case WXK_NUMPAD_DECIMAL: return '.'; break; } return c; } #endif void EditorCell::ProcessEvent(wxKeyEvent &event) { static const wxString chars(wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLNOPQRSTUVWXYZ01234567890_%")); static const wxString delim(wxT("()[]{},.;?/*:=&$")); if ((event.GetKeyCode() != WXK_DOWN) && (event.GetKeyCode() != WXK_PAGEDOWN) && (event.GetKeyCode() != WXK_PAGEUP) && (event.GetKeyCode() != WXK_UP)) m_caretColumn = -1; // make caretColumn invalid switch (event.GetKeyCode()) { case WXK_LEFT: SaveValue(); if (event.ShiftDown()) { if (m_selectionStart == -1) m_selectionEnd = m_selectionStart = m_positionOfCaret; } else m_selectionEnd = m_selectionStart = -1; if (event.ControlDown()) { if (m_positionOfCaret > 1 && (chars.Find(m_text[m_positionOfCaret-1]) == wxNOT_FOUND && chars.Find(m_text[m_positionOfCaret-2]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret-1]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret-2]) == wxNOT_FOUND)) { while (m_positionOfCaret > 0 && chars.Find(m_text[m_positionOfCaret-1]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret-1]) == wxNOT_FOUND) m_positionOfCaret--; } else { while (m_positionOfCaret > 0 && chars.Find(m_text[m_positionOfCaret-1]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret-1]) == wxNOT_FOUND) m_positionOfCaret--; if (chars.Find(m_text[m_positionOfCaret-1]) != wxNOT_FOUND) { while (m_positionOfCaret > 0 && chars.Find(m_text[m_positionOfCaret-1]) != wxNOT_FOUND) m_positionOfCaret--; } else if (delim.Find(m_text[m_positionOfCaret-1]) != wxNOT_FOUND) { while (m_positionOfCaret > 0 && delim.Find(m_text[m_positionOfCaret-1]) != wxNOT_FOUND) m_positionOfCaret--; } else { while (m_positionOfCaret > 0 && chars.Find(m_text[m_positionOfCaret-1]) != wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret-1]) != wxNOT_FOUND) m_positionOfCaret--; } } } else if (event.AltDown()) { int count=0; while (m_positionOfCaret > 0 && count >= 0) { m_positionOfCaret--; if (m_text[m_positionOfCaret]=='(' || m_text[m_positionOfCaret]=='[') count--; else if (m_text[m_positionOfCaret]==')' || m_text[m_positionOfCaret]==']') count++; } } else if (m_positionOfCaret > 0) m_positionOfCaret--; if (event.ShiftDown()) m_selectionEnd = m_positionOfCaret; break; case WXK_RIGHT: SaveValue(); if (event.ShiftDown()) { if (m_selectionStart == -1) m_selectionEnd = m_selectionStart = m_positionOfCaret; } else m_selectionEnd = m_selectionStart = -1; if (event.ControlDown() && m_positionOfCaret < (signed)m_text.Length()-1) { if (m_positionOfCaret < (signed)m_text.Length()-1 && (chars.Find(m_text[m_positionOfCaret]) == wxNOT_FOUND && chars.Find(m_text[m_positionOfCaret+1]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret+1]) == wxNOT_FOUND)) { while (m_positionOfCaret < (signed)m_text.Length() && chars.Find(m_text[m_positionOfCaret]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret]) == wxNOT_FOUND) m_positionOfCaret++; } else { while (m_positionOfCaret < (signed)m_text.Length() && chars.Find(m_text[m_positionOfCaret]) == wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret]) == wxNOT_FOUND) m_positionOfCaret++; if (chars.Find(m_text[m_positionOfCaret]) != wxNOT_FOUND) { while (m_positionOfCaret < (signed)m_text.Length() && chars.Find(m_text[m_positionOfCaret]) != wxNOT_FOUND) m_positionOfCaret++; } else if (delim.Find(m_text[m_positionOfCaret]) != wxNOT_FOUND) { while (m_positionOfCaret < (signed)m_text.Length() && delim.Find(m_text[m_positionOfCaret]) != wxNOT_FOUND) m_positionOfCaret++; } else { while (m_positionOfCaret < (signed)m_text.Length() && chars.Find(m_text[m_positionOfCaret]) != wxNOT_FOUND && delim.Find(m_text[m_positionOfCaret]) != wxNOT_FOUND) m_positionOfCaret++; } } } else if (event.AltDown()) { int count=0; while (m_positionOfCaret < (signed)m_text.Length() && count >= 0) { m_positionOfCaret++; if (m_text[m_positionOfCaret-1]=='(' || m_text[m_positionOfCaret-1]=='[') count++; else if (m_text[m_positionOfCaret-1]==')' || m_text[m_positionOfCaret-1]==']') count--; } } else if (m_positionOfCaret < (signed)m_text.Length()) m_positionOfCaret++; if (event.ShiftDown()) m_selectionEnd = m_positionOfCaret; break; case WXK_PAGEDOWN: case WXK_DOWN: SaveValue(); { if (event.ShiftDown()) { if (m_selectionStart == -1) m_selectionEnd = m_selectionStart = m_positionOfCaret; } else m_selectionEnd = m_selectionStart = -1; int column, line; PositionToXY(m_positionOfCaret, &column, &line); // get current line if (m_caretColumn > -1) column = m_caretColumn; else m_caretColumn = column; if (line < m_numberOfLines-1) // can we go down ? m_positionOfCaret = XYToPosition(column, line + 1); else { // we can't go down. move caret to the end m_positionOfCaret = (signed)m_text.Length(); m_caretColumn = -1; // make caretColumn invalid } if (event.ShiftDown()) m_selectionEnd = m_positionOfCaret; } break; case WXK_PAGEUP: case WXK_UP: SaveValue(); { if (event.ShiftDown()) { if (m_selectionStart == -1) m_selectionEnd = m_selectionStart = m_positionOfCaret; } else m_selectionEnd = m_selectionStart = -1; int column, line; PositionToXY(m_positionOfCaret, &column, &line); // get current line if (m_caretColumn > -1) column = m_caretColumn; else m_caretColumn = column; if (line > 0) // can we go up? m_positionOfCaret = XYToPosition(column, line - 1); else { // we can't move up, move to the beginning m_positionOfCaret = 0; m_caretColumn = -1; // make caretColumn invalid } if (event.ShiftDown()) m_selectionEnd = m_positionOfCaret; } break; case WXK_RETURN: SaveValue(); if (m_selectionStart != -1) // we have a selection, delete it, then proceed { SaveValue(); long start = MIN(m_selectionEnd, m_selectionStart); long end = MAX(m_selectionEnd, m_selectionStart); m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; m_selectionEnd = m_selectionStart = -1; } m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT("\n") + m_text.SubString(m_positionOfCaret, m_text.Length()); m_positionOfCaret++; m_isDirty = true; m_containsChanges = true; break; case WXK_END: SaveValue(); if (event.ShiftDown()) { if (m_selectionStart == -1) m_selectionEnd = m_selectionStart = m_positionOfCaret; } else m_selectionEnd = m_selectionStart = -1; if (event.ControlDown()) m_positionOfCaret = (signed)m_text.Length(); else { while (m_positionOfCaret < (signed)m_text.Length() && m_text.GetChar(m_positionOfCaret) != '\n') m_positionOfCaret++; } if (event.ShiftDown()) m_selectionEnd = m_positionOfCaret; break; case WXK_HOME: SaveValue(); { if (event.ShiftDown()) { if (m_selectionStart == -1) m_selectionEnd = m_selectionStart = m_positionOfCaret; } else m_selectionEnd = m_selectionStart = -1; if (event.ControlDown()) m_positionOfCaret = 0; else { int col, lin; PositionToXY(m_positionOfCaret, &col, &lin); m_positionOfCaret = XYToPosition(0, lin); } if (event.ShiftDown()) m_selectionEnd = m_positionOfCaret; } break; case WXK_DELETE: SaveValue(); if (m_selectionStart == -1) { if (m_positionOfCaret < (signed)m_text.Length()) { m_isDirty = true; m_containsChanges = true; m_text = m_text.SubString(0, m_positionOfCaret - 1) + m_text.SubString(m_positionOfCaret + 1, m_text.Length()); } } else { m_isDirty = true; m_containsChanges = true; SaveValue(); m_saveValue = true; long start = MIN(m_selectionEnd, m_selectionStart); long end = MAX(m_selectionEnd, m_selectionStart); m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; m_selectionEnd = m_selectionStart = -1; } break; case WXK_BACK: SaveValue(); if (m_selectionStart > -1) { SaveValue(); m_saveValue = true; m_containsChanges = true; m_isDirty = true; long start = MIN(m_selectionEnd, m_selectionStart); long end = MAX(m_selectionEnd, m_selectionStart); m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; m_selectionEnd = m_selectionStart = -1; break; } else if (m_positionOfCaret > 0) { m_containsChanges = true; m_isDirty = true; /// If deleting ( in () then delete both. int right = m_positionOfCaret; if (m_positionOfCaret < m_text.Length() && ((m_text.GetChar(m_positionOfCaret-1) == '[' && m_text.GetChar(m_positionOfCaret) == ']') || (m_text.GetChar(m_positionOfCaret-1) == '(' && m_text.GetChar(m_positionOfCaret) == ')') || (m_text.GetChar(m_positionOfCaret-1) == '{' && m_text.GetChar(m_positionOfCaret) == '}') || (m_text.GetChar(m_positionOfCaret-1) == '"' && m_text.GetChar(m_positionOfCaret) == '"'))) right++; m_text = m_text.SubString(0, m_positionOfCaret - 2) + m_text.SubString(right, m_text.Length()); m_positionOfCaret--; } break; case WXK_TAB: m_isDirty = true; if (!FindNextTemplate(event.ShiftDown())) { m_containsChanges = true; { if (m_selectionStart > -1) { SaveValue(); long start = MIN(m_selectionEnd, m_selectionStart); long end = MAX(m_selectionEnd, m_selectionStart); m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; m_selectionEnd = m_selectionStart = -1; break; } int col, line; PositionToXY(m_positionOfCaret, &col, &line); wxString ins; do { col++; ins += wxT(" "); } while (col%4 != 0); m_text = m_text.SubString(0, m_positionOfCaret - 1) + ins + m_text.SubString(m_positionOfCaret, m_text.Length()); m_positionOfCaret += ins.Length(); } } break; /* case WXK_SPACE: if (event.ShiftDown()) m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT("*") + // wxT("\x00B7") m_text.SubString(m_positionOfCaret, m_text.Length()); else m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT(" ") + m_text.SubString(m_positionOfCaret, m_text.Length()); m_isDirty = true; m_containsChanges = true; m_positionOfCaret++; break; */ case WXK_ESCAPE: if (m_selectionStart != -1) { m_positionOfCaret = m_selectionEnd; m_selectionStart = m_selectionEnd = -1; } #if wxUSE_UNICODE else { // TODO: search only a few positions back for an escchar (10? and not over newlines) bool insertescchar = false; int esccharpos = m_text.Left(m_positionOfCaret).Find(ESC_CHAR, true); if (esccharpos > -1) { // we have a match, check for insertion wxString greek = InterpretEscapeString(m_text.SubString(esccharpos + 1, m_positionOfCaret - 1)); if (greek.Length() > 0 ) { m_text = m_text.SubString(0, esccharpos - 1) + greek + m_text.SubString(m_positionOfCaret, m_text.Length()); m_positionOfCaret = esccharpos + greek.Length(); m_isDirty = true; m_containsChanges = true; } else insertescchar = true; } else insertescchar = true; if (insertescchar) { m_text = m_text.SubString(0, m_positionOfCaret - 1) + ESC_CHAR + m_text.SubString(m_positionOfCaret, m_text.Length()); m_isDirty = true; m_containsChanges = true; m_positionOfCaret++; } } #endif break; /* Ignored keys */ case WXK_WINDOWS_LEFT: case WXK_WINDOWS_RIGHT: case WXK_WINDOWS_MENU: case WXK_COMMAND: case WXK_START: break; default: if (event.ControlDown()) break; m_isDirty = true; m_containsChanges = true; bool insertLetter = true; if (m_saveValue) { SaveValue(); m_saveValue = false; } if (m_historyPosition != -1) { int len = m_textHistory.GetCount() - m_historyPosition; m_textHistory.RemoveAt(m_historyPosition + 1, len - 1); m_startHistory.erase(m_startHistory.begin() + m_historyPosition + 1, m_startHistory.end()); m_endHistory.erase(m_endHistory.begin() + m_historyPosition + 1, m_endHistory.end()); m_positionHistory.erase(m_positionHistory.begin() + m_historyPosition + 1, m_positionHistory.end()); m_historyPosition = -1; } // if we have a selection either put parens around it (and don't write the letter afterwards) // or delete selection and write letter (insertLetter = true). if (m_selectionStart > -1) { SaveValue(); long start = MIN(m_selectionEnd, m_selectionStart); long end = MAX(m_selectionEnd, m_selectionStart); #if wxUSE_UNICODE switch (event.GetUnicodeKey()) #else switch (event.GetKeyCode()) #endif { case '(': m_text = m_text.SubString(0, start - 1) + wxT("(") + m_text.SubString(start, end - 1) + wxT(")") + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; insertLetter = false; break; case '{': m_text = m_text.SubString(0, start - 1) + wxT("{") + m_text.SubString(start, end - 1) + wxT("}") + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; insertLetter = false; break; case '[': m_text = m_text.SubString(0, start - 1) + wxT("[") + m_text.SubString(start, end - 1) + wxT("]") + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; insertLetter = false; break; case ')': m_text = m_text.SubString(0, start - 1) + wxT("(") + m_text.SubString(start, end - 1) + wxT(")") + m_text.SubString(end, m_text.Length()); m_positionOfCaret = end + 2; insertLetter = false; break; case '}': m_text = m_text.SubString(0, start - 1) + wxT("{") + m_text.SubString(start, end - 1) + wxT("}") + m_text.SubString(end, m_text.Length()); m_positionOfCaret = end + 2; insertLetter = false; break; case ']': m_text = m_text.SubString(0, start - 1) + wxT("[") + m_text.SubString(start, end - 1) + wxT("]") + m_text.SubString(end, m_text.Length()); m_positionOfCaret = end + 2; insertLetter = false; break; default: // delete selection m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); m_positionOfCaret = start; break; } m_selectionEnd = m_selectionStart = -1; // reset selection } // end if (m_selectionStart > -1) // insert letter if we didnt insert brackets around selection if (insertLetter) { m_text = m_text.SubString(0, m_positionOfCaret - 1) + #if wxUSE_UNICODE event.GetUnicodeKey() + #else wxString::Format(wxT("%c"), ChangeNumpadToChar(event.GetKeyCode())) + #endif m_text.SubString(m_positionOfCaret, m_text.Length()); m_positionOfCaret++; if (m_matchParens) { #if wxUSE_UNICODE switch (event.GetUnicodeKey()) #else switch (event.GetKeyCode()) #endif { case '(': m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT(")") + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case '[': m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT("]") + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case '{': m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT("}") + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case '"': if (m_positionOfCaret < m_text.Length() && m_text.GetChar(m_positionOfCaret) == '"') m_text = m_text.SubString(0, m_positionOfCaret - 2)+ m_text.SubString(m_positionOfCaret, m_text.Length()); else m_text = m_text.SubString(0, m_positionOfCaret - 1) + wxT("\"") + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case ')': // jump over ')' if (m_positionOfCaret < m_text.Length() && m_text.GetChar(m_positionOfCaret) == ')') m_text = m_text.SubString(0, m_positionOfCaret - 2) + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case ']': // jump over ']' if (m_positionOfCaret < m_text.Length() && m_text.GetChar(m_positionOfCaret) == ']') m_text = m_text.SubString(0, m_positionOfCaret - 2) + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case '}': // jump over '}' if (m_positionOfCaret < m_text.Length() && m_text.GetChar(m_positionOfCaret) == '}') m_text = m_text.SubString(0, m_positionOfCaret - 2) + m_text.SubString(m_positionOfCaret, m_text.Length()); break; case '+': // case '-': // this could mean negative. case '*': case '/': case '^': case '=': case ',': wxChar key = event.GetKeyCode(); size_t len = m_text.Length(); if (m_insertAns && len == 1 && m_positionOfCaret == 1) { m_text = m_text.SubString(0, m_positionOfCaret - 2) + wxT("%") + m_text.SubString(m_positionOfCaret - 1, m_text.Length()); m_positionOfCaret += 1; } break; } } } // end if (insertLetter) break; } // end switch (event.GetKeyCode()) if (m_type == MC_TYPE_INPUT) FindMatchingParens(); if (m_isDirty) m_width = m_maxDrop = -1; m_displayCaret = true; } /** * For a given quotation mark ("), find a matching quote. * Since there are no nested quotes, an odd-numbered, non-escaped quote * is an opening quote, and an even-numbered non-escaped quote * is a closing quote. * * @return true if matching quotation marks were found; false otherwise */ bool EditorCell::FindMatchingQuotes() { int pos = m_positionOfCaret; if (pos < 0) { m_paren1 = m_paren2 = -1; return false; } if (pos == m_text.Length() || wxString(wxT("\"")).Find(m_text.GetChar(pos)) == -1) { pos--; if (pos < 0 || wxString(wxT("\"")).Find(m_text.GetChar(pos)) == -1) { m_paren1 = m_paren2 = -1; return false; } } int count = 0; for (int i = 0; i < (int) m_text.Length(); ++i) { if (m_text.GetChar(i) == '"' && ((i == 0) || (i >= 1 && m_text.GetChar(i-1) != '\\'))) { ++count; if (count&1) { m_paren1 = i; // open quote here } else { m_paren2 = i; // close quote here if (m_paren1 == pos || m_paren2 == pos) { // found the pair of quotes under the cursor return true; } } } } // didn't find matching quotes; do not highlight quotes m_paren1 = m_paren2 = -1; return false; } void EditorCell::FindMatchingParens() { if (FindMatchingQuotes()) { return; } m_paren2 = m_positionOfCaret; if (m_paren2 < 0) { m_paren1 = m_paren2 = -1; return; } if (m_paren2 == m_text.Length() || wxString(wxT("([{}])")).Find(m_text.GetChar(m_paren2)) == -1) { m_paren2--; if (m_paren2 < 0 || wxString(wxT("([{}])")).Find(m_text.GetChar(m_paren2)) == -1) { m_paren1 = m_paren2 = -1; return ; } } wxChar first = m_text.GetChar(m_paren2); wxChar second; int dir; switch (first) { case '(': second = ')'; dir = 1; break; case '[': second = ']'; dir = 1; break; case '{': second = '}'; dir = 1; break; case ')': second = '('; dir = -1; break; case ']': second = '['; dir = -1; break; case '}': second = '{'; dir = -1; break; default: return; } m_paren1 = m_paren2 + dir; int depth = 1; while (m_paren1 >= 0 && m_paren1 < (int)m_text.Length()) { if (m_text.GetChar(m_paren1) == second) depth--; else if (m_text.GetChar(m_paren1) == first) depth++; if (depth == 0) break; m_paren1 += dir; } if (m_paren1 < 0 || m_paren1 >= (int)m_text.Length()) m_paren1 = m_paren2 = -1; } #if wxUSE_UNICODE wxString EditorCell::InterpretEscapeString(wxString txt) { long int unicodeval = -1; if ((txt == wxT("a")) || (txt == wxT("alpha"))) return L"\x03B1"; else if ((txt == wxT("b")) || (txt == wxT("beta"))) return L"\x03B2"; else if ((txt == wxT("g")) || (txt == wxT("gamma"))) return L"\x03B3"; else if ((txt == wxT("d")) || (txt == wxT("delta"))) return L"\x03B4"; else if ((txt == wxT("e")) || (txt == wxT("epsilon"))) return L"\x03B5"; else if ((txt == wxT("z")) || (txt == wxT("zeta"))) return L"\x03B6"; else if ((txt == wxT("h")) || (txt == wxT("eta"))) return L"\x03B7"; else if ((txt == wxT("q")) || (txt == wxT("theta"))) return L"\x03B8"; else if ((txt == wxT("i")) || (txt == wxT("iota"))) return L"\x03B9"; else if ((txt == wxT("k")) || (txt == wxT("kappa"))) return L"\x03BA"; else if ((txt == wxT("l")) || (txt == wxT("lambda"))) return L"\x03BB"; else if ((txt == wxT("m")) || (txt == wxT("mu"))) return L"\x03BC"; else if ((txt == wxT("n")) || (txt == wxT("nu"))) return L"\x03BD"; else if ((txt == wxT("x")) || (txt == wxT("xi"))) return L"\x03BE"; else if ((txt == wxT("om")) || (txt == wxT("omicron"))) return L"\x03BF"; else if ((txt == wxT("p")) || (txt == wxT("pi"))) return L"\x03C0"; else if ((txt == wxT("r")) || (txt == wxT("rho"))) return L"\x03C1"; else if ((txt == wxT("s")) || (txt == wxT("sigma"))) return L"\x03C3"; else if ((txt == wxT("t")) || (txt == wxT("tau"))) return L"\x03C4"; else if ((txt == wxT("u")) || (txt == wxT("upsilon"))) return L"\x03C5"; else if ((txt == wxT("f")) || (txt == wxT("phi"))) return L"\x03C6"; else if ((txt == wxT("c")) || (txt == wxT("chi"))) return L"\x03C7"; else if ((txt == wxT("y")) || (txt == wxT("psi"))) return L"\x03C8"; else if ((txt == wxT("o")) || (txt == wxT("omega"))) return L"\x03C9"; else if (txt == wxT("Alpha")) return L"\x0391"; else if (txt == wxT("Beta")) return L"\x0392"; else if (txt == wxT("Gamma")) return L"\x0393"; else if (txt == wxT("Delta")) return L"\x0394"; else if (txt == wxT("Epsilon")) return L"\x0395"; else if (txt == wxT("Zeta")) return L"\x0396"; else if (txt == wxT("Eta")) return L"\x0397"; else if (txt == wxT("Theta")) return L"\x0398"; else if (txt == wxT("Iota")) return L"\x0399"; else if (txt == wxT("Kappa")) return L"\x039A"; else if (txt == wxT("Lambda")) return L"\x039B"; else if (txt == wxT("Mu")) return L"\x039C"; else if (txt == wxT("Nu")) return L"\x039D"; else if (txt == wxT("Xi")) return L"\x039E"; else if (txt == wxT("Omicron")) return L"\x039F"; else if (txt == wxT("Pi")) return L"\x03A0"; else if (txt == wxT("Rho")) return L"\x03A1"; else if (txt == wxT("Sigma")) return L"\x03A3"; else if (txt == wxT("Tau")) return L"\x03A4"; else if (txt == wxT("Upsilon")) return L"\x03A5"; else if (txt == wxT("Phi")) return L"\x03A6"; else if (txt == wxT("Chi")) return L"\x03A7"; else if (txt == wxT("Psi")) return L"\x03A8"; else if (txt == wxT("Omega")) return L"\x03A9"; ////////////////////////// else if (txt == wxT("2")) return L"\x00B2"; else if (txt == wxT("3")) return L"\x00B3"; else if (txt == wxT("/2")) return L"\x00BD"; else if (txt == wxT("sq")) return L"\x221A"; else if (txt == wxT("ii")) return L"\x2148"; else if (txt == wxT("ee")) return L"\x2147"; else if (txt == wxT("hb")) return L"\x210F"; else if (txt == wxT("in")) return L"\x2208"; else if (txt == wxT("impl")) return L"\x21D2"; else if (txt == wxT("inf")) return L"\x221e"; else if (txt == wxT("empty")) return L"\x2205"; else if (txt == wxT("TB")) return L"\x25b6"; else if (txt == wxT("tb")) return L"\x25b8"; else if (txt == wxT("and")) return L"\x22C0"; else if (txt == wxT("or")) return L"\x22C1"; else if (txt == wxT("xor")) return L"\x22BB"; else if (txt == wxT("nand")) return L"\x22BC"; else if (txt == wxT("nor")) return L"\x22BD"; else if (txt == wxT("implies") || txt == wxT("=>")) return L"\x21D2"; else if (txt == wxT("equiv") || txt == wxT("<=>")) return L"\x21D4"; else if (txt == wxT("not")) return L"\x00AC"; else if (txt == wxT("union")) return L"\x22C3"; else if (txt == wxT("inter")) return L"\x22C2"; else if (txt == wxT("subseteq")) return L"\x2286"; else if (txt == wxT("subset")) return L"\x2282"; else if (txt == wxT("notsubseteq")) return L"\x2288"; else if (txt == wxT("notsubset")) return L"\x2284"; ///////////////////////// else if (txt.ToLong(&unicodeval, 16)) return wxString::Format(wxT("%c"), unicodeval); ///////////////////////// else return wxEmptyString; } #endif bool EditorCell::ActivateCell() { m_isActive = !m_isActive; if (m_isActive) SaveValue(); m_displayCaret = true; m_hasFocus = true; m_selectionEnd = m_selectionStart = -1; m_paren1 = m_paren2 = -1; // upon activation unhide the parent groupcell if (m_isActive) { m_firstLineOnly = false; ((GroupCell *)GetParent())->Hide(false); if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); } return true; } bool EditorCell::AddEnding() { if (m_text.Left(5) == wxT(":lisp")) return false; wxString text = m_text.Trim(); if (text.Right(1) != wxT(";") && text.Right(1) != wxT("$")) { m_text += wxT(";"); m_paren1 = m_paren2 = m_width = -1; return true; } return false; } // // lines and columns are counted from zero // position of caret is pos if caret is just before the character // at position pos in m_text. // void EditorCell::PositionToXY(int position, int* x, int* y) { int col = 0, lin = 0; int pos = 0; while (pos < position) { if (m_text.GetChar(pos) == '\n') { col = 0, lin++; } else col++; pos++; } *x = col; *y = lin; } int EditorCell::XYToPosition(int x, int y) { int col = 0, lin = 0, pos = 0; while (pos < (int)m_text.Length() && lin < y) { if (m_text.GetChar(pos) == '\n') lin++; pos++; } while (pos < (int)m_text.Length() && col < x) { if (m_text.GetChar(pos) == '\n') break; pos++; col++; } return pos; } wxPoint EditorCell::PositionToPoint(CellParser& parser, int pos) { wxDC& dc = parser.GetDC(); SetFont(parser, m_fontSize); int x = m_currentPoint.x, y = m_currentPoint.y; int height, width; int cX, cY; wxString line = wxEmptyString; if (pos == -1) pos = m_positionOfCaret; if (x == -1 || y == -1) return wxPoint(-1, -1); PositionToXY(pos, &cX, &cY); if (cX > 0) line = GetLineString(cY, 0, cX); dc.GetTextExtent(line, &width, &height); x += width; y += m_charHeight * cY; return wxPoint(x, y); } void EditorCell::SelectPointText(wxDC& dc, wxPoint& point) { wxString s; int fontsize1 = m_fontSize; dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, m_fontStyle, m_fontWeight, m_underlined, m_fontName, m_fontEncoding)); m_selectionEnd = m_selectionStart = -1; wxPoint translate(point); translate.x -= m_currentPoint.x - 2; translate.y -= m_currentPoint.y - 2 - m_center; int lin = translate.y / m_charHeight; int width, height; int lineStart = XYToPosition(0, lin); m_positionOfCaret = lineStart; while (m_positionOfCaret < (signed)m_text.Length() && m_text.GetChar(m_positionOfCaret) != '\n') { s = m_text.SubString(lineStart, m_positionOfCaret); dc.GetTextExtent(m_text.SubString(lineStart, m_positionOfCaret), &width, &height); if (width > translate.x) break; m_positionOfCaret++; } m_positionOfCaret = MIN(m_positionOfCaret, (signed)m_text.Length()); m_displayCaret = true; m_caretColumn = -1; if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); } void EditorCell::SelectRectText(wxDC &dc, wxPoint& one, wxPoint& two) { SelectPointText(dc, one); long start = m_positionOfCaret; SelectPointText(dc, two); m_selectionEnd = m_positionOfCaret; m_selectionStart = start; m_paren2 = m_paren1 = -1; m_caretColumn = -1; if (m_selectionStart == m_selectionEnd) { m_selectionStart = -1; m_selectionEnd = -1; } } // IsPointInSelection // Return true if coordinates "point" fall into selection // If they don't or there is no selection it returns false bool EditorCell::IsPointInSelection(wxDC& dc, wxPoint point) { if ((m_selectionStart == -1) || (m_selectionEnd == -1) || (m_isActive == false)) return false; wxRect rect = GetRect(); if (!rect.Contains(point)) return false; wxString s; int fontsize1 = m_fontSize; dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, m_fontStyle, m_fontWeight, m_underlined, m_fontName, m_fontEncoding)); wxPoint translate(point); translate.x -= m_currentPoint.x - 2; translate.y -= m_currentPoint.y - 2 - m_center; int lin = translate.y / m_charHeight; int width, height; int lineStart = XYToPosition(0, lin); int positionOfCaret = lineStart; while (m_text.GetChar(positionOfCaret) != '\n' && positionOfCaret < (signed)m_text.Length()) { s = m_text.SubString(lineStart, positionOfCaret); dc.GetTextExtent(m_text.SubString(lineStart, positionOfCaret), &width, &height); if (width > translate.x) break; positionOfCaret++; } positionOfCaret = MIN(positionOfCaret, (signed)m_text.Length()); if ((m_selectionStart >= positionOfCaret) || (m_selectionEnd <= positionOfCaret)) return false; return true; } // DivideAtCaret // returns the string from caret to end and // modifies the m_text so it contains only the string // from beginning to caret // Used for 'Divide Cell', called from MathCtrl wxString EditorCell::DivideAtCaret() { wxString original = m_text; m_containsChanges = true; m_text = m_text.SubString(0, m_positionOfCaret - 1); ResetSize(); GetParent()->ResetSize(); return original.SubString(m_positionOfCaret, original.Length()); } void EditorCell::CommentSelection() { if ((m_selectionStart == -1) || (m_selectionEnd == -1)) return; m_containsChanges = true; m_isDirty = true; m_text = m_text.SubString(0, m_selectionStart - 1) + wxT("/*") + m_text.SubString(m_selectionStart, m_selectionEnd - 1) + wxT("*/") + m_text.SubString(m_selectionEnd, m_text.Length()); m_positionOfCaret = MIN(m_selectionEnd + 4, (signed)m_text.Length()); m_selectionStart = m_selectionEnd = -1; } /*** * SelectWordUnderCaret * - called from MathCtrl::OnDoubleClick, MathCtrl::Autocomplete and wxMaxima::HelpMenu * Selects word under cursor (aA-zZ, 0-9, %, _, count) or * the inside of brackets using m_paren1 and m_paren2 if available and selectParens is true. * Returns the selected string if selected a word succesfully - used for F1 help and * MathCtrl::Autocomplete. */ wxString EditorCell::SelectWordUnderCaret(bool selectParens, bool toRight) { if (selectParens && (m_paren1 != -1) && (m_paren2 != -1)) { m_selectionStart = MIN(m_paren1,m_paren2) + 1; m_selectionEnd = MAX(m_paren1, m_paren2); m_positionOfCaret = m_selectionEnd; return wxT("%"); } wxString wordChars = wxT("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890_%"); long left = m_positionOfCaret, right = m_positionOfCaret; while (left > 0) { if (wordChars.Find(m_text.GetChar(left-1)) == -1) break; left--; } if (toRight) { while (right < (signed)m_text.length() ) { if(wordChars.Find(m_text.GetChar(right)) == -1) break; right++; } } if (left != right) { m_selectionStart = left; m_selectionEnd = right; m_positionOfCaret = m_selectionEnd; return m_text.SubString(m_selectionStart, m_selectionEnd - 1); } return wxString(wxT("%")); } bool EditorCell::CopyToClipboard() { if (m_selectionStart == -1) return false; if (wxTheClipboard->Open()) { long start = MIN(m_selectionStart, m_selectionEnd); long end = MAX(m_selectionStart, m_selectionEnd) - 1; wxString s = m_text.SubString(start, end); wxTheClipboard->SetData(new wxTextDataObject(s)); wxTheClipboard->Close(); } return true; } bool EditorCell::CutToClipboard() { if (m_selectionStart == -1) return false; SaveValue(); m_saveValue = true; m_containsChanges = true; CopyToClipboard(); long start = MIN(m_selectionStart, m_selectionEnd); long end = MAX(m_selectionStart, m_selectionEnd); m_positionOfCaret = start; m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); m_selectionEnd = m_selectionStart = -1; m_paren1 = m_paren2 = -1; m_width = m_height = m_maxDrop = m_center = -1; return true; } void EditorCell::InsertText(wxString text) { SaveValue(); m_saveValue = true; m_containsChanges = true; if (m_selectionStart > -1) { long start = MIN(m_selectionStart, m_selectionEnd); long end = MAX(m_selectionStart, m_selectionEnd); m_positionOfCaret = start; m_text = m_text.SubString(0, start - 1) + m_text.SubString(end, m_text.Length()); } m_text = m_text.SubString(0, m_positionOfCaret - 1) + text + m_text.SubString(m_positionOfCaret, m_text.Length()); m_positionOfCaret += text.Length(); if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); m_width = m_height = m_maxDrop = m_center = -1; } void EditorCell::PasteFromClipboard(bool primary) { if (primary) wxTheClipboard->UsePrimarySelection(true); if (wxTheClipboard->Open()) { if (wxTheClipboard->IsSupported(wxDF_TEXT)) { wxTextDataObject obj; wxTheClipboard->GetData(obj); InsertText(obj.GetText()); } wxTheClipboard->Close(); } if (primary) wxTheClipboard->UsePrimarySelection(false); } wxString EditorCell::GetLineString(int line, int start, int end) { if (start >= end) return wxEmptyString; int posStart = 0, posEnd = 0; posStart = XYToPosition(start, line); if (end == -1) { posEnd = XYToPosition(0, line+1); posEnd--; } else posEnd = XYToPosition(end, line); return m_text.SubString(posStart, posEnd - 1); } bool EditorCell::CanUndo() { return m_textHistory.GetCount()>0 && m_historyPosition != 0; } void EditorCell::Undo() { if (m_historyPosition == -1) { m_historyPosition = m_textHistory.GetCount()-1; m_textHistory.Add(m_text); m_startHistory.push_back(m_selectionStart); m_endHistory.push_back(m_selectionEnd); m_positionHistory.push_back(m_positionOfCaret); } else m_historyPosition--; if (m_historyPosition == -1) return ; m_text = m_textHistory.Item(m_historyPosition); m_positionOfCaret = m_positionHistory[m_historyPosition]; m_selectionStart = m_startHistory[m_historyPosition]; m_selectionEnd = m_endHistory[m_historyPosition]; m_paren1 = m_paren2 = -1; m_isDirty = true; m_width = m_height = m_maxDrop = m_center = -1; } bool EditorCell::CanRedo() { return m_textHistory.GetCount()>0 && m_historyPosition >= 0 && m_historyPosition < m_textHistory.GetCount()-1; } void EditorCell::Redo() { if (m_historyPosition == -1) return; m_historyPosition++; if (m_historyPosition >= m_textHistory.GetCount()) return ; m_text = m_textHistory.Item(m_historyPosition); m_positionOfCaret = m_positionHistory[m_historyPosition]; m_selectionStart = m_startHistory[m_historyPosition]; m_selectionEnd = m_endHistory[m_historyPosition]; m_paren1 = m_paren2 = -1; m_isDirty = true; m_width = m_height = m_maxDrop = m_center = -1; } void EditorCell::SaveValue() { if (m_textHistory.GetCount()>0) { if (m_textHistory.Last() == m_text) return ; } if (m_historyPosition != -1) { int len = m_textHistory.GetCount() - m_historyPosition; m_textHistory.RemoveAt(m_historyPosition, len); m_startHistory.erase(m_startHistory.begin() + m_historyPosition, m_startHistory.end()); m_endHistory.erase(m_endHistory.begin() + m_historyPosition, m_endHistory.end()); m_positionHistory.erase(m_positionHistory.begin() + m_historyPosition, m_positionHistory.end()); } m_textHistory.Add(m_text); m_startHistory.push_back(m_selectionStart); m_endHistory.push_back(m_selectionEnd); m_positionHistory.push_back(m_positionOfCaret); m_historyPosition = -1; } void EditorCell::ClearUndo() { m_textHistory.Clear(); m_startHistory.clear(); m_endHistory.clear(); m_positionHistory.clear(); m_historyPosition = -1; } void EditorCell::SetValue(wxString text) { if (m_type == MC_TYPE_INPUT) { if (m_matchParens) { if (text == wxT("(")) { m_text = wxT("()"); m_positionOfCaret = 1; } else if (text == wxT("[")) { m_text = wxT("[]"); m_positionOfCaret = 1; } else if (text == wxT("{")) { m_text = wxT("{}"); m_positionOfCaret = 1; } else if (text == wxT("\"")) { m_text = wxT("\"\""); m_positionOfCaret = 1; } else { m_text = text; m_positionOfCaret = m_text.Length(); } } else { m_text = text; m_positionOfCaret = m_text.Length(); } if (m_insertAns) { if (m_text == wxT("+") || m_text == wxT("*") || m_text == wxT("/") || m_text == wxT("^") || m_text == wxT("=") || m_text == wxT(",")) { m_text = wxT("%") + m_text; m_positionOfCaret = m_text.Length(); } } } else { m_text = text; m_positionOfCaret = m_text.Length(); } FindMatchingParens(); m_containsChanges = true; } bool EditorCell::CheckChanges() { if (m_containsChanges != m_containsChangesCheck) { m_containsChangesCheck = m_containsChanges; return true; } return false; } int EditorCell::ReplaceAll(wxString oldString, wxString newString) { SaveValue(); int count = m_text.Replace(oldString, newString); if (count > 0) { m_containsChanges = true; m_selectionStart = m_selectionEnd = -1; } return count; } bool EditorCell::FindNext(wxString str, bool down, bool ignoreCase) { int start = down ? 0 : m_text.Length(); wxString text(m_text); if (ignoreCase) { str.MakeLower(); text.MakeLower(); } if (m_selectionStart >= 0) { if (down) start = m_selectionStart + 1; else start = m_selectionStart - 1; } else if (m_isActive) start = m_positionOfCaret; if (!down && m_selectionStart == 0) return false; int strStart = wxNOT_FOUND; if (down) strStart = text.find(str, start); else strStart = text.rfind(str, start); if (strStart != wxNOT_FOUND) { m_selectionStart = strStart; m_selectionEnd = strStart + str.Length(); return true; } return false; } bool EditorCell::ReplaceSelection(wxString oldStr, wxString newStr) { if (m_selectionStart > -1 && m_text.SubString(m_selectionStart, m_selectionEnd - 1) == oldStr) { m_text = m_text.SubString(0, m_selectionStart - 1) + newStr + m_text.SubString(m_selectionEnd, m_text.Length()); m_containsChanges = -1; m_positionOfCaret = m_selectionEnd = m_selectionStart + newStr.Length(); if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); return true; } return false; } wxString EditorCell::GetSelectionString() { if (m_selectionStart == -1 || m_selectionEnd == -1) return wxEmptyString; return m_text.SubString(m_selectionStart, m_selectionEnd-1); } void EditorCell::ClearSelection() { if (m_selectionStart == -1 || m_selectionEnd == -1) return; m_positionOfCaret = m_selectionEnd; m_selectionStart = m_selectionEnd = -1; } /*** * FindNextTemplate selects the next template * of moves the cursor behind the first closing * paren in the current line. */ bool EditorCell::FindNextTemplate(bool left) { wxRegEx varsRegex; if (left) varsRegex.Compile(wxT("(<[^> \n]+>)[^>]*$")); else varsRegex.Compile(wxT("(<[^> \n]+>)")); int positionOfCaret = m_positionOfCaret; if (!left && m_selectionEnd != -1) positionOfCaret = m_selectionEnd; // Splits the string into first (from caret in the direction of search) // and second (the rest of the string) wxString first, second; if (left) { first = m_text.Mid(0, positionOfCaret); second = m_text.Mid(positionOfCaret); } else { first = m_text.Mid(positionOfCaret); second = m_text.Mid(0, positionOfCaret); } size_t start, length; // First search in the direction of search if (varsRegex.Matches(first)) { varsRegex.GetMatch(&start, &length, 1); if (left) m_positionOfCaret = m_selectionStart = start; else m_positionOfCaret = m_selectionStart = positionOfCaret + start; m_selectionEnd = m_selectionStart + length; return true; } // Then in the rest of the string if (varsRegex.Matches(second)) { varsRegex.GetMatch(&start, &length, 1); if (!left) m_positionOfCaret = m_selectionStart = start; else m_positionOfCaret = m_selectionStart = positionOfCaret + start; m_selectionEnd = m_selectionStart + length; return true; } return false; } void EditorCell::CaretToEnd() { m_positionOfCaret = m_text.Length(); if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); } void EditorCell::CaretToStart() { m_positionOfCaret = 0; if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); } void EditorCell::CaretToPosition(int pos) { m_positionOfCaret = pos; if (GetType() == MC_TYPE_INPUT) FindMatchingParens(); } wxMaxima-13.04.2/src/EditorCell.h000644 000765 000024 00000011552 12073007012 017044 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2006-2011 Andrej Vodopivec /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _EDITOR_CELL_H #define _EDITOR_CELL_H #include "MathCell.h" #include class EditorCell : public MathCell { public: EditorCell(); ~EditorCell(); void Destroy(); MathCell* Copy(bool all); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); void SetFont(CellParser& parser, int fontsize); void SetForeground(CellParser& parser); void SetValue(wxString text); wxString GetValue() { return m_text; } void Reset(); void ProcessEvent(wxKeyEvent& event); bool ActivateCell(); bool AddEnding(); void PositionToXY(int pos, int* line, int* col); int XYToPosition(int x, int y); wxPoint PositionToPoint(CellParser& parser, int pos = -1); void SelectPointText(wxDC &dc, wxPoint& point); void SelectRectText(wxDC &dc, wxPoint& one, wxPoint& two); wxString SelectWordUnderCaret(bool selectParens = true, bool toRight = true); bool IsPointInSelection(wxDC& dc, wxPoint point); bool CopyToClipboard(); bool CutToClipboard(); void PasteFromClipboard(bool primary = false); void SelectAll() { m_selectionStart = 0; m_selectionEnd = m_positionOfCaret = m_text.Length(); } bool CanCopy() { return m_selectionStart != -1; } void SetMatchParens(bool match) { m_matchParens = match; } void SetInsertAns(bool insertAns) { m_insertAns = insertAns; } bool FindMatchingQuotes(); void FindMatchingParens(); wxString GetLineString(int line, int start = 0, int end = -1); bool IsDirty() { return m_isDirty; } void SwitchCaretDisplay() { m_displayCaret = !m_displayCaret; } void SetFocus(bool focus) { m_hasFocus = focus; } void SetFirstLineOnly(bool show = true) { if (m_firstLineOnly != show) { m_width = m_height = -1; m_firstLineOnly = show; }} bool IsActive() { return m_isActive; } bool CaretAtStart() { return m_positionOfCaret == 0; } void CaretToStart(); bool CaretAtEnd() { return m_positionOfCaret == (signed)m_text.Length(); } void CaretToEnd(); void CaretToPosition(int pos); bool CanUndo(); void Undo(); bool CanRedo(); void Redo(); void SaveValue(); wxString DivideAtCaret(); void CommentSelection(); void ClearUndo(); bool ContainsChanges() { return m_containsChanges; } void ContainsChanges(bool changes) { m_containsChanges = m_containsChangesCheck = changes; } bool CheckChanges(); int ReplaceAll(wxString oldString, wxString newString); bool FindNext(wxString str, bool down, bool ignoreCase); void SetSelection(int start, int end) { m_selectionStart = start; m_positionOfCaret = m_selectionEnd = end; } void GetSelection(int *start, int *end) { *start = m_selectionStart; *end = m_selectionEnd; } bool ReplaceSelection(wxString oldStr, wxString newString); wxString GetSelectionString(); void ClearSelection(); int GetCaretPosition() { return m_positionOfCaret; } bool FindNextTemplate(bool left = false); void InsertText(wxString text); private: #if wxUSE_UNICODE wxString InterpretEscapeString(wxString txt); #endif wxString m_text; wxArrayString m_textHistory; std::vector m_positionHistory; std::vector m_startHistory; std::vector m_endHistory; size_t m_historyPosition; // int m_oldPosition; int m_positionOfCaret; int m_caretColumn; long m_selectionStart; long m_selectionEnd; // long m_oldStart, m_oldEnd; int m_numberOfLines; bool m_isActive; int m_fontSize; int m_charWidth; int m_charHeight; bool m_matchParens; int m_paren1, m_paren2; bool m_insertAns; bool m_isDirty; bool m_displayCaret; bool m_hasFocus; int m_fontStyle; wxFontWeight m_fontWeight; bool m_underlined; wxString m_fontName; wxFontEncoding m_fontEncoding; bool m_saveValue; bool m_containsChanges; bool m_containsChangesCheck; bool m_firstLineOnly; }; #endif wxMaxima-13.04.2/src/EvaluationQueue.cpp000644 000765 000024 00000004671 12065554640 020510 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2009 Ziga Lenarcic /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "EvaluationQueue.h" EvaluationQueueElement::EvaluationQueueElement(GroupCell* gr) { group = gr; next = NULL; } EvaluationQueue::EvaluationQueue() { m_queue = NULL; m_last = NULL; } bool EvaluationQueue::IsInQueue(GroupCell* gr) { EvaluationQueueElement* tmp = m_queue; while (tmp != NULL) { if (tmp->group == gr) return true; tmp = tmp->next; } return false; } void EvaluationQueue::AddToQueue(GroupCell* gr) { if (gr->GetGroupType() != GC_TYPE_CODE || gr->GetEditable() == NULL) // dont add cells which can't be evaluated return; EvaluationQueueElement* newelement = new EvaluationQueueElement(gr); if (m_last == NULL) m_queue = m_last = newelement; else { m_last->next = newelement; m_last = newelement; } } /** * Add the tree of hidden cells to the EQ by recursively adding cells' * hidden branches to the EQ. */ void EvaluationQueue::AddHiddenTreeToQueue(GroupCell* gr) { if (gr == NULL) return; // caller should check, but just in case GroupCell* cell = gr->GetHiddenTree(); while (cell != NULL) { AddToQueue((GroupCell*) cell); AddHiddenTreeToQueue(cell); cell = dynamic_cast(cell->m_next); } } void EvaluationQueue::RemoveFirst() { if (m_queue == NULL) return; // shouldn't happen EvaluationQueueElement* tmp = m_queue; if (m_queue == m_last) { m_queue = m_last = NULL; } else m_queue = m_queue->next; delete tmp; } GroupCell* EvaluationQueue::GetFirst() { if (m_queue != NULL) return m_queue->group; else return NULL; // queu is empty } wxMaxima-13.04.2/src/EvaluationQueue.h000644 000765 000024 00000003132 12065554640 020144 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2009 Ziga Lenarcic /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef EVALUATIONQUEUE_H_ #define EVALUATIONQUEUE_H_ #include "GroupCell.h" class EvaluationQueueElement { public: EvaluationQueueElement(GroupCell* gr); ~EvaluationQueueElement() { } GroupCell* group; EvaluationQueueElement* next; }; // A simple FIFO queue with manual removal of elements class EvaluationQueue { public: EvaluationQueue(); ~EvaluationQueue() {}; bool IsInQueue(GroupCell* gr); void AddToQueue(GroupCell* gr); void AddHiddenTreeToQueue(GroupCell* gr); void RemoveFirst(); GroupCell* GetFirst(); bool Empty() { return m_queue == NULL; } private: EvaluationQueueElement* m_queue; EvaluationQueueElement* m_last; }; #endif /* EVALUATIONQUEUE_H_ */ wxMaxima-13.04.2/src/ExptCell.cpp000644 000765 000024 00000015531 11705765322 017112 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "ExptCell.h" #include "TextCell.h" #define EXPT_DEC 2 ExptCell::ExptCell() : MathCell() { m_baseCell = NULL; m_powCell = NULL; m_isMatrix = false; m_exp = new TextCell(wxT("^")); m_open = new TextCell(wxT("(")); m_close = new TextCell(wxT(")")); } ExptCell::~ExptCell() { if (m_baseCell != NULL) delete m_baseCell; if (m_powCell != NULL) delete m_powCell; if (m_next != NULL) delete m_next; delete m_exp; delete m_open; delete m_close; } void ExptCell::SetParent(MathCell *parent, bool all) { if (m_baseCell != NULL) m_baseCell->SetParent(parent, true); if (m_powCell != NULL) m_powCell->SetParent(parent, true); if (m_open != NULL) m_open->SetParent(parent, true); if (m_close != NULL) m_close->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* ExptCell::Copy(bool all) { ExptCell* tmp = new ExptCell; CopyData(this, tmp); tmp->SetBase(m_baseCell->Copy(true)); tmp->SetPower(m_powCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void ExptCell::Destroy() { if (m_baseCell != NULL) delete m_baseCell; if (m_powCell != NULL) delete m_powCell; m_baseCell = NULL; m_powCell = NULL; m_next = NULL; } void ExptCell::SetPower(MathCell *power) { if (power == NULL) return ; if (m_powCell != NULL) delete m_powCell; m_powCell = power; if (!m_powCell->IsCompound()) { m_open->m_isHidden = true; m_close->m_isHidden = true; } m_last2 = power; while (m_last2->m_next != NULL) m_last2 = m_last2->m_next; } void ExptCell::SetBase(MathCell *base) { if (base == NULL) return ; if (m_baseCell != NULL) delete m_baseCell; m_baseCell = base; m_last1 = base; while (m_last1->m_next != NULL) m_last1 = m_last1->m_next; } void ExptCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateWidths(parser, fontsize, true); if (m_isBroken) m_powCell->RecalculateWidths(parser, fontsize, true); else m_powCell->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - EXPT_DEC), true); m_width = m_baseCell->GetFullWidth(scale) + m_powCell->GetFullWidth(scale) - SCALE_PX(MC_TEXT_PADDING, scale); m_exp->RecalculateWidths(parser, fontsize, true); m_open->RecalculateWidths(parser, fontsize, true); m_close->RecalculateWidths(parser, fontsize, true); MathCell::RecalculateWidths(parser, fontsize, all); } void ExptCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateSize(parser, fontsize, true); if (m_isBroken) m_powCell->RecalculateSize(parser, fontsize, true); else m_powCell->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - EXPT_DEC), true); m_height = m_baseCell->GetMaxHeight() + m_powCell->GetMaxHeight() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_center = m_powCell->GetMaxHeight() + m_baseCell->GetMaxCenter() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_exp->RecalculateSize(parser, fontsize, true); m_open->RecalculateSize(parser, fontsize, true); m_close->RecalculateSize(parser, fontsize, true); MathCell::RecalculateSize(parser, fontsize, all); } void ExptCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxPoint bs, pw; bs.x = point.x; bs.y = point.y; m_baseCell->Draw(parser, bs, fontsize, true); pw.x = point.x + m_baseCell->GetFullWidth(scale) - SCALE_PX(MC_TEXT_PADDING, scale); pw.y = point.y - m_baseCell->GetMaxCenter() - m_powCell->GetMaxHeight() + m_powCell->GetMaxCenter() + SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_powCell->Draw(parser, pw, MAX(MC_MIN_SIZE, fontsize - EXPT_DEC), true); } MathCell::Draw(parser, point, fontsize, all); } wxString ExptCell::ToString(bool all) { if (m_isBroken) return wxEmptyString; wxString s = m_baseCell->ToString(true) + wxT("^"); if (m_isMatrix) s += wxT("^"); if (m_powCell->IsCompound()) s += wxT("(") + m_powCell->ToString(true) + wxT(")"); else s += m_powCell->ToString(true); s += MathCell::ToString(all); return s; } wxString ExptCell::ToTeX(bool all) { if (m_isBroken) return wxEmptyString; wxString s = wxT("{") + m_baseCell->ToTeX(true) + wxT("}^{") + m_powCell->ToTeX(true) + wxT("}"); s += MathCell::ToTeX(all); return s; } wxString ExptCell::GetDiffPart() { wxString s(wxT(",")); if (m_baseCell != NULL) s += m_baseCell->ToString(true); s += wxT(","); if (m_powCell != NULL) s += m_powCell->ToString(true); return s; } wxString ExptCell::ToXML(bool all) { if (m_isBroken) return wxEmptyString; return _T("") + m_baseCell->ToXML(true) + _T("") + m_powCell->ToXML(true) + _T("") + MathCell::ToXML(all); } void ExptCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_powCell->ContainsRect(rect)) m_powCell->SelectRect(rect, first, last); else if (m_baseCell->ContainsRect(rect)) m_baseCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } bool ExptCell::BreakUp() { if (!m_isBroken) { m_isBroken = true; m_baseCell->m_previousToDraw = this; m_last1->m_nextToDraw = m_exp; m_exp->m_previousToDraw = m_last1; m_exp->m_nextToDraw = m_open; m_open->m_previousToDraw = m_exp; m_open->m_nextToDraw = m_powCell; m_powCell->m_previousToDraw = m_open; m_last2->m_nextToDraw = m_close; m_close->m_previousToDraw = m_last2; m_close->m_nextToDraw = m_nextToDraw; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = m_close; m_nextToDraw = m_baseCell; return true; } return false; } void ExptCell::Unbreak(bool all) { if (m_isBroken) { m_baseCell->Unbreak(true); m_powCell->Unbreak(true); } MathCell::Unbreak(all); } wxMaxima-13.04.2/src/ExptCell.h000644 000765 000024 00000003370 11705765322 016555 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _EXPTCELL_H_ #define _EXPTCELL_H_ #include "MathCell.h" class ExptCell : public MathCell { public: ExptCell(); ~ExptCell(); MathCell* Copy(bool all); void Destroy(); void SetBase(MathCell *base); void SetPower(MathCell *power); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new! wxString GetDiffPart(); void SelectInner(wxRect& rect, MathCell **first, MathCell **last); void IsMatrix(bool isMatrix) { m_isMatrix = isMatrix; } bool BreakUp(); void Unbreak(bool all); void SetParent(MathCell *parent, bool all); protected: MathCell *m_baseCell, *m_powCell; MathCell *m_open, *m_close, *m_exp, *m_last1, *m_last2; bool m_isMatrix; }; #endif //_EXPTCELL_H_ wxMaxima-13.04.2/src/FracCell.cpp000644 000765 000024 00000025146 11705765322 017050 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "FracCell.h" #include "TextCell.h" #define FRAC_DEC 1 FracCell::FracCell() : MathCell() { m_num = NULL; m_denom = NULL; m_fracStyle = FC_NORMAL; m_exponent = false; m_open1 = NULL; m_close1 = NULL; m_open2 = NULL; m_close2 = NULL; m_divide = NULL; } void FracCell::SetParent(MathCell *parent, bool all) { if (m_num != NULL) m_num->SetParent(parent, true); if (m_denom != NULL) m_denom->SetParent(parent, true); if (m_open1 != NULL) m_open1->SetParent(parent, true); if (m_close1 != NULL) m_close2->SetParent(parent, true); if (m_open2 != NULL) m_open2->SetParent(parent, true); if (m_close2 != NULL) m_close2->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* FracCell::Copy(bool all) { FracCell* tmp = new FracCell; CopyData(this, tmp); tmp->SetNum(m_num->Copy(true)); tmp->SetDenom(m_denom->Copy(true)); tmp->m_fracStyle = m_fracStyle; tmp->m_exponent = m_exponent; tmp->SetupBreakUps(); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } FracCell::~FracCell() { if (m_num != NULL) delete m_num; if (m_denom != NULL) delete m_denom; if (m_next != NULL) delete m_next; } void FracCell::Destroy() { if (m_num != NULL) delete m_num; if (m_denom != NULL) delete m_denom; m_num = NULL; m_denom = NULL; m_next = NULL; delete m_open1; delete m_open2; delete m_close1; delete m_close2; delete m_divide; } void FracCell::SetNum(MathCell *num) { if (num == NULL) return ; if (m_num != NULL) delete m_num; m_num = num; } void FracCell::SetDenom(MathCell *denom) { if (denom == NULL) return ; if (m_denom != NULL) delete m_denom; m_denom = denom; } void FracCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); if (m_isBroken || m_exponent) { m_num->RecalculateWidths(parser, fontsize, true); m_denom->RecalculateWidths(parser, fontsize, true); } else { m_num->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - FRAC_DEC), true); m_denom->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - FRAC_DEC), true); } if (m_exponent && !m_isBroken) { wxDC& dc = parser.GetDC(); int height; int fontsize1 = (int) ((double)(fontsize) * scale + 0.5); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetFontName(TS_VARIABLE))); dc.GetTextExtent(wxT("/"), &m_expDivideWidth, &height); m_width = m_num->GetFullWidth(scale) + m_denom->GetFullWidth(scale) + m_expDivideWidth; } else { m_width = MAX(m_num->GetFullWidth(scale), m_denom->GetFullWidth(scale)); } m_open1->RecalculateWidths(parser, fontsize, false); m_close1->RecalculateWidths(parser, fontsize, false); m_open2->RecalculateWidths(parser, fontsize, false); m_close2->RecalculateWidths(parser, fontsize, false); m_divide->RecalculateWidths(parser, fontsize, false); MathCell::RecalculateWidths(parser, fontsize, all); } void FracCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); if (m_isBroken || m_exponent) { m_num->RecalculateSize(parser, fontsize, true); m_denom->RecalculateSize(parser, fontsize, true); } else { m_num->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - FRAC_DEC), true); m_denom->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - FRAC_DEC), true); } if (!m_exponent) { m_height = m_num->GetMaxHeight() + m_denom->GetMaxHeight() + SCALE_PX(4, scale); m_center = m_num->GetMaxHeight() + SCALE_PX(2, scale); } else { m_height = m_num->GetMaxHeight(); m_center = m_height / 2; } m_open1->RecalculateSize(parser, fontsize, false); m_close1->RecalculateSize(parser, fontsize, false); m_open2->RecalculateSize(parser, fontsize, false); m_close2->RecalculateSize(parser, fontsize, false); m_divide->RecalculateSize(parser, fontsize, false); MathCell::RecalculateSize(parser, fontsize, all); } void FracCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); wxPoint num, denom; if (m_exponent && !m_isBroken) { double scale = parser.GetScale(); num.x = point.x; num.y = point.y; denom.x = point.x + m_num->GetFullWidth(scale) + m_expDivideWidth; denom.y = num.y; m_num->Draw(parser, num, fontsize, true); m_denom->Draw(parser, denom, fontsize, true); int fontsize1 = (int) ((double)(fontsize) * scale + 0.5); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetFontName(TS_VARIABLE))); dc.DrawText(wxT("/"), point.x + m_num->GetFullWidth(scale), point.y - m_num->GetMaxCenter() + SCALE_PX(MC_TEXT_PADDING, scale)); } else { num.x = point.x + (m_width - m_num->GetFullWidth(scale)) / 2; num.y = point.y - m_num->GetMaxHeight() + m_num->GetMaxCenter() - SCALE_PX(2, scale); m_num->Draw(parser, num, MAX(MC_MIN_SIZE, fontsize - FRAC_DEC), true); denom.x = point.x + (m_width - m_denom->GetFullWidth(scale)) / 2; denom.y = point.y + m_denom->GetMaxCenter() + SCALE_PX(2, scale); m_denom->Draw(parser, denom, MAX(MC_MIN_SIZE, fontsize - FRAC_DEC), true); SetPen(parser); if (m_fracStyle != FC_CHOOSE) dc.DrawLine(point.x, point.y, point.x + m_width, point.y); UnsetPen(parser); } } MathCell::Draw(parser, point, fontsize, all); } wxString FracCell::ToString(bool all) { wxString s; if (!m_isBroken) { if (m_fracStyle == FC_NORMAL) { if (m_num->IsCompound()) s += wxT("(") + m_num->ToString(true) + wxT(")/"); else s += m_num->ToString(true) + wxT("/"); if (m_denom->IsCompound()) s += wxT("(") + m_denom->ToString(true) + wxT(")"); else s += m_denom->ToString(true); } else if (m_fracStyle == FC_CHOOSE) { s = wxT("binomial(") + m_num->ToString(true) + wxT(",") + m_denom->ToString(true) + wxT(")"); } else { MathCell* tmp = m_denom; while (tmp != NULL) { tmp = tmp->m_next; // Skip the d if (tmp == NULL) break; tmp = tmp->m_next; // Skip the * if (tmp == NULL) break; s += tmp->GetDiffPart(); tmp = tmp->m_next; // Skip the * if (tmp == NULL) break; tmp = tmp->m_next; } } } if (m_fracStyle == FC_NORMAL) s += MathCell::ToString(all); return s; } wxString FracCell::ToTeX(bool all) { wxString s; if (!m_isBroken) { if (m_fracStyle == FC_CHOOSE) { s = wxT("\\begin{pmatrix}") + m_num->ToTeX(true) + wxT("\\cr ") + m_denom->ToTeX(true) + wxT("\\end{pmatrix}"); } else { s = wxT("\\frac{") + m_num->ToTeX(true) + wxT("}{") + m_denom->ToTeX(true) + wxT("}"); } } if (m_fracStyle == FC_NORMAL) s += MathCell::ToTeX(all); return s; } wxString FracCell::ToXML(bool all) { if( m_isBroken ) return wxEmptyString; wxString s = ( m_fracStyle == FC_NORMAL || m_fracStyle == FC_DIFF )? _T("f"): _T("f line = \"no\""); return _T("<") + s + _T(">") + m_num->ToXML(true) + _T("") + m_denom->ToXML(true) + _T("") + MathCell::ToXML(all); } void FracCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_num->ContainsRect(rect)) m_num->SelectRect(rect, first, last); else if (m_denom->ContainsRect(rect)) m_denom->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } void FracCell::SetExponentFlag() { if (m_num->IsShortNum() && m_denom->IsShortNum()) m_exponent = true; } void FracCell::SetupBreakUps() { if (m_fracStyle == FC_NORMAL) { m_open1 = new TextCell(wxT("(")); m_close1 = new TextCell(wxT(")")); m_open2 = new TextCell(wxT("(")); m_close2 = new TextCell(wxT(")")); if (!m_num->IsCompound()) { m_open1->m_isHidden = true; m_close1->m_isHidden = true; } if (!m_denom->IsCompound()) { m_open2->m_isHidden = true; m_close2->m_isHidden = true; } m_divide = new TextCell(wxT("/")); } else { m_open1 = new TextCell(wxT("binomial(")); m_close1 = new TextCell(wxT("x")); m_open2 = new TextCell(wxT("x")); m_close2 = new TextCell(wxT(")")); m_divide = new TextCell(wxT(",")); m_close1->m_isHidden = true; m_open2->m_isHidden = true; } m_last1 = m_num; while (m_last1->m_next != NULL) m_last1 = m_last1->m_next; m_last2 = m_denom; while (m_last2->m_next != NULL) m_last2 = m_last2->m_next; } bool FracCell::BreakUp() { if (m_fracStyle == FC_DIFF) return false; if (!m_isBroken) { m_isBroken = true; m_open1->m_previousToDraw = this; m_open1->m_nextToDraw = m_num; m_num->m_previousToDraw = m_open1; m_last1->m_nextToDraw = m_close1; m_close1->m_previousToDraw = m_last1; m_close1->m_nextToDraw = m_divide; m_divide->m_previousToDraw = m_close1; m_divide->m_nextToDraw = m_open2; m_open2->m_previousToDraw = m_divide; m_open2->m_nextToDraw = m_denom; m_denom->m_previousToDraw = m_open2; m_last2->m_nextToDraw = m_close2; m_close2->m_previousToDraw = m_last2; m_close2->m_nextToDraw = m_nextToDraw; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = m_close2; m_nextToDraw = m_open1; return true; } return false; } void FracCell::Unbreak(bool all) { if (m_isBroken) { m_num->Unbreak(true); m_denom->Unbreak(true); } MathCell::Unbreak(all); } wxMaxima-13.04.2/src/FracCell.h000644 000765 000024 00000003673 11705765322 016516 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _FRACCELL_H_ #define _FRACCELL_H_ #include "MathCell.h" enum { FC_NORMAL, FC_CHOOSE, FC_DIFF }; class FracCell : public MathCell { public: FracCell(); ~FracCell(); MathCell* Copy(bool all); void Destroy(); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void SetFracStyle(int style) { m_fracStyle = style; } void SetNum(MathCell* num); void SetDenom(MathCell* denom); bool IsOperator() { return true; } void SelectInner(wxRect& rect, MathCell **first, MathCell **last); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new! void SetExponentFlag(); bool BreakUp(); void SetupBreakUps(); void Unbreak(bool all); void SetParent(MathCell *parent, bool all); protected: MathCell *m_num; MathCell *m_denom; MathCell *m_open1, *m_open2, *m_close1, *m_close2, *m_divide; MathCell *m_last1, *m_last2; bool m_exponent; int m_fracStyle; int m_expDivideWidth; }; #endif //_FRACCELL_H_ wxMaxima-13.04.2/src/FunCell.cpp000644 000765 000024 00000011343 11705765322 016717 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "FunCell.h" FunCell::FunCell() : MathCell() { m_nameCell = NULL; m_argCell = NULL; } FunCell::~FunCell() { if (m_nameCell != NULL) delete m_nameCell; if (m_argCell != NULL) delete m_argCell; if (m_next != NULL) delete m_next; } void FunCell::SetParent(MathCell *parent, bool all) { if (m_nameCell != NULL) m_nameCell->SetParent(parent, true); if (m_argCell != NULL) m_argCell->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* FunCell::Copy(bool all) { FunCell* tmp = new FunCell; CopyData(this, tmp); tmp->SetName(m_nameCell->Copy(true)); tmp->SetArg(m_argCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(true)); return tmp; } void FunCell::Destroy() { if (m_nameCell != NULL) delete m_nameCell; if (m_argCell != NULL) delete m_argCell; m_nameCell = NULL; m_argCell = NULL; m_next = NULL; } void FunCell::SetName(MathCell *name) { if (name == NULL) return ; if (m_nameCell != NULL) delete m_nameCell; m_nameCell = name; } void FunCell::SetArg(MathCell *arg) { if (arg == NULL) return ; if (m_argCell != NULL) delete m_argCell; m_argCell = arg; } void FunCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_argCell->RecalculateWidths(parser, fontsize, true); m_nameCell->RecalculateWidths(parser, fontsize, true); m_width = m_nameCell->GetFullWidth(scale) + m_argCell->GetFullWidth(scale) - SCALE_PX(1, scale); MathCell::RecalculateWidths(parser, fontsize, all); } void FunCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { m_nameCell->RecalculateSize(parser, fontsize, true); m_argCell->RecalculateSize(parser, fontsize, true); m_center = MAX(m_nameCell->GetMaxCenter(), m_argCell->GetMaxCenter()); m_height = m_center + MAX(m_nameCell->GetMaxDrop(), m_argCell->GetMaxDrop()); MathCell::RecalculateSize(parser, fontsize, all); } void FunCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxPoint name(point), arg(point); m_nameCell->Draw(parser, name, fontsize, true); arg.x += m_nameCell->GetFullWidth(scale) - SCALE_PX(1, scale); m_argCell->Draw(parser, arg, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString FunCell::ToString(bool all) { if (m_isBroken) return wxEmptyString; if (m_altCopyText != wxEmptyString) return m_altCopyText + MathCell::ToString(all); wxString s = m_nameCell->ToString(true) + m_argCell->ToString(true); s += MathCell::ToString(all); return s; } wxString FunCell::ToTeX(bool all) { if (m_isBroken) return wxEmptyString; wxString s = m_nameCell->ToTeX(true) + m_argCell->ToTeX(true); s += MathCell::ToTeX(all); return s; } wxString FunCell::ToXML(bool all) { if (m_isBroken) return wxEmptyString; return _T("") + m_nameCell->ToXML(true) + m_argCell->ToXML(true) + _T("") + MathCell::ToXML(all); } void FunCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; if (m_nameCell->ContainsRect(rect)) m_nameCell->SelectRect(rect, first, last); else if (m_argCell->ContainsRect(rect)) m_argCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } bool FunCell::BreakUp() { if (!m_isBroken) { m_isBroken = true; m_nameCell->m_previousToDraw = this; m_nameCell->m_nextToDraw = m_argCell; m_argCell->m_previousToDraw = m_nameCell; m_argCell->m_nextToDraw = m_nextToDraw; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = m_argCell; m_nextToDraw = m_nameCell; return true; } return false; } void FunCell::Unbreak(bool all) { if (m_isBroken) { m_nameCell->Unbreak(true); m_argCell->Unbreak(true); } MathCell::Unbreak(all); } wxMaxima-13.04.2/src/FunCell.h000644 000765 000024 00000003123 11705765322 016361 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _FUNCELL_H_ #define _FUNCELL_H_ #include "MathCell.h" class FunCell : public MathCell { public: FunCell(); ~FunCell(); MathCell* Copy(bool all); void Destroy(); void SetName(MathCell *base); void SetArg(MathCell *index); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!! void SelectInner(wxRect& rect, MathCell** first, MathCell** last); bool BreakUp(); void Unbreak(bool all); void SetParent(MathCell *parent, bool all); protected: MathCell *m_nameCell; MathCell *m_argCell; }; #endif //_FUNCELL_H_ wxMaxima-13.04.2/src/Gen1Wiz.cpp000644 000765 000024 00000005270 11705765322 016655 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Gen1Wiz.h" Gen1Wiz::Gen1Wiz(wxWindow* parent, int id, const wxString& title, const wxString& label1, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, label1); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(300, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void Gen1Wiz::set_properties() { #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } void Gen1Wiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_1->Add(label_2, 0, wxALL | wxALIGN_CENTER_HORIZONTAL, 5); grid_sizer_1->Add(text_ctrl_1, 0, wxALL | wxEXPAND, 5); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString GetTextFromUser(wxString label, wxString title, wxString value, wxWindow* parent) { Gen1Wiz *wiz = new Gen1Wiz(parent, -1, title, label); wiz->SetValue(value); wxString val; wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { val = wiz->GetValue(); val.Trim(); val.Trim(false); } wiz->Destroy(); return val; } wxMaxima-13.04.2/src/Gen1Wiz.h000644 000765 000024 00000003243 11705765322 016320 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef GEN1WIZ_H #define GEN1WIZ_H #include #include #include "BTextCtrl.h" class Gen1Wiz: public wxDialog { public: Gen1Wiz(wxWindow* parent, int id, const wxString& title, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); wxString GetValue() { return text_ctrl_1->GetValue(); } void SetValue(wxString v) { text_ctrl_1->SetValue(v); text_ctrl_1->SetSelection(-1, -1); } private: bool equal; void set_properties(); void do_layout(); wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; wxString GetTextFromUser(wxString label, wxString title, wxString value, wxWindow* parent); #endif // GEN2WIZ_H wxMaxima-13.04.2/src/Gen2Wiz.cpp000644 000765 000024 00000005665 11705765322 016666 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Gen2Wiz.h" Gen2Wiz::Gen2Wiz(wxString lab1, wxString lab2, wxString val1, wxString val2, wxWindow* parent, int id, const wxString& title, bool eq, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) , equal(eq) { label_2 = new wxStaticText(this, -1, lab1); text_ctrl_1 = new BTextCtrl(this, -1, val1, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, lab2); if (equal) text_ctrl_2 = new BTextCtrl(this, -1, val2, wxDefaultPosition, wxSize(230, -1)); else text_ctrl_2 = new BTextCtrl(this, -1, val2, wxDefaultPosition, wxSize(110, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void Gen2Wiz::set_properties() { #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } void Gen2Wiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(2, 2, 0, 0); grid_sizer_2->Add(label_2, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxMaxima-13.04.2/src/Gen2Wiz.h000644 000765 000024 00000003245 11705765322 016323 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef GEN2WIZ_H #define GEN2WIZ_H #include #include #include "BTextCtrl.h" class Gen2Wiz: public wxDialog { public: Gen2Wiz(wxString lab1, wxString lab2, wxString val1, wxString val2, wxWindow* parent, int id, const wxString& title, bool eq = false, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); wxString GetValue1() { return text_ctrl_1->GetValue(); } wxString GetValue2() { return text_ctrl_2->GetValue(); } private: bool equal; void set_properties(); void do_layout(); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // GEN2WIZ_H wxMaxima-13.04.2/src/Gen3Wiz.cpp000644 000765 000024 00000006561 11705765322 016663 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Gen3Wiz.h" Gen3Wiz::Gen3Wiz(wxString lab1, wxString lab2, wxString lab3, wxString val1, wxString val2, wxString val3, wxWindow* parent, int id, const wxString& title, bool eq, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, lab1); text_ctrl_1 = new BTextCtrl(this, -1, val1, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, lab2); if (eq) text_ctrl_2 = new BTextCtrl(this, -1, val2, wxDefaultPosition, wxSize(230, -1)); else text_ctrl_2 = new BTextCtrl(this, -1, val2, wxDefaultPosition, wxSize(110, -1)); label_4 = new wxStaticText(this, -1, lab3); if (eq) text_ctrl_3 = new BTextCtrl(this, -1, val3, wxDefaultPosition, wxSize(230, -1)); else text_ctrl_3 = new BTextCtrl(this, -1, val3, wxDefaultPosition, wxSize(110, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void Gen3Wiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(3, 2, 0, 0); grid_sizer_2->Add(label_2, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_2->Add(label_4, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_3, 0, wxALL, 5); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } void Gen3Wiz::set_properties() { #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } wxMaxima-13.04.2/src/Gen3Wiz.h000644 000765 000024 00000003626 11705765322 016327 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef GEN3WIZ_H #define GEN3WIZ_H #include #include #include "BTextCtrl.h" class Gen3Wiz: public wxDialog { public: Gen3Wiz(wxString lab1, wxString lab2, wxString lab3, wxString val1, wxString val2, wxString val3, wxWindow* parent, int id, const wxString& title, bool eq = false, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue1() { return text_ctrl_1->GetValue(); }; wxString GetValue2() { return text_ctrl_2->GetValue(); }; wxString GetValue3() { return text_ctrl_3->GetValue(); }; private: void set_properties(); void do_layout(); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // DIFFWIZ_H wxMaxima-13.04.2/src/Gen4Wiz.cpp000644 000765 000024 00000007451 11705765322 016663 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Gen4Wiz.h" Gen4Wiz::Gen4Wiz(wxString lab1, wxString lab2, wxString lab3, wxString lab4, wxString val1, wxString val2, wxString val3, wxString val4, wxWindow* parent, int id, const wxString& title, bool eq, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, lab1); text_ctrl_1 = new BTextCtrl(this, -1, val1, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, lab2); if (eq) text_ctrl_2 = new BTextCtrl(this, -1, val2, wxDefaultPosition, wxSize(230, -1)); else text_ctrl_2 = new BTextCtrl(this, -1, val2, wxDefaultPosition, wxSize(110, -1)); label_4 = new wxStaticText(this, -1, lab3); if (eq) text_ctrl_3 = new BTextCtrl(this, -1, val3, wxDefaultPosition, wxSize(230, -1)); else text_ctrl_3 = new BTextCtrl(this, -1, val3, wxDefaultPosition, wxSize(110, -1)); label_5 = new wxStaticText(this, -1, lab4); if (eq) text_ctrl_4 = new BTextCtrl(this, -1, val4, wxDefaultPosition, wxSize(230, -1)); else text_ctrl_4 = new BTextCtrl(this, -1, val4, wxDefaultPosition, wxSize(110, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void Gen4Wiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(4, 2, 0, 0); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_2->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_3, 0, wxALL, 5); grid_sizer_2->Add(label_5, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_4, 0, wxALL, 5); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } void Gen4Wiz::set_properties() { #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } wxMaxima-13.04.2/src/Gen4Wiz.h000644 000765 000024 00000004053 11705765322 016323 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef GEN4WIZ_H #define GTN4WIZ_H #include #include #include "BTextCtrl.h" class Gen4Wiz: public wxDialog { public: Gen4Wiz(wxString lab1, wxString lab2, wxString lab3, wxString lab4, wxString val1, wxString val2, wxString val3, wxString val4, wxWindow* parent, int id, const wxString& title, bool eq = false, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue1() { return text_ctrl_1->GetValue(); }; wxString GetValue2() { return text_ctrl_2->GetValue(); }; wxString GetValue3() { return text_ctrl_3->GetValue(); }; wxString GetValue4() { return text_ctrl_4->GetValue(); }; private: void set_properties(); void do_layout(); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticText* label_5; BTextCtrl* text_ctrl_4; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // DIFFWIZ_H wxMaxima-13.04.2/src/GroupCell.cpp000644 000765 000024 00000104564 12073007012 017253 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2008-2011 Andrej Vodopivec /// (C) 2008-2009 Ziga Lenarcic /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include #include #include "GroupCell.h" #include "TextCell.h" #include "EditorCell.h" #include "ImgCell.h" #include "Bitmap.h" GroupCell::GroupCell(int groupType, wxString initString) : MathCell() { m_input = NULL; m_output = NULL; m_hiddenTree = NULL; m_hiddenTreeParent = NULL; m_outputRect.x = -1; m_outputRect.y = -1; m_outputRect.width = 0; m_outputRect.height = 0; m_group = this; m_forceBreakLine = true; m_breakLine = true; m_type = MC_TYPE_GROUP; m_indent = MC_GROUP_LEFT_INDENT; m_hide = false; m_working = false; m_groupType = groupType; m_lastInOutput = NULL; m_appendedCells = NULL; // set up cell depending on groupType, so we have a working cell if (groupType != GC_TYPE_PAGEBREAK) { if (groupType == GC_TYPE_CODE) m_input = new TextCell(EMPTY_INPUT_LABEL); else m_input = new TextCell(wxT(" ")); m_input->SetType(MC_TYPE_MAIN_PROMPT); } bool match = true; bool insertAns = true; wxConfig::Get()->Read(wxT("matchParens"), &match); wxConfig::Get()->Read(wxT("insertAns"), &insertAns); EditorCell *editor = new EditorCell(); editor->SetMatchParens(match); editor->SetInsertAns(insertAns); switch (groupType) { case GC_TYPE_CODE: editor->SetType(MC_TYPE_INPUT); AppendInput(editor); break; case GC_TYPE_TEXT: m_input->SetType(MC_TYPE_TEXT); editor->SetType(MC_TYPE_TEXT); AppendInput(editor); break; case GC_TYPE_TITLE: m_input->SetType(MC_TYPE_TITLE); editor->SetType(MC_TYPE_TITLE); AppendInput(editor); break; case GC_TYPE_SECTION: m_input->SetType(MC_TYPE_SECTION); editor->SetType(MC_TYPE_SECTION); AppendInput(editor); break; case GC_TYPE_SUBSECTION: m_input->SetType(MC_TYPE_SUBSECTION); editor->SetType(MC_TYPE_SUBSECTION); AppendInput(editor); break; case GC_TYPE_IMAGE: m_input->SetType(MC_TYPE_TEXT); editor->SetType(MC_TYPE_TEXT); editor->SetValue(wxEmptyString); AppendInput(editor); break; default: delete editor; editor = NULL; break; } if (editor != NULL) editor->SetValue(initString); // when creating an image cell, if a string is provided // it loads an image (without deleting it) if ((groupType == GC_TYPE_IMAGE) && (initString.Length() > 0)) { ImgCell *ic = new ImgCell(initString, false); AppendOutput(ic); } SetParent(this, false); } GroupCell::~GroupCell() { if (m_input != NULL) delete m_input; DestroyOutput(); if (m_hiddenTree) delete m_hiddenTree; } void GroupCell::SetParent(MathCell *parent, bool all) { if (m_input != NULL) m_input->SetParent(parent, true); MathCell *tmp = m_output; while (tmp != NULL) { tmp->SetParent(parent, false); tmp = tmp->m_next; } } void GroupCell::DestroyOutput() { MathCell *tmp = m_output, *tmp1; while (tmp != NULL) { tmp1 = tmp; tmp = tmp->m_next; tmp1->Destroy(); delete tmp1; } m_output = NULL; } // when all=false (default) only reset input label of the current (code) cell // if all = true, then also reset next cells and folded cells void GroupCell::ResetInputLabel(bool all) { if (m_groupType == GC_TYPE_CODE) { if (m_input) m_input->SetValue(EMPTY_INPUT_LABEL); } // if all, also reset input labels in the folded cells else if (all && IsFoldable() && m_hiddenTree) m_hiddenTree->ResetInputLabel(true); // reset the next cell if (all && m_next) dynamic_cast(m_next)->ResetInputLabel(true); } MathCell* GroupCell::Copy(bool all) { GroupCell* tmp = new GroupCell(m_groupType); tmp->Hide(m_hide); CopyData(this, tmp); if (m_input) tmp->SetInput(m_input->Copy(true)); if (m_output != NULL) tmp->SetOutput(m_output->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void GroupCell::Destroy() { if (m_input != NULL) delete m_input; m_input = NULL; if (m_output != NULL) DestroyOutput(); m_output = NULL; m_next = NULL; } void GroupCell::SetInput(MathCell *input) { if (input == NULL) return ; if (m_input != NULL) delete m_input; m_input = input; m_input->m_group = this; } void GroupCell::AppendInput(MathCell *cell) { if (m_input == NULL) { m_input = cell; } else { if (m_input->m_next == NULL) m_input->AppendCell(cell); else if (m_input->m_next->GetValue().Length() == 0) { delete m_input->m_next; m_input->m_next = m_input->m_nextToDraw = NULL; m_input->AppendCell(cell); } else { AppendOutput(cell); m_hide = false; } } } void GroupCell::SetOutput(MathCell *output) { if (output == NULL) return ; if (m_output != NULL) DestroyOutput(); m_output = output; m_output->m_group = this; m_lastInOutput = m_output; while (m_lastInOutput->m_next != NULL) m_lastInOutput = m_lastInOutput->m_next; //m_appendedCells = output; } void GroupCell::RemoveOutput() { DestroyOutput(); ResetSize(); m_output = NULL; m_lastInOutput = NULL; m_appendedCells = NULL; m_hide = false; } void GroupCell::AppendOutput(MathCell *cell) { if (m_output == NULL) { m_output = cell; if (m_groupType == GC_TYPE_CODE && m_input->m_next != NULL) ((EditorCell *)(m_input->m_next))->ContainsChanges(false); m_lastInOutput = m_output; while (m_lastInOutput->m_next != NULL) m_lastInOutput = m_lastInOutput->m_next; } else { MathCell *tmp = m_lastInOutput; if (tmp == NULL) tmp = m_output; while (tmp->m_next != NULL) tmp = tmp->m_next; tmp->AppendCell(cell); while (m_lastInOutput->m_next != NULL) m_lastInOutput = m_lastInOutput->m_next; } if (m_appendedCells == NULL) m_appendedCells = cell; } void GroupCell::Recalculate(CellParser& parser, int d_fontsize, int m_fontsize) { m_fontSize = d_fontsize; m_mathFontSize = m_fontsize; RecalculateWidths(parser, d_fontsize, false); RecalculateSize(parser, d_fontsize, false); } void GroupCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { if (m_width == -1 || m_height == -1 || parser.ForceUpdate()) { // special case of 'line cell' if (m_groupType == GC_TYPE_PAGEBREAK) { m_width = 10; m_height = 2; MathCell::RecalculateWidths(parser, fontsize, all); return; } UnBreakUpCells(); double scale = parser.GetScale(); m_input->RecalculateWidths(parser, fontsize, true); // recalculate the position of input in ReEvaluateSelection! if (m_input->m_next != NULL) { m_input->m_next->m_currentPoint.x = m_currentPoint.x + m_input->GetWidth() + MC_CELL_SKIP; } if (m_output == NULL || m_hide) { m_width = m_input->GetFullWidth(scale); } else { MathCell *tmp = m_output; while (tmp != NULL) { tmp->RecalculateWidths(parser, tmp->IsMath() ? m_mathFontSize : m_fontSize, false); tmp = tmp->m_next; } // This is not correct, m_width will be computed correctly in RecalculateSize! m_width = m_input->GetFullWidth(scale); } BreakUpCells(parser, m_fontSize, parser.GetClientWidth()); BreakLines(parser.GetClientWidth()); } MathCell::RecalculateWidths(parser, m_fontSize, all); } void GroupCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { if (m_width == -1 || m_height == -1 || parser.ForceUpdate()) { // special case if (m_groupType == GC_TYPE_PAGEBREAK) { m_width = 10; m_height = 2; m_center = 0; m_indent = 0; MathCell::RecalculateWidths(parser, fontsize, all); return; } double scale = parser.GetScale(); m_input->RecalculateSize(parser, fontsize, true); m_center = m_input->GetMaxCenter(); m_height = m_input->GetMaxHeight(); m_indent = parser.GetIndent(); if (m_output != NULL && !m_hide) { MathCell *tmp = m_output; while (tmp != NULL) { tmp->RecalculateSize(parser, tmp->IsMath() ? m_mathFontSize : m_fontSize, false); tmp = tmp->m_next; } m_outputRect.x = m_currentPoint.x; m_outputRect.y = m_currentPoint.y - m_output->GetMaxCenter(); m_outputRect.width = 0; m_outputRect.height = 0; m_height = m_input->GetMaxHeight(); m_width = m_input->GetFullWidth(scale); tmp = m_output; while (tmp != NULL) { if (tmp->BreakLineHere() || tmp == m_output) { m_width = MAX(m_width, tmp->GetLineWidth(scale)); m_outputRect.width = MAX(m_outputRect.width, tmp->GetLineWidth(scale)); m_height += tmp->GetMaxHeight(); if (tmp->m_bigSkip) m_height += MC_LINE_SKIP; m_outputRect.height += tmp->GetMaxHeight() + MC_LINE_SKIP; } tmp = tmp->m_nextToDraw; } } } MathCell::RecalculateSize(parser, fontsize, all); } // We assume that appended cells will be in a new line! void GroupCell::RecalculateAppended(CellParser& parser) { if (m_appendedCells == NULL) return; MathCell *tmp = m_appendedCells; int fontsize = m_fontSize; double scale = parser.GetScale(); // Recalculate widths of cells while (tmp != NULL) { tmp->RecalculateWidths(parser, tmp->IsMath() ? m_mathFontSize : m_fontSize, false); tmp = tmp->m_next; } // Breakup cells and break lines BreakUpCells(m_appendedCells, parser, fontsize, parser.GetClientWidth()); BreakLines(m_appendedCells, parser.GetClientWidth()); // Recalculate size of cells tmp = m_appendedCells; while (tmp != NULL) { tmp->RecalculateSize(parser, tmp->IsMath() ? m_mathFontSize : m_fontSize, false); tmp = tmp->m_next; } // Update widths tmp = m_appendedCells; while (tmp != NULL) { if (tmp->BreakLineHere() || tmp == m_appendedCells) { m_width = MAX(m_width, tmp->GetLineWidth(scale)); m_outputRect.width = MAX(m_outputRect.width, tmp->GetLineWidth(scale)); m_height += tmp->GetMaxHeight(); if (tmp->m_bigSkip) m_height += MC_LINE_SKIP; m_outputRect.height += tmp->GetMaxHeight() + MC_LINE_SKIP; } tmp = tmp->m_nextToDraw; } m_appendedCells = NULL; } void GroupCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { double scale = parser.GetScale(); wxDC& dc = parser.GetDC(); if (m_width == -1 || m_height == -1) { RecalculateWidths(parser, fontsize, false); RecalculateSize(parser, fontsize, false); } if (DrawThisCell(parser, point)) { // draw a thick line for 'page break' // and return if (m_groupType == GC_TYPE_PAGEBREAK) { wxRect rect = GetRect(false); int y = rect.GetY(); wxPen pen(parser.GetColor(TS_CURSOR), 1, wxDOT); dc.SetPen(pen); dc.DrawLine(0, y , 10000, y); MathCell::Draw(parser, point, fontsize, all); return; } // // Paint background if we have a text cell // if (m_groupType == GC_TYPE_TEXT) { wxRect rect = GetRect(false); int y = rect.GetY(); if (m_height > 0 && m_width > 0 && y>=0) { wxBrush br(parser.GetColor(TS_TEXT_BACKGROUND)); dc.SetBrush(br); wxPen pen(parser.GetColor(TS_TEXT_BACKGROUND)); dc.SetPen(pen); dc.DrawRectangle(0, y , 10000, rect.GetHeight()); } } // // Draw input and output // SetPen(parser); wxPoint in(point); parser.Outdated(false); m_input->Draw(parser, in, fontsize, true); if (m_groupType == GC_TYPE_CODE && m_input->m_next) parser.Outdated(((EditorCell *)(m_input->m_next))->ContainsChanges()); if (m_output != NULL && !m_hide) { MathCell *tmp = m_output; int drop = tmp->GetMaxDrop(); in.y += m_input->GetMaxDrop() + m_output->GetMaxCenter(); m_outputRect.y = in.y - m_output->GetMaxCenter(); m_outputRect.x = in.x; while (tmp != NULL) { if (!tmp->m_isBroken) { tmp->m_currentPoint.x = in.x; tmp->m_currentPoint.y = in.y; if (tmp->DrawThisCell(parser, in)) tmp->Draw(parser, in, MAX(tmp->IsMath() ? m_mathFontSize : m_fontSize, MC_MIN_SIZE), false); if (tmp->m_nextToDraw != NULL) { if (tmp->m_nextToDraw->BreakLineHere()) { in.x = m_indent; in.y += drop + tmp->m_nextToDraw->GetMaxCenter(); if (tmp->m_bigSkip) in.y += MC_LINE_SKIP; drop = tmp->m_nextToDraw->GetMaxDrop(); } else in.x += (tmp->GetWidth() + MC_CELL_SKIP); } } else { if (tmp->m_nextToDraw != NULL && tmp->m_nextToDraw->BreakLineHere()) { in.x = m_indent; in.y += drop + tmp->m_nextToDraw->GetMaxCenter(); if (tmp->m_bigSkip) in.y += MC_LINE_SKIP; drop = tmp->m_nextToDraw->GetMaxDrop(); } } tmp = tmp->m_nextToDraw; } } parser.Outdated(false); MathCell *editable = GetEditable(); if (editable != NULL && editable->IsActive()) { dc.SetPen( *(wxThePenList->FindOrCreatePen(parser.GetColor(TS_ACTIVE_CELL_BRACKET), 2, wxSOLID))); // window linux, set a pen dc.SetBrush( *(wxTheBrushList->FindOrCreateBrush(parser.GetColor(TS_ACTIVE_CELL_BRACKET)))); //highlight c. } else { dc.SetPen( *(wxThePenList->FindOrCreatePen(parser.GetColor(TS_CELL_BRACKET), 1, wxSOLID))); // window linux, set a pen dc.SetBrush( *(wxTheBrushList->FindOrCreateBrush(parser.GetColor(TS_CELL_BRACKET)))); //highlight c. } if ((!m_hide) && (!m_hiddenTree)) { dc.SetBrush(*wxTRANSPARENT_BRUSH); } if (IsFoldable()) { // draw a square wxPoint *points = new wxPoint[4]; points[0].x = point.x - SCALE_PX(10, scale); points[0].y = point.y - m_center; points[1].x = point.x - SCALE_PX(10, scale); points[1].y = point.y - m_center + SCALE_PX(10, scale); points[2].x = point.x; points[2].y = point.y - m_center + SCALE_PX(10, scale); points[3].x = point.x; points[3].y = point.y - m_center; dc.DrawPolygon(4, points); delete [] points; } else { // draw a triangle and line wxPoint *points = new wxPoint[3]; points[0].x = point.x - SCALE_PX(10, scale); points[0].y = point.y - m_center; points[1].x = point.x - SCALE_PX(10, scale); points[1].y = point.y - m_center + SCALE_PX(10, scale); points[2].x = point.x; points[2].y = point.y - m_center; dc.DrawPolygon(3, points); delete [] points; // vertical dc.DrawLine(point.x - SCALE_PX(10, scale), point.y - m_center, point.x - SCALE_PX(10, scale), point.y - m_center + m_height); // bottom horizontal dc.DrawLine(point.x - SCALE_PX(10, scale), point.y - m_center + m_height, point.x - SCALE_PX(2, scale) , point.y - m_center + m_height); // middle horizontal if (m_groupType == GC_TYPE_CODE && m_output != NULL && !m_hide) { dc.DrawLine(point.x - SCALE_PX(6, scale), point.y - m_center + m_input->GetMaxHeight(), point.x - SCALE_PX(10, scale), point.y - m_center + m_input->GetMaxHeight()); } } UnsetPen(parser); } MathCell::Draw(parser, point, fontsize, all); } wxRect GroupCell::HideRect() { return wxRect(m_currentPoint.x - 10, m_currentPoint.y - m_center, 10, 10); } wxString GroupCell::ToString(bool all) { wxString str; if (GetEditable()) { str = m_input->ToString(true); if (m_output != NULL && !m_hide) { MathCell *tmp = m_output; while (tmp != NULL) { if (tmp->ForceBreakLineHere() && str.Length()>0) str += wxT("\n"); str += tmp->ToString(false); tmp = tmp->m_nextToDraw; } } } return str + MathCell::ToString(all); } wxString GroupCell::PrepareForTeX(wxString str) { #if !wxUSE_UNICODE wxString str1(str.wc_str(wxConvLocal), wxConvUTF8); #else wxString str1(str); #endif str1.Replace(wxT("\\"), wxT("\\verb|\\|")); str1.Replace(wxT("_"), wxT("\\_")); str1.Replace(wxT("%"), wxT("\\%")); str1.Replace(wxT("$"), wxT("\\$")); str1.Replace(wxT("{"), wxT("\\{")); str1.Replace(wxT("}"), wxT("\\}")); str1.Replace(wxT("^"), wxT("\\verb|^|")); str1.Replace(wxT(">"), wxT("\\verb|>|")); str1.Replace(wxT("<"), wxT("\\verb|<|")); #if !wxUSE_UNICODE wxString str2(str1.wc_str(wxConvUTF8), wxConvLocal); #else wxString str2(str1); #endif return str2; } wxString GroupCell::ToTeX(bool all) { return ToTeX(all, wxEmptyString, wxEmptyString, NULL); } wxString GroupCell::ToTeX(bool all, wxString imgDir, wxString filename, int *imgCounter) { wxString str; // pagebreak if (m_groupType == GC_TYPE_PAGEBREAK) { str = wxT("\\pagebreak\n"); } // IMAGE CELLS else if (m_groupType == GC_TYPE_IMAGE && imgDir != wxEmptyString) { MathCell *copy = m_output->Copy(false); (*imgCounter)++; wxString image = filename + wxString::Format(wxT("_%d.png"), *imgCounter); wxString file = imgDir + wxT("/") + image; Bitmap bmp; bmp.SetData(copy); if (!wxDirExists(imgDir)) wxMkdir(imgDir); if (bmp.ToFile(file)) { str << wxT("\\begin{figure}[htb]\n") << wxT(" \\begin{center}\n") << wxT(" \\includegraphics{") << filename << wxT("_img/") << image << wxT("}\n") << wxT(" \\caption{") << PrepareForTeX(m_input->m_next->GetValue()) << wxT("}\n") << wxT(" \\end{center}\n") << wxT("\\end{figure}"); } } else if (m_groupType == GC_TYPE_IMAGE) str << wxT("\n\\vert|<>|\n"); // CODE CELLS else if (m_groupType == GC_TYPE_CODE) { // Input cells str = wxT("\n\\noindent\n%%%%%%%%%%%%%%%\n") wxT("%%% INPUT:\n") wxT("\\begin{minipage}[t]{8ex}{\\color{red}\\bf\n") wxT("\\begin{verbatim}\n") + m_input->ToString(false) + wxT("\n\\end{verbatim}}\n\\end{minipage}"); if (m_input->m_next!=NULL) { str += wxT("\n\\begin{minipage}[t]{\\textwidth}{\\color{blue}\n\\begin{verbatim}\n") + m_input->m_next->ToString(true) + wxT("\n\\end{verbatim}}\n\\end{minipage}"); } str += wxT("\n"); if (m_output != NULL) { str += wxT("%%% OUTPUT:\n"); // Need to define labelcolor if this is Copy as LaTeX! if (imgCounter == NULL) str += wxT("\\definecolor{labelcolor}{RGB}{100,0,0}\n"); str += wxT("\\begin{math}\\displaystyle\n"); MathCell *tmp = m_output; while (tmp != NULL) { if (tmp->GetType() == MC_TYPE_IMAGE || tmp->GetType() == MC_TYPE_SLIDE) { if (imgDir != wxEmptyString) { MathCell *copy = tmp->Copy(false); (*imgCounter)++; wxString image = filename + wxString::Format(wxT("_%d.png"), *imgCounter); wxString file = imgDir + wxT("/") + image; Bitmap bmp; bmp.SetData(copy); if (!wxDirExists(imgDir)) if (!wxMkdir(imgDir)) continue; if (bmp.ToFile(file)) str += wxT("\\includegraphics[width=9cm]{") + filename + wxT("_img/") + image + wxT("}"); } else str << wxT("\n\\verb|<>|\n"); } else if (tmp->GetStyle() == TS_LABEL) { if (str.Right(13) != wxT("displaystyle\n")) str += wxT("\n\\end{math}\n\n\\begin{math}\\displaystyle\n"); str += wxT("\\parbox{8ex}{\\color{labelcolor}") + tmp->ToTeX(false) + wxT("}\n"); } else str += tmp->ToTeX(false); tmp = tmp->m_nextToDraw; } str += wxT("\n\\end{math}\n%%%%%%%%%%%%%%%\n"); } } // TITLES, SECTIONS, SUBSECTIONS, TEXT else if (GetEditable() != NULL && !m_hide) { str = GetEditable()->ToTeX(true); switch (GetEditable()->GetStyle()) { case TS_TITLE: str = wxT("\n\\pagebreak{}\n{\\Huge {\\sc ") + PrepareForTeX(str) + wxT("}}\n"); str += wxT("\\setcounter{section}{0}\n\\setcounter{subsection}{0}\n"); str += wxT("\\setcounter{figure}{0}\n\n"); break; case TS_SECTION: str = wxT("\n\\section{") + PrepareForTeX(str) + wxT("}\n\n"); break; case TS_SUBSECTION: str = wxT("\n\\subsection{") + PrepareForTeX(str) + wxT("}\n\n"); break; default: if (str.StartsWith(wxT("TeX:"))) str = str.Mid(5, str.Length()); else { str = PrepareForTeX(str); } break; } } return str + MathCell::ToTeX(all); } // ToXML // writes a groupcell in the form of // // --contents-- // wxString GroupCell::ToXML(bool all) { wxString str; str = wxT("\n"); return str + MathCell::ToXML(all); } break; default: str += wxT(" type=\"unknown\""); break; } // write hidden status if (m_hide) str += wxT(" hide=\"true\""); str += wxT(">\n"); MathCell *input = GetInput(); MathCell *output = GetLabel(); // write contents switch (m_groupType) { case GC_TYPE_CODE: if (input != NULL) { str += wxT("\n"); str += input->ToXML(false); str += wxT(""); } if (output != NULL) { str += wxT("\n\n"); str += wxT("") + output->ToXML(true) + wxT(""); str += wxT("\n"); } break; case GC_TYPE_IMAGE: if (input != NULL) str += input->ToXML(false); if (output != NULL) str += output->ToXML(true); break; case GC_TYPE_TEXT: if (input) str += input->ToXML(false); break; case GC_TYPE_TITLE: case GC_TYPE_SECTION: case GC_TYPE_SUBSECTION: if (input) str += input->ToXML(false); if (m_hiddenTree) { str += wxT(""); GroupCell *tmp = m_hiddenTree; while (tmp) { str += tmp->ToXML(false); tmp = dynamic_cast(tmp->m_next); } str += wxT(""); } break; default: if (output != NULL) str += output->ToXML(false); break; } str += wxT("\n\n"); return str + MathCell::ToXML(all); } void GroupCell::SelectRectGroup(wxRect& rect, wxPoint& one, wxPoint& two, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if ((m_input) && (m_input->ContainsRect(rect))) m_input->SelectRect(rect, first, last); else if (m_output != NULL && !m_hide && m_outputRect.Contains(rect)) SelectRectInOutput(rect, one, two, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } void GroupCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_input->ContainsRect(rect)) m_input->SelectRect(rect, first, last); else if (m_output != NULL && !m_hide && m_outputRect.Contains(rect)) m_output->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } void GroupCell::SelectPoint(wxPoint& point, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; wxRect rect(point.x, point.y, 1, 1); if (m_input->ContainsRect(rect)) m_input->SelectInner(rect, first, last); } void GroupCell::SelectRectInOutput(wxRect& rect, wxPoint& one, wxPoint& two, MathCell **first, MathCell **last) { if (m_hide) return; MathCell* tmp; wxPoint start, end; if (one.y < two.y || (one.y == two.y && one.x < two.x)) { start = one; end = two; } else { start = two; end = one; } // Lets select a rectangle tmp = m_output; *first = *last = NULL; while (tmp != NULL && !rect.Intersects(tmp->GetRect())) tmp = tmp->m_nextToDraw; *first = tmp; *last = tmp; while (tmp != NULL) { if (rect.Intersects(tmp->GetRect())) *last = tmp; tmp = tmp->m_nextToDraw; } if (*first != NULL && *last != NULL) { // If selection is on multiple lines, we need to correct it if ((*first)->GetCurrentY() != (*last)->GetCurrentY()) { tmp = *last; MathCell *curr; // Find the first cell in selection while (*first != tmp && ((*first)->GetCurrentX() + (*first)->GetWidth() < start.x || (*first)->GetCurrentY() + (*first)->GetDrop() < start.y)) *first = (*first)->m_nextToDraw; // Find the last cell in selection curr = *last = *first; while (1) { curr = curr->m_nextToDraw; if (curr == NULL) break; if (curr->GetCurrentX() <= end.x && curr->GetCurrentY() - curr->GetMaxCenter() <= end.y) *last = curr; if (curr == tmp) break; } } if (*first == *last) (*first)->SelectInner(rect, first, last); } } bool GroupCell::SetEditableContent(wxString text) { if (GetEditable()) { GetEditable()->SetValue(text); return true; } else return false; } EditorCell *GroupCell::GetEditable() { switch (m_groupType) { case GC_TYPE_CODE: case GC_TYPE_IMAGE: case GC_TYPE_TEXT: case GC_TYPE_TITLE: case GC_TYPE_SECTION: case GC_TYPE_SUBSECTION: return dynamic_cast(GetInput()); case GC_TYPE_PAGEBREAK: default: return NULL; } } void GroupCell::BreakLines(int fullWidth) { BreakLines(m_output, fullWidth); } void GroupCell::BreakLines(MathCell *cell, int fullWidth) { int currentWidth = m_indent; MathCell *tmp = cell; while (tmp != NULL && !m_hide) { tmp->ResetData(); tmp->BreakLine(false); if (!tmp->m_isBroken) { if (tmp->BreakLineHere() || (currentWidth + tmp->GetWidth() >= fullWidth)) { currentWidth = m_indent + tmp->GetWidth(); tmp->BreakLine(true); } else currentWidth += (tmp->GetWidth() + MC_CELL_SKIP); } tmp = tmp->m_nextToDraw; } } void GroupCell::SelectOutput(MathCell **start, MathCell **end) { if (m_hide) return; *start = m_output; while (*start != NULL && (*start)->GetStyle() != TS_LABEL) *start = (*start)->m_nextToDraw; if (*start != NULL) *start = (*start)->m_nextToDraw; *end = *start; while (*end != NULL && (*end)->m_nextToDraw != NULL) *end = (*end)->m_nextToDraw; if (*end == NULL || *start == NULL) *end = *start = NULL; } void GroupCell::BreakUpCells(CellParser parser, int fontsize, int clientWidth) { BreakUpCells(m_output, parser, fontsize, clientWidth); } void GroupCell::BreakUpCells(MathCell *cell, CellParser parser, int fontsize, int clientWidth) { MathCell *tmp = cell; while (tmp != NULL && !m_hide) { if (tmp->GetWidth() > clientWidth) { if (tmp->BreakUp()) { tmp->RecalculateWidths(parser, tmp->IsMath() ? m_mathFontSize : m_fontSize, false); tmp->RecalculateSize(parser, tmp->IsMath() ? m_mathFontSize : m_fontSize, false); } } tmp = tmp->m_nextToDraw; } } void GroupCell::UnBreakUpCells() { MathCell *tmp = m_output; while (tmp != NULL) { if (tmp->m_isBroken) { tmp->Unbreak(false); } tmp = tmp->m_next; } } // support for hiding text, code cells void GroupCell::Hide(bool hide) { if (IsFoldable()) return; if (m_hide == hide) return; else { if (m_hide == false) { if ((m_groupType == GC_TYPE_TEXT) || (m_groupType == GC_TYPE_CODE)) GetEditable()->SetFirstLineOnly(true); m_hide = true; } else { if ((m_groupType == GC_TYPE_TEXT) || (m_groupType == GC_TYPE_CODE)) GetEditable()->SetFirstLineOnly(false); m_hide = false; } ResetSize(); GetEditable()->ResetSize(); } } void GroupCell::SwitchHide() { Hide(!m_hide); } // // support for folding/unfolding sections // bool GroupCell::HideTree(GroupCell *tree) { if (m_hiddenTree) return false; m_hiddenTree = tree; m_hiddenTree->SetHiddenTreeParent(this); return true; } GroupCell *GroupCell::UnhideTree() { GroupCell *tree = m_hiddenTree; m_hiddenTree->SetHiddenTreeParent(m_hiddenTreeParent); m_hiddenTree = NULL; return tree; } /** * Unfold a tree from the bottom up, when a hidden cell needs to be seen. * * @return true if any cells were unfolded. */ bool GroupCell::RevealHidden() { if (!m_hiddenTreeParent) return false; m_hiddenTreeParent->RevealHidden(); m_hiddenTreeParent->Unfold(); return true; } /** * For every cell in this GroupCell, set m_hiddenTreeParent to parent. * This way, the field can be used to traverse up the tree no matter which * child we are on. In other words, every child knows its parent node. */ void GroupCell::SetHiddenTreeParent(GroupCell* parent) { GroupCell* cell = this; while (cell) { cell->m_hiddenTreeParent = parent; cell = dynamic_cast(cell->m_next); } } GroupCell *GroupCell::Fold() { if (!IsFoldable() || m_hiddenTree) // already folded?? shouldn't happen return NULL; if (m_next == NULL) return NULL; int nextgct = dynamic_cast(m_next)->GetGroupType(); // groupType of the next cell if ((m_groupType == nextgct) || IsLesserGCType(nextgct)) return NULL; // if the next gc shouldn't be folded, exit // now there is at least one cell to fold (at least m_next) GroupCell *end = dynamic_cast(m_next); GroupCell *start = end; // first to fold while (end) { GroupCell *tmp = dynamic_cast(end->m_next); if (tmp == NULL) break; if ((m_groupType == tmp->GetGroupType()) || IsLesserGCType(tmp->GetGroupType())) break; // the next one of the end is not suitable for folding, break end = tmp; } // cell(s) to fold are between start and end (including these two) MathCell *next = end->m_next; m_next = m_nextToDraw = next; // may be NULL, it's ok if (next) next->m_previous = next->m_previousToDraw = this; start->m_previous = start->m_previousToDraw = NULL; end->m_next = end->m_nextToDraw = NULL; m_hiddenTree = start; // save the torn out tree into m_hiddenTree m_hiddenTree->SetHiddenTreeParent(this); return this; } // unfolds the m_hiddenTree beneath this cell // be careful to update m_last if this happens in the main tree in MathCtrl GroupCell *GroupCell::Unfold() { if (!IsFoldable() || !m_hiddenTree) return NULL; MathCell *next = m_next; // sew together this cell with m_hiddenTree m_next = m_nextToDraw = m_hiddenTree; m_hiddenTree->m_previous = m_hiddenTree->m_previousToDraw = this; MathCell *tmp = m_hiddenTree; while (tmp->m_next) tmp = tmp->m_next; // tmp holds the last element of m_hiddenTree tmp->m_next = tmp->m_nextToDraw = next; if (next) next->m_previous = next->m_previousToDraw = tmp; m_hiddenTree->SetHiddenTreeParent(m_hiddenTreeParent); m_hiddenTree = NULL; return dynamic_cast(tmp); } GroupCell *GroupCell::FoldAll(bool all) { GroupCell *result = this; if (IsFoldable() && !m_hiddenTree) { Fold(); if (m_hiddenTree) m_hiddenTree->FoldAll(true); } else result = NULL; if (all && m_next) return dynamic_cast(m_next)->FoldAll(true); else return result; } // unfolds recursivly its contents // if (all) then also calls it on it's m_next GroupCell *GroupCell::UnfoldAll(bool all) { if (all && m_next) dynamic_cast(m_next)->UnfoldAll(true); if (!IsFoldable() || !m_hiddenTree) return NULL; m_hiddenTree->UnfoldAll(true); return Unfold(); } bool GroupCell::IsLesserGCType(int comparedTo) { switch (m_groupType) { case GC_TYPE_CODE: case GC_TYPE_TEXT: case GC_TYPE_PAGEBREAK: case GC_TYPE_IMAGE: if ((comparedTo == GC_TYPE_TITLE) || (comparedTo == GC_TYPE_SECTION) || (comparedTo == GC_TYPE_SUBSECTION)) return true; else return false; case GC_TYPE_SUBSECTION: if ((comparedTo == GC_TYPE_TITLE) || (comparedTo == GC_TYPE_SECTION)) return true; else return false; case GC_TYPE_SECTION: if (comparedTo == GC_TYPE_TITLE) return true; else return false; case GC_TYPE_TITLE: return false; default: return false; } } void GroupCell::Number(int §ion, int &subsection, int &image) { switch (m_groupType) { case GC_TYPE_TITLE: section = subsection = 0; break; case GC_TYPE_SECTION: section++; subsection = 0; { wxString num = wxT(" "); num << section << wxT(" "); ((TextCell*)m_input)->SetValue(num); } break; case GC_TYPE_SUBSECTION: subsection++; { wxString num = wxT(" "); num << section << wxT(".") << subsection << wxT(" "); ((TextCell*)m_input)->SetValue(num); } break; case GC_TYPE_IMAGE: image++; { wxString num = wxString::Format(_("Figure %d:"), image); ((TextCell*)m_input)->SetValue(num); } break; default: break; } if (IsFoldable() && m_hiddenTree) m_hiddenTree->Number(section, subsection, image); if (m_next) dynamic_cast(m_next)->Number(section, subsection, image); } bool GroupCell::IsMainInput(MathCell *active) { if (m_input->m_next == NULL) return false; return (active == m_input->m_next); } wxMaxima-13.04.2/src/GroupCell.h000644 000765 000024 00000011352 12065554640 016727 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2008-2011 Andrej Vodopivec /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef GROUPCELL_H_ #define GROUPCELL_H_ #include "MathCell.h" #include "EditorCell.h" #define EMPTY_INPUT_LABEL wxT("--> ") enum { GC_TYPE_CODE, GC_TYPE_TITLE, GC_TYPE_SECTION, GC_TYPE_SUBSECTION, GC_TYPE_TEXT, GC_TYPE_IMAGE, GC_TYPE_PAGEBREAK }; class GroupCell: public MathCell { public: GroupCell(int groupType, wxString initString = wxEmptyString); ~GroupCell(); MathCell* Copy(bool all); void Destroy(); // general methods int GetGroupType() { return m_groupType; } void SetParent(MathCell *parent, bool all); // setting parent for all mathcells in GC void SetWorking(bool working) { m_working = working; } // selection methods void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SelectPoint(wxPoint& rect, MathCell** first, MathCell** last); void SelectOutput(MathCell **start, MathCell **end); void SelectRectInOutput(wxRect& rect, wxPoint& one, wxPoint& two, MathCell **first, MathCell **last); void SelectRectGroup(wxRect& rect, wxPoint& one, wxPoint& two, MathCell **first, MathCell **last); // methods for manipulating GroupCell bool SetEditableContent(wxString text); EditorCell* GetEditable(); // returns pointer to editor (if there is one) void AppendOutput(MathCell *cell); void RemoveOutput(); // exporting wxString ToTeX(bool all, wxString imgDir, wxString filename, int *imgCounter); wxString ToTeX(bool all); wxString PrepareForTeX(wxString text); wxString ToXML(bool all); // hide status bool IsHidden() { return m_hide; } void Hide(bool hide); void SwitchHide(); wxRect HideRect(); // raw manipulation of GC (should be protected) void SetInput(MathCell *input); void SetOutput(MathCell *output); void AppendInput(MathCell *cell); MathCell* GetPrompt() { return m_input; } MathCell* GetInput() { return m_input->m_next; } MathCell* GetLabel() { return m_output; } MathCell* GetOutput() { if (m_output == NULL) return NULL; else return m_output->m_next; } // wxRect GetOutputRect() { return m_outputRect; } void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Recalculate(CellParser& parser, int d_fontsize, int m_fontsize); void BreakUpCells(CellParser parser, int fontsize, int clientWidth); void BreakUpCells(MathCell *cell, CellParser parser, int fontsize, int clientWidth); void UnBreakUpCells(); void BreakLines(int fullWidth); void BreakLines(MathCell *cell, int fullWidth); void ResetInputLabel(bool all = false); // if !all only this GC is reset // folding and unfolding bool IsFoldable() { return ((m_groupType == GC_TYPE_SECTION) || (m_groupType == GC_TYPE_TITLE) || (m_groupType == GC_TYPE_SUBSECTION)); } GroupCell *GetHiddenTree() { return m_hiddenTree; } bool HideTree(GroupCell *tree); GroupCell *UnhideTree(); bool RevealHidden(); void SetHiddenTreeParent(GroupCell* parent); GroupCell *Fold(); // returns pointer to this or NULL if not successful GroupCell *Unfold(); // return pointer to last cell that unfolded GroupCell *FoldAll(bool all = false); GroupCell *UnfoldAll(bool all = false); bool IsLesserGCType(int comparedTo); bool IsMainInput(MathCell *active); void Number(int §ion, int &subsection, int &image); void RecalculateAppended(CellParser& parser); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); protected: GroupCell *m_hiddenTree; // here hidden (folded) tree of GCs is stored GroupCell *m_hiddenTreeParent; // store linkage to the parent of the fold int m_groupType; void DestroyOutput(); MathCell *m_input, *m_output; bool m_hide; bool m_working; int m_indent; int m_fontSize; int m_mathFontSize; MathCell *m_lastInOutput; MathCell *m_appendedCells; wxRect m_outputRect; wxString ToString(bool all); }; #endif /* GROUPCELL_H_ */ wxMaxima-13.04.2/src/History.cpp000644 000765 000024 00000005456 11705765322 017040 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2009-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "History.h" #include #include #include History::History(wxWindow* parent, int id) : wxPanel(parent, id) { m_history = new wxListBox(this, history_ctrl_id); m_regex = new wxTextCtrl(this, history_regex_id); wxFlexGridSizer * box = new wxFlexGridSizer(1); box->AddGrowableCol(0); box->AddGrowableRow(0); box->Add(m_history, 0, wxEXPAND | wxALL, 0); box->Add(m_regex, 0, wxEXPAND | wxALL, 1); SetSizer(box); box->Fit(this); box->SetSizeHints(this); m_current = 0; } History::~History() { //TODO: Load/save history? } void History::AddToHistory(wxString cmd) { wxString lineends = wxT(";$"); if (cmd.StartsWith(wxT(":lisp"))) lineends = wxT(";"); wxStringTokenizer cmds(cmd, lineends); while (cmds.HasMoreTokens()) { wxString curr = cmds.GetNextToken().Trim(false).Trim(true); if (curr != wxEmptyString) commands.Insert(curr, 0); } m_current = commands.GetCount(); UpdateDisplay(); } void History::UpdateDisplay() { wxLogNull disableWarnings; wxString regex = m_regex->GetValue(); wxArrayString display; wxRegEx matcher; if (regex != wxEmptyString) matcher.Compile(regex); for (unsigned int i=0; i0 && matcher.IsValid()) { if (matcher.Matches(curr)) display.Add(curr); } else display.Add(curr); } m_history->Set(display); } void History::OnRegExEvent(wxCommandEvent &ev) { UpdateDisplay(); } wxString History::GetCommand(bool next) { if (commands.GetCount() == 0) return wxEmptyString; else if (next) { --m_current; if (m_current < 0) m_current = commands.GetCount()-1; return commands[m_current]; } else { ++m_current; if (m_current >= commands.GetCount()) m_current = 0; return commands[m_current]; } } BEGIN_EVENT_TABLE(History, wxPanel) EVT_TEXT(history_regex_id, History::OnRegExEvent) END_EVENT_TABLE() wxMaxima-13.04.2/src/History.h000644 000765 000024 00000002417 11705765322 016477 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2009-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include #ifndef HISTORY_H #define HISTORY_H enum { history_ctrl_id, history_regex_id }; class History : public wxPanel { public: History(wxWindow* parent, int id); ~History(); void AddToHistory(wxString cmd); void OnRegExEvent(wxCommandEvent &ev); void UpdateDisplay(); wxString GetCommand(bool next); private: wxListBox *m_history; wxTextCtrl *m_regex; wxArrayString commands; int m_current; DECLARE_EVENT_TABLE() }; #endif wxMaxima-13.04.2/src/ImgCell.cpp000644 000765 000024 00000013350 12106413554 016674 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "ImgCell.h" #include #include #include #include #include ImgCell::ImgCell() : MathCell() { m_bitmap = NULL; m_type = MC_TYPE_IMAGE; m_fileSystem = NULL; m_drawRectangle = true; } int ImgCell::s_counter = 0; // constructor which load image ImgCell::ImgCell(wxString image, bool remove, wxFileSystem *filesystem) : MathCell() { m_bitmap = NULL; m_type = MC_TYPE_IMAGE; m_fileSystem = filesystem; // != NULL when loading from wxmx m_drawRectangle = true; if (image != wxEmptyString) LoadImage(image, remove); } ImgCell::~ImgCell() { if (m_bitmap != NULL) delete m_bitmap; if (m_next != NULL) delete m_next; } void ImgCell::LoadImage(wxString image, bool remove) { if (m_bitmap != NULL) delete m_bitmap; bool loadedImage = false; if (m_fileSystem) { wxFSFile *fsfile = m_fileSystem->OpenFile(image); if (fsfile) { // open sucessful wxInputStream *istream = fsfile->GetStream(); wxImage pngImage(*istream, wxBITMAP_TYPE_PNG); if (pngImage.Ok()) { loadedImage = true; m_bitmap = new wxBitmap(pngImage); } delete fsfile; } m_fileSystem = NULL; } else { if (wxFileExists(image)) { wxImage pngImage(image); if (pngImage.Ok()) { loadedImage = true; m_bitmap = new wxBitmap(pngImage); } if (remove) wxRemoveFile(image); } } if (!loadedImage) { m_bitmap = new wxBitmap; m_bitmap->Create(400, 250); wxString error(_("Error")); wxMemoryDC dc; dc.SelectObject(*m_bitmap); int width = 0, height = 0; dc.GetTextExtent(error, &width, &height); dc.DrawRectangle(0, 0, 400, 250); dc.DrawLine(0, 0, 400, 250); dc.DrawLine(0, 250, 400, 0); dc.DrawText(error, 200 - width/2, 125 - height/2); dc.GetTextExtent(image, &width, &height); dc.DrawText(image, 200 - width/2, 150 - height/2); } } void ImgCell::SetBitmap(wxBitmap bitmap) { if (m_bitmap != NULL) delete m_bitmap; m_width = m_height = -1; m_bitmap = new wxBitmap(bitmap); } MathCell* ImgCell::Copy(bool all) { ImgCell* tmp = new ImgCell; CopyData(this, tmp); tmp->m_drawRectangle = m_drawRectangle; tmp->m_bitmap = new wxBitmap(*m_bitmap); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void ImgCell::Destroy() { if (m_bitmap != NULL) delete m_bitmap; m_bitmap = NULL; m_next = NULL; } void ImgCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { if (m_bitmap != NULL) m_width = m_bitmap->GetWidth() + 2; else m_width = 0; double scale = parser.GetScale(); scale = MAX(scale, 1.0); m_width = (int) (scale * m_width); MathCell::RecalculateWidths(parser, fontsize, all); } void ImgCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { if (m_bitmap != NULL) m_height = m_bitmap->GetHeight() + 2; else m_height = 0; double scale = parser.GetScale(); scale = MAX(scale, 1.0); m_height= (int) (scale * m_height); m_center = m_height / 2; MathCell::RecalculateSize(parser, fontsize, all); } void ImgCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { wxDC& dc = parser.GetDC(); if (DrawThisCell(parser, point) && m_bitmap != NULL) { wxMemoryDC bitmapDC; double scale = parser.GetScale(); scale = MAX(scale, 1.0); SetPen(parser); if (m_drawRectangle) dc.DrawRectangle(wxRect(point.x, point.y - m_center, m_width, m_height)); if (scale != 1.0) { wxImage img = m_bitmap->ConvertToImage(); img.Rescale(m_width, m_height); wxBitmap bmp = img; bitmapDC.SelectObject(bmp); } else bitmapDC.SelectObject(*m_bitmap); dc.Blit(point.x + 1, point.y - m_center + 1, m_width, m_height, &bitmapDC, 0, 0); } MathCell::Draw(parser, point, fontsize, all); } wxString ImgCell::ToString(bool all) { return wxT(" << Graphics >> ") + MathCell::ToString(all); } wxString ImgCell::ToTeX(bool all) { return wxT(" << Graphics >> ") + MathCell::ToTeX(all); } bool ImgCell::ToImageFile(wxString file) { wxImage image = m_bitmap->ConvertToImage(); return image.SaveFile(file, wxBITMAP_TYPE_PNG); } wxString ImgCell::ToXML(bool all) { wxImage image = m_bitmap->ConvertToImage(); wxString basename = ImgCell::WXMXGetNewFileName(); // add to memory wxMemoryFSHandler::AddFile(basename, image, wxBITMAP_TYPE_PNG); return (m_drawRectangle ? wxT("") : wxT("")) + basename + wxT("") + MathCell::ToXML(all); } wxString ImgCell::WXMXGetNewFileName() { wxString file(wxT("image")); file << (++s_counter) << wxT(".png"); return file; } bool ImgCell::CopyToClipboard() { if (wxTheClipboard->Open()) { bool res = wxTheClipboard->SetData(new wxBitmapDataObject(*m_bitmap)); wxTheClipboard->Close(); return res; } return false; } wxMaxima-13.04.2/src/ImgCell.h000644 000765 000024 00000004200 11705765322 016342 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _IMGCELL_H_ #define _IMGCELL_H_ #include "MathCell.h" #include #include #include class ImgCell : public MathCell { public: ImgCell(); ImgCell(wxString image, bool remove = true, wxFileSystem *filesystem = NULL); ~ImgCell(); void Destroy(); void LoadImage(wxString image, bool remove = true); MathCell* Copy(bool all); void SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = *last = this; } friend class SlideShow; bool ToImageFile(wxString filename); void SetBitmap(wxBitmap bitmap); bool CopyToClipboard(); // These methods should only be used for saving wxmx files // and are shared with SlideShowCell. static void WXMXResetCounter() { s_counter = 0; } static wxString WXMXGetNewFileName(); static int WXMXImageCount() { return s_counter; } void DrawRectangle(bool draw) { m_drawRectangle = draw; } protected: wxBitmap *m_bitmap; wxFileSystem *m_fileSystem; void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); static int s_counter; bool m_drawRectangle; }; #endif //_ABSCELL_H_ wxMaxima-13.04.2/src/IntCell.cpp000644 000765 000024 00000031730 11705765322 016723 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "IntCell.h" #include "TextCell.h" #if defined __WXMSW__ #define INTEGRAL_TOP "\xF3" #define INTEGRAL_BOTTOM "\xF5" #define INTEGRAL_EXTEND "\xF4" #define INTEGRAL_FONT_SIZE 12 #endif IntCell::IntCell() : MathCell() { m_base = NULL; m_under = NULL; m_over = NULL; m_var = NULL; m_signSize = 50; m_signWidth = 18; m_intStyle = INT_IDEF; } IntCell::~IntCell() { if (m_base != NULL) delete m_base; if (m_under != NULL) delete m_under; if (m_over != NULL) delete m_over; if (m_var != NULL) delete m_var; if (m_next != NULL) delete m_next; } void IntCell::SetParent(MathCell *parent, bool all) { if (m_base != NULL) m_base->SetParent(parent, true); if (m_under != NULL) m_under->SetParent(parent, true); if (m_over != NULL) m_over->SetParent(parent, true); if (m_var != NULL) m_var->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* IntCell::Copy(bool all) { IntCell *tmp = new IntCell; CopyData(this, tmp); tmp->SetBase(m_base->Copy(true)); tmp->SetUnder(m_under->Copy(true)); tmp->SetOver(m_over->Copy(true)); tmp->SetVar(m_var->Copy(true)); tmp->m_intStyle = m_intStyle; if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void IntCell::Destroy() { if (m_base != NULL) delete m_base; if (m_under != NULL) delete m_under; if (m_over != NULL) delete m_over; if (m_var != NULL) delete m_var; m_base = NULL; m_under = NULL; m_over = NULL; m_var = NULL; m_next = NULL; } void IntCell::SetOver(MathCell* over) { if (over == NULL) return ; if (m_over != NULL) delete m_over; m_over = over; } void IntCell::SetBase(MathCell* base) { if (base == NULL) return ; if (m_base != NULL) delete m_base; m_base = base; } void IntCell::SetUnder(MathCell *under) { if (under == NULL) return ; if (m_under != NULL) delete m_under; m_under = under; } void IntCell::SetVar(MathCell *var) { if (var == NULL) return ; if (m_var != NULL) delete m_var; m_var = var; } void IntCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_signSize = SCALE_PX(50, scale); m_signWidth = SCALE_PX(18, scale); m_base->RecalculateWidths(parser, fontsize, true); m_var->RecalculateWidths(parser, fontsize, true); if (m_under == NULL) m_under = new TextCell; m_under->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - 5), true); if (m_over == NULL) m_over = new TextCell; m_over->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - 5), true); if (parser.CheckTeXFonts()) { wxDC& dc = parser.GetDC(); int fontsize1 = (int) ((fontsize * scale * 1.5 + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); dc.GetTextExtent(wxT("\x5A"), &m_signWidth, &m_signSize); #if defined __WXMSW__ m_signWidth = m_signWidth / 2; #endif m_signTop = m_signSize / 2; m_signSize = (85 * m_signSize) / 100; m_width = m_signWidth + MAX(m_over->GetFullWidth(scale) + m_signWidth, m_under->GetFullWidth(scale)) + m_base->GetFullWidth(scale) + m_var->GetFullWidth(scale) + SCALE_PX(4, scale); } else { #if defined __WXMSW__ wxDC& dc = parser.GetDC(); int fontsize1 = (int) ((INTEGRAL_FONT_SIZE * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetSymbolFontName())); dc.GetTextExtent(wxT(INTEGRAL_TOP), &m_charWidth, &m_charHeight); m_width = m_signWidth + m_base->GetFullWidth(scale) + MAX(m_over->GetFullWidth(scale), m_under->GetFullWidth(scale)) + m_var->GetFullWidth(scale) + SCALE_PX(4, scale); #else m_width = m_signWidth + m_base->GetFullWidth(scale) + MAX(m_over->GetFullWidth(scale), m_under->GetFullWidth(scale)) + m_var->GetFullWidth(scale) + SCALE_PX(4, scale); #endif } MathCell::RecalculateWidths(parser, fontsize, all); } void IntCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_under->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - 5), true); m_over->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - 5), true); m_base->RecalculateSize(parser, fontsize, true); m_var->RecalculateSize(parser, fontsize, true); if (m_intStyle == INT_DEF) { if (parser.CheckTeXFonts()) { m_center = MAX(m_over->GetMaxHeight() + SCALE_PX(4, scale) + m_signSize / 2 - m_signSize / 3, m_base->GetMaxCenter()); m_height = m_center + MAX(m_under->GetMaxHeight() + SCALE_PX(4, scale) + m_signSize / 2 - m_signSize / 3, m_base->GetMaxDrop()); } else { m_center = MAX(m_over->GetMaxHeight() + SCALE_PX(4, scale) + m_signSize / 2 - m_signSize / 3, m_base->GetMaxCenter()); m_height = m_center + MAX(m_under->GetMaxHeight() + SCALE_PX(4, scale) + m_signSize / 2 - m_signSize / 3, m_base->GetMaxDrop()); } } else { m_center = MAX(m_signSize / 2, m_base->GetMaxCenter()); m_height = m_center + MAX(m_signSize / 2, m_base->GetMaxDrop()); } MathCell::RecalculateSize(parser, fontsize, all); } void IntCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); wxPoint base(point), under(point), over(point), var(point), sign(point); if (parser.CheckTeXFonts()) { SetForeground(parser); int fontsize1 = (int) ((fontsize * scale * 1.5 + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); dc.DrawText(wxT("\x5A"), sign.x, sign.y - m_signTop); } else { #if defined __WXMSW__ SetForeground(parser); int fontsize1 = (int) ((INTEGRAL_FONT_SIZE * scale + 0.5)); int m_signWCenter = m_signWidth / 2; dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetSymbolFontName())); dc.DrawText(wxT(INTEGRAL_TOP), sign.x + m_signWCenter - m_charWidth / 2, sign.y - (m_signSize + 1) / 2); dc.DrawText(wxT(INTEGRAL_BOTTOM), sign.x + m_signWCenter - m_charWidth / 2, sign.y + (m_signSize + 1) / 2 - m_charHeight); int top, bottom; top = sign.y - (m_signSize + 1) / 2 + m_charHeight / 2; bottom = sign.y + (m_signSize + 1) / 2 - (3 * m_charHeight) / 2; if (top <= bottom) { while (top < bottom) { dc.DrawText(wxT(INTEGRAL_EXTEND), point.x + m_signWCenter - m_charWidth / 2, top); top += (2*m_charHeight)/3; } dc.DrawText(wxT(INTEGRAL_EXTEND), point.x + m_signWCenter - m_charWidth / 2, sign.y + (m_signSize + 1) / 2 - (3 * m_charHeight) / 2); } #else SetPen(parser); // top decoration int m_signWCenter = m_signWidth / 2; dc.DrawLine(sign.x + m_signWCenter, sign.y - (m_signSize + 1) / 2 + SCALE_PX(12, scale) - 1, sign.x + m_signWCenter + SCALE_PX(3, scale), sign.y - (m_signSize + 1) / 2 + SCALE_PX(3, scale)); dc.DrawLine(sign.x + m_signWCenter + SCALE_PX(3, scale), sign.y - (m_signSize + 1) / 2 + SCALE_PX(3, scale), sign.x + m_signWCenter + SCALE_PX(6, scale), sign.y - (m_signSize + 1) / 2); dc.DrawLine(sign.x + m_signWCenter + SCALE_PX(6, scale), sign.y - (m_signSize + 1) / 2, sign.x + m_signWCenter + SCALE_PX(9, scale), sign.y - (m_signSize + 1) / 2 + SCALE_PX(3, scale)); // bottom decoration dc.DrawLine(sign.x + m_signWCenter, sign.y + (m_signSize + 1) / 2 - SCALE_PX(12, scale) + 1, sign.x + m_signWCenter - SCALE_PX(3, scale), sign.y + (m_signSize + 1) / 2 - SCALE_PX(3, scale)); dc.DrawLine(sign.x + m_signWCenter - SCALE_PX(3, scale), sign.y + (m_signSize + 1) / 2 - SCALE_PX(3, scale), sign.x + m_signWCenter - SCALE_PX(6, scale), sign.y + (m_signSize + 1) / 2); dc.DrawLine(sign.x + m_signWCenter - SCALE_PX(6, scale), sign.y + (m_signSize + 1) / 2, sign.x + m_signWCenter - SCALE_PX(9, scale), sign.y + (m_signSize + 1) / 2 - SCALE_PX(3, scale)); // line dc.DrawLine(sign.x + m_signWCenter, sign.y - (m_signSize + 1) / 2 + SCALE_PX(12, scale) - 1, sign.x + m_signWCenter, sign.y + (m_signSize + 1) / 2 - SCALE_PX(12, scale) + 1); UnsetPen(parser); #endif } if (m_intStyle == INT_DEF) { under.x += m_signWidth; under.y = point.y + m_signSize / 2 + m_under->GetMaxCenter() + SCALE_PX(2, scale) - m_signSize / 3; m_under->Draw(parser, under, MAX(MC_MIN_SIZE, fontsize - 5), true); if (parser.CheckTeXFonts()) over.x += 2*m_signWidth; else over.x += m_signWidth; over.y = point.y - m_signSize / 2 - m_over->GetMaxDrop() - SCALE_PX(2, scale) + m_signSize / 3; m_over->Draw(parser, over, MAX(MC_MIN_SIZE, fontsize - 5), true); if (parser.CheckTeXFonts()) { base.x += m_signWidth + MAX(m_over->GetFullWidth(scale) + m_signWidth, m_under->GetFullWidth(scale)); } else base.x += m_signWidth + MAX(m_over->GetFullWidth(scale), m_under->GetFullWidth(scale)); } else if (parser.CheckTeXFonts()) base.x += 2*m_signWidth; else base.x += m_signWidth; m_base->Draw(parser, base, fontsize, true); var.x = base.x + m_base->GetFullWidth(scale); m_var->Draw(parser, var, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString IntCell::ToString(bool all) { wxString s = wxT("integrate("); s += m_base->ToString(true); MathCell* tmp = m_var; wxString var; tmp = tmp->m_next; if (tmp != NULL) { var = tmp->ToString(true); } wxString to = m_over->ToString(true); wxString from = m_under->ToString(true); s += wxT(",") + var; if (m_intStyle == INT_DEF) s += wxT(",") + from + wxT(",") + to; s += wxT(")"); s += MathCell::ToString(all); return s; } wxString IntCell::ToTeX(bool all) { wxString s = wxT("\\int"); wxString to = m_over->ToTeX(true); wxString from = m_under->ToTeX(true); if (m_intStyle == INT_DEF) s += wxT("_{") + from + wxT("}^{") + to + wxT("}"); else s += wxT(" "); s += m_base->ToTeX(true); s += m_var->ToTeX(true); s += MathCell::ToTeX(all); return s; } wxString IntCell::ToXML(bool all) { MathCell* tmp = m_base; wxString base = _T("") + tmp->ToXML(true) + _T(""); tmp = m_var; wxString var = ( tmp == NULL )? wxEmptyString : _T(""); var += tmp->ToXML(true); var += ( var == wxEmptyString )? wxEmptyString : _T(""); tmp = m_under; wxString from = _T("") + tmp->ToXML(true) + _T(""); tmp = m_over; wxString to = _T("") + tmp->ToXML(true) + _T(""); if (m_intStyle == INT_DEF) return wxT("") + from + to + base + var + wxT("") + MathCell::ToXML(all); else return wxT("") + base + var + wxT("") + MathCell::ToXML(all); } void IntCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; if (m_over->ContainsRect(rect)) m_over->SelectRect(rect, first, last); else if (m_under->ContainsRect(rect)) m_under->SelectRect(rect, first, last); else if (m_base->ContainsRect(rect)) m_base->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/IntCell.h000644 000765 000024 00000003573 11705765322 016374 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _INTCELL_H_ #define _INTCELL_H_ #include "MathCell.h" #include "Setup.h" enum { INT_DEF, INT_IDEF }; class IntCell : public MathCell { public: IntCell(); ~IntCell(); MathCell* Copy(bool all); void Destroy(); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void SetBase(MathCell* base); void SetUnder(MathCell* under); void SetOver(MathCell* name); void SetVar(MathCell* var); void SetIntStyle(int style) { m_intStyle = style; } wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SetParent(MathCell *parent, bool all); protected: MathCell *m_base; MathCell *m_under; MathCell *m_over; MathCell *m_var; int m_signSize; int m_signWidth; int m_intStyle; int m_signTop; #if defined __WXMSW__ int m_charHeight, m_charWidth; #endif }; #endif //_UNDERCELL_H_ wxMaxima-13.04.2/src/IntegrateWiz.cpp000644 000765 000024 00000021303 11705765322 020000 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "IntegrateWiz.h" #include enum { definite_id, special_from, special_to, numeric_id }; IntegrateWiz::IntegrateWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression:")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x"), wxDefaultPosition, wxSize(110, -1)); checkbox_1 = new wxCheckBox(this, definite_id, _("&Definite integration")); label_4 = new wxStaticText(this, -1, _("From:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("0"), wxDefaultPosition, wxSize(110, -1)); button_3 = new wxButton(this, special_from, _("Special")); label_5 = new wxStaticText(this, -1, _("To:")); text_ctrl_4 = new BTextCtrl(this, -1, wxT("1"), wxDefaultPosition, wxSize(110, -1)); button_4 = new wxButton(this, special_to, _("Special")); checkbox_2 = new wxCheckBox(this, numeric_id, _("&Numerical integration")); label_6 = new wxStaticText(this, -1, _("Method:")); wxString numeric_methods[] = { wxT("quadpack"), wxT("romberg") }; combobox_1 = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, wxDefaultSize, 2, numeric_methods, wxCB_DROPDOWN | wxCB_READONLY); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void IntegrateWiz::set_properties() { SetTitle(_("Integrate")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_3->Enable(false); button_3->Enable(false); text_ctrl_4->Enable(false); button_4->Enable(false); checkbox_2->Enable(false); combobox_1->Enable(false); int num_sel = 0; wxConfig::Get()->Read(wxT("Wiz/Int/numericSelection"), &num_sel); combobox_1->SetSelection(num_sel); text_ctrl_1->SetFocus(); } void IntegrateWiz::do_layout() { wxFlexGridSizer* grid_sizer_3 = new wxFlexGridSizer(3, 1, 0, 0); wxBoxSizer* sizer_3 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_4 = new wxFlexGridSizer(7, 2, 0, 0); wxFlexGridSizer* grid_sizer_6 = new wxFlexGridSizer(1, 2, 0, 0); wxFlexGridSizer* grid_sizer_5 = new wxFlexGridSizer(1, 2, 0, 0); grid_sizer_4->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_4->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_4->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_4->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_4->Add(20, 20, 0, 0); grid_sizer_4->Add(checkbox_1, 0, wxALL, 5); grid_sizer_4->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_5->Add(text_ctrl_3, 0, wxALL | wxEXPAND, 5); grid_sizer_5->Add(button_3, 0, wxALL, 5); grid_sizer_5->AddGrowableCol(0); grid_sizer_4->Add(grid_sizer_5, 1, 0, 0); grid_sizer_4->Add(label_5, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_6->Add(text_ctrl_4, 0, wxALL | wxEXPAND, 5); grid_sizer_6->Add(button_4, 0, wxALL, 5); grid_sizer_6->AddGrowableCol(0); grid_sizer_4->Add(grid_sizer_6, 1, 0, 0); grid_sizer_4->Add(20, 20, 0, 0); grid_sizer_4->Add(checkbox_2, 0, wxALL, 5); grid_sizer_4->Add(label_6, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_4->Add(combobox_1, 0, wxALL, 5); grid_sizer_3->Add(grid_sizer_4, 1, wxEXPAND, 0); grid_sizer_3->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_3->Add(button_1, 0, wxALL, 5); sizer_3->Add(button_2, 0, wxALL, 5); grid_sizer_3->Add(sizer_3, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_3); grid_sizer_3->Fit(this); grid_sizer_3->SetSizeHints(this); Layout(); } wxString IntegrateWiz::GetValue() { wxString s; if (checkbox_2->GetValue()) { if (combobox_1->GetValue() == wxT("romberg")) { wxConfig::Get()->Write(wxT("Wiz/Int/numericSelection"), 1); s = wxT("romberg(") + text_ctrl_1->GetValue() + wxT(", ") + text_ctrl_2->GetValue() + wxT(", ") + text_ctrl_3->GetValue() + wxT(", ") + text_ctrl_4->GetValue() + wxT(");"); } else { wxConfig::Get()->Write(wxT("Wiz/Int/numericSelection"), 0); wxString from = text_ctrl_3->GetValue(); wxString to = text_ctrl_4->GetValue(); if (from == wxT("minf") && to == wxT("inf")) s = wxT("quad_qagi(") + text_ctrl_1->GetValue() + wxT(", ") + text_ctrl_2->GetValue() + wxT(", 0, 'both);"); else if (from == wxT("minf")) s = wxT("quad_qagi(") + text_ctrl_1->GetValue() + wxT(", ") + text_ctrl_2->GetValue() + wxT(", ") + to + wxT(", minf);"); else if (to == wxT("inf")) s = wxT("quad_qagi(") + text_ctrl_1->GetValue() + wxT(", ") + text_ctrl_2->GetValue() + wxT(", ") + from + wxT(", inf);"); else s = wxT("quad_qags(") + text_ctrl_1->GetValue() + wxT(", ") + text_ctrl_2->GetValue() + wxT(", ") + from + wxT(", ") + to + wxT(");"); } } else { s = wxT("integrate(") + text_ctrl_1->GetValue() + wxT(", ") + text_ctrl_2->GetValue(); if (checkbox_1->GetValue()) { s += wxT(", ") + text_ctrl_3->GetValue() + wxT(", ") + text_ctrl_4->GetValue(); } s += wxT(");"); } return s; } void IntegrateWiz::OnCheckbox(wxCommandEvent& event) { bool enable = checkbox_1->GetValue(); text_ctrl_3->Enable(enable); button_3->Enable(enable); text_ctrl_4->Enable(enable); button_4->Enable(enable); checkbox_2->Enable(enable); enable = enable && checkbox_2->GetValue(); combobox_1->Enable(enable); } void IntegrateWiz::OnButton(wxCommandEvent& event) { switch (event.GetId()) { case special_from: { wxString choices[] = {wxT("Pi"), wxT("E"), _("Infinity"), _("- Infinity")}; wxString choice = wxGetSingleChoice(_("Select a constant"), _("Constant"), 4, choices, this); if (choice.Length()) { if (choice == wxT("Pi")) text_ctrl_3->SetValue(wxT("%pi")); else if (choice == wxT("E")) text_ctrl_3->SetValue(wxT("%e")); else if (choice == _("Infinity")) text_ctrl_3->SetValue(wxT("inf")); else if (choice == _("- Infinity")) text_ctrl_3->SetValue(wxT("minf")); } } break; case special_to: { wxString choices[] = {wxT("Pi"), wxT("E"), _("Infinity"), _("- Infinity")}; wxString choice = wxGetSingleChoice(_("Select a constant"), _("Constant"), 4, choices, this); if (choice.Length()) { if (choice == wxT("Pi")) text_ctrl_4->SetValue(wxT("%pi")); else if (choice == wxT("E")) text_ctrl_4->SetValue(wxT("%e")); else if (choice == _("Infinity")) text_ctrl_4->SetValue(wxT("inf")); else if (choice == _("- Infinity")) text_ctrl_4->SetValue(wxT("minf")); } } break; } } BEGIN_EVENT_TABLE(IntegrateWiz, wxDialog) EVT_BUTTON(special_from, IntegrateWiz::OnButton) EVT_BUTTON(special_to, IntegrateWiz::OnButton) EVT_CHECKBOX(definite_id, IntegrateWiz::OnCheckbox) EVT_CHECKBOX(numeric_id, IntegrateWiz::OnCheckbox) END_EVENT_TABLE() wxMaxima-13.04.2/src/IntegrateWiz.h000644 000765 000024 00000003660 11705765322 017453 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef INTEGRATEWIZ_H #define INTEGRATEWIZ_H #include #include #include "BTextCtrl.h" class IntegrateWiz: public wxDialog { public: IntegrateWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void set_properties(); void do_layout(); void OnButton(wxCommandEvent& event); void OnCheckbox(wxCommandEvent& event); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxCheckBox* checkbox_1; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxButton* button_3; wxStaticText* label_5; BTextCtrl* text_ctrl_4; wxButton* button_4; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; wxCheckBox* checkbox_2; wxStaticText* label_6; wxComboBox* combobox_1; DECLARE_EVENT_TABLE() }; #endif // INTEGRATEWIZ_H wxMaxima-13.04.2/src/LimitCell.cpp000644 000765 000024 00000013503 11705765322 017245 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "LimitCell.h" #define MIN_LIMIT_FONT_SIZE 8 #define LIMIT_FONT_SIZE_DECREASE 1 LimitCell::LimitCell() : MathCell() { m_base = NULL; m_under = NULL; m_name = NULL; } LimitCell::~LimitCell() { if (m_base != NULL) delete m_base; if (m_under != NULL) delete m_under; if (m_name != NULL) delete m_name; if (m_next != NULL) delete m_next; } void LimitCell::SetParent(MathCell *parent, bool all) { if (m_base != NULL) m_base->SetParent(parent, true); if (m_under != NULL) m_under->SetParent(parent, true); if (m_name != NULL) m_name->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* LimitCell::Copy(bool all) { LimitCell* tmp = new LimitCell; CopyData(this, tmp); tmp->SetBase(m_base->Copy(true)); tmp->SetUnder(m_under->Copy(true)); tmp->SetName(m_name->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(true)); return tmp; } void LimitCell::Destroy() { if (m_base != NULL) delete m_base; if (m_under != NULL) delete m_under; if (m_name != NULL) delete m_name; m_base = NULL; m_under = NULL; m_name = NULL; m_next = NULL; } void LimitCell::SetName(MathCell* name) { if (name == NULL) return ; if (m_name != NULL) delete m_name; m_name = name; } void LimitCell::SetBase(MathCell* base) { if (base == NULL) return ; if (m_base != NULL) delete m_base; m_base = base; } void LimitCell::SetUnder(MathCell *under) { if (under == NULL) return ; if (m_under != NULL) delete m_under; m_under = under; } void LimitCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_base->RecalculateWidths(parser, fontsize, true); m_under->RecalculateWidths(parser, MAX(MIN_LIMIT_FONT_SIZE, fontsize - LIMIT_FONT_SIZE_DECREASE), true); m_name->RecalculateWidths(parser, fontsize, true); m_width = MAX(m_name->GetFullWidth(scale), m_under->GetFullWidth(scale)) + m_base->GetFullWidth(scale); MathCell::RecalculateWidths(parser, fontsize, all); } void LimitCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { m_under->RecalculateSize(parser, MAX(MIN_LIMIT_FONT_SIZE, fontsize - LIMIT_FONT_SIZE_DECREASE), true); m_name->RecalculateSize(parser, fontsize, true); m_base->RecalculateSize(parser, fontsize, true); m_center = MAX(m_base->GetMaxCenter(), m_name->GetMaxCenter()); m_height = m_center + MAX(m_name->GetMaxDrop() + m_under->GetMaxHeight(), m_base->GetMaxDrop()); MathCell::RecalculateSize(parser, fontsize, all); } void LimitCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxPoint base(point), under(point), name(point); name.x = point.x + MAX(m_name->GetFullWidth(scale), m_under->GetFullWidth(scale)) / 2 - m_name->GetFullWidth(scale) / 2; m_name->Draw(parser, name, fontsize, true); under.x = point.x + MAX(m_name->GetFullWidth(scale), m_under->GetFullWidth(scale)) / 2 - m_under->GetFullWidth(scale) / 2; under.y = point.y + m_name->GetMaxDrop() + m_under->GetMaxCenter(); m_under->Draw(parser, under, MAX(MIN_LIMIT_FONT_SIZE, fontsize - LIMIT_FONT_SIZE_DECREASE), true); base.x += MAX(m_name->GetFullWidth(scale), m_under->GetFullWidth(scale)); m_base->Draw(parser, base, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString LimitCell::ToString(bool all) { wxString s(wxT("limit")); wxString under = m_under->ToString(true); wxString base = m_base->ToString(true); wxString var = under.SubString(0, under.Find(wxT("->")) - 1); wxString to = under.SubString(under.Find(wxT("->")) + 2, under.Length() - 1); if (to.Right(1) == wxT("+")) to = to.Left(to.Length() - 1) + wxT(",plus"); if (to.Right(1) == wxT("-")) to = to.Left(to.Length() - 1) + wxT(",minus"); s += wxT("(") + base + wxT(",") + var + wxT(",") + to + wxT(")"); s += MathCell::ToString(all); return s; } wxString LimitCell::ToTeX(bool all) { wxString s = wxT("\\lim"); wxString under = m_under->ToTeX(true); wxString base = m_base->ToTeX(true); wxString var = under.SubString(0, under.Find(wxT("->")) - 1); wxString to = under.SubString(under.Find(wxT("->")) + 2, under.Length() - 1); s += wxT("_{") + var + wxT("\\to ") + to + wxT("}") + base; s += MathCell::ToTeX(all); return s; } wxString LimitCell::ToXML(bool all) { return _T("") + m_name->ToXML(true) + _T("") + m_base->ToXML(true) + _T("") + m_under->ToXML(true) + _T("") + MathCell::ToXML(all); } void LimitCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; if (m_base->ContainsRect(rect)) m_base->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/LimitCell.h000644 000765 000024 00000003142 11705765322 016710 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _LIMITCELL_H_ #define _LIMITCELL_H_ #include "MathCell.h" class LimitCell : public MathCell { public: LimitCell(); ~LimitCell(); void Destroy(); MathCell* Copy(bool all); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void SetBase(MathCell* base); void SetUnder(MathCell* under); void SetName(MathCell* name); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!! void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SetParent(MathCell *parent, bool all); protected: MathCell *m_base; MathCell *m_under; MathCell *m_name; }; #endif //_UNDERCELL_H_ wxMaxima-13.04.2/src/LimitWiz.cpp000644 000765 000024 00000013103 11705765322 017133 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "LimitWiz.h" LimitWiz::LimitWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression:")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x"), wxDefaultPosition, wxSize(110, -1)); label_4 = new wxStaticText(this, -1, _("Point:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("0"), wxDefaultPosition, wxSize(110, -1)); button_1 = new wxButton(this, special, _("Special")); label_5 = new wxStaticText(this, -1, _("Direction:")); const wxString combo_box_1_choices[] = { _("both sides"), _("left"), _("right") }; combo_box_1 = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, wxSize(130, -1), 3, combo_box_1_choices, wxCB_DROPDOWN | wxCB_READONLY); checkbox_1 = new wxCheckBox(this, -1, _("&Taylor series")); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_2 = new wxButton(this, wxID_OK, _("OK")); button_3 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_3 = new wxButton(this, wxID_OK, _("OK")); #endif button_2->SetDefault(); set_properties(); do_layout(); } void LimitWiz::set_properties() { SetTitle(_("Limit")); combo_box_1->SetSelection(0); #if defined __WXMSW__ button_2->SetDefault(); #else button_3->SetDefault(); #endif text_ctrl_1->SetFocus(); } void LimitWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(3, 1, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(5, 2, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_2->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_1->Add(text_ctrl_3, 0, wxALL | wxEXPAND, 5); sizer_1->Add(button_1, 0, wxALL, 5); grid_sizer_2->Add(sizer_1, 1, 0, 0); grid_sizer_2->Add(label_5, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(combo_box_1, 0, wxALL, 5); grid_sizer_2->Add(20, 20, 0, wxALL, 5); grid_sizer_2->Add(checkbox_1, 9, wxALL, 5); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_2->Add(button_2, 0, wxALL, 5); sizer_2->Add(button_3, 0, wxALL, 5); grid_sizer_1->Add(sizer_2, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString LimitWiz::GetValue() { wxString s; if (checkbox_1->GetValue()) s = wxT("tlimit("); else s = wxT("limit("); s += text_ctrl_1->GetValue(); s += wxT(", "); s += text_ctrl_2->GetValue(); s += wxT(", "); s += text_ctrl_3->GetValue(); wxString f = combo_box_1->GetValue(); if (f == _("left")) s += wxT(", minus"); else if (f == _("right")) s += wxT(", plus"); s += wxT(");"); return s; } void LimitWiz::OnButton(wxCommandEvent& event) { wxString choices[] = {wxT("Pi"), wxT("E"), _("Infinity"), _("- Infinity")}; wxString choice = wxGetSingleChoice(_("Select a constant"), _("Constant"), 4, choices, this); if (choice.Length()) { if (choice == wxT("Pi")) text_ctrl_3->SetValue(wxT("%pi")); else if (choice == wxT("E")) text_ctrl_3->SetValue(wxT("%e")); else if (choice == _("Infinity")) text_ctrl_3->SetValue(wxT("inf")); else if (choice == _("- Infinity")) text_ctrl_3->SetValue(wxT("minf")); } } void LimitWiz::OnIdle(wxIdleEvent& ev) { wxString point = text_ctrl_3->GetValue(); if (point == wxT("inf") || point == wxT("-inf") || point == wxT("+inf") || point == wxT("minf") || point == wxT("-minf") || point == wxT("+minf")) { combo_box_1->SetValue(wxEmptyString); combo_box_1->Enable(false); } else if (combo_box_1->IsEnabled() == false) { combo_box_1->Enable(true); if (combo_box_1->GetValue() == wxEmptyString) combo_box_1->SetValue(_("both sides")); } } BEGIN_EVENT_TABLE(LimitWiz, wxDialog) EVT_BUTTON(special, LimitWiz::OnButton) EVT_IDLE(LimitWiz::OnIdle) END_EVENT_TABLE() wxMaxima-13.04.2/src/LimitWiz.h000644 000765 000024 00000003462 11705765322 016607 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef LIMITWIZ_H #define LIMITWIZ_H #include #include #include "BTextCtrl.h" enum { special }; class LimitWiz: public wxDialog { public: LimitWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void OnButton(wxCommandEvent& event); void OnIdle(wxIdleEvent& event); void set_properties(); void do_layout(); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxButton* button_1; wxStaticText* label_5; wxComboBox* combo_box_1; wxCheckBox* checkbox_1; wxStaticLine* static_line_1; wxButton* button_2; wxButton* button_3; DECLARE_EVENT_TABLE() }; #endif // LIMITWIZ_H wxMaxima-13.04.2/src/main.cpp000644 000765 000024 00000014554 12005457627 016322 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include #include #include #include #include #include #if defined __WXMSW__ #include #include #endif #include "wxMaxima.h" // On wxGTK2 we support printing only if wxWidgets is compiled with gnome_print. // We have to force gnome_print support to be linked in static builds of wxMaxima. #if defined wxUSE_LIBGNOMEPRINT #if wxUSE_LIBGNOMEPRINT #include "wx/html/forcelnk.h" FORCE_LINK(gnome_print) #endif #endif IMPLEMENT_APP(MyApp) bool MyApp::OnInit() { int lang = wxLANGUAGE_UNKNOWN; #if defined __WXMSW__ wxCmdLineParser cmdLineParser(argc, argv); cmdLineParser.AddOption(wxT("f"), wxT("ini"), wxT("use ini file"),wxCMD_LINE_VAL_STRING); cmdLineParser.AddOption(wxT("o"), wxT("open"), wxT("open file"), wxCMD_LINE_VAL_STRING); cmdLineParser.Parse(); wxString ini, file; if (cmdLineParser.Found(wxT("f"),&ini)) wxConfig::Set(new wxFileConfig(ini)); else wxConfig::Set(new wxConfig(wxT("wxMaxima"))); #else wxConfig::Set(new wxConfig(wxT("wxMaxima"))); #endif wxConfigBase *config = wxConfig::Get(); config->Read(wxT("language"), &lang); wxImage::AddHandler(new wxPNGHandler); wxImage::AddHandler(new wxXPMHandler); wxImage::AddHandler(new wxJPEGHandler); wxFileSystem::AddHandler(new wxZipFSHandler); if (lang == wxLANGUAGE_UNKNOWN) lang = wxLocale::GetSystemLanguage(); { wxLogNull disableErrors; m_locale.Init(lang); } #if defined (__WXMSW__) wxSetEnv(wxT("LANG"), m_locale.GetName()); if (!wxGetEnv(wxT("BUILD_DIR"), NULL)) wxSetWorkingDirectory(wxPathOnly(wxString(argv[0]))); m_locale.AddCatalogLookupPathPrefix(wxGetCwd() + wxT("/locale")); #elif defined (__WXMAC__) m_locale.AddCatalogLookupPathPrefix(wxGetCwd() + wxT("/wxMaxima.app/Contents/Resources/locale")); #endif m_locale.AddCatalog(wxT("wxMaxima")); m_locale.AddCatalog(wxT("wxMaxima-wxstd")); #if defined __WXMAC__ wxString path; wxGetEnv(wxT("PATH"), &path); wxSetEnv(wxT("PATH"), path << wxT(":/usr/local/bin")); #endif #if defined (__WXMAC__) wxApp::SetExitOnFrameDelete(false); wxMenuBar *menuBar = new wxMenuBar; wxMenu *fileMenu = new wxMenu; fileMenu->Append(mac_newId, _("&New\tCtrl-N")); fileMenu->Append(mac_openId, _("&Open\tCtrl-O")); menuBar->Append(fileMenu, _("File")); wxMenuBar::MacSetCommonMenuBar(menuBar); Connect(mac_newId, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MyApp::OnFileMenu)); Connect(mac_openId, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MyApp::OnFileMenu)); Connect(wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MyApp::OnFileMenu)); #endif #if defined __WXMSW__ if (cmdLineParser.Found(wxT("o"), &file)) NewWindow(wxString(file)); else NewWindow(); #else if (argc==2) NewWindow(wxString(argv[1])); else NewWindow(); #endif return true; } #if defined __WXMAC__ int window_counter = 0; #endif void MyApp::NewWindow(wxString file) { int x = 40, y = 40, h = 650, w = 950, m = 0; int rs = 0; int display_width = 1024, display_height = 768; bool have_pos; wxConfig *config = (wxConfig *)wxConfig::Get(); wxDisplaySize(&display_width, &display_height); have_pos = config->Read(wxT("pos-x"), &x); config->Read(wxT("pos-y"), &y); config->Read(wxT("pos-h"), &h); config->Read(wxT("pos-w"), &w); config->Read(wxT("pos-max"), &m); config->Read(wxT("pos-restore"), &rs); if (rs == 0) have_pos = false; if (!have_pos || m == 1 || x > display_width || y > display_height || x < 0 || y < 0) { x = 40; y = 40; h = 650; w = 950; } #if defined __WXMAC__ x += topLevelWindows.GetCount()*20; y += topLevelWindows.GetCount()*20; #endif wxMaxima *frame = new wxMaxima((wxFrame *)NULL, -1, _("wxMaxima"), wxPoint(x, y), wxSize(w, h)); frame->Move(wxPoint(x, y)); frame->SetSize(wxSize(w, h)); if (m == 1) frame->Maximize(true); if (file.Length() > 0 && wxFileExists(file)) { frame->SetOpenFile(file); } #if defined __WXMAC__ topLevelWindows.Append(frame); if (topLevelWindows.GetCount()>1) frame->SetTitle(wxString::Format(_("untitled %d"), ++window_counter)); #endif SetTopWindow(frame); frame->Show(true); frame->InitSession(); frame->ShowTip(false); } #if defined (__WXMAC__) void MyApp::OnFileMenu(wxCommandEvent &ev) { switch(ev.GetId()) { case mac_newId: NewWindow(); break; case mac_openId: { wxString file = wxFileSelector(_("Open"), wxEmptyString, wxEmptyString, wxEmptyString, _("wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx"), wxFD_OPEN); if (file.Length() > 0) NewWindow(file); } break; case wxID_EXIT: { #if defined __WXMAC__ bool quit = true; wxWindowList::compatibility_iterator node = topLevelWindows.GetFirst(); while (node) { wxWindow *frame = node->GetData(); node = node->GetNext(); frame->Raise(); if (!frame->Close()) { quit = false; break; } } if (quit) wxExit(); #else wxWindow *frame = GetTopWindow(); if (frame == NULL) wxExit(); else if (frame->Close()) wxExit(); #endif } break; } } void MyApp::MacNewFile() { wxWindow *frame = GetTopWindow(); if (frame == NULL) NewWindow(); } void MyApp::MacOpenFile(const wxString &file) { NewWindow(file); } #endif wxMaxima-13.04.2/src/Makefile.am000644 000765 000024 00000004302 11770320466 016712 0ustar00andrejstaff000000 000000 AM_CXXFLAGS = -DPREFIX=\"$(prefix)\" bin_PROGRAMS = wxmaxima wxmaxima_SOURCES = \ Config.cpp Config.h \ main.cpp \ wxMaxima.cpp wxMaxima.h \ wxMaximaFrame.cpp wxMaximaFrame.h \ SubstituteWiz.cpp SubstituteWiz.h \ IntegrateWiz.cpp IntegrateWiz.h \ LimitWiz.cpp LimitWiz.h \ Plot2dWiz.cpp Plot2dWiz.h \ SeriesWiz.cpp SeriesWiz.h \ SumWiz.cpp SumWiz.h \ Plot3dWiz.cpp Plot3dWiz.h \ Gen1Wiz.cpp Gen1Wiz.h \ Gen2Wiz.cpp Gen2Wiz.h \ Gen3Wiz.cpp Gen3Wiz.h \ Gen4Wiz.cpp Gen4Wiz.h \ BC2Wiz.cpp BC2Wiz.h \ SystemWiz.cpp SystemWiz.h \ BTextCtrl.cpp BTextCtrl.h \ MatWiz.cpp MatWiz.h \ ExptCell.cpp ExptCell.h \ FracCell.cpp FracCell.h \ SqrtCell.cpp SqrtCell.h \ MatrCell.cpp MatrCell.h \ MathCell.cpp MathCell.h \ SubCell.cpp SubCell.h \ IntCell.cpp IntCell.h \ TextCell.cpp TextCell.h \ LimitCell.cpp LimitCell.h \ ParenCell.cpp ParenCell.h \ SumCell.cpp SumCell.h \ AbsCell.cpp AbsCell.h \ AtCell.cpp AtCell.h \ DiffCell.cpp DiffCell.h \ FunCell.cpp FunCell.h \ MathCtrl.cpp MathCtrl.h \ CellParser.cpp CellParser.h \ MathParser.cpp MathParser.h \ MathPrintout.cpp MathPrintout.h \ Bitmap.cpp Bitmap.h \ MyTipProvider.cpp MyTipProvider.h \ EditorCell.cpp EditorCell.h \ ImgCell.cpp ImgCell.h \ SubSupCell.cpp SubSupCell.h \ SlideShowCell.cpp SlideShowCell.h \ GroupCell.cpp GroupCell.h \ EvaluationQueue.cpp EvaluationQueue.h \ History.cpp History.h \ Autocomplete.cpp Autocomplete.h \ PlotFormatWiz.cpp PlotFormatWiz.h \ TextStyle.h wxmaxima_LDFLAGS = wxmaxima_LDADD = $(RC_OBJ) $(WX_LIBS) wxmaxima_DEPENDENCIES = $(RC_OBJ) EXTRA_wxmaxima_SOURCES = Resources.rc Resources.o : windres --include-dir $(WX_RC_PATH) --include-dir ../art Resources.rc -o Resources.o wxMaxima-13.04.2/src/Makefile.in000644 000765 000024 00000050675 12150103454 016726 0ustar00andrejstaff000000 000000 # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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@ target_triplet = @target@ bin_PROGRAMS = wxmaxima$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/Setup.h.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = Setup.h CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_wxmaxima_OBJECTS = Config.$(OBJEXT) main.$(OBJEXT) \ wxMaxima.$(OBJEXT) wxMaximaFrame.$(OBJEXT) \ SubstituteWiz.$(OBJEXT) IntegrateWiz.$(OBJEXT) \ LimitWiz.$(OBJEXT) Plot2dWiz.$(OBJEXT) SeriesWiz.$(OBJEXT) \ SumWiz.$(OBJEXT) Plot3dWiz.$(OBJEXT) Gen1Wiz.$(OBJEXT) \ Gen2Wiz.$(OBJEXT) Gen3Wiz.$(OBJEXT) Gen4Wiz.$(OBJEXT) \ BC2Wiz.$(OBJEXT) SystemWiz.$(OBJEXT) BTextCtrl.$(OBJEXT) \ MatWiz.$(OBJEXT) ExptCell.$(OBJEXT) FracCell.$(OBJEXT) \ SqrtCell.$(OBJEXT) MatrCell.$(OBJEXT) MathCell.$(OBJEXT) \ SubCell.$(OBJEXT) IntCell.$(OBJEXT) TextCell.$(OBJEXT) \ LimitCell.$(OBJEXT) ParenCell.$(OBJEXT) SumCell.$(OBJEXT) \ AbsCell.$(OBJEXT) AtCell.$(OBJEXT) DiffCell.$(OBJEXT) \ FunCell.$(OBJEXT) MathCtrl.$(OBJEXT) CellParser.$(OBJEXT) \ MathParser.$(OBJEXT) MathPrintout.$(OBJEXT) Bitmap.$(OBJEXT) \ MyTipProvider.$(OBJEXT) EditorCell.$(OBJEXT) ImgCell.$(OBJEXT) \ SubSupCell.$(OBJEXT) SlideShowCell.$(OBJEXT) \ GroupCell.$(OBJEXT) EvaluationQueue.$(OBJEXT) \ History.$(OBJEXT) Autocomplete.$(OBJEXT) \ PlotFormatWiz.$(OBJEXT) wxmaxima_OBJECTS = $(am_wxmaxima_OBJECTS) am__DEPENDENCIES_1 = wxmaxima_LINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ $(wxmaxima_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(wxmaxima_SOURCES) $(EXTRA_wxmaxima_SOURCES) DIST_SOURCES = $(wxmaxima_SOURCES) $(EXTRA_wxmaxima_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS_TO_INSTALL = @CATALOGS_TO_INSTALL@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RC_OBJ = @RC_OBJ@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ WX_CFLAGS = @WX_CFLAGS@ WX_CFLAGS_ONLY = @WX_CFLAGS_ONLY@ WX_CONFIG_PATH = @WX_CONFIG_PATH@ WX_CPPFLAGS = @WX_CPPFLAGS@ WX_CXXFLAGS = @WX_CXXFLAGS@ WX_CXXFLAGS_ONLY = @WX_CXXFLAGS_ONLY@ WX_LIBS = @WX_LIBS@ WX_LIBS_STATIC = @WX_LIBS_STATIC@ WX_RC_PATH = @WX_RC_PATH@ WX_RESCOMP = @WX_RESCOMP@ WX_VERSION = @WX_VERSION@ WX_VERSION_MAJOR = @WX_VERSION_MAJOR@ WX_VERSION_MICRO = @WX_VERSION_MICRO@ WX_VERSION_MINOR = @WX_VERSION_MINOR@ 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@ ac_ct_CXX = @ac_ct_CXX@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CXXFLAGS = -DPREFIX=\"$(prefix)\" wxmaxima_SOURCES = \ Config.cpp Config.h \ main.cpp \ wxMaxima.cpp wxMaxima.h \ wxMaximaFrame.cpp wxMaximaFrame.h \ SubstituteWiz.cpp SubstituteWiz.h \ IntegrateWiz.cpp IntegrateWiz.h \ LimitWiz.cpp LimitWiz.h \ Plot2dWiz.cpp Plot2dWiz.h \ SeriesWiz.cpp SeriesWiz.h \ SumWiz.cpp SumWiz.h \ Plot3dWiz.cpp Plot3dWiz.h \ Gen1Wiz.cpp Gen1Wiz.h \ Gen2Wiz.cpp Gen2Wiz.h \ Gen3Wiz.cpp Gen3Wiz.h \ Gen4Wiz.cpp Gen4Wiz.h \ BC2Wiz.cpp BC2Wiz.h \ SystemWiz.cpp SystemWiz.h \ BTextCtrl.cpp BTextCtrl.h \ MatWiz.cpp MatWiz.h \ ExptCell.cpp ExptCell.h \ FracCell.cpp FracCell.h \ SqrtCell.cpp SqrtCell.h \ MatrCell.cpp MatrCell.h \ MathCell.cpp MathCell.h \ SubCell.cpp SubCell.h \ IntCell.cpp IntCell.h \ TextCell.cpp TextCell.h \ LimitCell.cpp LimitCell.h \ ParenCell.cpp ParenCell.h \ SumCell.cpp SumCell.h \ AbsCell.cpp AbsCell.h \ AtCell.cpp AtCell.h \ DiffCell.cpp DiffCell.h \ FunCell.cpp FunCell.h \ MathCtrl.cpp MathCtrl.h \ CellParser.cpp CellParser.h \ MathParser.cpp MathParser.h \ MathPrintout.cpp MathPrintout.h \ Bitmap.cpp Bitmap.h \ MyTipProvider.cpp MyTipProvider.h \ EditorCell.cpp EditorCell.h \ ImgCell.cpp ImgCell.h \ SubSupCell.cpp SubSupCell.h \ SlideShowCell.cpp SlideShowCell.h \ GroupCell.cpp GroupCell.h \ EvaluationQueue.cpp EvaluationQueue.h \ History.cpp History.h \ Autocomplete.cpp Autocomplete.h \ PlotFormatWiz.cpp PlotFormatWiz.h \ TextStyle.h wxmaxima_LDFLAGS = wxmaxima_LDADD = $(RC_OBJ) $(WX_LIBS) wxmaxima_DEPENDENCIES = $(RC_OBJ) EXTRA_wxmaxima_SOURCES = Resources.rc all: Setup.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .cpp .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh Setup.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/Setup.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/Setup.h $(srcdir)/Setup.h.in: $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f Setup.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) wxmaxima$(EXEEXT): $(wxmaxima_OBJECTS) $(wxmaxima_DEPENDENCIES) @rm -f wxmaxima$(EXEEXT) $(wxmaxima_LINK) $(wxmaxima_OBJECTS) $(wxmaxima_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AbsCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AtCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Autocomplete.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BC2Wiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BTextCtrl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Bitmap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CellParser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Config.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DiffCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EditorCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EvaluationQueue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ExptCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FracCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FunCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gen1Wiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gen2Wiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gen3Wiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gen4Wiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GroupCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/History.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ImgCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IntCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IntegrateWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LimitCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LimitWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MatWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MathCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MathCtrl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MathParser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MathPrintout.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MatrCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MyTipProvider.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ParenCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Plot2dWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Plot3dWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PlotFormatWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SeriesWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SlideShowCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SqrtCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SubCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SubSupCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SubstituteWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SumCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SumWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SystemWiz.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TextCell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wxMaxima.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wxMaximaFrame.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) Setup.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) Setup.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) Setup.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) Setup.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) Setup.h installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-binPROGRAMS install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags distclean distclean-compile \ distclean-generic distclean-hdr distclean-tags distdir dvi \ dvi-am html html-am info info-am install 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 \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-binPROGRAMS Resources.o : windres --include-dir $(WX_RC_PATH) --include-dir ../art Resources.rc -o Resources.o # 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: wxMaxima-13.04.2/src/MathCell.cpp000644 000765 000024 00000027425 11705765322 017070 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "MathCell.h" MathCell::MathCell() { m_next = NULL; m_previous = NULL; m_nextToDraw = NULL; m_previousToDraw = NULL; m_group = NULL; m_fullWidth = -1; m_lineWidth = -1; m_maxCenter = -1; m_maxDrop = -1; m_width = -1; m_height = -1; m_center = -1; m_breakLine = false; m_breakPage = false; m_forceBreakLine = false; m_bigSkip = true; m_isHidden = false; m_isBroken = false; m_highlight = false; m_type = MC_TYPE_DEFAULT; m_textStyle = TS_VARIABLE; } /*** * Derived classes must test if m_next if not NULL end delete it!!! */ MathCell::~MathCell() {} void MathCell::SetType(int type) { m_type = type; switch (m_type) { case MC_TYPE_MAIN_PROMPT: m_textStyle = TS_MAIN_PROMPT; break; case MC_TYPE_PROMPT: m_textStyle = TS_OTHER_PROMPT; break; case MC_TYPE_LABEL: m_textStyle = TS_LABEL; break; case MC_TYPE_INPUT: m_textStyle = TS_INPUT; break; case MC_TYPE_ERROR: m_textStyle = TS_ERROR; break; case MC_TYPE_TEXT: m_textStyle = TS_TEXT; break; case MC_TYPE_SUBSECTION: m_textStyle = TS_SUBSECTION; break; case MC_TYPE_SECTION: m_textStyle = TS_SECTION; break; case MC_TYPE_TITLE: m_textStyle = TS_TITLE; break; default: m_textStyle = TS_DEFAULT; } } void MathCell::SetParent(MathCell *parent, bool all) { m_group = parent; if (m_next != NULL && all) m_next->SetParent(parent, all); } /*** * Append new cell to the end of group. */ void MathCell::AppendCell(MathCell *p_next) { if (p_next == NULL) return ; m_maxDrop = -1; m_maxCenter = -1; if (m_next == NULL) { m_next = p_next; m_next->m_previous = this; MathCell *tmp = this; while (tmp->m_nextToDraw != NULL) tmp = tmp->m_nextToDraw; tmp->m_nextToDraw = p_next; p_next->m_previousToDraw = tmp; } else m_next->AppendCell(p_next); }; /*** * Get the pointer to the parent group cell */ MathCell* MathCell::GetParent() { return m_group; } /*** * Get the maximum drop of the center. */ int MathCell::GetMaxCenter() { if (m_maxCenter == -1) { int center = m_isBroken ? 0 : m_center; if (m_nextToDraw == NULL) m_maxCenter = center; else { // If the next cell is on a new line, maxCenter is m_center if (m_nextToDraw->m_breakLine && !m_nextToDraw->m_isBroken) m_maxCenter = center; else m_maxCenter = MAX(center, m_nextToDraw->GetMaxCenter()); } } return m_maxCenter; } /*** * Get the maximum drop of cell. */ int MathCell::GetMaxDrop() { if (m_maxDrop == -1) { int drop = m_isBroken ? 0 : (m_height - m_center); if (m_nextToDraw == NULL) m_maxDrop = drop; else { if (m_nextToDraw->m_breakLine && !m_nextToDraw->m_isBroken) m_maxDrop = drop; else m_maxDrop = MAX(drop, m_nextToDraw->GetMaxDrop()); } } return m_maxDrop; } /*** * Get the maximum hight of cells in line. */ int MathCell::GetMaxHeight() { return GetMaxCenter() + GetMaxDrop(); } /*** * Get full width of this group. */ int MathCell::GetFullWidth(double scale) { if (m_fullWidth == -1) { if (m_next == NULL) m_fullWidth = m_width; else m_fullWidth = m_width + m_next->GetFullWidth(scale) + SCALE_PX(MC_CELL_SKIP, scale); } return m_fullWidth; } /*** * Get the width of this line. */ int MathCell::GetLineWidth(double scale) { int width = m_isBroken ? 0 : m_width; if (m_lineWidth == -1) { if (m_nextToDraw == NULL || m_nextToDraw->m_breakLine || m_nextToDraw->m_type == MC_TYPE_MAIN_PROMPT) m_lineWidth = width; else m_lineWidth = width + m_nextToDraw->GetLineWidth(scale) + SCALE_PX(MC_CELL_SKIP, scale); } return m_lineWidth; } /*** * Draw this cell to dc (each derived class must draw the content of the cell * and then call MathCall::Draw(...). */ void MathCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { m_currentPoint.x = point.x; m_currentPoint.y = point.y; if (m_nextToDraw != NULL && all) { double scale = parser.GetScale(); point.x += m_width + SCALE_PX(MC_CELL_SKIP, scale); m_nextToDraw->Draw(parser, point, fontsize, true); } } /*** * Calculate the size of cell, only needed once. Each derived class must call * MathCell::RecalculateSize(...). * * Should set: m_height, m_center. */ void MathCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { if (m_next != NULL && all) m_next->RecalculateSize(parser, fontsize, all); } /*** * Recalculate widths of cells. (Used for changing font size - must recalculate * all size information). * * Should set: set m_width. */ void MathCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { ResetData(); if (m_next != NULL && all) m_next->RecalculateWidths(parser, fontsize, all); } /*** * Is this cell visible in the window. */ bool MathCell::DrawThisCell(CellParser& parser, wxPoint point) { int top = parser.GetTop(); int bottom = parser.GetBottom(); if (top == -1 || bottom == -1) return true; if (point.y - GetMaxCenter() > bottom || point.y + GetMaxDrop() < top) return false; return true; } /*** * Get the rectangle around this cell - if all is true then return the rectangle * around the whole line. */ wxRect MathCell::GetRect(bool all) { if (m_isBroken) return wxRect( -1, -1, 0, 0); if (all) return wxRect(m_currentPoint.x, m_currentPoint.y - GetMaxCenter(), GetLineWidth(1.0), GetMaxHeight()); return wxRect(m_currentPoint.x, m_currentPoint.y - m_center, m_width, m_height); } /*** * Draws a box around this cell - if all is true draws a box around the whole * line. */ void MathCell::DrawBoundingBox(wxDC& dc, bool all, int border) { wxRect rect = GetRect(all); int x = rect.GetX(), y = rect.GetY(); int width = rect.GetWidth(), height = rect.GetHeight(); dc.DrawRectangle(x - border, y - border, width + 2*border, height + 2*border); } /*** * Do we have an operator in this line - draw () in frac... */ bool MathCell::IsCompound() { if (IsOperator()) return true; if (m_next == NULL) return false; return m_next->IsCompound(); } /*** * Is operator - draw () in frac... */ bool MathCell::IsOperator() { return false; } /*** * Return the string representation of cell. */ wxString MathCell::ToString(bool all) { if (all && m_next != NULL) { if (m_next->ForceBreakLineHere()) return wxT("\n") + m_next->ToString(all); return m_next->ToString(all); } return wxEmptyString; } wxString MathCell::ToTeX(bool all) { if (all && m_next != NULL) return m_next->ToTeX(all); return wxEmptyString; } wxString MathCell::ToXML(bool all) { if (all && m_next != NULL) { if (m_next->ForceBreakLineHere()) return wxT("\n") + m_next->ToXML(all); return m_next->ToXML(all); } return wxEmptyString; } /*** * Get the part for diff tag support - only ExpTag overvrides this. */ wxString MathCell::GetDiffPart() { return wxEmptyString; } /*** * Find the first and last cell in rectangle rect in this line. */ void MathCell::SelectRect(wxRect& rect, MathCell** first, MathCell** last) { SelectFirst(rect, first); if (*first != NULL) { *last = *first; (*first)->SelectLast(rect, last); if (*last == *first) (*first)->SelectInner(rect, first, last); } else *last = NULL; } /*** * Find the first cell in rectangle rect in this line. */ void MathCell::SelectFirst(wxRect& rect, MathCell** first) { if (rect.Intersects(GetRect(false))) *first = this; else if (m_nextToDraw != NULL) m_nextToDraw->SelectFirst(rect, first); else *first = NULL; } /*** * Find the last cell in rectangle rect in this line. */ void MathCell::SelectLast(wxRect& rect, MathCell** last) { if (rect.Intersects(GetRect(false))) *last = this; if (m_nextToDraw != NULL) m_nextToDraw->SelectLast(rect, last); } /*** * Select rectangle in deeper cell - derived classes should override this */ void MathCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = this; *last = this; } /*** * Break line when the cell is not broken only. */ bool MathCell::BreakLineHere() { return (!m_isBroken && (m_breakLine || m_forceBreakLine)); } /*** * Does this cell contain a rectangle sm */ bool MathCell::ContainsRect(wxRect& sm, bool all) { wxRect big = GetRect(all); if (big.x <= sm.x && big.y <= sm.y && big.x + big.width >= sm.x + sm.width && big.y + big.height >= sm.y + sm.height) return true; return false; } /*** * Resets remembered data. */ void MathCell::ResetData() { m_fullWidth = -1; m_lineWidth = -1; m_maxCenter = -1; m_maxDrop = -1; // m_currentPoint.x = -1; // m_currentPoint.y = -1; m_breakLine = m_forceBreakLine; } /*** * Unbreaks broken cells */ void MathCell::Unbreak(bool all) { ResetData(); m_isBroken = false; m_nextToDraw = m_next; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = this; if (all && m_next != NULL) m_next->Unbreak(all); } /*** * Set the pen in device context accordint to the style of the cell. */ void MathCell::SetPen(CellParser& parser) { wxDC& dc = parser.GetDC(); if (m_highlight) dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_HIGHLIGHT), 1, wxSOLID))); else if (m_type == MC_TYPE_PROMPT) dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_OTHER_PROMPT), 1, wxSOLID))); else if (m_type == MC_TYPE_INPUT) dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_INPUT), 1, wxSOLID))); else dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_DEFAULT), 1, wxSOLID))); } /*** * Reset the pen in the device context. */ void MathCell::UnsetPen(CellParser& parser) { wxDC& dc = parser.GetDC(); if (m_type == MC_TYPE_PROMPT || m_type == MC_TYPE_INPUT || m_highlight) dc.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_DEFAULT), 1, wxSOLID))); } /*** * Copy all importatn data from s to t */ void MathCell::CopyData(MathCell* s, MathCell* t) { t->m_altCopyText = s->m_altCopyText; t->m_forceBreakLine = s->m_forceBreakLine; t->m_type = s->m_type; t->m_textStyle = s->m_textStyle; } void MathCell::SetForeground(CellParser& parser) { wxColour color; wxDC& dc = parser.GetDC(); if (m_highlight) { color = parser.GetColor(TS_HIGHLIGHT); } else { switch (m_type) { case MC_TYPE_PROMPT: color = parser.GetColor(TS_OTHER_PROMPT); break; case MC_TYPE_MAIN_PROMPT: color = parser.GetColor(TS_MAIN_PROMPT); break; case MC_TYPE_ERROR: color = wxColour(wxT("red")); break; case MC_TYPE_LABEL: color = parser.GetColor(TS_LABEL); break; default: color = parser.GetColor(m_textStyle); break; } } dc.SetTextForeground(color); } bool MathCell::IsMath() { return !(m_textStyle == TS_DEFAULT || m_textStyle == TS_LABEL || m_textStyle == TS_INPUT); } wxMaxima-13.04.2/src/MathCell.h000644 000765 000024 00000014175 11725360071 016525 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _MATHCELL_H_ #define _MATHCELL_H_ #define MAX(a,b) ((a)>(b) ? (a) : (b)) #define MIN(a,b) ((a)>(b) ? (b) : (a)) #define ABS(a) ((a)>=0 ? (a) : -(a)) #define SCALE_PX(px, scale) ((int)((double)((px)*(scale)) + 0.5)) #define MC_CELL_SKIP 0 #define MC_BASE_INDENT 12 #define MC_LINE_SKIP 2 #define MC_TEXT_PADDING 1 #define MC_GROUP_SKIP 20 #define MC_GROUP_LEFT_INDENT 15 #if defined __WXMAC__ #define MC_EXP_INDENT 2 #define MC_MIN_SIZE 10 #define MC_MAX_SIZE 36 #else #define MC_EXP_INDENT 4 #define MC_MIN_SIZE 8 #define MC_MAX_SIZE 36 #endif #include #include "CellParser.h" #include "TextStyle.h" enum { MC_TYPE_DEFAULT, MC_TYPE_MAIN_PROMPT, MC_TYPE_PROMPT, MC_TYPE_LABEL, MC_TYPE_INPUT, MC_TYPE_ERROR, MC_TYPE_TEXT, MC_TYPE_SUBSECTION, MC_TYPE_SECTION, MC_TYPE_TITLE, MC_TYPE_IMAGE, MC_TYPE_SLIDE, MC_TYPE_GROUP }; class MathCell { public: MathCell(); virtual ~MathCell(); virtual MathCell* Copy(bool all) = 0; virtual void Destroy() = 0; void AppendCell(MathCell *p_next); void BreakLine(bool breakLine) { m_breakLine = breakLine; } void BreakPage(bool breakPage) { m_breakPage = breakPage; } bool BreakLineHere(); bool ForceBreakLineHere() { return m_forceBreakLine; } bool BreakPageHere() { return m_breakPage; } virtual bool BreakUp() { return false; } bool ContainsRect(wxRect& big, bool all = true); bool ContainsPoint(wxPoint& point) { return GetRect().Contains(point); } void CopyData(MathCell *s, MathCell *t); virtual void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void DrawBoundingBox(wxDC& dc, bool all = false, int border = 0); bool DrawThisCell(CellParser& parser, wxPoint point); void ForceBreakLine(bool force) { m_forceBreakLine = m_breakLine = force; } int GetHeight() { return m_height; } int GetWidth() { return m_width; } int GetCenter() { return m_center; } int GetDrop() { return m_height - m_center; } int GetType() { return m_type; } int GetMaxDrop(); int GetMaxCenter(); int GetMaxHeight(); int GetFullWidth(double scale); int GetLineWidth(double scale); int GetCurrentX() { return m_currentPoint.x; } int GetCurrentY() { return m_currentPoint.y; } virtual wxRect GetRect(bool all = false); virtual wxString GetDiffPart(); virtual void RecalculateSize(CellParser& parser, int fontsize, bool all); virtual void RecalculateWidths(CellParser& parser, int fontsize, bool all); void ResetData(); void ResetSize() { m_width = m_height = -1; } void SetSkip(bool skip) { m_bigSkip = skip; } void SetType(int type); int GetStyle(){ return m_textStyle; } //l'ho aggiunto io void SetPen(CellParser& parser); void SetHighlight(bool highlight) { m_highlight = highlight; } virtual void SetExponentFlag() { } virtual void SetValue(wxString text) { } virtual wxString GetValue() { return wxEmptyString; } void SelectRect(wxRect& rect, MathCell** first, MathCell** last); void SelectFirst(wxRect& rect, MathCell** first); void SelectLast(wxRect& rect, MathCell** last); virtual void SelectInner(wxRect& rect, MathCell** first, MathCell** last); virtual bool IsOperator(); bool IsCompound(); virtual bool IsShortNum() { return false; } MathCell* GetParent(); virtual wxString ToString(bool all); virtual wxString ToTeX(bool all); virtual wxString ToXML(bool all); void UnsetPen(CellParser& parser); virtual void Unbreak(bool all); MathCell *m_next, *m_previous, *m_group; MathCell *m_nextToDraw, *m_previousToDraw; wxPoint m_currentPoint; // Current point in console (the center of the cell) bool m_bigSkip; bool m_isBroken; bool m_isHidden; bool IsComment() { return m_type == MC_TYPE_TEXT || m_type == MC_TYPE_SECTION || m_type == MC_TYPE_SUBSECTION || m_type == MC_TYPE_TITLE; } bool IsEditable(bool input = false) { return (m_type == MC_TYPE_INPUT && m_previous != NULL && m_previous->m_type == MC_TYPE_MAIN_PROMPT) || (!input && IsComment()); } virtual void ProcessEvent(wxKeyEvent& event) { } virtual bool ActivateCell() { return false; } virtual bool AddEnding() { return false; } virtual void SelectPointText(wxDC &dc, wxPoint& point) { } virtual void SelectRectText(wxDC &dc, wxPoint& one, wxPoint& two) { } virtual void PasteFromClipboard(bool primary = false) { } virtual bool CopyToClipboard() { return false; } virtual bool CutToClipboard() { return false; } virtual void SelectAll() { } virtual bool CanCopy() { return false; } virtual void SetMatchParens(bool match) { } virtual wxPoint PositionToPoint(CellParser& parser, int pos = -1) { return wxPoint(-1, -1); } virtual bool IsDirty() { return false; } virtual void SwitchCaretDisplay() { } virtual void SetFocus(bool focus) { } void SetForeground(CellParser& parser); virtual bool IsActive() { return false; } virtual void SetParent(MathCell *parent, bool all); void SetStyle(int style) { m_textStyle = style; } bool IsMath(); void SetAltCopyText(wxString text) { m_altCopyText = text; } protected: int m_height; int m_width; int m_fullWidth; int m_lineWidth; int m_center; int m_maxCenter; int m_maxDrop; int m_type; int m_textStyle; bool m_breakPage; bool m_breakLine; bool m_forceBreakLine; bool m_highlight; wxString m_altCopyText; // m_altCopyText is not check in all cells! }; #endif //_MATHCELL_H_ wxMaxima-13.04.2/src/MathCtrl.cpp000644 000765 000024 00000320611 12073007012 017066 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2008-2009 Ziga Lenarcic /// (C) 2012-2013 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "wxMaxima.h" #include "MathCtrl.h" #include "Bitmap.h" #include "Setup.h" #include "EditorCell.h" #include "GroupCell.h" #include "SlideShowCell.h" #include "ImgCell.h" #include #include #include #include #include #include #include #include #include #include #define SCROLL_UNIT 10 #define CARET_TIMER_TIMEOUT 500 #define ANIMATION_TIMER_TIMEOUT 300 #define AC_MENU_LENGTH 25 void AddLineToFile(wxTextFile& output, wxString s, bool unicode = true); enum { TIMER_ID, CARET_TIMER_ID, ANIMATION_TIMER_ID }; MathCtrl::MathCtrl(wxWindow* parent, int id, wxPoint position, wxSize size) : wxScrolledCanvas( parent, id, position, size, wxVSCROLL | wxHSCROLL | wxWANTS_CHARS #if defined __WXMSW__ | wxSUNKEN_BORDER #endif ) { m_tree = NULL; m_memory = NULL; m_selectionStart = NULL; m_selectionEnd = NULL; m_clickType = CLICK_TYPE_NONE; m_clickInGC = NULL; m_last = NULL; m_hCaretActive = true; m_hCaretPosition = NULL; // horizontal caret at the top of document m_hCaretPositionStart = m_hCaretPositionEnd = NULL; m_activeCell = NULL; m_leftDown = false; m_mouseDrag = false; m_mouseOutside = false; m_editingEnabled = true; m_switchDisplayCaret = true; m_timer.SetOwner(this, TIMER_ID); m_caretTimer.SetOwner(this, CARET_TIMER_ID); m_animationTimer.SetOwner(this, ANIMATION_TIMER_ID); m_animate = false; m_workingGroup = NULL; m_saved = true; m_zoomFactor = 1.0; // set zoom to 100% m_evaluationQueue = new EvaluationQueue(); AdjustSize(); // hack to workaround problems in RtL locales, http://bugzilla.redhat.com/455863 SetLayoutDirection(wxLayout_LeftToRight); } MathCtrl::~MathCtrl() { if (m_tree != NULL) DestroyTree(); if (m_memory != NULL) delete m_memory; delete m_evaluationQueue; } /*** * Redraw the control */ void MathCtrl::OnPaint(wxPaintEvent& event) { wxPaintDC dc(this); wxMemoryDC dcm; // Get the font size wxConfig *config = (wxConfig *)wxConfig::Get(); // Prepare data wxRect rect = GetUpdateRegion().GetBox(); //printf("Updating rect [%d, %d] -> [%d, %d]\n", rect.x, rect.y, rect.width, rect.height); wxSize sz = GetSize(); int tmp, top, bottom, drop; CalcUnscrolledPosition(0, rect.GetTop(), &tmp, &top); CalcUnscrolledPosition(0, rect.GetBottom(), &tmp, &bottom); // Thest if m_memory is NULL (resize event) if (m_memory == NULL) m_memory = new wxBitmap(sz.x, sz.y); // Prepare memory DC wxString bgColStr= wxT("white"); config->Read(wxT("Style/Background/color"), &bgColStr); SetBackgroundColour(wxColour(bgColStr)); dcm.SelectObject(*m_memory); dcm.SetBackground(*(wxTheBrushList->FindOrCreateBrush(GetBackgroundColour(), wxSOLID))); dcm.Clear(); PrepareDC(dcm); dcm.SetMapMode(wxMM_TEXT); dcm.SetBackgroundMode(wxTRANSPARENT); dcm.SetLogicalFunction(wxCOPY); CellParser parser(dcm); parser.SetBounds(top, bottom); parser.SetZoomFactor(m_zoomFactor); int fontsize = parser.GetDefaultFontSize(); // apply zoomfactor to defaultfontsize // Draw content if (m_tree != NULL) { // // First draw selection under content with wxCOPY and selection brush/color // if (m_selectionStart != NULL) { MathCell* tmp = m_selectionStart; #if defined(__WXMAC__) dcm.SetPen(wxNullPen); // wxmac doesn't like a border with wxXOR #else dcm.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_SELECTION), 1, 1))); // window linux, set a pen #endif dcm.SetBrush( *(wxTheBrushList->FindOrCreateBrush(parser.GetColor(TS_SELECTION)))); //highlight c. if (m_selectionStart->GetType() == MC_TYPE_GROUP) // selection of groups { while (tmp != NULL) { wxRect rect = tmp->GetRect(); // TODO globally define x coordinates of the left GC brackets dcm.DrawRectangle( 3, rect.GetTop() - 2, MC_GROUP_LEFT_INDENT, rect.GetHeight() + 5); if (tmp == m_selectionEnd) break; tmp = tmp->m_next; } } else { // We have a selection of output while (tmp != NULL) { if (!tmp->m_isBroken && !tmp->m_isHidden && m_activeCell != tmp) { if ((tmp->GetType() == MC_TYPE_IMAGE) || (tmp->GetType() == MC_TYPE_SLIDE)) tmp->DrawBoundingBox(dcm, false, 5); // draw 5 pixels of border for img/slide cells else tmp->DrawBoundingBox(dcm, false); } if (tmp == m_selectionEnd) break; tmp = tmp->m_nextToDraw; } // end while (1) } } // // Mark groupcells currently in queue. TODO better in gc::draw? // if (m_evaluationQueue->GetFirst() != NULL) { MathCell* tmp = m_tree; dcm.SetBrush(*wxTRANSPARENT_BRUSH); while (tmp != NULL) { if (m_evaluationQueue->IsInQueue(dynamic_cast(tmp))) { if (m_evaluationQueue->GetFirst() == tmp) { wxRect rect = tmp->GetRect(); dcm.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_CELL_BRACKET), 2, wxSOLID))); dcm.DrawRectangle( 3, rect.GetTop() - 2, MC_GROUP_LEFT_INDENT, rect.GetHeight() + 5); } else { wxRect rect = tmp->GetRect(); dcm.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_CELL_BRACKET), 1, wxSOLID))); dcm.DrawRectangle( 3, rect.GetTop() - 2, MC_GROUP_LEFT_INDENT, rect.GetHeight() + 5); } } tmp = tmp->m_next; } } // // Draw content over // wxPoint point; point.x = MC_GROUP_LEFT_INDENT; point.y = MC_BASE_INDENT + m_tree->GetMaxCenter(); // Draw tree MathCell* tmp = m_tree; drop = tmp->GetMaxDrop(); dcm.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_DEFAULT), 1, wxSOLID))); dcm.SetBrush(*(wxTheBrushList->FindOrCreateBrush(parser.GetColor(TS_DEFAULT)))); bool changeAsterisk = false; config->Read(wxT("changeAsterisk"), &changeAsterisk); parser.SetChangeAsterisk(changeAsterisk); while (tmp != NULL) { tmp->m_currentPoint.x = point.x; tmp->m_currentPoint.y = point.y; if (tmp->DrawThisCell(parser, point)) tmp->Draw(parser, point, MAX(fontsize, MC_MIN_SIZE), false); if (tmp->m_next != NULL) { point.x = MC_GROUP_LEFT_INDENT; point.y += drop + tmp->m_next->GetMaxCenter(); point.y += MC_GROUP_SKIP; drop = tmp->m_next->GetMaxDrop(); } tmp = tmp->m_next; } } // // Draw horizontal caret // if (m_hCaretActive && m_hCaretPositionStart == NULL) { dcm.SetPen(*(wxThePenList->FindOrCreatePen(parser.GetColor(TS_CURSOR), 1, wxSOLID))); // TODO is there more efficient way to do this? if (m_hCaretPosition == NULL) dcm.DrawLine( 0, 5, 3000, 5); else { wxRect currentGCRect = m_hCaretPosition->GetRect(); int caretY = ((int) MC_GROUP_SKIP) / 2 + currentGCRect.GetBottom() + 1; dcm.DrawLine( 0, caretY, 3000, caretY); } } // Blit the memory image to the window dcm.SetDeviceOrigin(0, 0); dc.Blit(0, rect.GetTop(), sz.x, rect.GetBottom() - rect.GetTop() + 1, &dcm, 0, rect.GetTop()); } // InsertGroupCells // inserts groupcells after position "where" (NULL = top of the document) // Multiple groupcells can be inserted when tree->m_next != NULL // Returns the pointer to the last inserted group cell to have fun with GroupCell *MathCtrl::InsertGroupCells(GroupCell* tree, GroupCell* where) { if (!tree) return NULL; // nothing to insert bool renumbersections = false; // only renumber when true GroupCell *next; // next gc to insertion point GroupCell *prev; // last in the tree to insert GroupCell* last = tree; if (last->IsFoldable() || (last->GetGroupType() == GC_TYPE_IMAGE)) renumbersections = true; while (last->m_next) { last = dynamic_cast(last->m_next); if (last->IsFoldable() || (last->GetGroupType() == GC_TYPE_IMAGE)) renumbersections = true; } if (m_tree == NULL) where = NULL; if (where) next = dynamic_cast(where->m_next); else { next = m_tree; // where == NULL m_tree = tree; } prev = where; tree->m_previous = tree->m_previousToDraw = where; last->m_next = last->m_nextToDraw = next; if (prev) prev->m_next = prev->m_nextToDraw = tree; if (next) next->m_previous = next->m_previousToDraw = last; // make sure m_last is correct!! if (!next) // if there were no further cells m_last = last; if (renumbersections) NumberSections(); Recalculate(); m_saved = false; // document has been modified return last; } // this goes through m_tree with m_next, to set the correct m_last // you can call this after folding, unfolding cells to make sure // m_last is correct GroupCell *MathCtrl::UpdateMLast() { if (!m_tree) { m_last = NULL; return NULL; } MathCell *tmp = m_tree; while (tmp->m_next) tmp = tmp->m_next; m_last = dynamic_cast(tmp); return m_last; } /*** * Add a new line to working group or m_last */ void MathCtrl::InsertLine(MathCell *newCell, bool forceNewLine) { SetActiveCell(NULL, false); m_saved = false; GroupCell *tmp = m_workingGroup; if (tmp == NULL) tmp = m_last; newCell->ForceBreakLine(forceNewLine); tmp->AppendOutput(newCell); if (newCell->GetType() == MC_TYPE_PROMPT) { m_workingGroup = tmp; ScrollToCell(tmp->GetParent()); OpenHCaret(); } while (newCell != NULL) { newCell->SetParent(tmp, false); newCell = newCell->m_next; } m_selectionStart = NULL; m_selectionEnd = NULL; wxClientDC dc(this); CellParser parser(dc); parser.SetZoomFactor(m_zoomFactor); parser.SetClientWidth(GetClientSize().GetWidth() - MC_GROUP_LEFT_INDENT - MC_BASE_INDENT); tmp->RecalculateAppended(parser); Recalculate(); ScrollToCell(tmp); // also refreshes } /*** * Recalculate dimensions of cells */ void MathCtrl::RecalculateForce() { Recalculate(true); } void MathCtrl::Recalculate(bool force) { GroupCell *tmp = m_tree; wxClientDC dc(this); CellParser parser(dc); parser.SetZoomFactor(m_zoomFactor); parser.SetForceUpdate(force); parser.SetClientWidth(GetClientSize().GetWidth() - MC_GROUP_LEFT_INDENT - MC_BASE_INDENT); int d_fontsize = parser.GetDefaultFontSize(); int m_fontsize = parser.GetMathFontSize(); wxPoint point; point.x = MC_GROUP_LEFT_INDENT; point.y = MC_BASE_INDENT ; while (tmp != NULL) { tmp->Recalculate(parser, d_fontsize, m_fontsize); // tmp->RecalculateWidths(parser, MAX(fontsize, MC_MIN_SIZE), false); // tmp->RecalculateSize(parser, MAX(fontsize, MC_MIN_SIZE), false); point.y += tmp->GetMaxCenter(); tmp->m_currentPoint.x = point.x; tmp->m_currentPoint.y = point.y; point.y += tmp->GetMaxDrop(); tmp = dynamic_cast(tmp->m_next); point.y += MC_GROUP_SKIP; } AdjustSize(); } /*** * Resize the controll */ void MathCtrl::OnSize(wxSizeEvent& event) { wxDELETE(m_memory); if (m_tree != NULL) { m_selectionStart = NULL; m_selectionEnd = NULL; RecalculateForce(); } else AdjustSize(); Refresh(); //wxScrolledCanvas::OnSize(event); } /*** * Clear document * Basicly set everything to the state as if MathCtrl * was just created, so there is a blank document. * Called when opening a new file into existing MathCtrl. */ void MathCtrl::ClearDocument() { m_selectionStart = NULL; m_selectionEnd = NULL; m_clickType = CLICK_TYPE_NONE; m_clickInGC = NULL; m_hCaretActive = false; m_hCaretPosition = NULL; // horizontal caret at the top of document m_hCaretPositionStart = m_hCaretPositionEnd = NULL; m_activeCell = NULL; m_workingGroup = NULL; ClearEvaluationQueue(); DestroyTree(); m_editingEnabled = true; m_switchDisplayCaret = true; m_animate = false; m_saved = true; Recalculate(); Scroll(0, 0); } /*** * Reset all input promts to "--> " * Called when Restart Maxima is called from Maxima menu */ void MathCtrl::ResetInputPrompts() { if (m_tree) m_tree->ResetInputLabel(true); // recursivly reset prompts } // // support for numbered sections with hiding // void MathCtrl::NumberSections() { int s, sub, i; s = sub = i = 0; if (m_tree) m_tree->Number(s, sub, i); } bool MathCtrl::IsLesserGCType(int type, int comparedTo) { switch (type) { case GC_TYPE_CODE: case GC_TYPE_TEXT: case GC_TYPE_IMAGE: if ((comparedTo == GC_TYPE_TITLE) || (comparedTo == GC_TYPE_SECTION) || (comparedTo == GC_TYPE_SUBSECTION)) return true; else return false; case GC_TYPE_SUBSECTION: if ((comparedTo == GC_TYPE_TITLE) || (comparedTo == GC_TYPE_SECTION)) return true; else return false; case GC_TYPE_SECTION: if (comparedTo == GC_TYPE_TITLE) return true; else return false; case GC_TYPE_TITLE: return false; default: return false; } } /** * Call when a fold action was detected, to update the state in response * to a fold occurring. */ void MathCtrl::FoldOccurred() { SetSaved(false); UpdateMLast(); } /** * Toggles the status of the fold for the given GroupCell. * If the cell is folded, it will be unfolded; otherwise it will be folded. * * @param which The GroupCell to fold or unfold. * @return A pointer to a GroupCell if the action succeeded; * NULL otherwise. */ GroupCell *MathCtrl::ToggleFold(GroupCell *which) { if (!which) return NULL; GroupCell *result = NULL; if (which->IsFoldable()) if (which->GetHiddenTree()) result = which->Unfold(); else result = which->Fold(); else return NULL; if (result) // something has folded/unfolded FoldOccurred(); return result; } /** * Toggles the status of the fold for the given GroupCell and its children. * If the cell is folded, it will be recursively unfolded; * otherwise it will be recursively folded. * * @param which The GroupCell to recursively fold or unfold. * @return A pointer to a GroupCell if the action succeeded; * NULL otherwise. */ GroupCell *MathCtrl::ToggleFoldAll(GroupCell *which) { if (!which) return NULL; GroupCell *result = NULL; if (which->IsFoldable()) if (which->GetHiddenTree()) result = which->UnfoldAll(false); else result = which->FoldAll(false); else return NULL; if (result) // something has folded/unfolded FoldOccurred(); return result; } /** * Recursively folds the whole document. */ void MathCtrl::FoldAll() { if (m_tree) { m_tree->FoldAll(true); FoldOccurred(); } } /** * Recursively unfolds the whole document. */ void MathCtrl::UnfoldAll() { if (m_tree) { m_tree->UnfoldAll(true); FoldOccurred(); } } // Returns the tree from start to end and connets the pointers the right way // so that m_tree stays 'correct' - also works in hidden trees GroupCell *MathCtrl::TearOutTree(GroupCell *start, GroupCell *end) { if ((!start) || (!end)) return NULL; MathCell *prev = start->m_previous; MathCell *next = end->m_next; end->m_next = end->m_nextToDraw = NULL; start->m_previous = start->m_previousToDraw = NULL; if (prev) prev->m_next = prev->m_nextToDraw = next; if (next) next->m_previous = next->m_previousToDraw = prev; // fix m_last if we tore it if (end == m_last) m_last = dynamic_cast(prev); return start; } /*** * Right mouse - popup-menu */ void MathCtrl::OnMouseRightDown(wxMouseEvent& event) { wxMenu* popupMenu = new wxMenu(); int downx, downy; // find out if clicked into existing selection, if not, reselect with leftdown // bool clickInSelection = false; CalcUnscrolledPosition(event.GetX(), event.GetY(), &downx, &downy); if ((m_selectionStart != NULL) && (m_selectionEnd != NULL)) { // SELECTION OF GROUPCELLS if (m_selectionStart->GetType() == MC_TYPE_GROUP) { //a selection of groups if ( downx <= MC_GROUP_LEFT_INDENT + 3) { wxRect rectStart = m_selectionStart->GetRect(); wxRect rectEnd = m_selectionEnd->GetRect(); if (((downy >= rectStart.GetTop()) && (downy <= rectEnd.GetBottom())) || ((downy >= rectEnd.GetTop()) && (downy <= rectStart.GetBottom()))) clickInSelection = true; } } // SELECTION OF OUTPUT else { MathCell * tmp = m_selectionStart; wxRect rect; while (tmp != NULL) { rect = tmp->GetRect(); if (rect.Contains(downx,downy)) clickInSelection = true; if (tmp == m_selectionEnd) break; tmp = tmp->m_nextToDraw; } } } // SELECTION IN EDITORCELL else if (m_activeCell != NULL) { wxClientDC dc(this); if (m_activeCell->IsPointInSelection(dc, wxPoint(downx, downy))) clickInSelection = true; } // emulate a left click to set the cursor if (!clickInSelection) { OnMouseLeftDown(event); m_leftDown = false; m_clickType = CLICK_TYPE_NONE; } // construct a menu appropriate to what we have // /* If we have no selection or we are not in editing mode don't popup a menu!*/ if (m_editingEnabled == false) { delete popupMenu; return; } if (m_activeCell == NULL) { if (IsSelected(MC_TYPE_IMAGE) || IsSelected(MC_TYPE_SLIDE)) { popupMenu->Append(popid_copy, _("Copy"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_image, _("Save Image..."), wxEmptyString, wxITEM_NORMAL); if (IsSelected(MC_TYPE_SLIDE)) { popupMenu->Append(popid_animation_save, _("Save Animation..."), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_animation_start, _("Start Animation"), wxEmptyString, wxITEM_NORMAL); } } else if (m_selectionStart != NULL) { if (m_selectionStart->GetType() == MC_TYPE_GROUP) { if (CanCopy()) { popupMenu->Append(popid_copy, _("Copy"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_copy_tex, _("Copy LaTeX"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_copy_image, _("Copy As Image"), wxEmptyString, wxITEM_NORMAL); if (CanDeleteSelection()) popupMenu->Append(popid_delete, _("Delete Selection"), wxEmptyString, wxITEM_NORMAL); } popupMenu->AppendSeparator(); popupMenu->Append(popid_evaluate, _("Evaluate Cell(s)"), wxEmptyString, wxITEM_NORMAL); if (m_selectionStart != m_selectionEnd) popupMenu->Append(popid_merge_cells, _("Merge Cells"), wxEmptyString, wxITEM_NORMAL); } else { if (CanCopy()) { popupMenu->Append(popid_copy, _("Copy"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_copy_tex, _("Copy LaTeX"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_copy_image, _("Copy As Image"), wxEmptyString, wxITEM_NORMAL); if (CanDeleteSelection()) popupMenu->Append(popid_delete, _("Delete Selection"), wxEmptyString, wxITEM_NORMAL); } if (IsSelected(MC_TYPE_DEFAULT) || IsSelected(MC_TYPE_LABEL)) { popupMenu->AppendSeparator(); popupMenu->Append(popid_float, _("To Float"), wxEmptyString, wxITEM_NORMAL); popupMenu->AppendSeparator(); popupMenu->Append(popid_solve, _("Solve..."), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_solve_num, _("Find Root..."), wxEmptyString, wxITEM_NORMAL); popupMenu->AppendSeparator(); popupMenu->Append(popid_simplify, _("Simplify Expression"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_factor, _("Factor Expression"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_expand, _("Expand Expression"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_subst, _("Substitute..."), wxEmptyString, wxITEM_NORMAL); popupMenu->AppendSeparator(); popupMenu->Append(popid_integrate, _("Integrate..."), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_diff, _("Differentiate..."), wxEmptyString, wxITEM_NORMAL); popupMenu->AppendSeparator(); popupMenu->Append(popid_plot2d, _("Plot 2d..."), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_plot3d, _("Plot 3d..."), wxEmptyString, wxITEM_NORMAL); } } } else if (m_hCaretActive == true) { popupMenu->Append(popid_paste, _("Paste"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_select_all, _("Select All"), wxEmptyString, wxITEM_NORMAL); popupMenu->AppendSeparator(); popupMenu->Append(popid_insert_text, _("Insert Text Cell"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_insert_title, _("Insert Title Cell"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_insert_section, _("Insert Section Cell"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_insert_subsection, _("Insert Subsection Cell"), wxEmptyString, wxITEM_NORMAL); } } // popup menu in active cell else { popupMenu->Append(popid_cut, _("Cut"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_copy, _("Copy"), wxEmptyString, wxITEM_NORMAL); popupMenu->Append(popid_paste, _("Paste"), wxEmptyString, wxITEM_NORMAL); popupMenu->AppendSeparator(); popupMenu->Append(popid_select_all, _("Select All"), wxEmptyString, wxITEM_NORMAL); if ((clickInSelection) && dynamic_cast(m_activeCell->GetParent())->GetGroupType() == GC_TYPE_CODE) popupMenu->Append(popid_comment_selection, _("Comment Selection"), wxEmptyString, wxITEM_NORMAL); if (!clickInSelection) popupMenu->Append(popid_divide_cell, _("Divide Cell"), wxEmptyString, wxITEM_NORMAL); popupMenu->Enable(popid_copy, m_activeCell->CanCopy()); popupMenu->Enable(popid_cut, m_activeCell->CanCopy()); } // create menu if we have any items if (popupMenu->GetMenuItemCount() > 0 ) PopupMenu(popupMenu); delete popupMenu; } /*** * Left mouse button down - selection handling * * Sets m_clickType and m_clickInGC according to what we clicked, * and selects appropriately. * m_clickType is used in ClickNDrag when click-draging to determine what kind of selection * behaviour we want. * * - check in which GroupCell it falls * - if it falls between groupCells activate caret and CLICK_TYPE_GROUP_SELECTION * - if it falls within a groupcell investigate where did it fall (input or output) */ void MathCtrl::OnMouseLeftDown(wxMouseEvent& event) { m_animate = false; m_leftDown = true; CalcUnscrolledPosition(event.GetX(), event.GetY(), &m_down.x, &m_down.y); if (m_tree == NULL) return ; // default when clicking m_clickType = CLICK_TYPE_NONE; m_selectionStart = m_selectionEnd = NULL; m_hCaretPositionStart = m_hCaretPositionEnd = NULL; m_hCaretPosition = NULL; m_hCaretActive = false; SetActiveCell(NULL, false); GroupCell * tmp = m_tree; wxRect rect; GroupCell * clickedBeforeGC = NULL; GroupCell * clickedInGC = NULL; while (tmp != NULL) { // go through all groupcells rect = tmp->GetRect(); if (m_down.y < rect.GetTop() ) { clickedBeforeGC = dynamic_cast(tmp); break; } else if (m_down.y <= rect.GetBottom() ) { clickedInGC = dynamic_cast(tmp); break; } tmp = dynamic_cast(tmp->m_next); } if (clickedBeforeGC != NULL) { // we clicked between groupcells, set hCaret SetHCaret(tmp->m_previous, false); m_clickType = CLICK_TYPE_GROUP_SELECTION; } // end if (clickedBeforeGC != NULL) // we clicked between groupcells, set hCaret else if (clickedInGC != NULL) { // we clicked in a groupcell, find out where if (m_down.x <= MC_GROUP_LEFT_INDENT) { // we clicked in left bracket area if ((clickedInGC->HideRect()).Contains(m_down)) // did we hit the hide rectancle { if (clickedInGC->IsFoldable()) { if (event.ShiftDown()) ToggleFoldAll(clickedInGC); else ToggleFold(clickedInGC); Recalculate(true); } else { clickedInGC->SwitchHide(); // todo if there's nothin to hide, select as normal clickedInGC->ResetSize(); Recalculate(); m_clickType = CLICK_TYPE_NONE; // ignore drag-select } } else { m_clickType = CLICK_TYPE_GROUP_SELECTION; m_selectionStart = m_selectionEnd = clickedInGC; } } // end we clicked in left bracket area else { // we didn't click in left bracket space EditorCell * editor = clickedInGC->GetEditable(); if (editor != NULL) { rect = editor->GetRect(); if ((m_down.y >= rect.GetTop()) && (m_down.y <= rect.GetBottom())) { SetActiveCell(editor, false); // do not refresh wxClientDC dc(this); m_activeCell->SelectPointText(dc, m_down); m_switchDisplayCaret = false; m_clickType = CLICK_TYPE_INPUT_SELECTION; if (editor->GetWidth() == -1) Recalculate(); Refresh(); return; } } // what if we tried to select something in output, select it (or if editor, activate it) if ((clickedInGC->GetOutputRect()).Contains(m_down)) { wxRect rect2(m_down.x, m_down.y, 1,1); wxPoint mmm(m_down.x + 1, m_down.y +1); clickedInGC->SelectRectInOutput(rect2, m_down, mmm, &m_selectionStart, &m_selectionEnd); if (m_selectionStart != NULL) { if ((m_selectionStart == m_selectionEnd) && (m_selectionStart->GetType() == MC_TYPE_INPUT) && (clickedInGC == m_workingGroup)) // if we clicked an editor in output - activate it if working! { SetActiveCell(dynamic_cast(m_selectionStart), false); wxClientDC dc(this); m_activeCell->SelectPointText(dc, m_down); m_switchDisplayCaret = false; m_clickType = CLICK_TYPE_INPUT_SELECTION; Refresh(); return; } else { m_clickType = CLICK_TYPE_OUTPUT_SELECTION; m_clickInGC = clickedInGC; } } } } // end we didn't click in left bracket space } // end if (clickedInGC != NULL) // we clicked in a groupcell, find out where else { // we clicked below last groupcell (both clickedInGC and clickedBeforeGC == NULL) // set hCaret (or activate last cell?) SetHCaret(m_last, false); m_clickType = CLICK_TYPE_GROUP_SELECTION; } Refresh(); } void MathCtrl::OnMouseLeftUp(wxMouseEvent& event) { m_animate = false; m_leftDown = false; m_mouseDrag = false; m_clickInGC = NULL; // pointer to NULL to prevent crashes if the cell is deleted m_clickType = CLICK_TYPE_NONE; CheckUnixCopy(); SetFocus(); } void MathCtrl::OnMouseMotion(wxMouseEvent& event) { if (m_tree == NULL || !m_leftDown) return; m_mouseDrag = true; CalcUnscrolledPosition(event.GetX(), event.GetY(), &m_up.x, &m_up.y); if (m_mouseOutside) { m_mousePoint.x = event.GetX(); m_mousePoint.y = event.GetY(); } ClickNDrag(m_down, m_up); } /*** * Select the rectangle surounded by down and up. Called from OnMouseMotion. * * The method decides what to do, based on the value of m_clickType which * was set previously in OnMouseLeftDown. This enables different selection behaviours * depending on where we first clicked. If m_clickType equals * CLICK_TYPE_NONE - click-draging does not result in a selection (we clicked in hideRect for instance) * CLICK_TYPE_GROUP_SELECTION - we are selecting full groupcells only. Only y-coordinate matters. * CLICK_TYPE_INPUT_SELECTION - we clicked in an editor (GroupCell::GetEditable()) and draging * results in selecting text in EditorCell * CLICK_TYPE_OUTPUT_SELECTION - we clicked in an output, we want selection to be confined to that * GroupCell's output. GC we first clicked in was stored in OnMouseMotion method * into m_clickInGC pointer. */ void MathCtrl::ClickNDrag(wxPoint down, wxPoint up) { MathCell *st = m_selectionStart, *en = m_selectionEnd; wxRect rect; switch (m_clickType) { case CLICK_TYPE_NONE: return; case CLICK_TYPE_INPUT_SELECTION: if (m_activeCell != NULL) { wxClientDC dc(this); m_activeCell->SelectRectText(dc, down, up); m_switchDisplayCaret = false; wxRect rect = m_activeCell->GetRect(); CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y); RefreshRect(rect); return; } case CLICK_TYPE_GROUP_SELECTION: { m_selectionStart = m_selectionEnd = NULL; int ytop = MIN( down.y, up.y ); int ybottom = MAX( down.y, up.y ); // find out group cells between ytop and ybottom (including these two points) GroupCell * tmp = m_tree; while (tmp != NULL) { rect = tmp->GetRect(); if (ytop <= rect.GetBottom()) { m_selectionStart = tmp; break; } tmp = dynamic_cast(tmp->m_next); } if (tmp == NULL) { // below last cell, handle with care SetHCaret(m_last); // also refreshes return; } tmp = m_tree; while (tmp != NULL) { rect = tmp->GetRect(); if (ybottom < rect.GetTop()) { m_selectionEnd = tmp->m_previous; break; } tmp = dynamic_cast(tmp->m_next); } if (tmp == NULL) m_selectionEnd = m_last; if (m_selectionEnd == (m_selectionStart->m_previous)) { SetHCaret(m_selectionEnd, false); // will refresh at the end of function } else { m_hCaretActive = false; m_hCaretPosition = NULL; } break; } case CLICK_TYPE_OUTPUT_SELECTION: m_selectionStart = m_selectionEnd = NULL; rect.x = MIN(down.x, up.x); rect.y = MIN(down.y, up.y); rect.width = MAX(ABS(down.x - up.x), 1); rect.height = MAX(ABS(down.y - up.y), 1); if (m_clickInGC != NULL) m_clickInGC->SelectRectInOutput(rect, down, up, &m_selectionStart, &m_selectionEnd); break; default: break; } // end switch // Refresh only if the selection has changed if (st != m_selectionStart || en != m_selectionEnd) Refresh(); } /*** * Get the string representation of the selection */ wxString MathCtrl::GetString(bool lb) { if (m_selectionStart == NULL) { if (m_activeCell == NULL) return wxEmptyString; else return m_activeCell->ToString(false); } wxString s; MathCell* tmp = m_selectionStart; while (tmp != NULL) { if (lb && tmp->BreakLineHere() && s.Length() > 0) s += wxT("\n"); s += tmp->ToString(false); if (tmp == m_selectionEnd) break; tmp = tmp->m_nextToDraw; } return s; } /*** * Copy selection to clipboard. */ bool MathCtrl::Copy(bool astext) { if (m_activeCell != NULL) { return m_activeCell->CopyToClipboard(); } if (m_selectionStart == NULL) return false; if (!astext && m_selectionStart->GetType() == MC_TYPE_GROUP) return CopyCells(); /// If the selection is IMAGE or SLIDESHOW, copy it to clipboard /// as image. else if (m_selectionStart == m_selectionEnd && m_selectionStart->GetType() == MC_TYPE_IMAGE) { ((ImgCell *)m_selectionStart)->CopyToClipboard(); return true; } else if (m_selectionStart == m_selectionEnd && m_selectionStart->GetType() == MC_TYPE_SLIDE) { ((SlideShow *)m_selectionStart)->CopyToClipboard(); return true; } else { wxString s = GetString(true); if (wxTheClipboard->Open()) { wxTheClipboard->SetData(new wxTextDataObject(s)); wxTheClipboard->Close(); return true; } return false; } } bool MathCtrl::CopyTeX() { if (m_activeCell != NULL) return false; if (m_selectionStart == NULL) return false; wxString s; MathCell* tmp = m_selectionStart; bool inMath = false; wxString label; if (tmp->GetType() != MC_TYPE_GROUP) { inMath = true; s = wxT("\\["); } while (tmp != NULL) { s += tmp->ToTeX(false); if (tmp == m_selectionEnd) break; tmp = tmp->m_next; } if (inMath == true) s += wxT("\\]"); if (wxTheClipboard->Open()) { wxTheClipboard->SetData(new wxTextDataObject(s)); wxTheClipboard->Close(); return true; } return false; } bool MathCtrl::CopyCells() { if (m_selectionStart == NULL) return false; wxString s; GroupCell *tmp = dynamic_cast(m_selectionStart->GetParent()); GroupCell *end = dynamic_cast(m_selectionEnd->GetParent()); while (tmp != NULL) { switch (tmp->GetGroupType()) { case GC_TYPE_CODE: s += wxT("/* [wxMaxima: input start ] */\n"); s += tmp->GetEditable()->ToString(false) + wxT("\n"); s += wxT("/* [wxMaxima: input end ] */\n"); break; case GC_TYPE_TEXT: s += wxT("/* [wxMaxima: comment start ]\n"); s += tmp->GetEditable()->ToString(false) + wxT("\n"); s += wxT(" [wxMaxima: comment end ] */\n"); break; case GC_TYPE_SECTION: s += wxT("/* [wxMaxima: section start ]\n"); s += tmp->GetEditable()->ToString(false) + wxT("\n"); s += wxT(" [wxMaxima: section end ] */\n"); break; case GC_TYPE_SUBSECTION: s += wxT("/* [wxMaxima: subsect start ]\n"); s += tmp->GetEditable()->ToString(false) + wxT("\n"); s += wxT(" [wxMaxima: subsect end ] */\n"); break; case GC_TYPE_TITLE: s += wxT("/* [wxMaxima: title start ]\n"); s += tmp->GetEditable()->ToString(false) + wxT("\n"); s += wxT(" [wxMaxima: title end ] */\n"); break; } if (tmp == end) break; tmp = dynamic_cast(tmp->m_next); } if (wxTheClipboard->Open()) { wxTheClipboard->SetData(new wxTextDataObject(s)); wxTheClipboard->Close(); return true; } return false; } /*** * CanDeleteSelection * Returns true if we have a selection of groupcells and we have no working group! */ bool MathCtrl::CanDeleteSelection() { if (m_selectionStart == NULL || m_selectionEnd == NULL || m_workingGroup != NULL) return false; if ((m_selectionStart->GetType() != MC_TYPE_GROUP) || (m_selectionEnd->GetType() != MC_TYPE_GROUP)) return false; else { // a fine selection of groupcells MathCell* tmp = m_selectionStart; while (tmp != NULL) { if (m_evaluationQueue->IsInQueue(dynamic_cast(tmp))) return false; if (tmp == m_selectionEnd) break; tmp = tmp->m_next; } } return true; } /*** * Delete the selection */ void MathCtrl::DeleteSelection(bool deletePrompt) { if (m_selectionStart == NULL || m_selectionEnd == NULL || m_workingGroup != NULL) return; m_hCaretPositionStart = m_hCaretPositionEnd = NULL; GroupCell *start = dynamic_cast(m_selectionStart->GetParent()); GroupCell *end = dynamic_cast(m_selectionEnd->GetParent()); if (start == NULL || end == NULL) return; m_saved = false; bool renumber = false; SetActiveCell(NULL, false); m_hCaretActive = false; m_hCaretPosition = NULL; // check for renumbering GroupCell *tmp = start; while (tmp) { if (tmp->IsFoldable() || (tmp->GetGroupType() == GC_TYPE_IMAGE)) { renumber = true; break; } if (tmp == end) break; tmp = dynamic_cast(tmp->m_next); } GroupCell *newSelection = dynamic_cast(end->m_next); if (end == m_last) m_last = dynamic_cast(start->m_previous); if (start == m_tree) { if (end->m_previous != NULL) { end->m_previous->m_nextToDraw = NULL; end->m_previous->m_next = NULL; } if (end->m_next != NULL) { end->m_next->m_previous = NULL; end->m_next->m_previousToDraw = NULL; } m_tree = dynamic_cast(end->m_next); end->m_next = NULL; DestroyTree(start); } else { start->m_previous->m_next = end->m_next; start->m_previous->m_nextToDraw = end->m_next; if (end->m_next != NULL) { end->m_next->m_previous = start->m_previous; end->m_next->m_previousToDraw = start->m_previous; end->m_next = NULL; } DestroyTree(start); } m_selectionStart = m_selectionEnd = NULL; if (newSelection != NULL) SetHCaret(newSelection->m_previous, false); else SetHCaret(m_last, false); if (renumber) NumberSections(); Recalculate(); Refresh(); } void MathCtrl::OpenHCaret(wxString txt, int type) { // if we have a working group, bypass normal behaviour // and insert an EditorCell into the output // of the working group. if (m_workingGroup != NULL) { if (m_workingGroup->RevealHidden()) { FoldOccurred(); Recalculate(true); } EditorCell *newInput = new EditorCell; newInput->SetType(MC_TYPE_INPUT); newInput->SetValue(txt); newInput->CaretToEnd(); m_workingGroup->AppendOutput(newInput); newInput->SetParent(m_workingGroup, false); SetActiveCell(newInput, false); wxClientDC dc(this); CellParser parser(dc); parser.SetZoomFactor(m_zoomFactor); parser.SetClientWidth(GetClientSize().GetWidth() - MC_GROUP_LEFT_INDENT - MC_BASE_INDENT); m_workingGroup->RecalculateAppended(parser); Recalculate(); Refresh(); return; } // set m_hCaretPosition to a sensible value if (m_activeCell != NULL) SetHCaret(m_activeCell->GetParent(), false); else if (m_selectionStart != NULL) SetHCaret(m_selectionStart->GetParent(), false); if (!m_hCaretActive) { if (m_last == NULL) return; SetHCaret(m_last, false); } // insert a new group cell GroupCell *group = new GroupCell(type, txt); // check how much to unfold for this type if (m_hCaretPosition) { while (IsLesserGCType(type, m_hCaretPosition->GetGroupType())) { GroupCell *result = m_hCaretPosition->Unfold(); if (result == NULL) // assumes that unfold sets hcaret to the end of unfolded cells break; // unfold returns NULL when it cannot unfold SetHCaret(result, false); } } InsertGroupCells(group, m_hCaretPosition); // activate editor SetActiveCell(group->GetEditable(), false); m_activeCell->ClearUndo(); ScrollToCell(group); Refresh(); } /*** * Support for copying and deleting with keyboard */ void MathCtrl::OnKeyDown(wxKeyEvent& event) { switch (event.GetKeyCode()) { case WXK_DELETE: if (event.ShiftDown()) { wxCommandEvent ev(wxEVT_COMMAND_MENU_SELECTED, popid_cut); #if wxCHECK_VERSION(2,9,0) GetParent()->ProcessWindowEvent(ev); #else GetParent()->ProcessEvent(ev); #endif } else if (CanDeleteSelection()) { wxCommandEvent ev(wxEVT_COMMAND_MENU_SELECTED, popid_delete); #if wxCHECK_VERSION(2,9,0) GetParent()->ProcessWindowEvent(ev); #else GetParent()->ProcessEvent(ev); #endif } else event.Skip(); break; case WXK_INSERT: if (event.ControlDown()) { wxCommandEvent ev(wxEVT_COMMAND_MENU_SELECTED, popid_copy); #if wxCHECK_VERSION(2,9,0) GetParent()->ProcessWindowEvent(ev); #else GetParent()->ProcessEvent(ev); #endif } else if (event.ShiftDown()) { wxCommandEvent ev(wxEVT_COMMAND_MENU_SELECTED, popid_paste); #if wxCHECK_VERSION(2,9,0) GetParent()->ProcessWindowEvent(ev); #else GetParent()->ProcessEvent(ev); #endif } else event.Skip(); break; case WXK_BACK: if (CanDeleteSelection()) { wxCommandEvent ev(wxEVT_COMMAND_MENU_SELECTED, popid_delete); #if wxCHECK_VERSION(2,9,0) GetParent()->ProcessWindowEvent(ev); #else GetParent()->ProcessEvent(ev); #endif } else event.Skip(); break; case WXK_NUMPAD_ENTER: if (m_activeCell != NULL && m_activeCell->GetType() == MC_TYPE_INPUT) dynamic_cast(GetParent())->ProcessCommand(menu_evaluate); else if (m_hCaretActive) OpenHCaret(wxT("%")); else event.Skip(); break; case WXK_RETURN: if ((m_activeCell != NULL) && (m_activeCell->GetType() != MC_TYPE_INPUT)) event.Skip(); // if enter pressed in text, title, section cell, pass the event else { bool enterEvaluates = false; bool controlOrShift = event.ControlDown() || event.ShiftDown(); wxConfig::Get()->Read(wxT("enterEvaluates"), &enterEvaluates); if ((!enterEvaluates && controlOrShift) || ( enterEvaluates && !controlOrShift) ) { // shift-enter pressed === menu_evaluate event dynamic_cast(GetParent())->ProcessCommand(menu_evaluate); } else event.Skip(); } break; #ifndef wxUSE_UNICODE case WXK_ESCAPE: if (m_activeCell == NULL) { SetSelection(NULL); Refresh(); } else SetHCaret(m_activeCell->GetParent()); // also refreshes break; #endif default: event.Skip(); } } /***** * OnChar handles key events. If we have an active cell, sends the * event to the active cell, else moves the cursor between groups. * * TODO: this function is should be reimplemented so that it is more * readable! */ void MathCtrl::OnChar(wxKeyEvent& event) { #if defined __WXMSW__ if (event.GetKeyCode() == WXK_NUMPAD_DECIMAL) { return; } #endif // Some key combinations are shortcuts and should be ignored if (event.CmdDown()) { switch (event.GetKeyCode()) { case 'Z': case 'z': case 'C': case 'c': case 'S': case 's': return; default: break; } } #if defined __WXMSW__ if (event.GetModifiers() == wxMOD_ALT) { event.Skip(); return; } #endif if (m_activeCell != NULL) { // we are in an active cell bool needRecalculate = false; if (event.GetKeyCode() == WXK_UP && m_activeCell->CaretAtStart() && !event.ShiftDown()) { // don't exit the cell if we are making a selection SetHCaret((m_activeCell->GetParent())->m_previous); return; } if (event.GetKeyCode() == WXK_DOWN && m_activeCell->CaretAtEnd() && !event.ShiftDown()) { SetHCaret(m_activeCell->GetParent()); return; } if ((event.GetKeyCode() == WXK_BACK || event.GetKeyCode() == WXK_DELETE) && m_activeCell->GetValue() == wxEmptyString) { m_selectionStart = m_selectionEnd = m_activeCell->GetParent(); DeleteSelection(); return; } m_activeCell->ProcessEvent(event); // CTRL+"s deactivates on MAC if (m_activeCell == NULL) return; m_switchDisplayCaret = false; wxClientDC dc(this); CellParser parser(dc); parser.SetClientWidth(GetClientSize().GetWidth() - MC_GROUP_LEFT_INDENT - MC_BASE_INDENT); if (m_activeCell->IsDirty()) { m_saved = false; int height = m_activeCell->GetHeight(); int fontsize = parser.GetDefaultFontSize(); m_activeCell->ResetData(); m_activeCell->RecalculateWidths(parser, MAX(fontsize, MC_MIN_SIZE), false); m_activeCell->RecalculateSize(parser, MAX(fontsize, MC_MIN_SIZE), false); if (height != m_activeCell->GetHeight() || m_activeCell->GetWidth() + m_activeCell->m_currentPoint.x >= GetClientSize().GetWidth() - MC_GROUP_LEFT_INDENT - MC_BASE_INDENT) needRecalculate = true; } /// If we need to recalculate then refresh the window if (needRecalculate) { GroupCell *group = dynamic_cast(m_activeCell->GetParent()); group->ResetSize(); group->ResetData(); if (m_activeCell->CheckChanges() && (group->GetGroupType() == GC_TYPE_CODE) && (m_activeCell == group->GetEditable())) group->ResetInputLabel(); Recalculate(); Refresh(); } /// Otherwise refresh only the active cell else { wxRect rect; if (m_activeCell->CheckChanges()) { GroupCell *group = dynamic_cast(m_activeCell->GetParent()); if ((group->GetGroupType() == GC_TYPE_CODE) && (m_activeCell == group->GetEditable())) group->ResetInputLabel(); rect = group->GetRect(); rect.width = GetVirtualSize().x; } else { rect = m_activeCell->GetRect(); rect.width = GetVirtualSize().x; } CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y); RefreshRect(rect); } wxPoint point = m_activeCell->PositionToPoint(parser); ShowPoint(point); } else { // m_activeCell == NULL wxClientDC dc(this); CellParser parser(dc); if (!event.ShiftDown()) m_hCaretPositionStart = m_hCaretPositionEnd = NULL; switch (event.GetKeyCode()) { case WXK_UP: if (m_hCaretActive) { if (event.ShiftDown()) { if (m_hCaretPositionStart == NULL || m_hCaretPositionEnd == NULL) { if (m_hCaretPosition != NULL) m_hCaretPositionStart = m_hCaretPositionEnd = m_hCaretPosition; } else { if (m_hCaretPositionEnd->m_previous != NULL) { if (m_hCaretPosition != NULL && m_hCaretPosition->m_next == m_hCaretPositionEnd) m_hCaretPositionStart = dynamic_cast(m_hCaretPositionStart->m_previous); m_hCaretPositionEnd = dynamic_cast(m_hCaretPositionEnd->m_previous); } } if (m_hCaretPositionEnd != NULL) ScrollToCell(m_hCaretPositionEnd); } else { if (m_selectionStart != NULL) { // if we have selection set hCaret at the top, deselect SetHCaret(m_selectionStart->GetParent()->m_previous); } else if (m_hCaretPosition != NULL) { EditorCell * editor = m_hCaretPosition->GetEditable(); if(editor != NULL && m_workingGroup == NULL) { SetActiveCell(editor, false); m_hCaretActive = false; m_activeCell->CaretToEnd(); ShowPoint(m_activeCell->PositionToPoint(parser)); if (editor->GetWidth() == -1) Recalculate(); Refresh(); } else { // can't get editor... jump over cell.. m_hCaretPosition = dynamic_cast( m_hCaretPosition->m_previous); Refresh(); } } else event.Skip(); } } else { if (m_selectionStart != NULL) { // if we have selection set hCaret at the top, deselect SetHCaret(m_selectionStart->GetParent()->m_previous); } else if (!ActivatePrevInput()) event.Skip(); else Refresh(); } break; case WXK_DOWN: // if (m_hCaretActive) { if (event.ShiftDown()) { if (m_hCaretPositionStart == NULL || m_hCaretPositionEnd == NULL) { if (m_hCaretPosition == NULL) m_hCaretPositionStart = m_hCaretPositionEnd = m_tree; else if (m_hCaretPosition->m_next != NULL) m_hCaretPositionStart = m_hCaretPositionEnd = dynamic_cast(m_hCaretPosition->m_next); } else { if (m_hCaretPositionEnd->m_next != NULL) { if (m_hCaretPosition == m_hCaretPositionEnd) m_hCaretPositionStart = dynamic_cast(m_hCaretPositionStart->m_next); m_hCaretPositionEnd = dynamic_cast(m_hCaretPositionEnd->m_next); } } if (m_hCaretPositionEnd != NULL) ScrollToCell(m_hCaretPositionEnd); } else { if (m_selectionEnd != NULL) { // if we have selection set hCaret at the top, deselect SetHCaret(m_selectionEnd->GetParent()); } else if (m_tree != NULL && m_hCaretPosition == NULL) { EditorCell *editor = m_tree->GetEditable(); if (editor != NULL && m_workingGroup == NULL) // try to edit the first cell { SetActiveCell(editor, false); m_activeCell->CaretToStart(); ShowPoint(m_activeCell->PositionToPoint(parser)); if (editor->GetWidth() == -1) Recalculate(); Refresh(); } else { // else jump over m_hCaretPosition = m_tree; Refresh(); } } else if (m_hCaretPosition != NULL && m_hCaretPosition->m_next != NULL) { EditorCell *editor = dynamic_cast(m_hCaretPosition->m_next)->GetEditable(); if( editor != NULL && m_workingGroup == NULL) { SetActiveCell(editor, false); m_activeCell->CaretToStart(); ShowPoint(m_activeCell->PositionToPoint(parser)); if (editor->GetWidth() == -1) Recalculate(); Refresh(); } else { // can't get editor.. jump over cell.. m_hCaretPosition = dynamic_cast( m_hCaretPosition->m_next); Refresh(); } } else event.Skip(); } } else { if (m_selectionEnd != NULL) { // if we have selection set hCaret at the top, deselect SetHCaret(m_selectionEnd->GetParent()); } else if (!ActivateNextInput()) event.Skip(); else Refresh(); } break; case WXK_HOME: // TODO: if shift down, select. SetHCaret(NULL); if (m_tree != NULL) ScrollToCell(m_tree); break; case WXK_END: SetHCaret(m_last); if (m_last != NULL) ScrollToCell(m_last); break; default: m_hCaretPositionStart = m_hCaretPositionEnd = NULL; switch (event.GetKeyCode()) { // keycodes which are ignored case WXK_PAGEUP: case WXK_PAGEDOWN: case WXK_LEFT: case WXK_RIGHT: case WXK_WINDOWS_LEFT: case WXK_WINDOWS_RIGHT: case WXK_WINDOWS_MENU: case WXK_COMMAND: case WXK_START: event.Skip(); break; // delete key and backspace select cell, so pressing key twice deletes the cell case WXK_BACK: if (m_hCaretPosition != NULL) { SetSelection(m_hCaretPosition); m_hCaretActive = false; Refresh(); return; } break; case WXK_DELETE: if (m_hCaretPosition == NULL) { if (m_tree != NULL) { SetSelection(m_tree); m_hCaretActive = false; Refresh(); return; } } else if (m_hCaretPosition->m_next != NULL) { SetSelection(m_hCaretPosition->m_next); m_hCaretActive = false; Refresh(); return; } break; case WXK_RETURN: if (m_selectionStart == NULL || m_selectionEnd == NULL) OpenHCaret(wxEmptyString); else OpenHCaret(GetString()); break; #if wxUSE_UNICODE // ESCAPE is handled by the new cell case WXK_ESCAPE: OpenHCaret(wxEmptyString); if (m_activeCell != NULL) m_activeCell->ProcessEvent(event); break; #endif // keycodes which open hCaret with initial content default: { #if wxUSE_UNICODE wxString txt(event.GetUnicodeKey()); #else wxString txt = wxString::Format(wxT("%c"), event.GetKeyCode()); #endif OpenHCaret(txt); } } } if (m_hCaretPositionStart != NULL && m_hCaretPositionEnd != NULL) { if (m_hCaretPositionStart->GetCurrentY() < m_hCaretPositionEnd->GetCurrentY()) { m_selectionStart = m_hCaretPositionStart; m_selectionEnd = m_hCaretPositionEnd; } else { m_selectionStart = m_hCaretPositionEnd; m_selectionEnd = m_hCaretPositionStart; } Refresh(); } } } /*** * Get maximum x and y in the tree. */ void MathCtrl::GetMaxPoint(int* width, int* height) { MathCell* tmp = m_tree; int currentHeight= MC_BASE_INDENT; int currentWidth= MC_BASE_INDENT; *width = MC_BASE_INDENT; *height = MC_BASE_INDENT; while (tmp != NULL) { currentHeight += tmp->GetMaxHeight(); currentHeight += MC_GROUP_SKIP; *height = currentHeight; currentWidth = MC_BASE_INDENT + tmp->GetWidth(); *width = MAX(currentWidth + MC_BASE_INDENT, *width); tmp = tmp->m_next; } } /*** * Adjust the virtual size and scrollbars. */ void MathCtrl::AdjustSize() { int width= MC_BASE_INDENT, height= MC_BASE_INDENT; int clientWidth, clientHeight, virtualHeight; GetClientSize(&clientWidth, &clientHeight); if (m_tree != NULL) GetMaxPoint(&width, &height); // when window is scrolled all the way down, document occupies top 1/8 of clientHeight height += clientHeight - (int)(1.0/8.0*(float)clientHeight); virtualHeight = MAX(clientHeight + 10 , height); // ensure we always have VSCROLL active SetVirtualSize(width, virtualHeight); SetScrollRate(SCROLL_UNIT, SCROLL_UNIT); } /*** * Support for selecting cells outside display */ void MathCtrl::OnMouseExit(wxMouseEvent& event) { m_mouseOutside = true; if (m_leftDown) { m_mousePoint.x = event.GetX(); m_mousePoint.y = event.GetY(); m_timer.Start(200, true); } } void MathCtrl::OnMouseEnter(wxMouseEvent& event) { m_mouseOutside = false; } void MathCtrl::OnTimer(wxTimerEvent& event) { switch (event.GetId()) { case TIMER_ID: { if (!m_leftDown || !m_mouseOutside) return; int dx = 0, dy = 0; int currX, currY; wxSize size = GetClientSize(); CalcUnscrolledPosition(0, 0, &currX, &currY); if (m_mousePoint.x <= 0) dx = -10; else if (m_mousePoint.x >= size.GetWidth()) dx = 10; if (m_mousePoint.y <= 0) dy = -10; else if (m_mousePoint.y >= size.GetHeight()) dy = 10; Scroll((currX + dx) / 10, (currY + dy) / 10); m_timer.Start(50, true); } break; case ANIMATION_TIMER_ID: { if (m_selectionStart != NULL && m_selectionStart == m_selectionEnd && m_selectionStart->GetType() == MC_TYPE_SLIDE && m_animate) { SlideShow *tmp = (SlideShow *)m_selectionStart; tmp->SetDisplayedIndex((tmp->GetDisplayedIndex() + 1) % tmp->Length()); wxRect rect = m_selectionStart->GetRect(); CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y); RefreshRect(rect); m_animationTimer.Start(ANIMATION_TIMER_TIMEOUT); } else m_animate = false; } break; case CARET_TIMER_ID: { if (m_activeCell != NULL) { if (m_switchDisplayCaret) { m_activeCell->SwitchCaretDisplay(); wxRect rect = m_activeCell->GetRect(); CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y); RefreshRect(rect); } m_switchDisplayCaret = true; m_caretTimer.Start(CARET_TIMER_TIMEOUT, true); } } break; } } /*** * Destroy the tree */ void MathCtrl::DestroyTree() { m_hCaretActive = false; m_hCaretPosition = NULL; DestroyTree(m_tree); m_tree = m_last = NULL; } void MathCtrl::DestroyTree(MathCell* tmp) { MathCell* tmp1; while (tmp != NULL) { tmp1 = tmp; tmp = tmp->m_next; tmp1->Destroy(); delete tmp1; } } /*** * Copy tree */ MathCell* MathCtrl::CopyTree() { if (m_tree == NULL) return (MathCell*)NULL; MathCell* tmp1 = m_tree; MathCell* tmp; MathCell* copy; tmp = tmp1->Copy(false); copy = tmp; tmp1 = tmp1->m_next; while (tmp1 != NULL) { tmp->AppendCell(tmp1->Copy(false)); tmp = tmp->m_next; tmp1 = tmp1->m_next; } return copy; } /*** * Copy selection as bitmap */ bool MathCtrl::CopyBitmap() { MathCell* tmp = CopySelection(); Bitmap bmp; bmp.SetData(tmp); return bmp.ToClipboard(); } bool MathCtrl::CopyToFile(wxString file) { if (m_selectionStart != NULL && m_selectionStart == m_selectionEnd && (m_selectionStart->GetType() == MC_TYPE_IMAGE || m_selectionStart->GetType() == MC_TYPE_SLIDE)) { if (m_selectionStart->GetType() == MC_TYPE_IMAGE) return ((ImgCell *)m_selectionStart)->ToImageFile(file); else return ((SlideShow *)m_selectionStart)->ToImageFile(file); } else { MathCell* tmp = CopySelection(); Bitmap bmp; bmp.SetData(tmp); return bmp.ToFile(file); } } bool MathCtrl::CopyToFile(wxString file, MathCell* start, MathCell* end, bool asData) { MathCell* tmp = CopySelection(start, end, asData); Bitmap bmp; bmp.SetData(tmp); return bmp.ToFile(file); } /*** * Copy selection */ MathCell* MathCtrl::CopySelection() { return CopySelection(m_selectionStart, m_selectionEnd); } MathCell* MathCtrl::CopySelection(MathCell* start, MathCell* end, bool asData) { MathCell *tmp, *tmp1= NULL, *tmp2= NULL; tmp = start; while (tmp != NULL) { if (tmp1 == NULL) { tmp1 = tmp->Copy(false); tmp2 = tmp1; } else { tmp2->AppendCell(tmp->Copy(false)); tmp2 = tmp2->m_next; } if (tmp == end) break; if (asData) tmp = tmp->m_next; else tmp = tmp->m_nextToDraw; } return tmp1; } /*** * Export content to a HTML file. */ void AddLineToFile(wxTextFile& output, wxString s, bool unicode) { if (s == wxT("\n") || s == wxEmptyString) output.AddLine(wxEmptyString); else { wxStringTokenizer lines(s, wxT("\n"), wxTOKEN_RET_EMPTY_ALL); wxString line; while (lines.HasMoreTokens()) { line = lines.GetNextToken(); if (unicode) { #if wxUNICODE output.AddLine(line); #else wxString t(line.wc_str(wxConvLocal), wxConvUTF8); output.AddLine(t); #endif } else output.AddLine(line); } } } wxString PrependNBSP(wxString input) { wxString line = wxEmptyString; for (unsigned int i = 0; i < input.Length(); i++) { while (input.GetChar(i) == '\n') { line += wxT("
\n"); i++; while (i < input.Length() && input.GetChar(i) == ' ') { line += wxT(" "); i++; } } line += input.GetChar(i); } return line; } bool MathCtrl::ExportToHTML(wxString file) { wxString imgDir; wxString path, filename, ext; int count = 0; GroupCell *tmp = m_tree; wxFileName::SplitPath(file, &path, &filename, &ext); imgDir = path + wxT("/") + filename + wxT("_img"); if (!wxDirExists(imgDir)) if (!wxMkdir(imgDir)) return false; wxTextFile output(file); if (output.Exists()) { if (!output.Open(file)) return false; output.Clear(); } else if (!output.Create(file)) return false; AddLineToFile( output, wxT("")); AddLineToFile(output, wxT("")); AddLineToFile(output, wxT(" ")); AddLineToFile(output, wxT(" ") + filename + wxT("")); AddLineToFile(output, wxT(" ")); AddLineToFile( output, wxT(" ")); ////////////////////////////////////////////// // Write styles ////////////////////////////////////////////// wxString font, fontTitle, fontSection, fontSubsection, fontText; wxString colorInput(wxT("blue")); wxString colorPrompt(wxT("red")); wxString colorText(wxT("black")), colorTitle(wxT("black")), colorSection(wxT("black")), colorSubSec(wxT("black")); wxString colorTextBg(wxT("white")); wxString colorBg(wxT("white")); // bold and italic bool boldInput = false; bool italicInput = false; bool boldPrompt = false; bool italicPrompt = false; bool boldString = false; bool italicString = false; bool boldTitle = false; bool italicTitle = false; bool underTitle = false; bool boldSection = false; bool italicSection = false; bool underSection = false; bool boldSubsection = false; bool italicSubsection = false; bool underSubsection = false; int fontSize = 12; wxConfigBase* config= wxConfig::Get(); // main fontsize config->Read(wxT("fontSize"), &fontSize); // read fonts config->Read(wxT("Style/fontname"), &font); config->Read(wxT("Style/Title/fontname"), &fontTitle); config->Read(wxT("Style/Section/fontname"), &fontSection); config->Read(wxT("Style/Subsection/fontname"), &fontSubsection); config->Read(wxT("Style/Text/fontname"), &fontText); // read colors config->Read(wxT("Style/Input/color"), &colorInput); config->Read(wxT("Style/MainPrompt/color"), &colorPrompt); config->Read(wxT("Style/Text/color"), &colorText); config->Read(wxT("Style/Section/color"), &colorSection); config->Read(wxT("Style/Subsection/color"), &colorSubSec); config->Read(wxT("Style/Title/color"), &colorTitle); config->Read(wxT("Style/TextBackground/color"), &colorTextBg); config->Read(wxT("Style/Background/color"), &colorBg); // read bold and italic config->Read(wxT("Style/Input/bold"), &boldInput); config->Read(wxT("Style/String/bold"), &boldString); config->Read(wxT("Style/Input/italic"), &italicInput); config->Read(wxT("Style/String/italic"), &italicString); config->Read(wxT("Style/MainPrompt/bold"), &boldPrompt); config->Read(wxT("Style/MainPrompt/italic"), &italicPrompt); config->Read(wxT("Style/Title/bold"), &boldTitle); config->Read(wxT("Style/Title/italic"), &italicTitle); config->Read(wxT("Style/Title/underlined"), &underTitle); config->Read(wxT("Style/Section/bold"), &boldSection); config->Read(wxT("Style/Section/italic"), &italicSection); config->Read(wxT("Style/Section/underlined"), &underSection); config->Read(wxT("Style/Subsection/bold"), &boldSubsection); config->Read(wxT("Style/Subsection/italic"), &italicSubsection); config->Read(wxT("Style/Subsection/underlined"), &underSubsection); AddLineToFile(output, wxT(" ")); AddLineToFile(output, wxT(" ")); AddLineToFile(output, wxT(" ")); wxString version(wxT(VERSION)); AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("")); AddLineToFile(output, wxT("")); AddLineToFile(output, wxT("")); ////////////////////////////////////////////// // Write contents ////////////////////////////////////////////// while (tmp != NULL) { if (tmp->GetGroupType() == GC_TYPE_CODE) { AddLineToFile(output, wxT("\n\n\n\n")); MathCell *prompt = tmp->GetPrompt(); AddLineToFile(output, wxT("

")); MathCell *input = tmp->GetInput(); if (input != NULL) { AddLineToFile(output, wxT(" ")); } AddLineToFile(output, wxT("
")); AddLineToFile(output, wxT(" ")); AddLineToFile(output, prompt->ToString(false)); AddLineToFile(output, wxT(" ")); AddLineToFile(output, PrependNBSP(input->ToString(false))); AddLineToFile(output, wxT("
")); MathCell *out = tmp->GetLabel(); if (out == NULL) { AddLineToFile(output, wxEmptyString); } else { CopyToFile(imgDir + wxT("/") + filename + wxString::Format(wxT("_%d.png"), count), out, NULL, true); AddLineToFile(output, wxT("
")); AddLineToFile(output, wxT(" \"Result\""), count)); count++; } } else { switch(tmp->GetGroupType()) { case GC_TYPE_TEXT: AddLineToFile(output, wxT("\n\n\n\n")); AddLineToFile(output, wxT("

")); AddLineToFile(output, PrependNBSP(tmp->GetEditable()->ToString(false))); break; case GC_TYPE_SECTION: AddLineToFile(output, wxT("\n\n\n\n")); AddLineToFile(output, wxT("

")); AddLineToFile(output, PrependNBSP(tmp->GetPrompt()->ToString(false) + tmp->GetEditable()->ToString(false))); break; case GC_TYPE_SUBSECTION: AddLineToFile(output, wxT("\n\n\n\n")); AddLineToFile(output, wxT("

")); AddLineToFile(output, PrependNBSP(tmp->GetPrompt()->ToString(false) + tmp->GetEditable()->ToString(false))); break; case GC_TYPE_TITLE: AddLineToFile(output, wxT("\n\n\n\n")); AddLineToFile(output, wxT("

")); AddLineToFile(output, PrependNBSP(tmp->GetEditable()->ToString(false))); break; case GC_TYPE_PAGEBREAK: AddLineToFile(output, wxT("\n\n\n\n")); AddLineToFile(output, wxT("

")); AddLineToFile(output, wxT("


")); break; case GC_TYPE_IMAGE: { AddLineToFile(output, wxT("\n\n\n\n")); MathCell *out = tmp->GetLabel(); AddLineToFile(output, wxT("

")); AddLineToFile(output, PrependNBSP(tmp->GetPrompt()->ToString(false) + wxT(" ") + tmp->GetEditable()->ToString(false))); AddLineToFile(output, wxT("
")); CopyToFile(imgDir + wxT("/") + filename + wxString::Format(wxT("_%d.png"), count), out, NULL, true); AddLineToFile(output, wxT(" \"Result\""), count)); count++; } break; } } AddLineToFile(output, wxT("

")); tmp = dynamic_cast(tmp->m_next); } ////////////////////////////////////////////// // Footer ////////////////////////////////////////////// AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("
")); AddLineToFile(output, wxT(" Created with") wxT(" ") wxT("wxMaxima") wxT(".")); AddLineToFile(output, wxEmptyString); // // Close document // AddLineToFile(output, wxT(" ")); AddLineToFile(output, wxT("")); bool done = output.Write(wxTextFileType_None); output.Close(); return done; } bool MathCtrl::ExportToTeX(wxString file) { wxString imgDir; wxString path, filename, ext; GroupCell *tmp = m_tree; wxFileName::SplitPath(file, &path, &filename, &ext); imgDir = path + wxT("/") + filename + wxT("_img"); int imgCounter = 0; wxTextFile output(file); if (output.Exists()) { if (!output.Open(file)) return false; output.Clear(); } else if (!output.Create(file)) return false; AddLineToFile(output, wxT("\\documentclass{article}")); AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("%% Created with wxMaxima " VERSION )); AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("\\setlength{\\parskip}{\\medskipamount}")); AddLineToFile(output, wxT("\\setlength{\\parindent}{0pt}")); AddLineToFile(output, wxT("\\usepackage[utf8]{inputenc}")); AddLineToFile(output, wxT("\\usepackage{graphicx}")); AddLineToFile(output, wxT("\\usepackage{color}")); AddLineToFile(output, wxT("\\usepackage{amsmath}")); AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("\\definecolor{labelcolor}{RGB}{100,0,0}")); AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("\\begin{document}")); // // Write contents // while (tmp != NULL) { wxString s = tmp->ToTeX(false, imgDir, filename, &imgCounter); AddLineToFile(output, s); tmp = dynamic_cast(tmp->m_next); } // // Close document // AddLineToFile(output, wxT("\\end{document}")); bool done = output.Write(wxTextFileType_None); output.Close(); return done; } void MathCtrl::ExportToMAC(wxTextFile& output, MathCell *tree, bool wxm) { GroupCell* tmp = dynamic_cast(tree); // // Write contents // while (tmp != NULL) { if (tmp->IsHidden()) { AddLineToFile(output, wxEmptyString, false); AddLineToFile(output, wxT("/* [wxMaxima: hide output ] */"), false); } else AddLineToFile(output, wxEmptyString, false); // Write input if (tmp->GetGroupType() == GC_TYPE_CODE) { MathCell *txt = tmp->GetEditable(); if (txt != NULL) { wxString input = txt->ToString(false); if (input.Length()>0) { if (wxm) AddLineToFile(output, wxT("/* [wxMaxima: input start ] */"), false); AddLineToFile(output, input, false); if (wxm) AddLineToFile(output, wxT("/* [wxMaxima: input end ] */"), false); } } } else if (tmp->GetGroupType() == GC_TYPE_PAGEBREAK) { AddLineToFile(output, wxT("/* [wxMaxima: page break ] */"), false); } // Write text else { MathCell *txt = tmp->GetEditable(); if (wxm) { switch (txt->GetType()) { case MC_TYPE_TEXT: AddLineToFile(output, wxT("/* [wxMaxima: comment start ]"), false); break; case MC_TYPE_SECTION: AddLineToFile(output, wxT("/* [wxMaxima: section start ]"), false); break; case MC_TYPE_SUBSECTION: AddLineToFile(output, wxT("/* [wxMaxima: subsect start ]"), false); break; case MC_TYPE_TITLE: AddLineToFile(output, wxT("/* [wxMaxima: title start ]"), false); break; default: AddLineToFile(output, wxT("/*"), false); } } else AddLineToFile(output, wxT("/*"), false); wxString comment = txt->ToString(false); AddLineToFile(output, comment, false); if (wxm) { switch (txt->GetType()) { case MC_TYPE_TEXT: AddLineToFile(output, wxT(" [wxMaxima: comment end ] */"), false); break; case MC_TYPE_SECTION: AddLineToFile(output, wxT(" [wxMaxima: section end ] */"), false); break; case MC_TYPE_SUBSECTION: AddLineToFile(output, wxT(" [wxMaxima: subsect end ] */"), false); break; case MC_TYPE_TITLE: AddLineToFile(output, wxT(" [wxMaxima: title end ] */"), false); break; default: AddLineToFile(output, wxT("*/"), false); } } else AddLineToFile(output, wxT("*/"), false); } if (tmp->GetHiddenTree() != NULL) { AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("/* [wxMaxima: fold start ] */")); ExportToMAC(output, tmp->GetHiddenTree(), wxm); AddLineToFile(output, wxEmptyString); AddLineToFile(output, wxT("/* [wxMaxima: fold end ] */")); } tmp = dynamic_cast(tmp->m_next); } } bool MathCtrl::ExportToMAC(wxString file) { m_saved = true; bool wxm = false; if (file.Right(4) == wxT(".wxm")) wxm = true; wxTextFile output(file); if (output.Exists()) { if (!output.Open(file)) return false; output.Clear(); } else if (!output.Create(file)) return false; m_saved = true; if (wxm) { AddLineToFile(output, wxT("/* [wxMaxima batch file version 1] [ DO NOT EDIT BY HAND! ]*/"), false); wxString version(wxT(VERSION)); AddLineToFile(output, wxT("/* [ Created with wxMaxima version ") + version + wxT(" ] */"), false); } ExportToMAC(output, m_tree, wxm); AddLineToFile(output, wxEmptyString, false); if (wxm) { AddLineToFile(output, wxT("/* Maxima can't load/batch files which end with a comment! */"), false); AddLineToFile(output, wxT("\"Created with wxMaxima\"$"), false); } bool done = output.Write(wxTextFileType_None); output.Close(); return done; } wxString ConvertToUnicode(wxString str) { #if wxUSE_UNICODE return str; #else wxString str1(str.wc_str(*wxConvCurrent), wxConvUTF8); return str1; #endif } bool MathCtrl::ExportToWXMX(wxString file) { // delete file if it already exists if(wxFileExists(file)) if(!wxRemoveFile(file)) return false; wxFFileOutputStream out(file); wxZipOutputStream zip(out); wxTextOutputStream output(zip); // first zip entry is "content.xml", xml of m_tree zip.PutNextEntry(wxT("content.xml")); output << wxT("\n"); // TODO write DOCTYPE output << wxT("\n"); output << wxT("\n\n"); // write document output << wxT("\n\n"); // Reset image counter ImgCell::WXMXResetCounter(); GroupCell* tmp = m_tree; // Write contents // while (tmp != NULL) { output << ConvertToUnicode(tmp->ToXML(false)); tmp = dynamic_cast(tmp->m_next); } output << wxT("\n"); // save images from memory to zip file wxFileSystem *fsystem = new wxFileSystem(); fsystem->AddHandler(new wxMemoryFSHandler); fsystem->ChangePathTo(wxT("memory:"), true); for (int i=1; i<=ImgCell::WXMXImageCount(); i++) { wxString name = wxT("image"); name << i << wxT(".png"); wxFSFile *fsfile = fsystem->OpenFile(name); if (fsfile) { zip.PutNextEntry(name); wxInputStream *imagefile = fsfile->GetStream(); while (!(imagefile->Eof())) imagefile->Read(zip); delete imagefile; wxMemoryFSHandler::RemoveFile(name); } } delete fsystem; m_saved = true; return true; } /** * CanEdit: we can edit the input if the we have the whole input in selection! */ bool MathCtrl::CanEdit() { if (m_selectionStart == NULL || m_selectionEnd != m_selectionStart || m_workingGroup != NULL || m_editingEnabled == false) return false; if (!m_selectionStart->IsEditable()) return false; if (m_selectionStart->m_previous == NULL) return false; if (m_selectionStart->m_previous->GetType() != MC_TYPE_MAIN_PROMPT) return false; return true; } void MathCtrl::OnDoubleClick(wxMouseEvent &event) { if (m_activeCell != NULL) { m_activeCell->SelectWordUnderCaret(); Refresh(); } else if (m_selectionStart != NULL) { GroupCell *parent = dynamic_cast(m_selectionStart->GetParent()); parent->SelectOutput(&m_selectionStart, &m_selectionEnd); Refresh(); } } bool MathCtrl::ActivatePrevInput() { if (m_selectionStart == NULL && m_activeCell == NULL) return false; GroupCell *tmp; if (m_selectionStart != NULL) tmp = dynamic_cast(m_selectionStart->GetParent()); else { tmp = dynamic_cast(m_activeCell->GetParent()); SetActiveCell(NULL); } if (tmp == NULL) return false; tmp = dynamic_cast(tmp->m_previous); if (tmp == NULL) return false; EditorCell *inpt = NULL; while (tmp != NULL && inpt == NULL) { inpt = tmp->GetEditable(); if (inpt == NULL) tmp = dynamic_cast(tmp->m_previous); } if (inpt == NULL) return false; ScrollToCell(inpt); SetActiveCell(inpt, false); m_activeCell->CaretToEnd(); Refresh(); return true; } bool MathCtrl::ActivateNextInput(bool input) { if (m_selectionStart == NULL && m_activeCell == NULL) return false; GroupCell *tmp; if (m_selectionStart != NULL) tmp = dynamic_cast(m_selectionStart->GetParent()); else { tmp = dynamic_cast(m_activeCell->GetParent()); SetActiveCell(NULL); } if (tmp == NULL) return false; tmp = dynamic_cast(tmp->m_next); if (tmp == NULL) return false; EditorCell *inpt = NULL; while (tmp != NULL && inpt == NULL) { if (input) inpt = dynamic_cast(tmp->GetInput()); else inpt = tmp->GetEditable(); if (inpt == NULL) tmp = dynamic_cast(tmp->m_next); } if (inpt == NULL) return false; ScrollToCell(inpt); SetActiveCell(inpt, false); m_activeCell->CaretToStart(); Refresh(); return true; } ///////////////////////////////////////////////////////////// // methods related to evaluation queue // void MathCtrl::AddDocumentToEvaluationQueue() { GroupCell* tmp = m_tree; while (tmp != NULL) { m_evaluationQueue->AddToQueue((GroupCell*) tmp); tmp = dynamic_cast(tmp->m_next); } SetHCaret(m_last); } /** * Add the entire document, including hidden cells, to the evaluation queue. */ void MathCtrl::AddEntireDocumentToEvaluationQueue() { GroupCell* tmp = m_tree; while (tmp != NULL) { m_evaluationQueue->AddToQueue((GroupCell*) tmp); m_evaluationQueue->AddHiddenTreeToQueue((GroupCell*) tmp); tmp = dynamic_cast(tmp->m_next); } SetHCaret(m_last); } void MathCtrl::AddSelectionToEvaluationQueue() { if ((m_selectionStart == NULL) || (m_selectionEnd == NULL)) return; if (m_selectionStart->GetType() != MC_TYPE_GROUP) return; GroupCell* tmp = dynamic_cast(m_selectionStart); while (tmp != NULL) { m_evaluationQueue->AddToQueue((GroupCell*) tmp); if (tmp == m_selectionEnd) break; tmp = dynamic_cast(tmp->m_next); } SetHCaret(m_selectionEnd); } void MathCtrl::AddCellToEvaluationQueue(GroupCell* gc) { m_evaluationQueue->AddToQueue((GroupCell*) gc); SetHCaret((MathCell *) gc); } void MathCtrl::ClearEvaluationQueue() { while (m_evaluationQueue->GetFirst() != NULL) m_evaluationQueue->RemoveFirst(); } //////// end of EvaluationQueue related stuff //////////////// void MathCtrl::ScrollToCell(MathCell *cell) { if (cell == NULL) return; MathCell *tmp = cell->GetParent(); if (tmp == NULL) return; int cellY = tmp->GetCurrentY(); if (cellY == -1) return; int cellDrop = tmp->GetDrop(); int cellCenter = tmp->GetCenter(); int view_x, view_y; int height, width; GetViewStart(&view_x, &view_y); GetSize(&width, &height); view_y *= SCROLL_UNIT; if (cellY + cellDrop + SCROLL_UNIT > view_y + height - height / 10) Scroll(-1, MAX((cellY + cellDrop - height + height / 10)/SCROLL_UNIT + 4, 0)); else if (cellY - cellCenter - SCROLL_UNIT < view_y && cellDrop + cellCenter < height) Scroll(-1, MAX(cellY/SCROLL_UNIT - 2, 0)); Refresh(); } void MathCtrl::SetActiveCell(EditorCell *cell, bool callRefresh) { if (m_activeCell != NULL) m_activeCell->ActivateCell(); m_activeCell = cell; if (m_activeCell != NULL) { SetSelection(NULL); bool match = false; bool insertAns = false; if (m_activeCell->GetType() == MC_TYPE_INPUT) { wxConfig::Get()->Read(wxT("matchParens"), &match); wxConfig::Get()->Read(wxT("insertAns"), &insertAns); } m_activeCell->ActivateCell(); m_activeCell->SetMatchParens(match); m_activeCell->SetInsertAns(insertAns); m_switchDisplayCaret = false; m_caretTimer.Start(CARET_TIMER_TIMEOUT, true); } if (cell != NULL) m_hCaretActive = false; // we have activeted a cell .. disable caret if (callRefresh) // = true default Refresh(); } void MathCtrl::ShowPoint(wxPoint point) { if (point.x == -1 || point.y == -1) return; int view_x, view_y; int height, width; bool sc = false; int scrollToX = -1, scrollToY = -1; GetViewStart(&view_x, &view_y); GetSize(&width, &height); view_x *= SCROLL_UNIT; view_y *= SCROLL_UNIT; if ((point.y < view_y) || (point.y > view_y + height - wxSystemSettings::GetMetric(wxSYS_HTHUMB_X) - 20)) { sc = true; scrollToY = point.y - height / 2; } else scrollToY = view_y; if ((point.x < view_x) || (point.x > view_x + width - wxSystemSettings::GetMetric(wxSYS_HTHUMB_X) - 20)) { sc = true; scrollToX = point.x - width / 2; } else scrollToX = view_x; if (sc) Scroll(scrollToX / SCROLL_UNIT, scrollToY / SCROLL_UNIT); } bool MathCtrl::CutToClipboard() { if (m_activeCell != NULL) { m_activeCell->CutToClipboard(); m_activeCell->GetParent()->ResetSize(); Recalculate(); Refresh(); return true; } else if (m_selectionStart != NULL && m_selectionStart->GetType() == MC_TYPE_GROUP) { CopyCells(); DeleteSelection(); return true; } return false; } /**** * PasteFromClipboard * Checks if we have cell structure in the clipboard. * If not, then pastes text into activeCell or opens a new cell * if hCaretActive == true. If yes, copies the cell structure. */ void MathCtrl::PasteFromClipboard(bool primary) { bool cells = false; if (primary) wxTheClipboard->UsePrimarySelection(true); // Check for cell structure if (wxTheClipboard->Open()) { // Check if the clipboard contains text. if (wxTheClipboard->IsSupported( wxDF_TEXT )) { wxTextDataObject data; wxTheClipboard->GetData(data); wxString inputs(data.GetText()); if (inputs.StartsWith(wxT("/* [wxMaxima: "))) { cells = true; wxStringTokenizer lines(inputs, wxT("\n")); wxString input, line; wxArrayString inp; // Read the content from clipboard while (lines.HasMoreTokens()) { // Go to the begining of the cell do { line = lines.GetNextToken(); } while (lines.HasMoreTokens() && line != wxT("/* [wxMaxima: input start ] */") && line != wxT("/* [wxMaxima: comment start ]") && line != wxT("/* [wxMaxima: section start ]") && line != wxT("/* [wxMaxima: subsect start ]") && line != wxT("/* [wxMaxima: title start ]")); // Read the cell content do { line = lines.GetNextToken(); if (line == wxT("/* [wxMaxima: input end ] */")) { inp.Add(wxT("input")); inp.Add(input); input = wxEmptyString; } else if (line == wxT(" [wxMaxima: comment end ] */")) { inp.Add(wxT("comment")); inp.Add(input); input = wxEmptyString; } else if (line == wxT(" [wxMaxima: section end ] */")) { inp.Add(wxT("section")); inp.Add(input); input = wxEmptyString; } else if (line == wxT(" [wxMaxima: subsect end ] */")) { inp.Add(wxT("subsection")); inp.Add(input); input = wxEmptyString; } else if (line == wxT(" [wxMaxima: title end ] */")) { inp.Add(wxT("title")); inp.Add(input); input = wxEmptyString; } else { if (input.Length()>0) input = input + wxT("\n") + line; else input = line; } } while (lines.HasMoreTokens() && line != wxT("/* [wxMaxima: input end ] */") && line != wxT(" [wxMaxima: comment end ] */") && line != wxT(" [wxMaxima: section end ] */") && line != wxT(" [wxMaxima: subsect end ] */") && line != wxT(" [wxMaxima: title end ] */")); } // Paste the content into the document. Freeze(); for (unsigned int i=0; iIsSupported(wxDF_BITMAP)) { OpenHCaret(wxEmptyString, GC_TYPE_IMAGE); GroupCell *group = dynamic_cast(m_activeCell->GetParent()); if (group != NULL) { wxBitmapDataObject bitmap; wxTheClipboard->GetData(bitmap); ImgCell *ic = new ImgCell(wxEmptyString, false); ic->DrawRectangle(false); ic->SetBitmap(bitmap.GetBitmap()); group->AppendOutput(ic); } } // Make sure the clipboard is closed! wxTheClipboard->Close(); } // Clipboard does not have the cell structure. if (!cells) { if (m_activeCell != NULL) { m_activeCell->PasteFromClipboard(); m_activeCell->GetParent()->ResetSize(); Recalculate(); Refresh(); } else if ((m_hCaretActive == true) && (wxTheClipboard->Open())) { if (wxTheClipboard->IsSupported(wxDF_TEXT)) { wxTextDataObject obj; wxTheClipboard->GetData(obj); wxString txt = obj.GetText(); OpenHCaret(txt); Refresh(); } wxTheClipboard->Close(); } } if (primary) wxTheClipboard->UsePrimarySelection(false); } void MathCtrl::SelectAll() { if (m_activeCell == NULL && m_tree != NULL) { m_selectionStart = m_tree; m_selectionEnd = m_last; m_clickType = CLICK_TYPE_GROUP_SELECTION; m_hCaretActive = false; } else if (m_activeCell != NULL) m_activeCell->SelectAll(); Refresh(); } void MathCtrl::DivideCell() { if (m_activeCell == NULL) return; GroupCell *parent = dynamic_cast(m_activeCell->GetParent()); if (parent->GetEditable() != m_activeCell) return; int gctype = parent->GetGroupType(); if (gctype == GC_TYPE_IMAGE) return; if (m_activeCell->CaretAtStart() || m_activeCell->CaretAtEnd()) return; wxString newcellstring = m_activeCell->DivideAtCaret(); SetHCaret(parent, false); OpenHCaret(newcellstring, gctype); if (m_activeCell) m_activeCell->CaretToStart(); } void MathCtrl::MergeCells() { wxString newcell = wxEmptyString; MathCell *tmp = m_selectionStart; if (!tmp) return; if (tmp->GetType() != MC_TYPE_GROUP) return; // should not happen while (tmp) { if (newcell.Length() > 0) newcell += wxT("\n"); newcell += dynamic_cast(tmp)->GetEditable()->GetValue(); if (tmp == m_selectionEnd) break; tmp = tmp->m_next; } EditorCell *editor = dynamic_cast(m_selectionStart)->GetEditable(); editor->SetValue(newcell); m_selectionStart = m_selectionStart->m_next; DeleteSelection(); editor->GetParent()->ResetSize(); dynamic_cast(editor->GetParent())->ResetInputLabel(); editor->ResetSize(); Recalculate(); SetActiveCell(editor, true); } void MathCtrl::OnSetFocus(wxFocusEvent& event) { if (m_activeCell != NULL) m_activeCell->SetFocus(true); } void MathCtrl::OnKillFocus(wxFocusEvent& event) { if (m_activeCell != NULL) m_activeCell->SetFocus(false); } void MathCtrl::CheckUnixCopy() { #if defined __WXGTK__ && wxCHECK_VERSION(2,9,0) if (CanCopy(true)) { wxTheClipboard->UsePrimarySelection(true); if (wxTheClipboard->Open()) { wxTheClipboard->SetData(new wxTextDataObject(GetString())); wxTheClipboard->Close(); } wxTheClipboard->UsePrimarySelection(false); } #endif } bool MathCtrl::IsSelected(int type) { if (m_selectionStart == NULL) return false; else if (type == MC_TYPE_IMAGE || type == MC_TYPE_SLIDE) { if (m_selectionStart != m_selectionEnd || m_selectionStart->GetType() != type) return false; return true; } else if (m_selectionStart->GetType() != type) return false; return true; } void MathCtrl::Animate(bool run) { if (CanAnimate()) { if (run) { SlideShow *tmp = (SlideShow *)m_selectionStart; tmp->SetDisplayedIndex((tmp->GetDisplayedIndex() + 1) % tmp->Length()); Refresh(); m_animate = true; m_animationTimer.Start(ANIMATION_TIMER_TIMEOUT, true); } else m_animate = false; } } void MathCtrl::SetWorkingGroup(GroupCell *group) { if (m_workingGroup != NULL) m_workingGroup->SetWorking(false); m_workingGroup = group; if (m_workingGroup != NULL) m_workingGroup->SetWorking(group); } bool MathCtrl::IsSelectionInWorking() { if (m_selectionStart == NULL) return false; if (m_workingGroup == NULL) return false; if (m_selectionStart->GetParent() != m_workingGroup) return false; return true; } GroupCell *MathCtrl::GetHCaret() { if (m_hCaretActive) return m_hCaretPosition; if (m_activeCell) return dynamic_cast(m_activeCell->GetParent()); return m_last; } /** * Set the HCaret to its default location, at the end of the document. */ void MathCtrl::SetDefaultHCaret() { SetHCaret(m_last); } /** * Set the HCaret at the location of the given MathCell. * * @param where The cell to place the cursor before. * @param callRefresh Call with false when manually refreshing. */ void MathCtrl::SetHCaret(MathCell *where, bool callRefresh) { m_selectionStart = m_selectionEnd = NULL; m_hCaretPositionStart = m_hCaretPositionEnd = NULL; SetActiveCell(NULL, false); m_hCaretPosition = dynamic_cast(where); m_hCaretActive = true; if (callRefresh) // = true default Refresh(); } void MathCtrl::ShowHCaret() { if (m_hCaretPosition == NULL) { if (m_workingGroup != NULL) m_hCaretPosition = m_workingGroup; else if (m_last != NULL) m_hCaretPosition = m_last; else m_hCaretPosition = NULL; } m_hCaretActive = true; } bool MathCtrl::CanUndo() { if (m_activeCell == NULL) return false; return m_activeCell->CanUndo(); } void MathCtrl::Undo() { if (m_activeCell != NULL) { m_activeCell->Undo(); m_activeCell->GetParent()->ResetSize(); Recalculate(); Refresh(); } } bool MathCtrl::CanRedo() { if (m_activeCell == NULL) return false; return m_activeCell->CanRedo(); } void MathCtrl::Redo() { if (m_activeCell != NULL) { m_activeCell->Redo(); m_activeCell->GetParent()->ResetSize(); Recalculate(); Refresh(); } } void MathCtrl::SaveValue() { if (m_activeCell != NULL) m_activeCell->SaveValue(); } void MathCtrl::RemoveAllOutput() { if (m_workingGroup != NULL) return; GroupCell *tmp = m_tree; SetSelection(NULL); // TODO only setselection NULL when selection is in the output SetActiveCell(NULL); while (tmp != NULL) { if (tmp->GetGroupType() == GC_TYPE_CODE) tmp->RemoveOutput(); tmp = dynamic_cast(tmp->m_next); } Recalculate(); Refresh(); } void MathCtrl::OnMouseMiddleUp(wxMouseEvent& event) { #if defined __WXGTK__ OnMouseLeftDown(event); m_leftDown = false; if (m_clickType != CLICK_TYPE_NONE) PasteFromClipboard(true); m_clickType = CLICK_TYPE_NONE; #endif } void MathCtrl::CommentSelection() { if (GetActiveCell()) { EditorCell *active = GetActiveCell(); active->CommentSelection(); active->ResetSize(); active->GetParent()->ResetSize(); Recalculate(); } } void MathCtrl::OnMouseWheel(wxMouseEvent &ev) { if (m_selectionStart == NULL || m_selectionStart != m_selectionEnd || m_selectionStart->GetType() != MC_TYPE_SLIDE || m_animate) ev.Skip(); else { int rot = ev.GetWheelRotation(); SlideShow *tmp = (SlideShow *)m_selectionStart; if (rot > 0) tmp->SetDisplayedIndex((tmp->GetDisplayedIndex() + 1) % tmp->Length()); else tmp->SetDisplayedIndex((tmp->GetDisplayedIndex() - 1) % tmp->Length()); wxRect rect = m_selectionStart->GetRect(); CalcScrolledPosition(rect.x, rect.y, &rect.x, &rect.y); RefreshRect(rect); } } wxString MathCtrl::GetInputAboveCaret() { if (!m_hCaretActive || m_hCaretPosition == NULL) return wxEmptyString; MathCell *editor = m_hCaretPosition->GetEditable(); if (editor != NULL) return editor->ToString(false); return wxEmptyString; } wxString MathCtrl::GetOutputAboveCaret() { if (!m_hCaretActive || m_hCaretPosition == NULL) return wxEmptyString; m_hCaretPosition->SelectOutput(&m_selectionStart, &m_selectionEnd); wxString output = GetString(); m_selectionStart = m_selectionEnd = NULL; Refresh(); return output; } bool MathCtrl::FindNext(wxString str, bool down, bool ignoreCase) { if (m_tree == NULL) return false; GroupCell *tmp = m_tree; if (!down) tmp = m_last; if (m_activeCell != NULL) tmp = dynamic_cast(m_activeCell->GetParent()); else if (m_hCaretActive) { if (down) { if (m_hCaretPosition != NULL) tmp = dynamic_cast(m_hCaretPosition->m_next); } else { tmp = m_hCaretPosition; } } while (tmp != NULL) { EditorCell *editor = (EditorCell *)(tmp->GetEditable()); if (editor != NULL) { bool found = editor->FindNext(str, down, ignoreCase); if (found) { ScrollToCell(editor); int start, end; editor->GetSelection(&start, &end); SetActiveCell(editor); editor->SetSelection(start, end); Refresh(); return true; } } if (down) tmp = dynamic_cast(tmp->m_next); else tmp = dynamic_cast(tmp->m_previous); } return false; } void MathCtrl::Replace(wxString oldString, wxString newString) { if (m_activeCell != NULL) { if (m_activeCell->ReplaceSelection(oldString, newString)) { m_saved = false; dynamic_cast(m_activeCell->GetParent())->ResetInputLabel(); RecalculateForce(); Refresh(); } } } int MathCtrl::ReplaceAll(wxString oldString, wxString newString) { if (m_tree == NULL) return 0; int count = 0; GroupCell *tmp = m_tree; while (tmp != NULL) { EditorCell *editor = (EditorCell *)(tmp->GetEditable()); if (editor != NULL) { int replaced = editor->ReplaceAll(oldString, newString); if (replaced > 0) { count += replaced; tmp->ResetInputLabel(); } count += editor->ReplaceAll(oldString, newString); } tmp = dynamic_cast(tmp->m_next); } if (count > 0) { m_saved = false; RecalculateForce(); Refresh(); } return count; } bool MathCtrl::Autocomplete(bool templates) { if (m_activeCell == NULL) return false; m_autocompleteTemplates = templates; EditorCell *editor = (EditorCell *)m_activeCell; editor->SelectWordUnderCaret(false, false); wxString partial = editor->GetSelectionString(); m_completions = m_autocomplete.CompleteSymbol(partial, templates); /// No completions - clear the selection and return false if (m_completions.GetCount() == 0) { editor->ClearSelection(); return false; } /// If there is only one completion, use it if (m_completions.GetCount() == 1) { int start, end; editor->GetSelection(&start, &end); editor->ReplaceSelection(editor->GetSelectionString(), m_completions[0]); editor->ClearSelection(); editor->CaretToPosition(start); if (!templates || !editor->FindNextTemplate()) editor->CaretToPosition(start + m_completions[0].Length()); editor->ResetSize(); editor->GetParent()->ResetSize(); Recalculate(); Refresh(); } /// If there are more than one completions, popup a menu else { m_completions.Sort(); wxMenu *popup = new wxMenu(); for (int i=0; iAppend(popid_complete_00 + i, m_completions[i]); // Find the position for the popup menu wxClientDC dc(this); CellParser parser(dc); wxPoint pos = editor->PositionToPoint(parser, -1); CalcScrolledPosition(pos.x, pos.y, &pos.x, &pos.y); // Show popup menu PopupMenu(popup, pos.x, pos.y); delete popup; } return true; } void MathCtrl::OnComplete(wxCommandEvent &event) { if (m_activeCell == NULL) return; EditorCell *editor = (EditorCell *)m_activeCell; int caret = editor->GetCaretPosition(); editor->ReplaceSelection(editor->GetSelectionString(), m_completions[event.GetId() - popid_complete_00]); int sel_start, sel_end; editor->GetSelection(&sel_start, &sel_end); editor->ClearSelection(); if (m_autocompleteTemplates) { editor->CaretToPosition(caret); if (!editor->FindNextTemplate()) editor->CaretToPosition(sel_start + m_completions[event.GetId() - popid_complete_00].Length()); } editor->ResetSize(); editor->GetParent()->ResetSize(); Recalculate(); Refresh(); } void MathCtrl::SetActiveCellText(wxString text) { EditorCell* active = (EditorCell *)m_activeCell; if (active != NULL) { GroupCell *parent = dynamic_cast(active->GetParent()); if (parent->GetGroupType() == GC_TYPE_CODE && parent->IsMainInput(active)) { active->SaveValue(); active->SetValue(text); active->ResetSize(); active->ResetData(); parent->ResetSize(); parent->ResetData(); parent->ResetInputLabel(); Recalculate(); Refresh(); } } else OpenHCaret(text); } bool MathCtrl::InsertText(wxString text) { if (m_workingGroup != NULL) return false; if (m_activeCell == NULL) OpenHCaret(text); else { m_activeCell->InsertText(text); Refresh(); } return true; } void MathCtrl::OpenNextOrCreateCell() { if (m_hCaretPosition) { if (m_hCaretPosition->m_next) { m_selectionStart = m_selectionEnd = m_hCaretPosition; ActivateNextInput(); } else OpenHCaret(); } else OpenHCaret(); } BEGIN_EVENT_TABLE(MathCtrl, wxScrolledCanvas) EVT_MENU_RANGE(popid_complete_00, popid_complete_00 + AC_MENU_LENGTH, MathCtrl::OnComplete) EVT_SIZE(MathCtrl::OnSize) EVT_PAINT(MathCtrl::OnPaint) EVT_LEFT_UP(MathCtrl::OnMouseLeftUp) EVT_LEFT_DOWN(MathCtrl::OnMouseLeftDown) EVT_RIGHT_DOWN(MathCtrl::OnMouseRightDown) EVT_LEFT_DCLICK(MathCtrl::OnDoubleClick) EVT_MOTION(MathCtrl::OnMouseMotion) EVT_ENTER_WINDOW(MathCtrl::OnMouseEnter) EVT_LEAVE_WINDOW(MathCtrl::OnMouseExit) EVT_TIMER(TIMER_ID, MathCtrl::OnTimer) EVT_TIMER(CARET_TIMER_ID, MathCtrl::OnTimer) EVT_TIMER(ANIMATION_TIMER_ID, MathCtrl::OnTimer) EVT_KEY_DOWN(MathCtrl::OnKeyDown) EVT_CHAR(MathCtrl::OnChar) EVT_ERASE_BACKGROUND(MathCtrl::OnEraseBackground) EVT_KILL_FOCUS(MathCtrl::OnKillFocus) EVT_SET_FOCUS(MathCtrl::OnSetFocus) EVT_MIDDLE_UP(MathCtrl::OnMouseMiddleUp) EVT_MOUSEWHEEL(MathCtrl::OnMouseWheel) END_EVENT_TABLE() wxMaxima-13.04.2/src/MathCtrl.h000644 000765 000024 00000020433 12073007012 016532 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2012-2013 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _MATHCTRL_H_ #define _MATHCTRL_H_ #include #include #include "MathCell.h" #include "EditorCell.h" #include "GroupCell.h" #include "EvaluationQueue.h" #include "Autocomplete.h" #if !wxCHECK_VERSION(2,9,0) typedef wxScrolledWindow wxScrolledCanvas; #endif enum { popid_copy = wxID_HIGHEST + 500, popid_cut, popid_paste, popid_select_all, popid_comment_selection, popid_divide_cell, popid_copy_image, popid_delete, popid_simplify, popid_expand, popid_factor, popid_solve, popid_solve_num, popid_integrate, popid_diff, popid_subst, popid_plot2d, popid_plot3d, popid_float, popid_edit, popid_add_comment, popid_insert_input, popid_copy_tex, popid_image, popid_animation_save, popid_animation_start, popid_evaluate, popid_merge_cells, popid_insert_text, popid_insert_title, popid_insert_section, popid_insert_subsection, // popid_complete_00 should be the last id popid_complete_00 }; enum { CLICK_TYPE_NONE, CLICK_TYPE_GROUP_SELECTION, CLICK_TYPE_INPUT_SELECTION, CLICK_TYPE_OUTPUT_SELECTION }; class MathCtrl: public wxScrolledCanvas { public: MathCtrl(wxWindow* parent, int id, wxPoint pos, wxSize size); ~MathCtrl(); void DestroyTree(); void DestroyTree(MathCell* tree); MathCell* CopyTree(); GroupCell *InsertGroupCells(GroupCell* tree, GroupCell* where = NULL); void InsertLine(MathCell *newLine, bool forceNewLine = false); void Recalculate(bool force = false); void RecalculateForce(); void ClearDocument(); // used when opening new file in wxMaxima.cpp void ResetInputPrompts(); bool CanCopy(bool fromActive = false) { return m_selectionStart != NULL || (fromActive && m_activeCell != NULL && m_activeCell->CanCopy()); } bool CanPaste() { return (m_activeCell != NULL) || (m_hCaretActive); } bool CanCut() { return (m_activeCell != NULL && m_activeCell->CanCopy()) || (m_selectionStart != NULL && m_selectionStart->GetType() == MC_TYPE_GROUP); } void SelectAll(); bool CanDeleteSelection(); bool CanAnimate() { return m_selectionStart != NULL && m_selectionStart == m_selectionEnd && m_selectionStart->GetType() == MC_TYPE_SLIDE; } void Animate(bool run); void DeleteSelection(bool deletePrompt = true); void DivideCell(); void MergeCells(); bool CutToClipboard(); void PasteFromClipboard(bool primary = false); bool Copy(bool astext = false); bool CopyCells(); bool CopyTeX(); bool CopyBitmap(); bool CopyToFile(wxString file); bool CopyToFile(wxString file, MathCell* start, MathCell* end, bool asData = false); bool ExportToHTML(wxString file); void ExportToMAC(wxTextFile& output, MathCell *tree, bool wxm); bool ExportToMAC(wxString file); bool ExportToWXMX(wxString file); //export to xml compatible file bool ExportToTeX(wxString file); wxString GetString(bool lb = false); MathCell* GetTree() { return m_tree; } MathCell* GetSelectionStart() { return m_selectionStart; } void SetSelection(MathCell* sel) { m_selectionStart = m_selectionEnd = sel; } bool CanEdit(); void EnableEdit(bool enable = true) { m_editingEnabled = enable; } bool ActivatePrevInput(); bool ActivateNextInput(bool input = false); void ScrollToCell(MathCell *cell); EditorCell* GetActiveCell() { return m_activeCell; } void ShowPoint(wxPoint point); void OnSetFocus(wxFocusEvent& event); void OnKillFocus(wxFocusEvent& event); bool IsSelected(int type); bool AnimationRunning() { return m_animate; } bool IsActiveInLast() { return m_activeCell != NULL && m_activeCell->GetParent() == m_last; } void SetWorkingGroup(GroupCell *group); bool IsSelectionInWorking(); void SetActiveCell(EditorCell *cell, bool callRefresh = true); void SetDefaultHCaret(); void SetHCaret(MathCell *where, bool callRefresh = true); // call with false, when manually refreshing GroupCell *GetHCaret(); void OpenHCaret(wxString txt = wxEmptyString, int type = GC_TYPE_CODE); void ShowHCaret(); bool CanUndo(); bool CanRedo(); void Undo(); void Redo(); void SaveValue(); bool IsSaved() { return m_saved; } void SetSaved(bool saved) { m_saved = saved; } void RemoveAllOutput(); // methods related to evaluation queue void AddDocumentToEvaluationQueue(); void AddEntireDocumentToEvaluationQueue(); void AddSelectionToEvaluationQueue(); void AddCellToEvaluationQueue(GroupCell* gc); void ClearEvaluationQueue(); EvaluationQueue* m_evaluationQueue; // methods for folding GroupCell *UpdateMLast(); void FoldOccurred(); GroupCell *ToggleFold(GroupCell *which); GroupCell *ToggleFoldAll(GroupCell *which); void FoldAll(); void UnfoldAll(); GroupCell *TearOutTree(GroupCell *start, GroupCell *end); // methods for zooming the document in and out double GetZoomFactor() { return m_zoomFactor; } void SetZoomFactor(double newzoom, bool recalc = true) { m_zoomFactor = newzoom; if (recalc) {RecalculateForce(); Refresh();} } void CommentSelection(); void OnMouseWheel(wxMouseEvent &ev); bool FindNext(wxString str, bool down, bool ignoreCase); void Replace(wxString oldString, wxString newString); int ReplaceAll(wxString oldString, wxString newString); wxString GetInputAboveCaret(); wxString GetOutputAboveCaret(); bool LoadSymbols(wxString file) { return m_autocomplete.LoadSymbols(file); } bool Autocomplete(bool templates = false); void AddSymbol(wxString fun, bool templ = false) { m_autocomplete.AddSymbol(fun, templ); } void SetActiveCellText(wxString text); bool InsertText(wxString text); GroupCell *GetWorkingGroup() { return m_workingGroup; } void OpenNextOrCreateCell(); protected: MathCell* CopySelection(); MathCell* CopySelection(MathCell* start, MathCell* end, bool asData = false); void GetMaxPoint(int* width, int* height); void OnTimer(wxTimerEvent& event); void OnMouseExit(wxMouseEvent& event); void OnMouseEnter(wxMouseEvent& event); void OnPaint(wxPaintEvent& event); void OnSize(wxSizeEvent& event); void OnMouseRightDown(wxMouseEvent& event); void OnMouseLeftUp(wxMouseEvent& event); void OnMouseLeftDown(wxMouseEvent& event); void OnMouseMotion(wxMouseEvent& event); void OnDoubleClick(wxMouseEvent& event); void OnKeyDown(wxKeyEvent& event); void OnChar(wxKeyEvent& event); void ClickNDrag(wxPoint down, wxPoint up); void AdjustSize(); void OnEraseBackground(wxEraseEvent& event) { } void CheckUnixCopy(); void OnMouseMiddleUp(wxMouseEvent& event); void NumberSections(); bool IsLesserGCType(int type, int comparedTo); void OnComplete(wxCommandEvent &event); wxPoint m_down; wxPoint m_up; wxPoint m_mousePoint; bool m_hCaretActive; // horizontal caret GroupCell *m_hCaretPosition; // group above hcaret, NULL for the top GroupCell *m_hCaretPositionStart, *m_hCaretPositionEnd; // selection with caret bool m_leftDown; bool m_mouseDrag; bool m_mouseOutside; GroupCell *m_tree; GroupCell *m_last; GroupCell *m_workingGroup; MathCell *m_selectionStart; MathCell *m_selectionEnd; int m_clickType; GroupCell *m_clickInGC; EditorCell *m_activeCell; CellParser *m_selectionParser; bool m_switchDisplayCaret; bool m_editingEnabled; wxTimer m_timer, m_caretTimer, m_animationTimer; bool m_animate; wxBitmap *m_memory; bool m_saved; double m_zoomFactor; AutoComplete m_autocomplete; wxArrayString m_completions; bool m_autocompleteTemplates; DECLARE_EVENT_TABLE() }; #endif //_MATHCTRL_H_ wxMaxima-13.04.2/src/MathParser.cpp000644 000765 000024 00000064316 12135220031 017422 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include #include #include #include #include #include "MathParser.h" #include "FracCell.h" #include "ExptCell.h" #include "TextCell.h" #include "SubCell.h" #include "SqrtCell.h" #include "LimitCell.h" #include "MatrCell.h" #include "ParenCell.h" #include "AbsCell.h" #include "AtCell.h" #include "DiffCell.h" #include "SumCell.h" #include "IntCell.h" #include "FunCell.h" #include "EditorCell.h" #include "ImgCell.h" #include "SubSupCell.h" #include "SlideShowCell.h" #include "GroupCell.h" #define MAXLENGTH 50000 MathParser::MathParser(wxString zipfile) { m_ParserStyle = MC_TYPE_DEFAULT; m_FracStyle = FC_NORMAL; m_highlight = false; if (zipfile.Length() > 0) { m_fileSystem = new wxFileSystem(); m_fileSystem->ChangePathTo(wxT("file:") + zipfile + wxT("#zip:/"), true); } else m_fileSystem = NULL; } MathParser::~MathParser() { if (m_fileSystem) delete m_fileSystem; } // ParseCellTag // This function is responsible for creating // a tree of groupcells when loading XML document. // Any changes in GroupCell structure or methods // has to be reflected here in order to ensure proper // loading of WXMX files. MathCell* MathParser::ParseCellTag(wxXmlNode* node) { GroupCell *group = NULL; // read hide status #if wxCHECK_VERSION(2,9,0) bool hide = (node->GetAttribute(wxT("hide"), wxT("false")) == wxT("true")) ? true : false; #else bool hide = (node->GetPropVal(wxT("hide"), wxT("false")) == wxT("true")) ? true : false; #endif // read (group)cell type #if wxCHECK_VERSION(2,9,0) wxString type = node->GetAttribute(wxT("type"), wxT("text")); #else wxString type = node->GetPropVal(wxT("type"), wxT("text")); #endif if (type == wxT("code")) { group = new GroupCell(GC_TYPE_CODE); wxXmlNode *children = node->GetChildren(); while (children) { if (children->GetName() == wxT("input")) { MathCell *editor = ParseTag(children->GetChildren()); group->SetEditableContent(editor->GetValue()); delete editor; } if (children->GetName() == wxT("output")) group->AppendOutput(ParseTag(children->GetChildren())); children = children->GetNext(); } } else if (type == wxT("image")) { group = new GroupCell(GC_TYPE_IMAGE); wxXmlNode *children = node->GetChildren(); while (children) { if (children->GetName() == wxT("editor")) { MathCell *ed = ParseEditorTag(children); group->SetEditableContent(ed->GetValue()); delete ed; } else group->AppendOutput(ParseTag(children)); children = children->GetNext(); } } else if (type == wxT("pagebreak")) { group = new GroupCell(GC_TYPE_PAGEBREAK); } else if (type == wxT("text")) { group = new GroupCell(GC_TYPE_TEXT); MathCell *editor = ParseTag(node->GetChildren()); group->SetEditableContent(editor->GetValue()); delete editor; } else { // text types if (type == wxT("title")) group = new GroupCell(GC_TYPE_TITLE); else if (type == wxT("section")) group = new GroupCell(GC_TYPE_SECTION); else if (type == wxT("subsection")) group = new GroupCell(GC_TYPE_SUBSECTION); else return NULL; wxXmlNode *children = node->GetChildren(); while (children) { if (children->GetName() == wxT("editor")) { MathCell *ed = ParseEditorTag(children); group->SetEditableContent(ed->GetValue()); delete ed; } else if (children->GetName() == wxT("fold")) { // we have folded groupcells wxXmlNode *xmlcells = children->GetChildren(); MathCell *tree = NULL; MathCell *last = NULL; if (xmlcells) { last = tree = ParseTag(xmlcells, false); // first cell while (xmlcells->GetNext()) { xmlcells = xmlcells->GetNext(); MathCell *cell = ParseTag(xmlcells, false); last->m_next = last->m_nextToDraw = cell; last->m_next->m_previous = last->m_next->m_previousToDraw = last; last = last->m_next; } if (tree) group->HideTree((GroupCell *)tree); } } children = children->GetNext(); } } group->SetParent(group, false); group->Hide(hide); return group; } MathCell* MathParser::ParseEditorTag(wxXmlNode* node) { EditorCell *editor = new EditorCell(); #if wxCHECK_VERSION(2,9,0) wxString type = node->GetAttribute(wxT("type"), wxT("input")); #else wxString type = node->GetPropVal(wxT("type"), wxT("input")); #endif if (type == wxT("input")) editor->SetType(MC_TYPE_INPUT); else if (type == wxT("text")) editor->SetType(MC_TYPE_TEXT); else if (type == wxT("title")) editor->SetType(MC_TYPE_TITLE); else if (type == wxT("section")) editor->SetType(MC_TYPE_SECTION); else if (type == wxT("subsection")) editor->SetType(MC_TYPE_SUBSECTION); wxString text = wxEmptyString; wxXmlNode *line = node->GetChildren(); while (line) { if (line->GetName() == wxT("line")) { if (!text.IsEmpty()) text += wxT("\n"); #if wxUSE_UNICODE text += line->GetNodeContent(); #else wxString str = line->GetNodeContent(); wxString str1(str.wc_str(wxConvUTF8), *wxConvCurrent); text += str1; #endif } line = line->GetNext(); } // end while editor->SetValue(text); return editor; } MathCell* MathParser::ParseFracTag(wxXmlNode* node) { FracCell *frac = new FracCell; frac->SetFracStyle(m_FracStyle); frac->SetHighlight(m_highlight); wxXmlNode* child = node->GetChildren(); if (child) { frac->SetNum(ParseTag(child, false)); child = child->GetNext(); if (child) { frac->SetDenom(ParseTag(child, false)); #if wxCHECK_VERSION(2,9,0) if (node->GetAttributes() != NULL) #else if (node->GetProperties() != NULL) #endif { frac->SetFracStyle(FC_CHOOSE); } frac->SetType(m_ParserStyle); frac->SetStyle(TS_VARIABLE); frac->SetupBreakUps(); return frac; } } delete frac; return NULL; } MathCell* MathParser::ParseDiffTag(wxXmlNode* node) { DiffCell *diff = new DiffCell; wxXmlNode* child = node->GetChildren(); if (child) { int fc = m_FracStyle; m_FracStyle = FC_DIFF; diff->SetDiff(ParseTag(child, false)); m_FracStyle = fc; child = child->GetNext(); if (child) { diff->SetBase(ParseTag(child, true)); diff->SetType(m_ParserStyle); diff->SetStyle(TS_VARIABLE); return diff; } } delete diff; return NULL; } MathCell* MathParser::ParseSupTag(wxXmlNode* node) { ExptCell *expt = new ExptCell; #if wxCHECK_VERSION(2,9,0) if (node->GetAttributes() != NULL) #else if (node->GetProperties() != NULL) #endif expt->IsMatrix(true); wxXmlNode* child = node->GetChildren(); if (child) { expt->SetBase(ParseTag(child, false)); child = child->GetNext(); if (child) { MathCell* power = ParseTag(child, false); power->SetExponentFlag(); expt->SetPower(power); expt->SetType(m_ParserStyle); expt->SetStyle(TS_VARIABLE); return expt; } } delete expt; return NULL; } MathCell* MathParser::ParseSubSupTag(wxXmlNode* node) { SubSupCell *subsup = new SubSupCell; wxXmlNode* child = node->GetChildren(); if (child) { subsup->SetBase(ParseTag(child, false)); child = child->GetNext(); if (child) { MathCell* index = ParseTag(child, false); index->SetExponentFlag(); subsup->SetIndex(index); child = child->GetNext(); if (child) { MathCell* power = ParseTag(child, false); power->SetExponentFlag(); subsup->SetExponent(power); subsup->SetType(m_ParserStyle); subsup->SetStyle(TS_VARIABLE); return subsup; } } } delete subsup; return NULL; } MathCell* MathParser::ParseSubTag(wxXmlNode* node) { SubCell *sub = new SubCell; wxXmlNode* child = node->GetChildren(); if (child) { sub->SetBase(ParseTag(child, false)); child = child->GetNext(); if (child) { MathCell* index = ParseTag(child, false); index->SetExponentFlag(); sub->SetIndex(index); sub->SetType(m_ParserStyle); sub->SetStyle(TS_VARIABLE); return sub; } } delete sub; return NULL; } MathCell* MathParser::ParseAtTag(wxXmlNode* node) { AtCell *at = new AtCell; wxXmlNode* child = node->GetChildren(); if (child) { at->SetBase(ParseTag(child, false)); at->SetHighlight(m_highlight); child = child->GetNext(); if (child) { at->SetIndex(ParseTag(child, false)); at->SetType(m_ParserStyle); at->SetStyle(TS_VARIABLE); return at; } } delete at; return NULL; } MathCell* MathParser::ParseFunTag(wxXmlNode* node) { FunCell *fun = new FunCell; wxXmlNode* child = node->GetChildren(); if (child) { fun->SetName(ParseTag(child, false)); child = child->GetNext(); if (child) { fun->SetType(m_ParserStyle); fun->SetStyle(TS_VARIABLE); fun->SetArg(ParseTag(child, false)); return fun; } } delete fun; return NULL; } MathCell* MathParser::ParseText(wxXmlNode* node, int style) { TextCell* cell = new TextCell; wxString str; if (node != NULL && (str = node->GetContent()) != wxEmptyString) { #if !wxUSE_UNICODE wxString str1(str.wc_str(wxConvUTF8), *wxConvCurrent); str = str1; #endif #if wxUSE_UNICODE str.Replace(wxT("-"), wxT("\x2212")); // unicode minus sign #endif if (style == TS_NUMBER) { if (str.Length() > 100) // This could be made configurable. str = str.Left(30) + wxString::Format(wxT("[%d digits]"), str.Length() - 60) + str.Right(30); } cell->SetType(m_ParserStyle); cell->SetStyle(style); cell->SetHighlight(m_highlight); cell->SetValue(str); } return cell; } MathCell* MathParser::ParseCharCode(wxXmlNode* node, int style) { TextCell* cell = new TextCell; wxString str; if (node != NULL && (str = node->GetContent()) != wxEmptyString) { long code; if (str.ToLong(&code)) str = wxString::Format(wxT("%c"), code); #if !wxUSE_UNICODE wxString str1(str.wc_str(wxConvUTF8), *wxConvCurrent); str = str1; #endif cell->SetValue(str); cell->SetType(m_ParserStyle); cell->SetStyle(style); cell->SetHighlight(m_highlight); } return cell; } MathCell* MathParser::ParseSqrtTag(wxXmlNode* node) { wxXmlNode* child = node->GetChildren(); SqrtCell* cell = new SqrtCell; cell->SetInner(ParseTag(child, true)); cell->SetType(m_ParserStyle); cell->SetStyle(TS_VARIABLE); cell->SetHighlight(m_highlight); return cell; } MathCell* MathParser::ParseAbsTag(wxXmlNode* node) { wxXmlNode* child = node->GetChildren(); AbsCell* cell = new AbsCell; cell->SetInner(ParseTag(child, true)); cell->SetType(m_ParserStyle); cell->SetStyle(TS_VARIABLE); cell->SetHighlight(m_highlight); return cell; } MathCell* MathParser::ParseParenTag(wxXmlNode* node) { wxXmlNode* child = node->GetChildren(); ParenCell* cell = new ParenCell; cell->SetInner(ParseTag(child, true), m_ParserStyle); cell->SetHighlight(m_highlight); cell->SetStyle(TS_VARIABLE); #if wxCHECK_VERSION(2,9,0) if (node->GetAttributes() != NULL) cell->SetPrint(false); #else if (node->GetProperties() != NULL) cell->SetPrint(false); #endif return cell; } MathCell* MathParser::ParseLimitTag(wxXmlNode* node) { LimitCell *limit = new LimitCell; wxXmlNode* child = node->GetChildren(); if (child) { limit->SetName(ParseTag(child, false)); child = child->GetNext(); if (child) { limit->SetUnder(ParseTag(child, false)); child = child->GetNext(); if (child) { limit->SetBase(ParseTag(child, false)); limit->SetType(m_ParserStyle); limit->SetStyle(TS_VARIABLE); return limit; } } } delete limit; return NULL; } MathCell* MathParser::ParseSumTag(wxXmlNode* node) { SumCell *sum = new SumCell; wxXmlNode* child = node->GetChildren(); #if wxCHECK_VERSION(2,9,0) wxString type = node->GetAttribute(wxT("type"), wxT("sum")); #else wxString type = node->GetPropVal(wxT("type"), wxT("sum")); #endif if (type == wxT("prod")) sum->SetSumStyle(SM_PROD); sum->SetHighlight(m_highlight); if (child) { sum->SetUnder(ParseTag(child, false)); child = child->GetNext(); if (child) { if (type != wxT("lsum")) sum->SetOver(ParseTag(child, false)); child = child->GetNext(); if (child) { sum->SetBase(ParseTag(child, false)); sum->SetType(m_ParserStyle); sum->SetStyle(TS_VARIABLE); return sum; } } } delete sum; return NULL; } MathCell* MathParser::ParseIntTag(wxXmlNode* node) { IntCell *in = new IntCell; wxXmlNode* child = node->GetChildren(); in->SetHighlight(m_highlight); #if wxCHECK_VERSION(2,9,0) if (node->GetAttributes() == NULL) #else if (node->GetProperties() == NULL) #endif { in->SetIntStyle(INT_DEF); if (child) { in->SetUnder(ParseTag(child, false)); child = child->GetNext(); if (child) { in->SetOver(ParseTag(child, false)); child = child->GetNext(); if (child) { in->SetBase(ParseTag(child, false)); child = child->GetNext(); if (child) { in->SetVar(ParseTag(child, true)); in->SetType(m_ParserStyle); in->SetStyle(TS_VARIABLE); return in; } } } } } else { if (child) { in->SetBase(ParseTag(child, false)); child = child->GetNext(); if (child) { in->SetVar(ParseTag(child, true)); in->SetType(m_ParserStyle); in->SetStyle(TS_VARIABLE); return in; } } } delete in; return NULL; } MathCell* MathParser::ParseTableTag(wxXmlNode* node) { MatrCell *matrix = new MatrCell; matrix->SetHighlight(m_highlight); #if wxCHECK_VERSION(2,9,0) if (node->GetAttribute(wxT("special"), wxT("false")) == wxT("true")) matrix->SetSpecialFlag(true); if (node->GetAttribute(wxT("inference"), wxT("false")) == wxT("true")) { matrix->SetInferenceFlag(true); matrix->SetSpecialFlag(true); } if (node->GetAttribute(wxT("colnames"), wxT("false")) == wxT("true")) matrix->ColNames(true); if (node->GetAttribute(wxT("rownames"), wxT("false")) == wxT("true")) matrix->RowNames(true); #else if (node->GetPropVal(wxT("special"), wxT("false")) == wxT("true")) matrix->SetSpecialFlag(true); if (node->GetPropVal(wxT("inference"), wxT("false")) == wxT("true")) { matrix->SetInferenceFlag(true); matrix->SetSpecialFlag(true); } if (node->GetPropVal(wxT("colnames"), wxT("false")) == wxT("true")) matrix->ColNames(true); if (node->GetPropVal(wxT("rownames"), wxT("false")) == wxT("true")) matrix->RowNames(true); #endif wxXmlNode* rows = node->GetChildren(); while (rows) { matrix->NewRow(); wxXmlNode* cells = rows->GetChildren(); while (cells) { matrix->NewColumn(); matrix->AddNewCell(ParseTag(cells, false)); cells = cells->GetNext(); } rows = rows->GetNext(); } matrix->SetType(m_ParserStyle); matrix->SetStyle(TS_VARIABLE); matrix->SetDimension(); return matrix; } MathCell* MathParser::ParseTag(wxXmlNode* node, bool all) { // wxYield(); MathCell* tmp = NULL; MathCell* cell = NULL; bool warning = all; wxString altCopy; while (node) { // Parse tags if (node->GetType() == wxXML_ELEMENT_NODE) { wxString tagName(node->GetName()); if (tagName == wxT("v")) { // Variables (atoms) if (cell == NULL) cell = ParseText(node->GetChildren(), TS_VARIABLE); else cell->AppendCell(ParseText(node->GetChildren(), TS_VARIABLE)); } else if (tagName == wxT("t")) { // Other text if (cell == NULL) cell = ParseText(node->GetChildren(), TS_DEFAULT); else cell->AppendCell(ParseText(node->GetChildren(), TS_DEFAULT)); } else if (tagName == wxT("n")) { // Numbers if (cell == NULL) cell = ParseText(node->GetChildren(), TS_NUMBER); else cell->AppendCell(ParseText(node->GetChildren(), TS_NUMBER)); } else if (tagName == wxT("h")) { // Hidden cells (*) MathCell* tmp = ParseText(node->GetChildren()); tmp->m_isHidden = true; if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("p")) { // Parenthesis if (cell == NULL) cell = ParseParenTag(node); else cell->AppendCell(ParseParenTag(node)); } else if (tagName == wxT("f")) { // Fractions if (cell == NULL) cell = ParseFracTag(node); else cell->AppendCell(ParseFracTag(node)); } else if (tagName == wxT("e")) { // Exponentials if (cell == NULL) cell = ParseSupTag(node); else cell->AppendCell(ParseSupTag(node)); } else if (tagName == wxT("i")) { // Subscripts if (cell == NULL) cell = ParseSubTag(node); else cell->AppendCell(ParseSubTag(node)); } else if (tagName == wxT("fn")) { // Functions if (cell == NULL) cell = ParseFunTag(node); else cell->AppendCell(ParseFunTag(node)); } else if (tagName == wxT("g")) { // Greek constants MathCell* tmp = ParseText(node->GetChildren(), TS_GREEK_CONSTANT); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("s")) { // Special constants %e,... MathCell* tmp = ParseText(node->GetChildren(), TS_SPECIAL_CONSTANT); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("fnm")) { // Function names MathCell* tmp = ParseText(node->GetChildren(), TS_FUNCTION); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("q")) { // Square roots if (cell == NULL) cell = ParseSqrtTag(node); else cell->AppendCell(ParseSqrtTag(node)); } else if (tagName == wxT("d")) { // Differentials if (cell == NULL) cell = ParseDiffTag(node); else cell->AppendCell(ParseDiffTag(node)); } else if (tagName == wxT("sm")) { // Sums if (cell == NULL) cell = ParseSumTag(node); else cell->AppendCell(ParseSumTag(node)); } else if (tagName == wxT("in")) { // integrals if (cell == NULL) cell = ParseIntTag(node); else cell->AppendCell(ParseIntTag(node)); } else if (tagName == wxT("mspace")) { if (cell == NULL) cell = new TextCell(wxT(" ")); else cell->AppendCell(new TextCell(wxT(" "))); } else if (tagName == wxT("at")) { if (cell == NULL) cell = ParseAtTag(node); else cell->AppendCell(ParseAtTag(node)); } else if (tagName == wxT("a")) { if (cell == NULL) cell = ParseAbsTag(node); else cell->AppendCell(ParseAbsTag(node)); } else if (tagName == wxT("ie")) { if (cell == NULL) cell = ParseSubSupTag(node); else cell->AppendCell(ParseSubSupTag(node)); } else if (tagName == wxT("lm")) { if (cell == NULL) cell = ParseLimitTag(node); else cell->AppendCell(ParseLimitTag(node)); } else if (tagName == wxT("r")) { if (cell == NULL) cell = ParseTag(node->GetChildren()); else cell->AppendCell(ParseTag(node->GetChildren())); } else if (tagName == wxT("tb")) { if (cell == NULL) cell = ParseTableTag(node); else cell->AppendCell(ParseTableTag(node)); } else if ((tagName == wxT("mth")) || (tagName == wxT("line"))) { MathCell *tmp = ParseTag(node->GetChildren()); if (tmp != NULL) tmp->ForceBreakLine(true); else tmp = new TextCell(wxT(" ")); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("lbl")) { MathCell* tmp = ParseText(node->GetChildren(), TS_LABEL); tmp->ForceBreakLine(true); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("st")) { MathCell* tmp = ParseText(node->GetChildren(), TS_STRING); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("hl")) { bool highlight = m_highlight; m_highlight = true; MathCell* tmp = ParseTag(node->GetChildren()); m_highlight = highlight; if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("img")) { wxString filename(node->GetChildren()->GetContent()); #if !wxUSE_UNICODE wxString filename1(filename.wc_str(wxConvUTF8), *wxConvCurrent); filename = filename1; #endif ImgCell *tmp; if (m_fileSystem) // loading from zip tmp = new ImgCell(filename, false, m_fileSystem); #if wxCHECK_VERSION(2,9,0) else if (node->GetAttribute(wxT("del"), wxT("yes")) != wxT("no")) #else else if (node->GetPropVal(wxT("del"), wxT("yes")) != wxT("no")) #endif tmp = new ImgCell(filename, true, NULL); else tmp = new ImgCell(filename, false, NULL); #if wxCHECK_VERSION(2,9,0) if (node->GetAttribute(wxT("rect"), wxT("true")) == wxT("false")) tmp->DrawRectangle(false); #else if (node->GetPropVal(wxT("rect"), wxT("true")) == wxT("false")) tmp->DrawRectangle(false); #endif if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("slide")) { SlideShow *tmp = new SlideShow(m_fileSystem); wxString str(node->GetChildren()->GetContent()); wxArrayString images; wxStringTokenizer tokens(str, wxT(";")); while (tokens.HasMoreTokens()) { wxString token = tokens.GetNextToken(); if (token.Length()) { #if !wxUSE_UNICODE wxString token1(token.wc_str(wxConvUTF8), *wxConvCurrent); token = token1; #endif images.Add(token); } } tmp->LoadImages(images); if (cell == NULL) cell = tmp; else cell->AppendCell(tmp); } else if (tagName == wxT("editor")) { if (cell == NULL) cell = ParseEditorTag(node); else cell->AppendCell(ParseEditorTag(node)); } else if (tagName == wxT("cell")) { if (cell == NULL) cell = ParseCellTag(node); else cell->AppendCell(ParseCellTag(node)); } else if (tagName == wxT("ascii")) { if (cell == NULL) cell = ParseCharCode(node->GetChildren()); else cell->AppendCell(ParseCharCode(node->GetChildren())); } else if (node->GetChildren()) { if (cell == NULL) cell = ParseTag(node->GetChildren()); else cell->AppendCell(ParseTag(node->GetChildren())); } } // Parse text else { if (cell == NULL) cell = ParseText(node); else cell->AppendCell(ParseText(node)); } if (!all) break; if (cell != NULL) { if (tmp == NULL) tmp = cell; else cell = cell->m_next; } else if (warning) { wxMessageBox(_("Parts of the document will not be loaded correctly!"), _("Warning"), wxOK | wxICON_WARNING); warning = false; } #if wxCHECK_VERSION(2,9,0) if (node->GetAttribute(wxT("altCopy"), &altCopy)) cell->SetAltCopyText(altCopy); #else if (node->GetPropVal(wxT("altCopy"), &altCopy)) cell->SetAltCopyText(altCopy); #endif node = node->GetNext(); } if (tmp != NULL) return tmp; return cell; } /*** * Parse the string s, which is (correct) xml fragment. * Put the result in line. */ MathCell* MathParser::ParseLine(wxString s, int style) { m_ParserStyle = style; m_FracStyle = FC_NORMAL; m_highlight = false; MathCell* cell = NULL; wxConfigBase* config = wxConfig::Get(); bool showLong = false; config->Read(wxT("showLong"), &showLong); wxRegEx graph(wxT("[[:cntrl:]]")); #if wxUSE_UNICODE graph.Replace(&s, wxT("\xFFFD")); #else graph.Replace(&s, wxT("?")); #endif if (s.Length() < MAXLENGTH || showLong) { wxXmlDocument xml; #if wxUSE_UNICODE wxStringInputStream xmlStream(s); #else wxString su(s.wc_str(*wxConvCurrent), wxConvUTF8); wxStringInputStream xmlStream(su); #endif xml.Load(xmlStream); wxXmlNode *doc = xml.GetRoot(); if (doc != NULL) cell = ParseTag(doc->GetChildren()); } else { cell = new TextCell(_(" << Expression too long to display! >>")); cell->ForceBreakLine(true); } return cell; } wxMaxima-13.04.2/src/MathParser.h000644 000765 000024 00000004306 11705765322 017103 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _MATHPARSER_H_ #define _MATHPARSER_H_ #include #include #include #include "MathCell.h" #include "TextCell.h" class MathParser { public: MathParser(wxString zipfile = wxEmptyString); ~MathParser(); MathCell* ParseLine(wxString s, int style = MC_TYPE_DEFAULT); MathCell* ParseTag(wxXmlNode* node, bool all = true); private: MathCell* ParseCellTag(wxXmlNode* node); MathCell* ParseEditorTag(wxXmlNode* node); MathCell* ParseFracTag(wxXmlNode* node); MathCell* ParseText(wxXmlNode* node, int style = TS_DEFAULT); MathCell* ParseCharCode(wxXmlNode* node, int style = TS_DEFAULT); MathCell* ParseSupTag(wxXmlNode* node); MathCell* ParseSubTag(wxXmlNode* node); MathCell* ParseAbsTag(wxXmlNode* node); MathCell* ParseUnderTag(wxXmlNode* node); MathCell* ParseTableTag(wxXmlNode* node); MathCell* ParseAtTag(wxXmlNode* node); MathCell* ParseDiffTag(wxXmlNode* node); MathCell* ParseSumTag(wxXmlNode* node); MathCell* ParseIntTag(wxXmlNode* node); MathCell* ParseFunTag(wxXmlNode* node); MathCell* ParseSqrtTag(wxXmlNode* node); MathCell* ParseLimitTag(wxXmlNode* node); MathCell* ParseParenTag(wxXmlNode* node); MathCell* ParseSubSupTag(wxXmlNode* node); int m_ParserStyle; int m_FracStyle; bool m_highlight; wxFileSystem *m_fileSystem; // used for loading pictures in and }; #endif //_MATHPARSER_H_ wxMaxima-13.04.2/src/MathPrintout.cpp000644 000765 000024 00000020023 11705765322 020020 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "MathPrintout.h" #include "GroupCell.h" #if WXM_PRINT #include #define PRINT_MARGIN_HORIZONTAL 5 #define PRINT_MARGIN_VERTICAL 5 MathPrintout::MathPrintout(wxString title) : wxPrintout(title) { m_numberOfPages = 0; m_tree = NULL; } MathPrintout::~MathPrintout() { DestroyTree(); } void MathPrintout::SetData(MathCell* tree) { m_tree = tree; if (m_tree != NULL) m_tree->BreakPage(true); } bool MathPrintout::HasPage(int num) { if (num > 0 && num <= m_numberOfPages) return true; return false; } bool MathPrintout::OnPrintPage(int num) { double screenScaleX, screenScaleY; double ppiScale; GroupCell* tmp; wxDC* dc = GetDC(); int marginX, marginY; GetPageMargins(&marginX, &marginY); ppiScale = GetPPIScale(); GetScreenScale(&screenScaleX, &screenScaleY); marginX += SCALE_PX(MC_BASE_INDENT, ppiScale); dc->SetUserScale(screenScaleX, screenScaleY); // Go to current page tmp = (GroupCell *)m_pages[num - 1]; // Print page if (tmp != NULL) { if (tmp->GetGroupType() == GC_TYPE_PAGEBREAK) tmp = (GroupCell *)tmp->m_next; if (tmp == NULL) return true; wxPoint point; point.x = marginX; point.y = marginY + tmp->GetMaxCenter() + GetHeaderHeight(); wxConfigBase* config = wxConfig::Get(); int fontsize = 12; int drop = tmp->GetMaxDrop(); config->Read(wxT("fontsize"), &fontsize); PrintHeader(num, dc, ppiScale); CellParser parser(*dc, ppiScale); parser.SetIndent(marginX); while (tmp != NULL && tmp->GetGroupType() != GC_TYPE_PAGEBREAK) { tmp->Draw(parser, point, fontsize, false); if (tmp->m_next != NULL) { point.x = marginX; point.y += drop + tmp->m_next->GetMaxCenter(); point.y += SCALE_PX(MC_GROUP_SKIP, ppiScale); drop = tmp->m_next->GetMaxDrop(); } tmp = (GroupCell *)tmp->m_next; if (tmp == NULL || tmp->BreakPageHere()) break; } return true; } return false; } bool MathPrintout::OnBeginDocument(int startPage, int endPage) { if (!wxPrintout::OnBeginDocument(startPage, endPage)) return false; return true; } void MathPrintout::BreakPages() { if (m_tree == NULL) return ; int pageWidth, pageHeight; int marginX, marginY; int headerHeight = GetHeaderHeight(); double scale = GetPPIScale(); GetPageMargins(&marginX, &marginY); GetPageSizePixels(&pageWidth, &pageHeight); int currentHeight = marginY; int skip = SCALE_PX(MC_GROUP_SKIP, scale);; GroupCell* tmp = (GroupCell *)m_tree; m_pages.push_back(tmp); m_numberOfPages = 1; while (tmp != NULL) { tmp->BreakPage(false); if (currentHeight + tmp->GetMaxHeight() + skip >= pageHeight - marginY || tmp->GetGroupType() == GC_TYPE_PAGEBREAK) { if (tmp->GetGroupType() != GC_TYPE_PAGEBREAK) currentHeight = marginY + tmp->GetMaxHeight() + headerHeight; tmp->BreakPage(true); m_pages.push_back(tmp); m_numberOfPages++; } else currentHeight += tmp->GetMaxHeight() + skip; tmp = (GroupCell *)tmp->m_next; } } void MathPrintout::SetupData() { Recalculate(); BreakPages(); } void MathPrintout::GetPageInfo(int* minPage, int* maxPage, int* fromPage, int* toPage) { *minPage = 1; *maxPage = m_numberOfPages; *fromPage = 1; *toPage = m_numberOfPages; } void MathPrintout::OnPreparePrinting() { SetupData(); } void MathPrintout::GetPageMargins(int* horizontal, int* vertical) { double scale = GetPPIScale(); *horizontal = (int)(SCALE_PX(PRINT_MARGIN_HORIZONTAL, scale) * 10); *vertical = (int)(SCALE_PX(PRINT_MARGIN_VERTICAL, scale) * 10); } int MathPrintout::GetHeaderHeight() { wxDC *dc = GetDC(); double ppiScale = GetPPIScale(); int width, height; dc->SetFont(wxFont(SCALE_PX(10, ppiScale), wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)); dc->GetTextExtent(GetTitle(), &width, &height); return height + SCALE_PX(12, ppiScale); } void MathPrintout::PrintHeader(int pageNum, wxDC* dc, double scale) { int page_width, page_height; int title_width, title_height; int marginX, marginY; int pageWidth, pageHeight; GetPageMargins(&marginX, &marginY); GetPageSizePixels(&pageWidth, &pageHeight); dc->SetTextForeground(wxColour(wxT("grey"))); dc->SetPen(wxPen(wxT("light grey"), 1, wxSOLID)); dc->SetFont(wxFont(SCALE_PX(10, scale), wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL)); dc->GetTextExtent(GetTitle(), &title_width, &title_height); wxString page = wxString::Format(wxT("%d / %d"), pageNum, m_numberOfPages); dc->GetTextExtent(page, &page_width, &page_height); dc->DrawText(GetTitle(), marginX, marginY); dc->DrawText(page, pageWidth - page_width - marginX, marginY); dc->DrawLine(marginX, marginY + title_height + SCALE_PX(3, scale), pageWidth - marginX, marginY + title_height + SCALE_PX(3, scale)); dc->SetTextForeground(wxColour(wxT("black"))); dc->SetPen(wxPen(wxT("black"), 1, wxSOLID)); } /* void MathPrintout::RecalculateSize() { wxConfig *config = (wxConfig *)wxConfig::Get(); int fontsize = 12; config->Read(wxT("fontSize"), &fontsize); GroupCell* tmp = m_tree; double scale = GetPPIScale(); wxDC *dc = GetDC(); CellParser parser(*dc, scale); int marginX, marginY; GetPageMargins(&marginX, &marginY); marginX += SCALE_PX(MC_BASE_INDENT, scale); parser.SetIndent(marginX); while (tmp != NULL) { tmp->RecalculateSize(parser, fontsize, false); tmp = tmp->m_next; } } */ void MathPrintout::Recalculate() { wxConfig *config = (wxConfig *)wxConfig::Get(); int fontsize = 12; config->Read(wxT("fontSize"), &fontsize); int mfontsize = fontsize; config->Read(wxT("mathfontsize"), &mfontsize); GroupCell* tmp = (GroupCell *)m_tree; double scale = GetPPIScale(); wxDC *dc = GetDC(); CellParser parser(*dc, scale); int marginX, marginY; GetPageMargins(&marginX, &marginY); int pageWidth, pageHeight; GetPageSizePixels(&pageWidth, &pageHeight); parser.SetClientWidth(pageWidth - marginX - marginY - SCALE_PX(MC_BASE_INDENT, scale)); marginX += SCALE_PX(MC_BASE_INDENT, scale); parser.SetIndent(marginX); while (tmp != NULL) { tmp->Recalculate(parser, fontsize, mfontsize); tmp = (GroupCell *)tmp->m_next; } } double MathPrintout::GetPPIScale() { int ppiScreenX, ppiScreenY; int ppiPrinterX, ppiPrinterY; GetPPIScreen(&ppiScreenX, &ppiScreenY); GetPPIPrinter(&ppiPrinterX, &ppiPrinterY); #if defined __WXMAC__ return 0.6*((double)ppiPrinterY) / ((double)ppiScreenY); #else return ((double)ppiPrinterY) / ((double)ppiScreenY); #endif } void MathPrintout::GetScreenScale(double *scaleX, double *scaleY) { int pageSizeX, pageSizeY; int previewSizeX, previewSizeY; wxDC *dc = GetDC(); GetPageSizePixels(&pageSizeX, &pageSizeY); dc->GetSize(&previewSizeX, &previewSizeY); *scaleX = ((double)previewSizeX) / ((double)pageSizeX); *scaleY = ((double)previewSizeY) / ((double)pageSizeY); } void MathPrintout::DestroyTree() { if (m_tree != NULL) { DestroyTree(m_tree); m_tree = NULL; } } void MathPrintout::DestroyTree(MathCell* tmp) { MathCell* tmp1; while (tmp != NULL) { tmp1 = tmp; tmp = tmp->m_next; tmp1->Destroy(); delete tmp1; } } #endif wxMaxima-13.04.2/src/MathPrintout.h000644 000765 000024 00000003432 11705765322 017472 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _MATHPRINTOUT_H #define _MATHPRINTOUT_H #include "Setup.h" #if WXM_PRINT #include #include #include #include "MathCell.h" using namespace std; class MathPrintout : public wxPrintout { public: MathPrintout(wxString title); ~MathPrintout(); void DestroyTree(); void DestroyTree(MathCell* tree); void SetData(MathCell* tree); void SetupData(); void BreakPages(); void Recalculate(); bool OnPrintPage(int num); bool HasPage(int num); void GetPageInfo(int* minPage, int* maxPage, int* pageFrom, int* pageTo); bool OnBeginDocument(int startPage, int endPage); void OnPreparePrinting(); void GetPageMargins(int* horizontal, int* vertical); int GetHeaderHeight(); void PrintHeader(int pageNum, wxDC* dc, double scale); double GetPPIScale(); void GetScreenScale(double *scaleX, double *scaleY); private: int m_numberOfPages; wxString m_title; MathCell* m_tree; vector m_pages; }; #endif #endif wxMaxima-13.04.2/src/MatrCell.cpp000644 000765 000024 00000021473 11705765322 017077 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "MatrCell.h" MatrCell::MatrCell() : MathCell() { m_matWidth = 0; m_matHeight = 0; m_specialMatrix = false; m_inferenceMatrix = false; m_rowNames = m_colNames = false; } MatrCell::~MatrCell() { for (unsigned int i = 0; i < m_cells.size(); i++) { if (m_cells[i] != NULL) delete m_cells[i]; } if (m_next != NULL) delete m_next; } void MatrCell::SetParent(MathCell *parent, bool all) { for (unsigned int i = 0; i < m_cells.size(); i++) { if (m_cells[i] != NULL) m_cells[i]->SetParent(parent, true); } MathCell::SetParent(parent, all); } MathCell* MatrCell::Copy(bool all) { MatrCell *tmp = new MatrCell; CopyData(this, tmp); tmp->m_specialMatrix = m_specialMatrix; tmp->m_inferenceMatrix = m_inferenceMatrix; tmp->m_rowNames = m_rowNames; tmp->m_colNames = m_colNames; tmp->m_matWidth = m_matWidth; tmp->m_matHeight = m_matHeight; for (int i = 0; i < m_matWidth*m_matHeight; i++) (tmp->m_cells).push_back(m_cells[i]->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void MatrCell::Destroy() { for (unsigned int i = 0; i < m_cells.size(); i++) { if (m_cells[i] != NULL) delete m_cells[i]; m_cells[i] = NULL; } m_next = NULL; } void MatrCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); for (int i = 0; i < m_matWidth*m_matHeight; i++) { m_cells[i]->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - 2), true); } m_widths.clear(); for (int i = 0; i < m_matWidth; i++) { m_widths.push_back(0); for (int j = 0; j < m_matHeight; j++) { m_widths[i] = MAX(m_widths[i], m_cells[m_matWidth * j + i]->GetFullWidth(scale)); } } m_width = 0; for (int i = 0; i < m_matWidth; i++) { m_width += (m_widths[i] + SCALE_PX(10, scale)); } if (m_width < SCALE_PX(14, scale)) m_width = SCALE_PX(14, scale); MathCell::RecalculateWidths(parser, fontsize, all); } void MatrCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); for (int i = 0; i < m_matWidth*m_matHeight; i++) { m_cells[i]->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - 2), true); } m_centers.clear(); m_drops.clear(); for (int i = 0; i < m_matHeight; i++) { m_centers.push_back(0); m_drops.push_back(0); for (int j = 0; j < m_matWidth; j++) { m_centers[i] = MAX(m_centers[i], m_cells[m_matWidth * i + j]->GetMaxCenter()); m_drops[i] = MAX(m_drops[i], m_cells[m_matWidth * i + j]->GetMaxDrop()); } } m_height = 0; for (int i = 0; i < m_matHeight; i++) { m_height += (m_centers[i] + m_drops[i] + SCALE_PX(10, scale)); } if (m_height == 0) m_height = fontsize + SCALE_PX(10, scale); m_center = m_height / 2; MathCell::RecalculateSize(parser, fontsize, all); } void MatrCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); wxPoint mp; mp.x = point.x + SCALE_PX(5, scale); mp.y = point.y - m_center; for (int i = 0; i < m_matWidth; i++) { mp.y = point.y - m_center + SCALE_PX(5, scale); for (int j = 0; j < m_matHeight; j++) { mp.y += m_centers[j]; wxPoint mp1(mp); mp1.x = mp.x + (m_widths[i] - m_cells[j * m_matWidth + i]->GetFullWidth(scale)) / 2; m_cells[j*m_matWidth + i]->Draw(parser, mp1, MAX(MC_MIN_SIZE, fontsize - 2), true); mp.y += (m_drops[j] + SCALE_PX(10, scale)); } mp.x += (m_widths[i] + SCALE_PX(10, scale)); } SetPen(parser); if (m_specialMatrix) { if (m_inferenceMatrix) dc.DrawLine(point.x + SCALE_PX(1, scale), point.y - m_center + SCALE_PX(2, scale), point.x + SCALE_PX(1, scale), point.y + m_center - SCALE_PX(2, scale)); else { if (m_rowNames) dc.DrawLine(point.x + m_widths[0] + 2*SCALE_PX(5, scale), point.y - m_center + SCALE_PX(2, scale), point.x + m_widths[0] + 2*SCALE_PX(5, scale), point.y + m_center - SCALE_PX(2, scale)); if (m_colNames) dc.DrawLine(point.x + SCALE_PX(1, scale), point.y - m_center + m_centers[0] + m_drops[0] + 2*SCALE_PX(5, scale), point.x + SCALE_PX(1, scale) + m_width, point.y - m_center + m_centers[0] + m_drops[0] + 2*SCALE_PX(5, scale)); } } else { // left bracket dc.DrawLine(point.x + SCALE_PX(5, scale), point.y - m_center + SCALE_PX(2, scale), point.x + SCALE_PX(1, scale), point.y - m_center + SCALE_PX(2, scale)); dc.DrawLine(point.x + SCALE_PX(1, scale), point.y - m_center + SCALE_PX(2, scale), point.x + SCALE_PX(1, scale), point.y + m_center - SCALE_PX(2, scale)); dc.DrawLine(point.x + SCALE_PX(1, scale), point.y + m_center - SCALE_PX(2, scale), point.x + SCALE_PX(5, scale), point.y + m_center - SCALE_PX(2, scale)); // right bracket dc.DrawLine(point.x + m_width - SCALE_PX(5, scale) - 1, point.y - m_center + SCALE_PX(2, scale), point.x + m_width - SCALE_PX(1, scale) - 1, point.y - m_center + SCALE_PX(2, scale)); dc.DrawLine(point.x + m_width - SCALE_PX(1, scale) - 1, point.y - m_center + SCALE_PX(2, scale), point.x + m_width - SCALE_PX(1, scale) - 1, point.y + m_center - SCALE_PX(2, scale)); dc.DrawLine(point.x + m_width - SCALE_PX(1, scale) - 1, point.y + m_center - SCALE_PX(2, scale), point.x + m_width - SCALE_PX(5, scale) - 1, point.y + m_center - SCALE_PX(2, scale)); } UnsetPen(parser); } MathCell::Draw(parser, point, fontsize, all); } wxString MatrCell::ToString(bool all) { wxString s = wxT("matrix("); for (int i = 0; i < m_matHeight; i++) { s += wxT("["); for (int j = 0; j < m_matWidth; j++) { s += m_cells[i * m_matWidth + j]->ToString(true); if (j < m_matWidth - 1) s += wxT(","); } s += wxT("]"); if (i < m_matHeight - 1) s += wxT(","); } s += wxT(")"); s += MathCell::ToString(all); return s; } wxString MatrCell::ToTeX(bool all) { wxString s = wxT("\\begin{pmatrix}"); for (int i = 0; i < m_matHeight; i++) { for (int j = 0; j < m_matWidth; j++) { s += m_cells[i * m_matWidth + j]->ToTeX(true); if (j < m_matWidth - 1) s += wxT(" & "); } if (i < m_matHeight - 1) s += wxT("\\cr "); } s += wxT("\\end{pmatrix}"); s += MathCell::ToTeX(all); return s; } wxString MatrCell::ToXML(bool all) { wxString s = wxEmptyString; if (m_specialMatrix) s = wxString::Format( wxT(""), m_inferenceMatrix ? wxT("true") : wxT("false"), m_rowNames ? wxT("true") : wxT("false"), m_colNames ? wxT("true") : wxT("false")); else s = wxT(""); for (int i = 0; i < m_matHeight; i++) { s += wxT(""); for (int j = 0; j < m_matWidth; j++) s += wxT("") + m_cells[i * m_matWidth + j]->ToXML(true) + wxT(""); s += wxT(""); } s += wxT(""); return s + MathCell::ToXML(all); } void MatrCell::SetDimension() { if (m_matHeight != 0) m_matWidth = m_matWidth / m_matHeight; } void MatrCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; for (int i = 0; i < m_matHeight; i++) { for (int j = 0; j < m_matWidth; j++) { if (m_cells[i*m_matWidth + j]->ContainsRect(rect)) m_cells[i*m_matWidth + j]->SelectRect(rect, first, last); } } if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/MatrCell.h000644 000765 000024 00000004124 11705765322 016536 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _MATRCELL_H_ #define _MATRCELL_H_ #include "MathCell.h" #include using namespace std; class MatrCell : public MathCell { public: MatrCell(); ~MatrCell(); void Destroy(); MathCell* Copy(bool all); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void AddNewCell(MathCell* cell) { m_cells.push_back(cell); } void NewRow() { m_matHeight++; } void NewColumn() { m_matWidth++; } void SetDimension(); void SelectInner(wxRect& rect, MathCell** first, MathCell** last); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); // new!! void SetSpecialFlag(bool special) { m_specialMatrix = special; } void SetInferenceFlag(bool inference) { m_inferenceMatrix = inference; } void SetParent(MathCell *parent, bool all); void RowNames(bool rn) { m_rowNames = rn; } void ColNames(bool cn) { m_colNames = cn; } protected: int m_matWidth; int m_matHeight; bool m_specialMatrix, m_inferenceMatrix, m_rowNames, m_colNames; vector m_cells; vector m_widths; vector m_drops; vector m_centers; }; #endif //_MATRCELL_H_ wxMaxima-13.04.2/src/MatWiz.cpp000644 000765 000024 00000017533 11705765322 016611 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "MatWiz.h" MatWiz::MatWiz(wxWindow* parent, int id, const wxString& title, int type, int w, int h, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { m_height = h; m_width = w; m_matrixType = type; int width = 50 > 400 / m_width ? 50 : 400 / m_width; for (int i = 0; i < h*w; i++) { m_inputs.push_back(new BTextCtrl(this, -1, wxT("0"), wxDefaultPosition, wxSize(width, -1))); } static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void MatWiz::set_properties() { button_1->SetDefault(); if (m_matrixType == MATRIX_ANTISYMMETRIC) { for (int i = 0; i < m_height; i++) for (int j = 0; j <= i; j++) { m_inputs[i*m_width + j]->SetValue(wxEmptyString); m_inputs[i*m_width + j]->Enable(false); } } else if (m_matrixType == MATRIX_SYMMETRIC) { for (int i = 0; i < m_height; i++) for (int j = 0; j < i; j++) { m_inputs[i*m_width + j]->SetValue(wxEmptyString); m_inputs[i*m_width + j]->Enable(false); } } else if (m_matrixType == MATRIX_DIAGONAL) { for (int i = 0; i < m_height; i++) for (int j = 0; j < m_width; j++) if (i != j) { m_inputs[i*m_width + j]->SetValue(wxEmptyString); m_inputs[i*m_width + j]->Enable(false); } } #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif m_inputs[0]->SetFocus(); m_inputs[0]->SetSelection(-1, -1); } void MatWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(m_height + 1, m_width + 1, 2, 2); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxStaticText* text; grid_sizer_2->Add(20, 20, 0, 0); for (int i = 1; i <= m_width; i++) { text = new wxStaticText(this, -1, wxString::Format(wxT("%d"), i), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE); grid_sizer_2->Add(text, 0, wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL, 0); } for (int j = 0; j < m_height; j++) { text = new wxStaticText(this, -1, wxString::Format(wxT("%d"), j + 1), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE); grid_sizer_2->Add(text, 0, wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL, 0); for (int i = 0; i < m_width; i++) { grid_sizer_2->Add(m_inputs[j*m_width + i], 0, wxALL, 1); } } grid_sizer_1->Add(grid_sizer_2, 1, wxALL | wxALIGN_CENTER_HORIZONTAL, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxALL, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString MatWiz::GetValue() { wxString cmd = wxT("matrix("); for (int i = 0; i < m_height; i++) { cmd += wxT("\n ["); for (int j = 0; j < m_width; j++) { if (m_matrixType == MATRIX_SYMMETRIC && i > j) cmd += m_inputs[j * m_width + i]->GetValue(); else if (m_matrixType == MATRIX_ANTISYMMETRIC && i > j) cmd += wxT("-(") + m_inputs[j * m_width + i]->GetValue() + wxT(")"); else { wxString entry = m_inputs[i * m_width + j]->GetValue(); if (entry == wxEmptyString) entry = wxT("0"); cmd += entry; } if (j < m_width - 1) cmd += wxT(","); else cmd += wxT("]"); } if (i < m_height - 1) cmd += wxT(", "); } if (m_width > 7 || m_height > 7) cmd += wxT("\n)$"); else cmd += wxT("\n);"); return cmd; } MatDim::MatDim(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Rows:")); text_ctrl_1 = new BTextCtrl(this, -1, wxT("3"), wxDefaultPosition, wxSize(150, -1)); label_3 = new wxStaticText(this, -1, _("Columns:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("3"), wxDefaultPosition, wxSize(150, -1)); label_4 = new wxStaticText(this, -1, _("Type:")); const wxString combo_box_1_choices[] = { _("general"), _("diagonal"), _("symmetric"), _("antisymmetric") }; combo_box_1 = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, wxSize(150, -1), 4, combo_box_1_choices, wxCB_DROPDOWN | wxCB_READONLY); label_0 = new wxStaticText(this, -1, _("Name:")); text_ctrl_0 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void MatDim::set_properties() { #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif combo_box_1->SetSelection(0); text_ctrl_1->SetFocus(); text_ctrl_1->SetSelection(-1, -1); } void MatDim::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(4, 2, 0, 0); grid_sizer_2->Add(label_2, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_2->Add(label_4, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(combo_box_1, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(label_0, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(text_ctrl_0, 0, wxALL, 5); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxALL, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } int MatDim::GetMatrixType() { int type = combo_box_1->GetSelection(); if (type == 0) return MATRIX_GENERAL; if (type == 1) return MATRIX_DIAGONAL; if (type == 2) return MATRIX_SYMMETRIC; return MATRIX_ANTISYMMETRIC; } wxMaxima-13.04.2/src/MatWiz.h000644 000765 000024 00000004576 11705765322 016261 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef MATWIZ_H #define MATWIZ_H #include #include #include "BTextCtrl.h" enum { MATRIX_GENERAL, MATRIX_DIAGONAL, MATRIX_SYMMETRIC, MATRIX_ANTISYMMETRIC }; #include using namespace std; class MatWiz: public wxDialog { public: MatWiz(wxWindow* parent, int id, const wxString& title, int type, int heigth, int width, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); wxString GetValue(); private: void OnButton(wxCommandEvent& event); void set_properties(); void do_layout(); int m_width, m_height; int m_matrixType; vector m_inputs; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; class MatDim: public wxDialog { public: MatDim(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); wxString GetValue1() { return text_ctrl_1->GetValue(); } wxString GetValue2() { return text_ctrl_2->GetValue(); } wxString GetValue0() { return text_ctrl_0->GetValue(); } int GetMatrixType(); private: void set_properties(); void do_layout(); protected: wxStaticText* label_0; BTextCtrl* text_ctrl_0; wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; wxComboBox* combo_box_1; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // MATWIZ_H wxMaxima-13.04.2/src/MyTipProvider.cpp000644 000765 000024 00000003373 11705765322 020150 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2006-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// // // This class exists because the wxFileTipProvider does not translate tips. // This is a bug in wxWidgets. This class can be removed after this bug is fixed // and is common in wxWidgets libraries distributed all over. // #include "MyTipProvider.h" MyTipProvider::MyTipProvider(const wxString& filename, int n) : wxTipProvider(n), m_current(n), m_file(filename) { m_file.Open(); } MyTipProvider::~MyTipProvider() { m_file.Close(); } wxString MyTipProvider::GetTip() { int count = m_file.GetLineCount(); if (!count) return _("Tips not available, sorry!"); wxString tip; for (int i = 0; i < count; i++) { if (m_current >= count) m_current = 0; tip = m_file.GetLine(m_current++); if (tip.Trim() != wxEmptyString) break; } if (tip.StartsWith(wxT("_(\"" ), &tip)) { tip = tip.BeforeLast(wxT('\"')); tip.Replace(wxT("\\\""), wxT("\"")); tip = wxGetTranslation(tip); } return tip; } wxMaxima-13.04.2/src/MyTipProvider.h000644 000765 000024 00000002233 11705765322 017607 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2006-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _MYTIPPROVIDER_H_ #define _MYTIPPROVIDER_H_ #include #include class MyTipProvider : public wxTipProvider { public: MyTipProvider(const wxString& filename, int n); ~MyTipProvider(); wxString GetTip(); int GetCurrentTip() { return m_current; } private: int m_current; wxTextFile m_file; }; #endif wxMaxima-13.04.2/src/ParenCell.cpp000644 000765 000024 00000035456 11705765322 017247 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "ParenCell.h" #include "TextCell.h" #if defined __WXMSW__ #define PAREN_LEFT_TOP "\xE6" #define PAREN_LEFT_BOTTOM "\xE8" #define PAREN_RIGHT_TOP "\xF6" #define PAREN_RIGHT_BOTTOM "\xF8" #define PAREN_LEFT_EXTEND "\xE7" #define PAREN_RIGHT_EXTEND "\xF7" #define PAREN_FONT_SIZE 12 #endif #define PAREN_OPEN "\xB0" #define PAREN_CLOSE "\xD1" #define PAREN_OPEN_TOP "\x30" #define PAREN_OPEN_EXTEND "\x42" #define PAREN_OPEN_BOTTOM "\x40" #define PAREN_CLOSE_TOP "\x31" #define PAREN_CLOSE_EXTEND "\x43" #define PAREN_CLOSE_BOTTOM "\x41" #define TRANSFORM_SIZE(type, size) \ (type == 0 ? size: \ type == 1 ? 2*size: \ (3*size)/2) ParenCell::ParenCell() : MathCell() { m_innerCell = NULL; m_print = true; m_open = new TextCell(wxT("(")); m_close = new TextCell(wxT(")")); } ParenCell::~ParenCell() { if (m_innerCell != NULL) delete m_innerCell; if (m_next != NULL) delete m_next; delete m_open; delete m_close; } void ParenCell::SetParent(MathCell *parent, bool all) { if (m_innerCell != NULL) m_innerCell->SetParent(parent, true); if (m_open != NULL) m_open->SetParent(parent, true); if (m_close != NULL) m_close->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* ParenCell::Copy(bool all) { ParenCell *tmp = new ParenCell; CopyData(this, tmp); tmp->SetInner(m_innerCell->Copy(true), m_type); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void ParenCell::Destroy() { if (m_innerCell != NULL) delete m_innerCell; m_innerCell = NULL; m_next = NULL; } void ParenCell::SetInner(MathCell *inner, int type) { if (inner == NULL) return ; if (m_innerCell != NULL) delete m_innerCell; m_innerCell = inner; m_type = type; while (inner->m_next != NULL) inner = inner->m_next; m_last1 = inner; } void ParenCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); if (m_innerCell == NULL) m_innerCell = new TextCell; m_innerCell->RecalculateWidths(parser, fontsize, true); if (parser.CheckTeXFonts()) { wxDC& dc = parser.GetDC(); m_innerCell->RecalculateSize(parser, fontsize, true); int size = m_innerCell->GetMaxHeight(); int fontsize1 = (int) ((fontsize * scale + 0.5)); if (size < 2*fontsize1) m_bigParenType = 0; else if (size < 4*fontsize1) m_bigParenType = 1; else m_bigParenType = 2; if (m_bigParenType < 2) { m_parenFontSize = fontsize; fontsize1 = (int) ((m_parenFontSize * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, m_bigParenType == 0 ? parser.GetTeXCMRI() : parser.GetTeXCMEX())); dc.GetTextExtent(m_bigParenType == 0 ? wxT("(") : m_bigParenType == 1 ? wxT(PAREN_OPEN) : wxT(PAREN_OPEN_TOP), &m_signWidth, &m_signSize); /// BUG 2897415: Exporting equations to HTML locks up on Mac /// there is something wrong with what dc.GetTextExtent returns, /// make sure there is no infinite loop! int i=0; while (m_signSize < TRANSFORM_SIZE(m_bigParenType, size) && i<20) { int fontsize1 = (int) ((m_parenFontSize++ * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, m_bigParenType == 0 ? parser.GetTeXCMRI() : parser.GetTeXCMEX())); dc.GetTextExtent(m_bigParenType == 0 ? wxT("(") : m_bigParenType == 1 ? wxT(PAREN_OPEN) : wxT(PAREN_OPEN_TOP), &m_signWidth, &m_signSize); i++; } } else { m_parenFontSize = fontsize; fontsize1 = (int) ((m_parenFontSize * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, m_bigParenType < 1 ? parser.GetTeXCMRI() : parser.GetTeXCMEX())); dc.GetTextExtent(wxT(PAREN_OPEN), &m_signWidth, &m_signSize); } m_signTop = m_signSize / 5; m_width = m_innerCell->GetFullWidth(scale) + 2*m_signWidth; } else { #if defined __WXMSW__ wxDC& dc = parser.GetDC(); int fontsize1 = (int) ((PAREN_FONT_SIZE * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, parser.IsItalic(TS_DEFAULT), parser.IsBold(TS_DEFAULT), parser.IsUnderlined(TS_DEFAULT), parser.GetSymbolFontName())); dc.GetTextExtent(wxT(PAREN_LEFT_TOP), &m_charWidth, &m_charHeight); m_width = m_innerCell->GetFullWidth(scale) + 2*m_charWidth; #else m_width = m_innerCell->GetFullWidth(scale) + SCALE_PX(12, parser.GetScale()); #endif } m_open->RecalculateWidths(parser, fontsize, false); m_close->RecalculateWidths(parser, fontsize, false); MathCell::RecalculateWidths(parser, fontsize, all); } void ParenCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_innerCell->RecalculateSize(parser, fontsize, true); m_height = m_innerCell->GetMaxHeight() + SCALE_PX(2, scale); m_center = m_innerCell->GetMaxCenter() + SCALE_PX(1, scale); #if defined __WXMSW__ if (!parser.CheckTeXFonts()) { wxDC& dc = parser.GetDC(); int fontsize1 = (int) ((fontsize * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetFontName())); dc.GetTextExtent(wxT("("), &m_charWidth1, &m_charHeight1); } #endif m_open->RecalculateSize(parser, fontsize, false); m_close->RecalculateSize(parser, fontsize, false); MathCell::RecalculateSize(parser, fontsize, all); } void ParenCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxDC& dc = parser.GetDC(); wxPoint in(point); if (parser.CheckTeXFonts()) { in.x = point.x + m_signWidth; SetForeground(parser); int fontsize1 = (int) ((m_parenFontSize * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, m_bigParenType < 1 ? parser.GetTeXCMRI() : parser.GetTeXCMEX())); if (m_bigParenType < 2) { dc.DrawText(m_bigParenType == 0 ? wxT("(") : wxT(PAREN_OPEN), point.x, point.y - m_center + SCALE_PX(MC_TEXT_PADDING, scale) - (m_bigParenType > 0 ? m_signTop : 0)); dc.DrawText(m_bigParenType == 0 ? wxT(")") : wxT(PAREN_CLOSE), point.x + m_signWidth + m_innerCell->GetFullWidth(scale), point.y - m_center + SCALE_PX(MC_TEXT_PADDING, scale) - (m_bigParenType > 0 ? m_signTop : 0)); } else { int top = point.y - m_center - m_signTop; int bottom = point.y + m_height - m_center - m_signTop - m_signSize / 2; dc.DrawText(wxT(PAREN_OPEN_TOP), point.x, top); dc.DrawText(wxT(PAREN_CLOSE_TOP), point.x + m_signWidth + m_innerCell->GetFullWidth(scale), top); dc.DrawText(wxT(PAREN_OPEN_BOTTOM), point.x, bottom); dc.DrawText(wxT(PAREN_CLOSE_BOTTOM), point.x + m_signWidth + m_innerCell->GetFullWidth(scale), bottom); top = top + m_signSize / 2; if (top <= bottom) { while (top < bottom) { dc.DrawText(wxT(PAREN_OPEN_EXTEND), point.x, top-1); dc.DrawText(wxT(PAREN_CLOSE_EXTEND), point.x + m_width - m_signWidth, top-1); top += m_signSize / 10; } } } } else { #if defined __WXMSW__ in.x += m_charWidth; int fontsize1 = (int) ((PAREN_FONT_SIZE * scale + 0.5)); SetForeground(parser); if (m_height < (3*m_charHeight)/2) { fontsize1 = (int) ((fontsize * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetFontName())); dc.DrawText(wxT("("), point.x + m_charWidth - m_charWidth1, point.y - m_charHeight1 / 2); dc.DrawText(wxT(")"), point.x + m_width - m_charWidth, point.y - m_charHeight1 / 2); } else { dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetSymbolFontName())); dc.DrawText(wxT(PAREN_LEFT_TOP), point.x, point.y - m_center); dc.DrawText(wxT(PAREN_LEFT_BOTTOM), point.x, point.y + m_height - m_center - m_charHeight); dc.DrawText(wxT(PAREN_RIGHT_TOP), point.x + m_width - m_charWidth, point.y - m_center); dc.DrawText(wxT(PAREN_RIGHT_BOTTOM), point.x + m_width - m_charWidth, point.y + m_height - m_center - m_charHeight); int top, bottom; top = point.y - m_center + m_charHeight/2; bottom = point.y + m_height - m_center - (4*m_charHeight)/3; if (top <= bottom) { while (top < bottom) { dc.DrawText(wxT(PAREN_LEFT_EXTEND), point.x, top); dc.DrawText(wxT(PAREN_RIGHT_EXTEND), point.x + m_width - m_charWidth, top); top += (2*m_charHeight)/3; } dc.DrawText(wxT(PAREN_LEFT_EXTEND), point.x, point.y + m_height - m_center - (3*m_charHeight)/2); dc.DrawText(wxT(PAREN_RIGHT_EXTEND), point.x + m_width - m_charWidth, point.y + m_height - m_center - (3*m_charHeight)/2); } } #else in.x = point.x + SCALE_PX(6, scale); SetPen(parser); // left dc.DrawLine(point.x + SCALE_PX(5, scale), point.y - m_innerCell->GetMaxCenter() + SCALE_PX(1, scale), point.x + SCALE_PX(2, scale), point.y - m_innerCell->GetMaxCenter() + SCALE_PX(7, scale)); dc.DrawLine(point.x + SCALE_PX(2, scale), point.y - m_innerCell->GetMaxCenter() + SCALE_PX(7, scale), point.x + SCALE_PX(2, scale), point.y + m_innerCell->GetMaxDrop() - SCALE_PX(7, scale)); dc.DrawLine(point.x + SCALE_PX(2, scale), point.y + m_innerCell->GetMaxDrop() - SCALE_PX(7, scale), point.x + SCALE_PX(5, scale), point.y + m_innerCell->GetMaxDrop() - SCALE_PX(1, scale)); // right dc.DrawLine(point.x + m_width - SCALE_PX(5, scale) - 1, point.y - m_innerCell->GetMaxCenter() + SCALE_PX(1, scale), point.x + m_width - SCALE_PX(2, scale) - 1, point.y - m_innerCell->GetMaxCenter() + SCALE_PX(7, scale)); dc.DrawLine(point.x + m_width - SCALE_PX(2, scale) - 1, point.y - m_innerCell->GetMaxCenter() + SCALE_PX(7, scale), point.x + m_width - SCALE_PX(2, scale) - 1, point.y + m_innerCell->GetMaxDrop() - SCALE_PX(7, scale)); dc.DrawLine(point.x + m_width - SCALE_PX(2, scale) - 1, point.y + m_innerCell->GetMaxDrop() - SCALE_PX(7, scale), point.x + m_width - SCALE_PX(5, scale) - 1, point.y + m_innerCell->GetMaxDrop() - SCALE_PX(1, scale)); UnsetPen(parser); #endif } m_innerCell->Draw(parser, in, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString ParenCell::ToString(bool all) { wxString s; if (!m_isBroken) { if (m_print) s = wxT("(") + m_innerCell->ToString(true) + wxT(")"); else s = m_innerCell->ToString(true); } s += MathCell::ToString(all); return s; } wxString ParenCell::ToTeX(bool all) { wxString s; if (!m_isBroken) { if (m_print) s = wxT("\\left( ") + m_innerCell->ToTeX(true) + wxT("\\right) "); else s = m_innerCell->ToTeX(true); } s += MathCell::ToTeX(all); return s; } wxString ParenCell::ToXML(bool all) { if( m_isBroken ) return wxEmptyString; wxString s = m_innerCell->ToXML(true); return ( ( m_print )? _T("

") + s + _T("

") : s ) + MathCell::ToXML(all); } void ParenCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_innerCell->ContainsRect(rect)) m_innerCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } bool ParenCell::BreakUp() { if (!m_isBroken) { m_isBroken = true; m_open->m_nextToDraw = m_innerCell; m_innerCell->m_previousToDraw = m_open; m_last1->m_nextToDraw = m_close; m_close->m_previousToDraw = m_last1; m_close->m_nextToDraw = m_nextToDraw; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = m_close; m_nextToDraw = m_open; return true; } return false; } void ParenCell::Unbreak(bool all) { if (m_isBroken) m_innerCell->Unbreak(true); MathCell::Unbreak(all); } wxMaxima-13.04.2/src/ParenCell.h000644 000765 000024 00000003543 11705765322 016704 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _PARENCELL_H_ #define _PARENCELL_H_ #include "MathCell.h" #include "Setup.h" class ParenCell : public MathCell { public: ParenCell(); ~ParenCell(); void Destroy(); MathCell* Copy(bool all); void SetInner(MathCell *inner, int style); void SetPrint(bool print) { m_print = print; } void SelectInner(wxRect& rect, MathCell **first, MathCell **last); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); bool BreakUp(); void Unbreak(bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); void SetParent(MathCell *parent, bool all); protected: MathCell *m_innerCell, *m_open, *m_close; MathCell *m_last1; bool m_print; #if defined __WXMSW__ int m_charWidth, m_charHeight; int m_charWidth1, m_charHeight1; #endif int m_parenFontSize, m_signTop, m_signSize, m_signWidth; int m_bigParenType; }; #endif //_PARENCELL_H_ wxMaxima-13.04.2/src/Plot2dWiz.cpp000644 000765 000024 00000053457 11753304331 017231 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Plot2dWiz.h" #include #include enum { special, combobox, file_browse_2d, parametric_plot, discrete_plot }; enum { cartesian, polar }; Plot2DWiz::Plot2DWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression(s):")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(300, -1)); button_3 = new wxButton(this, special, _("&Special")); label_3 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x"), wxDefaultPosition, wxSize(40, -1)); label_4 = new wxStaticText(this, -1, _("From:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("-5"), wxDefaultPosition, wxSize(70, -1)); label_5 = new wxStaticText(this, -1, _("To:")); text_ctrl_4 = new BTextCtrl(this, -1, wxT("5"), wxDefaultPosition, wxSize(70, -1)); check_box_1 = new wxCheckBox(this, -1, _("logscale")); label_6 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_5 = new BTextCtrl(this, -1, wxT("y"), wxDefaultPosition, wxSize(40, -1), wxTE_READONLY); label_7 = new wxStaticText(this, -1, _("From:")); text_ctrl_6 = new BTextCtrl(this, -1, wxT("-5"), wxDefaultPosition, wxSize(70, -1)); label_8 = new wxStaticText(this, -1, _("To:")); text_ctrl_7 = new BTextCtrl(this, -1, wxT("5"), wxDefaultPosition, wxSize(70, -1)); check_box_2 = new wxCheckBox(this, -1, _("logscale")); label_9 = new wxStaticText(this, -1, _("Ticks:")); text_ctrl_8 = new wxSpinCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1), wxSP_ARROW_KEYS, 0, 1000, 10); text_ctrl_8->SetValue(10); label_10 = new wxStaticText(this, -1, _("Format:")); const wxString combo_box_1_choices[] = { _("default"), _("inline"), wxT("gnuplot"), wxT("openmath") }; combo_box_1 = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, wxSize(150, -1), 4, combo_box_1_choices, wxCB_DROPDOWN); label_11 = new wxStaticText(this, -1, _("Options:")); const wxString combo_box_2_choices[] = { wxT("set zeroaxis;"), wxT("set size ratio 1; set zeroaxis;"), wxT("set grid;"), wxT("set polar; set zeroaxis;") }; combo_box_2 = new wxComboBox(this, combobox, wxEmptyString, wxDefaultPosition, wxSize(280, -1), 4, combo_box_2_choices, wxCB_DROPDOWN); label_12 = new wxStaticText(this, -1, _("File:")); text_ctrl_9 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(280, -1)); button_4 = new wxBitmapButton(this, file_browse_2d, wxArtProvider::GetBitmap(wxART_FILE_OPEN, wxART_HELP_BROWSER)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif type = cartesian; set_properties(); do_layout(); } void Plot2DWiz::set_properties() { SetTitle(_("Plot 2D")); text_ctrl_3->SetValue(wxT("-5")); text_ctrl_4->SetValue(wxT("5")); text_ctrl_6->SetValue(wxT("0")); text_ctrl_7->SetValue(wxT("0")); button_4->SetToolTip(_("Browse")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif int selection = 1; bool sendRanges = false; bool logx = false, logy = false; wxConfig::Get()->Read(wxT("Wiz/Plot2D/format"), &selection); wxConfig::Get()->Read(wxT("Wiz/Plot2D/sendRanges"), &sendRanges); wxConfig::Get()->Read(wxT("Wiz/Plot2D/logx"), &logx); wxConfig::Get()->Read(wxT("Wiz/Plot2D/logy"), &logy); check_box_1->SetValue(logx); check_box_2->SetValue(logy); combo_box_1->SetSelection(selection); text_ctrl_1->SetFocus(); } void Plot2DWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(7, 2, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_3 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_4 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_5 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_2->Add(text_ctrl_1, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_2->Add(button_3, 0, wxALL, 5); grid_sizer_2->Add(sizer_2, 1, wxEXPAND, 0); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_3->Add(text_ctrl_2, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(label_4, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(text_ctrl_3, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(label_5, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(text_ctrl_4, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(check_box_1, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(sizer_3, 1, 0, 0); grid_sizer_2->Add(label_6, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_4->Add(text_ctrl_5, 0, wxALL, 5); sizer_4->Add(label_7, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_4->Add(text_ctrl_6, 0, wxALL, 5); sizer_4->Add(label_8, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_4->Add(text_ctrl_7, 0, wxALL, 5); sizer_4->Add(check_box_2, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(sizer_4, 1, wxEXPAND, 0); grid_sizer_2->Add(label_9, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_8, 0, wxALL, 5); grid_sizer_2->Add(label_10, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(combo_box_1, 0, wxALL, 5); grid_sizer_2->Add(label_11, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(combo_box_2, 0, wxALL, 5); sizer_5->Add(text_ctrl_9, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_5->Add(button_4, 0, wxALL, 5); grid_sizer_2->Add(label_12, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(sizer_5, 1, wxEXPAND, 0); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } void Plot2DWiz::SetValue(wxString s) { if (s.StartsWith(wxT("plot2d"))) Parse(s); else if (s.StartsWith(wxT("wxplot2d"))) { Parse(s.SubString(2, s.Length())); combo_box_1->SetValue(_("inline")); } else text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } void Plot2DWiz::Parse(wxString s) { int depth = 0; unsigned int i = 0; wxString curr; check_box_1->SetValue(false); check_box_2->SetValue(false); s = s.SubString(7, s.Length()); // Function to plot do { if (s.GetChar(i) == '[') { depth++; if (depth > 1) curr += s.GetChar(i); } else if (s.GetChar(i) == ']') { depth--; if (depth > 0) curr += s.GetChar(i); } else curr += s.GetChar(i); i++; } while (depth > 0); text_ctrl_1->SetValue(curr); // Independent variable while (i < s.Length() && s.GetChar(i) != '[') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_2->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_3->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } text_ctrl_4->SetValue(curr); i++; // Optional parameters while (i < s.Length()) { if (s.GetChar(i) == '[') { i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',' && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } curr.Trim(); curr.Trim(false); if (curr == wxT("y")) { curr = wxEmptyString; i++; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_6->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } text_ctrl_7->SetValue(curr); i++; } else if (curr == wxT("gnuplot_preamble")) { while (i < s.Length() && s.GetChar(i) != '"') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != '"') { curr += s.GetChar(i); i++; } combo_box_2->SetValue(curr); } else if (curr == wxT("gnuplot_out_file")) { while (i < s.Length() && s.GetChar(i) != '"') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != '"') { curr += s.GetChar(i); i++; } text_ctrl_9->SetValue(curr); } else if (curr == wxT("nticks")) { curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') i++; i++; while (i < s.Length() && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } text_ctrl_8->SetValue(curr); } else if (curr == wxT("logx")) { check_box_1->SetValue(true); while (i < s.Length() && s.GetChar(i) != ']') i++; } else if (curr == wxT("logy")) { check_box_2->SetValue(true); while (i < s.Length() && s.GetChar(i) != ']') i++; } } i++; } } wxString Plot2DWiz::GetValue() { wxString f = combo_box_1->GetValue(); // format wxString p = combo_box_2->GetValue(); // preamble wxString s; // result wxString x1 = text_ctrl_3->GetValue(); wxString x2 = text_ctrl_4->GetValue(); wxString y1 = text_ctrl_6->GetValue(); wxString y2 = text_ctrl_7->GetValue(); int t = text_ctrl_8->GetValue(); // Number of ticks wxString file = text_ctrl_9->GetValue(); // plot to file // Expression s = wxT("plot2d([") + text_ctrl_1->GetValue(); s += wxT("], ["); // x-range s += text_ctrl_2->GetValue(); s += wxT(","); if (x1 != wxT("0") || x2 != wxT("0")) s += x1 + wxT(",") + x2; else if (type == polar) s += wxT("0,2*%pi"); else s += wxT("-5,5"); s += wxT("]"); // y-range if (y1 != wxT("0") || y2 != wxT("0")) { s += wxT(", ["); s += text_ctrl_5->GetValue(); s += wxT(",") + y1 + wxT(",") + y2 + wxT("]"); } // plot format if (f != _("default") && f != _("inline")) s += wxT(",\n [plot_format, ") + f + wxT("]"); // gnuplot_preamble if (p.Length() > 0) s += wxT(",\n [gnuplot_preamble, \"") + p + wxT("\"]"); if (t != 10) { s += wxT(",\n [nticks,"); s += wxString::Format(wxT("%d"), t); s += wxT("]"); } // check for logscales if (check_box_1->IsChecked()) s += wxT(", [logx]"); if (check_box_2->IsChecked()) s += wxT(", [logy]"); // plot to file if (file.Length()) { s += wxT(", [gnuplot_term, ps]"); #if defined (__WXMSW__) file.Replace(wxT("\\"), wxT("/")); #endif if (file.Right(4) != wxT(".eps") && file.Right(3) != wxT(".ps")) file = file + wxT(".eps"); s += wxT(",\n [gnuplot_out_file, \"") + file + wxT("\"]"); } // inline? else if (f == _("inline")) s = wxT("wx") + s; s += wxT(")$"); wxConfig::Get()->Write(wxT("Wiz/Plot2D/format"), combo_box_1->GetSelection()); wxConfig::Get()->Write(wxT("Wiz/Plot2D/logx"), check_box_1->GetValue()); wxConfig::Get()->Write(wxT("Wiz/Plot2D/logy"), check_box_2->GetValue()); return s; } void Plot2DWiz::OnButton(wxCommandEvent& event) { wxMenu* popupMenu = new wxMenu(); popupMenu->Append(parametric_plot, _("Parametric plot")); popupMenu->Append(discrete_plot, _("Discrete plot")); wxPoint pos = button_3->GetPosition(); pos.y += button_3->GetRect().height; PopupMenu(popupMenu, pos); } void Plot2DWiz::OnPopupMenu(wxCommandEvent &event) { switch(event.GetId()) { case parametric_plot: { Plot2DPar *wiz = new Plot2DPar(this, -1, _("Plot 2D")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { if (text_ctrl_1->GetValue() == wxT("%")) text_ctrl_1->SetValue(wxEmptyString); if (((text_ctrl_1->GetValue()).Strip()).Length()) text_ctrl_1->AppendText(wxT(", ")); text_ctrl_1->AppendText(wiz->GetValue()); } } break; case discrete_plot: { Plot2DDiscrete *wiz = new Plot2DDiscrete(this, -1, _("Plot 2D")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { if (text_ctrl_1->GetValue() == wxT("%")) text_ctrl_1->SetValue(wxEmptyString); if (((text_ctrl_1->GetValue()).Strip()).Length()) text_ctrl_1->AppendText(wxT(", ")); text_ctrl_1->AppendText(wiz->GetValue()); } } break; } } void Plot2DWiz::OnCombobox(wxCommandEvent &event) { wxString selection = combo_box_2->GetStringSelection(); if (selection.StartsWith(wxT("set polar"))) { text_ctrl_2->SetValue(wxT("ph")); text_ctrl_3->SetValue(wxT("0")); text_ctrl_4->SetValue(wxT("2*%pi")); type = polar; } else type = cartesian; if (selection.StartsWith(wxT("set logscale x"))) { text_ctrl_3->SetValue(wxT("0")); text_ctrl_4->SetValue(wxT("100")); } } void Plot2DWiz::OnFileBrowse(wxCommandEvent& event) { wxString file = wxFileSelector(_("Save plot to file"), wxEmptyString, wxT("plot2d.eps"), wxT("eps"), _("Postscript file (*.eps)|*.eps|All|*"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file.Length() > 0) text_ctrl_9->SetValue(file); } BEGIN_EVENT_TABLE(Plot2DWiz, wxDialog) EVT_COMBOBOX(combobox, Plot2DWiz::OnCombobox) EVT_BUTTON(special, Plot2DWiz::OnButton) EVT_BUTTON(file_browse_2d, Plot2DWiz::OnFileBrowse) EVT_MENU(parametric_plot, Plot2DWiz::OnPopupMenu) EVT_MENU(discrete_plot, Plot2DWiz::OnPopupMenu) END_EVENT_TABLE() /////////////////////// // // Plot2DPar // /////////////////////// Plot2DPar::Plot2DPar(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, wxT("x = ")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, wxT("y = ")); text_ctrl_2 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_4 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("t"), wxDefaultPosition, wxSize(40, -1)); label_5 = new wxStaticText(this, -1, _("From:")); text_ctrl_4 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); label_6 = new wxStaticText(this, -1, _("To:")); text_ctrl_5 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); label_7 = new wxStaticText(this, -1, _("Ticks:")); spin_ctrl_1 = new wxSpinCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1), wxSP_ARROW_KEYS, 0, 1000, 300); spin_ctrl_1->SetValue(300); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void Plot2DPar::set_properties() { SetTitle(_("Parametric plot")); text_ctrl_4->SetValue(wxT("-6")); text_ctrl_5->SetValue(wxT("6")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } void Plot2DPar::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(4, 2, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL | wxEXPAND, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL | wxEXPAND, 5); grid_sizer_2->Add(label_4, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_1->Add(text_ctrl_3, 0, wxALL, 5); sizer_1->Add(label_5, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_1->Add(text_ctrl_4, 0, wxALL, 5); sizer_1->Add(label_6, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_1->Add(text_ctrl_5, 0, wxALL, 5); grid_sizer_2->Add(sizer_1, 1, 0, 0); grid_sizer_2->Add(label_7, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(spin_ctrl_1, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->AddGrowableCol(1); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 5); sizer_2->Add(button_1, 0, wxALL, 5); sizer_2->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_2, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString Plot2DPar::GetValue() { wxString s; s = wxT("['parametric, "); s += text_ctrl_1->GetValue(); s += wxT(", "); s += text_ctrl_2->GetValue(); s += wxT(", ["); s += text_ctrl_3->GetValue(); s += wxT(", "); s += text_ctrl_4->GetValue(); s += wxT(", "); s += text_ctrl_5->GetValue(); s += wxT("], "); s += wxString::Format(wxT("[nticks, %d]]"), spin_ctrl_1->GetValue()); return s; } /////////////////////// // // Plot2DDiscrete // /////////////////////// Plot2DDiscrete::Plot2DDiscrete(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, wxT("x = ")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, wxT("y = ")); text_ctrl_2 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void Plot2DDiscrete::set_properties() { SetTitle(_("Discrete plot")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetToolTip(_("Comma separated x coordinates")); text_ctrl_2->SetToolTip(_("Comma separated y coordinates")); text_ctrl_1->SetFocus(); } void Plot2DDiscrete::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(2, 2, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL | wxEXPAND, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL | wxEXPAND, 5); grid_sizer_2->AddGrowableCol(1); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 5); sizer_2->Add(button_1, 0, wxALL, 5); sizer_2->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_2, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString Plot2DDiscrete::GetValue() { wxString s; s = wxT("['discrete, ["); s += text_ctrl_1->GetValue(); s += wxT("], ["); s += text_ctrl_2->GetValue(); s += wxT("]]"); return s; } wxMaxima-13.04.2/src/Plot2dWiz.h000644 000765 000024 00000007330 11705765322 016673 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef PLOT2DWIZ_H #define PLOT2DWIZ_H #include #include #include #include #include "BTextCtrl.h" class Plot2DWiz: public wxDialog { public: Plot2DWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s); wxString GetValue(); private: void set_properties(); void do_layout(); void OnButton(wxCommandEvent& event); void OnCombobox(wxCommandEvent& event); void OnFileBrowse(wxCommandEvent& event); void OnPopupMenu(wxCommandEvent& event); void Parse(wxString in); protected: int type; wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxButton* button_3; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticText* label_5; BTextCtrl* text_ctrl_4; wxCheckBox* check_box_1; wxStaticText* label_6; BTextCtrl* text_ctrl_5; wxStaticText* label_7; BTextCtrl* text_ctrl_6; wxStaticText* label_8; BTextCtrl* text_ctrl_7; wxCheckBox* check_box_2; wxStaticText* label_9; wxComboBox* combo_box_1; wxStaticText* label_10; wxSpinCtrl* text_ctrl_8; wxStaticText* label_11; wxComboBox* combo_box_2; wxStaticText* label_12; BTextCtrl* text_ctrl_9; wxBitmapButton* button_4; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; DECLARE_EVENT_TABLE() }; class Plot2DPar: public wxDialog { public: Plot2DPar(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void set_properties(); void do_layout(); protected: wxStaticText* label_2; wxStaticText* label_3; BTextCtrl* text_ctrl_1; wxStaticText* label_4; BTextCtrl* text_ctrl_2; wxStaticText* label_5; BTextCtrl* text_ctrl_3; wxStaticText* label_6; BTextCtrl* text_ctrl_4; BTextCtrl* text_ctrl_5; wxStaticText* label_7; wxSpinCtrl* spin_ctrl_1; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; class Plot2DDiscrete: public wxDialog { public: Plot2DDiscrete(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void set_properties(); void do_layout(); protected: wxStaticText* label_2; wxStaticText* label_3; BTextCtrl* text_ctrl_1; BTextCtrl* text_ctrl_2; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // PLOT2DWIZ_H wxMaxima-13.04.2/src/Plot3dWiz.cpp000644 000765 000024 00000034253 11705765322 017233 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "Plot3dWiz.h" #include #include enum { combobox, file_browse_3d }; enum { cartesian, cylindrical, spherical }; Plot3DWiz::Plot3DWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition); label_3 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x"), wxDefaultPosition, wxSize(40, -1)); label_4 = new wxStaticText(this, -1, _("From:")); text_ctrl_3 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); label_5 = new wxStaticText(this, -1, _("To:")); text_ctrl_4 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); label_6 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_5 = new BTextCtrl(this, -1, wxT("y"), wxDefaultPosition, wxSize(40, -1)); label_7 = new wxStaticText(this, -1, _("From:")); text_ctrl_6 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); label_8 = new wxStaticText(this, -1, _("To:")); text_ctrl_7 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1)); label_9 = new wxStaticText(this, -1, _("Grid:")); text_ctrl_8 = new wxSpinCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1), wxSP_ARROW_KEYS, 0, 100, 30); text_ctrl_8->SetValue(30); label_10 = new wxStaticText(this, -1, wxT("x")); text_ctrl_9 = new wxSpinCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(70, -1), wxSP_ARROW_KEYS, 0, 100, 30); text_ctrl_9->SetValue(30); label_11 = new wxStaticText(this, -1, _("Format:")); const wxString combo_box_1_choices[] = { _("default"), _("inline"), wxT("gnuplot"), wxT("openmath") }; combo_box_1 = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, wxSize(150, -1), 4, combo_box_1_choices, wxCB_DROPDOWN); label_12 = new wxStaticText(this, -1, _("Options:")); const wxString combo_box_2_choices[] = { wxT("set pm3d at b"), wxT("set pm3d at s; unset surf; unset colorbox"), wxT("set pm3d map; unset surf"), wxT("set hidden3d"), wxT("set mapping spherical"), wxT("set mapping cylindrical") }; combo_box_2 = new wxComboBox(this, combobox, wxEmptyString, wxDefaultPosition, wxSize(250, -1), 6, combo_box_2_choices, wxCB_DROPDOWN); check_box_1 = new wxCheckBox(this, -1, _("&pm3d")); label_13 = new wxStaticText(this, -1, _("Plot to file:")); text_ctrl_10 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(250, -1)); button_3 = new wxBitmapButton(this, file_browse_3d, wxArtProvider::GetBitmap(wxART_FILE_OPEN, wxART_HELP_BROWSER)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif type = cartesian; set_properties(); do_layout(); } void Plot3DWiz::set_properties() { SetTitle(_("Plot 3D")); text_ctrl_3->SetValue(wxT("-5")); text_ctrl_4->SetValue(wxT("5")); text_ctrl_6->SetValue(wxT("-5")); text_ctrl_7->SetValue(wxT("5")); button_3->SetToolTip(_("Browse")); bool pm3dValue = false; #if defined __WXMSW__ button_1->SetDefault(); pm3dValue = true; #else button_2->SetDefault(); #endif int selection = 1; wxConfig::Get()->Read(wxT("Wiz/Plot3D/format"), &selection); wxConfig::Get()->Read(wxT("Wiz/Plot3D/pm3d"), &pm3dValue); combo_box_1->SetSelection(selection); check_box_1->SetValue(pm3dValue); text_ctrl_1->SetFocus(); } void Plot3DWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(7, 2, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_3 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_4 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_5 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_6 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 1, wxEXPAND | wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_2->Add(text_ctrl_2, 0, wxALL, 5); sizer_2->Add(label_4, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_2->Add(text_ctrl_3, 0, wxALL, 5); sizer_2->Add(label_5, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_2->Add(text_ctrl_4, 0, wxALL, 5); grid_sizer_2->Add(sizer_2, 1, wxEXPAND, 0); grid_sizer_2->Add(label_6, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_3->Add(text_ctrl_5, 0, wxALL, 5); sizer_3->Add(label_7, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(text_ctrl_6, 0, wxALL, 5); sizer_3->Add(label_8, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); sizer_3->Add(text_ctrl_7, 0, wxALL, 5); grid_sizer_2->Add(sizer_3, 1, wxEXPAND, 0); grid_sizer_2->Add(label_9, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_4->Add(text_ctrl_8, 0, wxALL, 5); sizer_4->Add(label_10, 0, wxALIGN_CENTER_VERTICAL | wxALIGN_CENTER_HORIZONTAL | wxALL, 5); sizer_4->Add(text_ctrl_9, 0, wxALL, 5); grid_sizer_2->Add(sizer_4, 1, wxEXPAND, 0); grid_sizer_2->Add(label_11, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(combo_box_1, 0, wxALL, 5); grid_sizer_2->Add(label_12, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_5->Add(combo_box_2, 0, wxALL, 5); sizer_5->Add(check_box_1, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(sizer_5, 1, wxEXPAND, 0); grid_sizer_2->Add(label_13, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_6->Add(text_ctrl_10, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_6->Add(button_3, 0, wxALL, 5); grid_sizer_2->Add(sizer_6, 1, wxEXPAND, 0); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } void Plot3DWiz::SetValue(wxString s) { if (s.StartsWith(wxT("plot3d"))) Parse(s); else if (s.StartsWith(wxT("wxplot3d"))) { Parse(s.SubString(2, s.Length())); combo_box_1->SetValue(_("inline")); } else text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } void Plot3DWiz::Parse(wxString s) { int depth = 0; unsigned int i = 0; wxString curr; s = s.SubString(7, s.Length()); // Function to plot if (s.StartsWith(wxT("["))) { do { if (s.GetChar(i) == '[') { depth++; if (depth > 1) curr += s.GetChar(i); } else if (s.GetChar(i) == ']') { depth--; if (depth > 0) curr += s.GetChar(i); } else curr += s.GetChar(i); i++; } while (depth > 0); } else { while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } } text_ctrl_1->SetValue(curr); // Independent variable 1 while (i < s.Length() && s.GetChar(i) != '[') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_2->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_3->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } text_ctrl_4->SetValue(curr); i++; // Independent variable 2 while (i < s.Length() && s.GetChar(i) != '[') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_5->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } text_ctrl_6->SetValue(curr); i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } text_ctrl_7->SetValue(curr); i++; // Optional parameters while (i < s.Length()) { if (s.GetChar(i) == '[') { i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ',') { curr += s.GetChar(i); i++; } curr.Trim(); curr.Trim(false); if (curr == wxT("gnuplot_preamble")) { while (i < s.Length() && s.GetChar(i) != '"') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != '"') { curr += s.GetChar(i); i++; } combo_box_2->SetValue(curr); } else if (curr == wxT("gnuplot_out_file")) { while (i < s.Length() && s.GetChar(i) != '"') i++; i++; curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != '"') { curr += s.GetChar(i); i++; } text_ctrl_10->SetValue(curr); } else if (curr == wxT("gnuplot_pm3d")) { curr = wxEmptyString; while (i < s.Length() && s.GetChar(i) != ']') { curr += s.GetChar(i); i++; } if (curr.Find(wxT("true")) > -1) check_box_1->SetValue(true); else if (curr.Find(wxT("false")) > -1) check_box_1->SetValue(false); } } i++; } } wxString Plot3DWiz::GetValue() { wxString s = wxT("plot3d("); wxString p = combo_box_2->GetValue(); wxString pl = text_ctrl_1->GetValue(); wxString f = combo_box_1->GetValue(); wxString file = text_ctrl_10->GetValue(); int xg = text_ctrl_8->GetValue(); int yg = text_ctrl_9->GetValue(); if (pl.Contains(wxT(", "))) pl = wxT("[") + pl + wxT("]"); s += pl; s += wxT(", ["); s += text_ctrl_2->GetValue(); s += wxT(",") + text_ctrl_3->GetValue(); s += wxT(",") + text_ctrl_4->GetValue(); ; s += wxT("], ["); s += text_ctrl_5->GetValue(); s += wxT(",") + text_ctrl_6->GetValue(); s += wxT(",") + text_ctrl_7->GetValue(); s += wxT("]"); if (f != _("default") && f != _("inline")) s += wxT(", [plot_format,") + f + wxT("]"); if (xg != 30 || yg != 30) { s += wxT(",\n [grid,"); s += wxString::Format(wxT("%d"), xg); s += wxT(","); s += wxString::Format(wxT("%d"), yg); s += wxT("]"); } #if defined (__WXMSW__) if (!check_box_1->IsChecked()) s += wxT(",\n [gnuplot_pm3d,false]"); #else if (check_box_1->IsChecked()) s += wxT(",\n [gnuplot_pm3d,true]"); #endif if (p.Length() > 0) s += wxT(",\n [gnuplot_preamble, \"") + p + wxT("\"]"); if (file.Length()) { s += wxT(",\n [gnuplot_term, ps]"); #if defined (__WXMSW__) file.Replace(wxT("\\"), wxT("/")); #endif if (file.Right(4) != wxT(".eps") && file.Right(3) != wxT(".ps")) file = file + wxT(".eps"); s += wxT(",\n [gnuplot_out_file, \"") + file + wxT("\"]"); } else if (f == _("inline")) s = wxT("wx") + s; s += wxT(")$"); wxConfig::Get()->Write(wxT("Wiz/Plot3D/format"), combo_box_1->GetSelection()); wxConfig::Get()->Write(wxT("Wiz/Plot3D/pm3d"), check_box_1->GetValue()); return s; } void Plot3DWiz::OnCombobox(wxCommandEvent &event) { wxString selection = combo_box_2->GetStringSelection(); if (selection.StartsWith(wxT("set mapping cylindrical"))) { text_ctrl_2->SetValue(wxT("ph")); text_ctrl_3->SetValue(wxT("0")); text_ctrl_4->SetValue(wxT("2*%pi")); text_ctrl_5->SetValue(wxT("z")); text_ctrl_6->SetValue(wxT("0")); text_ctrl_7->SetValue(wxT("5")); type = cylindrical; } else if (selection.StartsWith(wxT("set mapping spherical"))) { text_ctrl_2->SetValue(wxT("th")); text_ctrl_3->SetValue(wxT("0")); text_ctrl_4->SetValue(wxT("2*%pi")); text_ctrl_5->SetValue(wxT("ph")); text_ctrl_6->SetValue(wxT("-%pi/2")); text_ctrl_7->SetValue(wxT("%pi/2")); type = spherical; } else type = cartesian; } void Plot3DWiz::OnFileBrowse(wxCommandEvent& event) { wxString file = wxFileSelector(_("Save plot to file"), wxEmptyString, wxT("plot3d.eps"), wxT("eps"), _("Postscript file (*.eps)|*.eps|All|*"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file.Length() > 0) text_ctrl_10->SetValue(file); } BEGIN_EVENT_TABLE(Plot3DWiz, wxDialog) EVT_COMBOBOX(combobox, Plot3DWiz::OnCombobox) EVT_BUTTON(file_browse_3d, Plot3DWiz::OnFileBrowse) END_EVENT_TABLE() wxMaxima-13.04.2/src/Plot3dWiz.h000644 000765 000024 00000004355 11705765322 016700 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef PLOT3DWIZ_H #define PLOT3DWIZ_H #include #include #include #include #include "BTextCtrl.h" class Plot3DWiz: public wxDialog { public: Plot3DWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s); void Parse(wxString s); wxString GetValue(); private: void OnCombobox(wxCommandEvent& event); void OnFileBrowse(wxCommandEvent& event); void set_properties(); void do_layout(); protected: int type; wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticText* label_5; BTextCtrl* text_ctrl_4; wxStaticText* label_6; BTextCtrl* text_ctrl_5; wxStaticText* label_7; BTextCtrl* text_ctrl_6; wxStaticText* label_8; BTextCtrl* text_ctrl_7; wxStaticText* label_9; wxSpinCtrl* text_ctrl_8; wxStaticText* label_10; wxSpinCtrl* text_ctrl_9; wxStaticText* label_11; wxComboBox* combo_box_1; wxStaticText* label_12; wxComboBox* combo_box_2; wxCheckBox* check_box_1; wxStaticText* label_13; BTextCtrl* text_ctrl_10; wxBitmapButton* button_3; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; DECLARE_EVENT_TABLE() }; #endif // PLOT3DWIZ_H wxMaxima-13.04.2/src/PlotFormatWiz.cpp000644 000765 000024 00000005327 11705765322 020155 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// 2011-2011 cw.ahbong /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "PlotFormatWiz.h" PlotFormatWiz::PlotFormatWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, style) { label_1 = new wxStaticText(this, -1, _("Choose new plot format:")); const wxString combo_box_1_choices[] = { wxT("gnuplot"), wxT("xmaxima"), wxT("mgnuplot"), wxT("gnuplot_pipes") }; combo_box_1 = new wxComboBox(this, -1, combo_box_1_choices[0], wxDefaultPosition, wxSize(140, -1), 4, combo_box_1_choices, wxCB_DROPDOWN); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void PlotFormatWiz::set_properties() { #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif } void PlotFormatWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_1->Add(label_1, 0, wxALIGN_CENTER | wxALL, 5); grid_sizer_1->Add(combo_box_1, 0, wxALIGN_CENTER | wxALL, 5); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString PlotFormatWiz::GetValue() { wxString s; s = wxT("set_plot_option(['plot_format, '"); s += combo_box_1->GetValue(); s += wxT("])$"); return s; } wxMaxima-13.04.2/src/PlotFormatWiz.h000644 000765 000024 00000002756 11705765322 017625 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// cw.ahbong /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef PLOTFORMATWIZ_H #define PLOTFORMATWIZ_H #include #include class PlotFormatWiz: public wxDialog { public: PlotFormatWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s); wxString GetValue(); private: void set_properties(); void do_layout(); protected: wxStaticText* label_1; wxComboBox* combo_box_1; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // PLOTFORMATWIZ_H wxMaxima-13.04.2/src/Resources.rc000644 000765 000024 00000000123 11670654443 017157 0ustar00andrejstaff000000 000000 icon0 ICON "maximaicon.ico" icon1 ICON "wxmac-doc.ico" #include wxMaxima-13.04.2/src/SeriesWiz.cpp000644 000765 000024 00000011547 11705765322 017321 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// enum { powerseries_id, special_id }; #include "SeriesWiz.h" SeriesWiz::SeriesWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression:")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x"), wxDefaultPosition, wxSize(110, -1)); label_4 = new wxStaticText(this, -1, _("Point:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("0"), wxDefaultPosition, wxSize(110, -1)); button_3 = new wxButton(this, special_id, _("Special")); label_5 = new wxStaticText(this, -1, _("Depth:")); spin_ctrl_1 = new wxSpinCtrl(this, -1, wxT("8"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 0, 100, 8); checkbox_1 = new wxCheckBox(this, powerseries_id, _("&Power series")); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void SeriesWiz::set_properties() { SetTitle(_("Series")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } void SeriesWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(5, 2, 0, 0); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_2->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); sizer_2->Add(text_ctrl_3, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5); sizer_2->Add(button_3, 0, wxALL, 5); grid_sizer_2->Add(sizer_2, 1, wxEXPAND, 0); grid_sizer_2->Add(label_5, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(spin_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(20, 20, 0, 0, 0); grid_sizer_2->Add(checkbox_1, 0, 0, 0); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } void SeriesWiz::OnButton(wxCommandEvent& event) { wxString choices[] = { wxT("Pi"), wxT("E") }; wxString choice = wxGetSingleChoice(_("Select a constant"), _("Constant"), 2, choices, this); if (choice.Length()) { if (choice == wxT("Pi")) text_ctrl_3->SetValue(wxT("%pi")); else if (choice == wxT("E")) text_ctrl_3->SetValue(wxT("%e")); } } wxString SeriesWiz::GetValue() { wxString s; if (checkbox_1->IsChecked()) s = wxT("niceindices(powerseries("); else s = wxT("taylor("); s += text_ctrl_1->GetValue(); s += wxT(", "); s += text_ctrl_2->GetValue(); s += wxT(", "); s += text_ctrl_3->GetValue(); if (!checkbox_1->IsChecked()) { s += wxT(", "); s += wxString::Format(wxT("%d"), spin_ctrl_1->GetValue()); s += wxT(");"); } else s += wxT("));"); return s; } void SeriesWiz::OnCheckbox(wxCommandEvent& event) { spin_ctrl_1->Enable(!checkbox_1->GetValue()); } BEGIN_EVENT_TABLE(SeriesWiz, wxDialog) EVT_BUTTON(special_id, SeriesWiz::OnButton) EVT_CHECKBOX(powerseries_id, SeriesWiz::OnCheckbox) END_EVENT_TABLE() wxMaxima-13.04.2/src/SeriesWiz.h000644 000765 000024 00000003517 11705765322 016764 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef SERIESWIZ_H #define SERIESWIZ_H #include #include #include #include "BTextCtrl.h" class SeriesWiz: public wxDialog { public: SeriesWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void set_properties(); void do_layout(); void OnButton(wxCommandEvent& event); void OnCheckbox(wxCommandEvent& event); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxButton* button_3; wxStaticText* label_5; wxSpinCtrl* spin_ctrl_1; wxCheckBox* checkbox_1; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; DECLARE_EVENT_TABLE() }; #endif // SERIESWIZ_H wxMaxima-13.04.2/src/Setup.h.in000644 000765 000024 00000001137 12150103466 016527 0ustar00andrejstaff000000 000000 /* src/Setup.h.in. Generated from configure.in by autoheader. */ /* 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 version of this package. */ #undef PACKAGE_VERSION /* Version number of package */ #undef VERSION /* "Add printing support" */ #undef WXM_PRINT wxMaxima-13.04.2/src/SlideShowCell.cpp000644 000765 000024 00000016511 11770042427 020066 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2007-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SlideShowCell.h" #include "ImgCell.h" #include #include #include #include #include #include SlideShow::SlideShow(wxFileSystem *filesystem) : MathCell() { m_size = m_displayed = 0; m_type = MC_TYPE_SLIDE; m_fileSystem = filesystem; // NULL when not loading from wxmx } SlideShow::~SlideShow() { for (int i=0; iOpenFile(images[i]); if (fsfile) { // open sucessful wxInputStream *istream = fsfile->GetStream(); wxImage pngImage(*istream); if (pngImage.Ok()) { loadedImage = true; m_bitmaps.push_back(new wxBitmap(pngImage)); } delete fsfile; } if (!loadedImage) { wxBitmap *bitmap = new wxBitmap; bitmap->Create(400, 250); wxString error = wxString::Format(_("Error %d"), i); wxMemoryDC dc; dc.SelectObject(*bitmap); int width = 0, height = 0; dc.GetTextExtent(error, &width, &height); dc.DrawRectangle(0, 0, 400, 250); dc.DrawLine(0, 0, 400, 250); dc.DrawLine(0, 250, 400, 0); dc.DrawText(error, 200 - width/2, 125 - height/2); m_bitmaps.push_back(bitmap); } } m_fileSystem = NULL; } else for (int i=0; iLoadFile(images[i], wxBITMAP_TYPE_PNG)) { loadedImage = true; m_bitmaps.push_back(bitmap); } else delete bitmap; wxRemoveFile(images[i]); } if (!loadedImage) { wxBitmap *bitmap = new wxBitmap; bitmap->Create(400, 250); wxString error = wxString::Format(_("Error %d"), i); wxMemoryDC dc; dc.SelectObject(*bitmap); int width = 0, height = 0; dc.GetTextExtent(error, &width, &height); dc.DrawRectangle(0, 0, 400, 250); dc.DrawLine(0, 0, 400, 250); dc.DrawLine(0, 250, 400, 0); dc.DrawText(error, 200 - width/2, 125 - height/2); m_bitmaps.push_back(bitmap); } } m_displayed = 0; } MathCell* SlideShow::Copy(bool all) { ImgCell* tmp = new ImgCell; CopyData(this, tmp); tmp->m_bitmap = new wxBitmap(*m_bitmaps[m_displayed]); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void SlideShow::Destroy() { for (int i=0; i= 0 && ind < m_size) m_displayed = ind; else m_displayed = m_size - 1; } void SlideShow::RecalculateWidths(CellParser& parser, int fontsize, bool all) { if (m_bitmaps[m_displayed] != NULL) m_width = m_bitmaps[m_displayed]->GetWidth() + 2; else m_width = 0; double scale = parser.GetScale(); scale = MAX(scale, 1.0); m_width = (int) (scale * m_width); MathCell::RecalculateWidths(parser, fontsize, all); } void SlideShow::RecalculateSize(CellParser& parser, int fontsize, bool all) { if (m_bitmaps[m_displayed] != NULL) m_height = m_bitmaps[m_displayed]->GetHeight() + 2; else m_height = 0; double scale = parser.GetScale(); scale = MAX(scale, 1.0); m_height= (int) (scale * m_height); m_center = m_height / 2; MathCell::RecalculateSize(parser, fontsize, all); } void SlideShow::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point) && m_bitmaps[m_displayed] != NULL) { wxDC& dc = parser.GetDC(); wxMemoryDC bitmapDC; double scale = parser.GetScale(); scale = MAX(scale, 1.0); dc.DrawRectangle(wxRect(point.x, point.y - m_center, m_width, m_height)); if (scale != 1.0) { wxImage img = m_bitmaps[m_displayed]->ConvertToImage(); img.Rescale(m_width, m_height); wxBitmap bmp = img; bitmapDC.SelectObject(bmp); } else bitmapDC.SelectObject(*m_bitmaps[m_displayed]); dc.Blit(point.x + 1, point.y - m_center + 1, m_width, m_height, &bitmapDC, 0, 0); } MathCell::Draw(parser, point, fontsize, all); } wxString SlideShow::ToString(bool all) { return wxT(" << Graphics >> ") + MathCell::ToString(all); } wxString SlideShow::ToTeX(bool all) { return wxT(" << Graphics >> ") + MathCell::ToTeX(all); } wxString SlideShow::ToXML(bool all) { wxString images; for (int i=0; iConvertToImage(); wxString basename = ImgCell::WXMXGetNewFileName(); // add to memory wxMemoryFSHandler::AddFile(basename, image, wxBITMAP_TYPE_PNG); images += basename + wxT(";"); } return wxT("\n") + images + wxT("") + MathCell::ToXML(all); } bool SlideShow::ToImageFile(wxString file) { wxImage image = m_bitmaps[m_displayed]->ConvertToImage(); return image.SaveFile(file, wxBITMAP_TYPE_PNG); } bool SlideShow::ToGif(wxString file) { wxArrayString which; bool retval = true; wxString convert(wxT("convert -delay 40 ")); wxString convertArgs; wxString tmpdir = wxFileName::GetTempDir(); for (int i=0; iConvertToImage(); image.SaveFile(imgname.GetFullPath(), wxBITMAP_TYPE_PNG); convert << wxT(" \"") << imgname.GetFullPath() << wxT("\""); } convert << wxT(" \"") << file << wxT("\""); #if defined __WXMSW__ if (!wxShell(convert)) #else if (wxExecute(convert, wxEXEC_SYNC) != 0) #endif { retval = false; wxMessageBox(_("There was and error during GIF export!\n\nMake sure ImageMagick is installed and wxMaxima can find the convert program."), wxT("Error"), wxICON_ERROR); } for (int i=0; iOpen()) { bool res = wxTheClipboard->SetData(new wxBitmapDataObject(*m_bitmaps[m_displayed])); wxTheClipboard->Close(); return res; } return false; } wxMaxima-13.04.2/src/SlideShowCell.h000644 000765 000024 00000003642 11705765322 017540 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2007-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _SLIDESHOW_H_ #define _SLIDESHOW_H_ #include "MathCell.h" #include #include #include #include using namespace std; class SlideShow : public MathCell { public: SlideShow(wxFileSystem *filesystem = NULL); ~SlideShow(); void Destroy(); void LoadImages(wxArrayString images); MathCell* Copy(bool all); void SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = *last = this; } int GetDisplayedIndex() { return m_displayed; } void SetDisplayedIndex(int ind); int Length() { return m_size; } bool ToImageFile(wxString filename); bool ToGif(wxString filename); bool CopyToClipboard(); protected: int m_size; int m_displayed; wxFileSystem *m_fileSystem; vector m_bitmaps; void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new! }; #endif //_ABSCELL_H_ wxMaxima-13.04.2/src/SqrtCell.cpp000644 000765 000024 00000021313 11705765322 017116 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SqrtCell.h" #include "TextCell.h" #define SIGN_FONT_SCALE 2.0 SqrtCell::SqrtCell() : MathCell() { m_innerCell = NULL; m_open = new TextCell(wxT("sqrt(")); m_close = new TextCell(wxT(")")); } SqrtCell::~SqrtCell() { if (m_innerCell != NULL) delete m_innerCell; if (m_next != NULL) delete m_next; delete m_open; delete m_close; } void SqrtCell::SetParent(MathCell *parent, bool all) { if (m_innerCell != NULL) m_innerCell->SetParent(parent, true); if (m_open != NULL) m_open->SetParent(parent, true); if (m_close != NULL) m_close->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* SqrtCell::Copy(bool all) { SqrtCell* tmp = new SqrtCell; CopyData(this, tmp); tmp->SetInner(m_innerCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void SqrtCell::Destroy() { if (m_innerCell != NULL) delete m_innerCell; m_innerCell = NULL; m_next = NULL; } void SqrtCell::SetInner(MathCell *inner) { if (inner == NULL) return ; if (m_innerCell != NULL) delete m_innerCell; m_innerCell = inner; m_last = inner; while (m_last->m_next != NULL) m_last = m_last->m_next; } void SqrtCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_innerCell->RecalculateWidths(parser, fontsize, true); if (parser.CheckTeXFonts()) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); m_innerCell->RecalculateSize(parser, fontsize, true); m_signFontScale = 1.0; int fontsize1 = (int)(SIGN_FONT_SCALE*scale*fontsize*m_signFontScale + 0.5); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); dc.GetTextExtent(wxT("s"), &m_signWidth, &m_signSize); m_signTop = m_signSize / 5; m_width = m_innerCell->GetFullWidth(scale) + m_signWidth; int size = m_innerCell->GetMaxHeight(); if (size <= (m_signSize) / 5) { m_signType = 1; m_signFontScale = (5.0 * size) / (1.5 * m_signSize); } else if (size <= (2*m_signSize) / 5) { m_signType = 2; m_signFontScale = (5.0 * size) / (2.2 * m_signSize); } else if (size <= (3*m_signSize) / 5) { m_signType = 3; m_signFontScale = (5.0 * size) / (3.0 * m_signSize); } else if (size <= (4*m_signSize) / 5 ) { m_signType = 4; m_signFontScale = (5.0 * size) / (3.8 * m_signSize); } else { m_signType = 5; m_signFontScale = 1.0; } fontsize1 = (int)(SIGN_FONT_SCALE*scale*fontsize*m_signFontScale + 0.5); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); dc.GetTextExtent(wxT("s"), &m_signWidth, &m_signSize); m_signTop = m_signSize / 5; m_width = m_innerCell->GetFullWidth(scale) + m_signWidth; } else m_width = m_innerCell->GetFullWidth(scale) + SCALE_PX(10, scale) + 3 * SCALE_PX(1, scale) + 1; m_open->RecalculateWidths(parser, fontsize, all); m_close->RecalculateWidths(parser, fontsize, all); MathCell::RecalculateWidths(parser, fontsize, all); } void SqrtCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_innerCell->RecalculateSize(parser, fontsize, true); m_height = m_innerCell->GetMaxHeight() + SCALE_PX(3, scale); m_center = m_innerCell->GetMaxCenter() + SCALE_PX(3, scale); m_open->RecalculateSize(parser, fontsize, all); m_close->RecalculateSize(parser, fontsize, all); MathCell::RecalculateSize(parser, fontsize, all); } void SqrtCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); wxPoint in(point); if (parser.CheckTeXFonts()) { SetPen(parser); in.x += m_signWidth; double scale = parser.GetScale(); int fontsize1 = (int)(SIGN_FONT_SCALE*scale*fontsize*m_signFontScale + 0.5); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); SetForeground(parser); if (m_signType < 4) { dc.DrawText( m_signType == 1 ? wxT("p") : m_signType == 2 ? wxT("q") : m_signType == 3 ? wxT("r") : wxT("s"), point.x, point.y - m_innerCell->GetMaxCenter() - m_signTop); } else { int yBottom = point.y + m_innerCell->GetMaxDrop() - 3.2*m_signTop; int yTop = point.y - m_innerCell->GetMaxCenter() - m_signTop; int dy = m_signSize / 10; dc.DrawText(wxT("t"), point.x, yBottom); dc.DrawText(wxT("v"), point.x, yTop); while (yTop < yBottom) { yTop += dy; dc.DrawText(wxT("u"), point.x, yTop); } } dc.DrawLine(point.x + m_signWidth, point.y - m_innerCell->GetMaxCenter(), point.x + m_signWidth + m_innerCell->GetFullWidth(scale), point.y - m_innerCell->GetMaxCenter()); UnsetPen(parser); } else { in.x += SCALE_PX(10, scale) + SCALE_PX(1, scale) + 1; SetPen(parser); dc.DrawLine(point.x, point.y, point.x + SCALE_PX(3, scale), point.y - SCALE_PX(1, scale)); dc.DrawLine(point.x + SCALE_PX(3, scale), point.y - SCALE_PX(1, scale), point.x + SCALE_PX(7, scale), point.y + m_height - m_center - SCALE_PX(4, scale)); dc.DrawLine(point.x + SCALE_PX(3, scale) + 1, point.y - SCALE_PX(1, scale), point.x + SCALE_PX(7, scale) + 1, point.y + m_height - m_center - SCALE_PX(4, scale)); dc.DrawLine(point.x + SCALE_PX(7, scale) + 1, point.y + m_height - m_center - SCALE_PX(4, scale), point.x + SCALE_PX(10, scale), point.y - m_center + SCALE_PX(2, scale)); dc.DrawLine(point.x + SCALE_PX(10, scale), point.y - m_center + SCALE_PX(2, scale), point.x + m_width - SCALE_PX(1, scale), point.y - m_center + SCALE_PX(2, scale)); dc.DrawLine(point.x + m_width - SCALE_PX(1, scale), point.y - m_center + SCALE_PX(2, scale), point.x + m_width - SCALE_PX(1, scale), point.y - m_center + SCALE_PX(6, scale)); UnsetPen(parser); } m_innerCell->Draw(parser, in, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString SqrtCell::ToString(bool all) { if (m_isBroken) return wxEmptyString; return wxT("sqrt(") + m_innerCell->ToString(true) + wxT(")") + MathCell::ToString(all); } wxString SqrtCell::ToTeX(bool all) { if (m_isBroken) return wxEmptyString; return wxT("\\sqrt{") + m_innerCell->ToTeX(true) + wxT("}") + MathCell::ToTeX(all); } wxString SqrtCell::ToXML(bool all) { if (m_isBroken) return wxEmptyString; return _T("") + m_innerCell->ToXML(true) + _T("") + MathCell::ToXML(all); } void SqrtCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_innerCell->ContainsRect(rect)) m_innerCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } bool SqrtCell::BreakUp() { if (!m_isBroken) { m_isBroken = true; m_open->m_nextToDraw = m_innerCell; m_innerCell->m_previousToDraw = m_open; m_last->m_nextToDraw = m_close; m_close->m_previousToDraw = m_last; m_close->m_nextToDraw = m_nextToDraw; if (m_nextToDraw != NULL) m_nextToDraw->m_previousToDraw = m_close; m_nextToDraw = m_open; return true; } return false; } void SqrtCell::Unbreak(bool all) { if (m_isBroken) m_innerCell->Unbreak(true); MathCell::Unbreak(all); } wxMaxima-13.04.2/src/SqrtCell.h000644 000765 000024 00000003241 11705765322 016563 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _SQRTCELL_H_ #define _SQRTCELL_H_ #include "MathCell.h" class SqrtCell : public MathCell { public: SqrtCell(); ~SqrtCell(); MathCell* Copy(bool all); void Destroy(); void SetInner(MathCell *inner); void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); bool BreakUp(); void Unbreak(bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!! void SetParent(MathCell *parent, bool all); protected: MathCell *m_innerCell; MathCell *m_open, *m_close, *m_last; int m_signWidth, m_signSize, m_signTop; int m_signType; double m_signFontScale; }; #endif //_SQRTCELL_H_ wxMaxima-13.04.2/src/SubCell.cpp000644 000765 000024 00000011226 11705765322 016720 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SubCell.h" #define SUB_DEC 2 SubCell::SubCell() : MathCell() { m_baseCell = NULL; m_indexCell = NULL; } SubCell::~SubCell() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; if (m_next != NULL) delete m_next; } void SubCell::SetParent(MathCell *parent, bool all) { if (m_baseCell != NULL) m_baseCell->SetParent(parent, true); if (m_indexCell != NULL) m_indexCell->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* SubCell::Copy(bool all) { SubCell* tmp = new SubCell; CopyData(this, tmp); tmp->SetBase(m_baseCell->Copy(true)); tmp->SetIndex(m_indexCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void SubCell::Destroy() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; m_baseCell = NULL; m_indexCell = NULL; m_next = NULL; } void SubCell::SetIndex(MathCell *index) { if (index == NULL) return ; if (m_indexCell != NULL) delete m_indexCell; m_indexCell = index; } void SubCell::SetBase(MathCell *base) { if (base == NULL) return ; if (m_baseCell != NULL) delete m_baseCell; m_baseCell = base; } void SubCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateWidths(parser, fontsize, true); m_indexCell->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - SUB_DEC), true); m_width = m_baseCell->GetFullWidth(scale) + m_indexCell->GetFullWidth(scale) - SCALE_PX(2, parser.GetScale()); MathCell::RecalculateWidths(parser, fontsize, all); } void SubCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { m_baseCell->RecalculateSize(parser, fontsize, true); m_indexCell->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - SUB_DEC), true); m_height = m_baseCell->GetMaxHeight() + m_indexCell->GetMaxHeight() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, parser.GetScale()); m_center = m_baseCell->GetCenter(); MathCell::RecalculateSize(parser, fontsize, all); } void SubCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxPoint bs, in; bs.x = point.x; bs.y = point.y; m_baseCell->Draw(parser, bs, fontsize, true); in.x = point.x + m_baseCell->GetFullWidth(scale) - SCALE_PX(2, scale); in.y = point.y + m_baseCell->GetMaxDrop() + m_indexCell->GetMaxCenter() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_indexCell->Draw(parser, in, MAX(MC_MIN_SIZE, fontsize - SUB_DEC), true); } MathCell::Draw(parser, point, fontsize, all); } wxString SubCell::ToString(bool all) { if (m_altCopyText != wxEmptyString) { return m_altCopyText + MathCell::ToString(all); } wxString s; if (m_baseCell->IsCompound()) s += wxT("(") + m_baseCell->ToString(true) + wxT(")"); else s += m_baseCell->ToString(true); s += wxT("[") + m_indexCell->ToString(true) + wxT("]"); s += MathCell::ToString(all); return s; } wxString SubCell::ToTeX(bool all) { wxString s = wxT("{") + m_baseCell->ToTeX(true) + wxT("}_{") + m_indexCell->ToTeX(true) + wxT("}"); s += MathCell::ToTeX(all); return s; } wxString SubCell::ToXML(bool all) { return _T("") + m_baseCell->ToXML(true) + _T("") + m_indexCell->ToXML(true) + _T("") + MathCell::ToXML(all); } void SubCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_indexCell->ContainsRect(rect)) m_indexCell->SelectRect(rect, first, last); else if (m_baseCell->ContainsRect(rect)) m_baseCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/SubCell.h000644 000765 000024 00000003052 11705765322 016363 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _SUBCELL_H_ #define _SUBCELL_H_ #include "MathCell.h" class SubCell : public MathCell { public: SubCell(); ~SubCell(); MathCell* Copy(bool all); void Destroy(); void SetBase(MathCell *base); void SetIndex(MathCell *index); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!! void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SetParent(MathCell *parent, bool all); protected: MathCell *m_baseCell; MathCell *m_indexCell; }; #endif //_SUBCELL_H_ wxMaxima-13.04.2/src/SubstituteWiz.cpp000644 000765 000024 00000007217 11705765322 020241 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SubstituteWiz.h" SubstituteWiz::SubstituteWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression:")); text_ctrl_1 = new BTextCtrl(this, -1, wxT("%"), wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, _("Old value:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("x"), wxDefaultPosition, wxSize(230, -1)); label_4 = new wxStaticText(this, -1, _("New value:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("y"), wxDefaultPosition, wxSize(230, -1)); checkbox_1 = new wxCheckBox(this, -1, _("&Rational")); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void SubstituteWiz::set_properties() { SetTitle(_("Substitute")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif text_ctrl_1->SetFocus(); } void SubstituteWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(3, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(4, 2, 0, 0); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL | wxEXPAND, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL | wxEXPAND, 5); grid_sizer_2->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_3, 0, wxALL | wxEXPAND, 5); grid_sizer_2->Add(20, 20, 0, 0); grid_sizer_2->Add(checkbox_1, 0, wxALL, 5); grid_sizer_2->AddGrowableCol(1); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); grid_sizer_1->AddGrowableCol(0); Layout(); } wxString SubstituteWiz::GetValue() { wxString val; if (checkbox_1->IsChecked()) val = wxT("ratsubst("); else val = wxT("subst("); val.Append(text_ctrl_3->GetValue()); val.Append(wxT(", ")); val.Append(text_ctrl_2->GetValue()); val.Append(wxT(", ")); val.Append(text_ctrl_1->GetValue()); val.Append(wxT(");")); return val; } wxMaxima-13.04.2/src/SubstituteWiz.h000644 000765 000024 00000003177 11705765322 017707 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _SUBSTITUTEWIZ_H_ #define _SUBSTITUTEWIZ_H_ #include #include #include "BTextCtrl.h" class SubstituteWiz: public wxDialog { public: SubstituteWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); wxString GetValue(); void SetValue(wxString s) { text_ctrl_1->SetValue(s); } private: void set_properties(); void do_layout(); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; wxCheckBox* checkbox_1; }; #endif // SUBSTITUTEWIT_H wxMaxima-13.04.2/src/SubSupCell.cpp000644 000765 000024 00000014021 11705765322 017404 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2007-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SubSupCell.h" #define SUBSUP_DEC 3 SubSupCell::SubSupCell() : MathCell() { m_baseCell = NULL; m_indexCell = NULL; m_exptCell = NULL; } SubSupCell::~SubSupCell() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; if (m_exptCell != NULL) delete m_exptCell; if (m_next != NULL) delete m_next; } void SubSupCell::SetParent(MathCell *parent, bool all) { if (m_baseCell != NULL) m_baseCell->SetParent(parent, true); if (m_indexCell != NULL) m_indexCell->SetParent(parent, true); if (m_exptCell != NULL) m_exptCell->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* SubSupCell::Copy(bool all) { SubSupCell* tmp = new SubSupCell; CopyData(this, tmp); tmp->SetBase(m_baseCell->Copy(true)); tmp->SetIndex(m_indexCell->Copy(true)); tmp->SetExponent(m_exptCell->Copy(true)); if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void SubSupCell::Destroy() { if (m_baseCell != NULL) delete m_baseCell; if (m_indexCell != NULL) delete m_indexCell; if (m_exptCell != NULL) delete m_exptCell; m_baseCell = NULL; m_indexCell = NULL; m_exptCell = NULL; m_next = NULL; } void SubSupCell::SetIndex(MathCell *index) { if (index == NULL) return ; if (m_indexCell != NULL) delete m_indexCell; m_indexCell = index; } void SubSupCell::SetBase(MathCell *base) { if (base == NULL) return ; if (m_baseCell != NULL) delete m_baseCell; m_baseCell = base; } void SubSupCell::SetExponent(MathCell *exp) { if (exp == NULL) return ; if (m_exptCell != NULL) delete m_exptCell; m_exptCell = exp; } void SubSupCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateWidths(parser, fontsize, true); m_indexCell->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - SUBSUP_DEC), true); m_exptCell->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - SUBSUP_DEC), true); m_width = m_baseCell->GetFullWidth(scale) + MAX(m_indexCell->GetFullWidth(scale), m_exptCell->GetFullWidth(scale)) - SCALE_PX(2, parser.GetScale()); MathCell::RecalculateWidths(parser, fontsize, all); } void SubSupCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_baseCell->RecalculateSize(parser, fontsize, true); m_indexCell->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - SUBSUP_DEC), true); m_exptCell->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - SUBSUP_DEC), true); m_height = m_baseCell->GetMaxHeight() + m_indexCell->GetMaxHeight() + m_exptCell->GetMaxHeight() - 2*SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, parser.GetScale()); m_center = m_exptCell->GetMaxHeight() + m_baseCell->GetMaxCenter() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); MathCell::RecalculateSize(parser, fontsize, all); } void SubSupCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { double scale = parser.GetScale(); wxPoint bs, in; bs.x = point.x; bs.y = point.y; m_baseCell->Draw(parser, bs, fontsize, true); in.x = point.x + m_baseCell->GetFullWidth(scale) - SCALE_PX(2, scale); in.y = point.y + m_baseCell->GetMaxDrop() + m_indexCell->GetMaxCenter() - SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_indexCell->Draw(parser, in, MAX(MC_MIN_SIZE, fontsize - SUBSUP_DEC), true); in.y = point.y - m_baseCell->GetMaxCenter() - m_exptCell->GetMaxHeight() + m_exptCell->GetMaxCenter() + SCALE_PX((8 * fontsize) / 10 + MC_EXP_INDENT, scale); m_exptCell->Draw(parser, in, MAX(MC_MIN_SIZE, fontsize - SUBSUP_DEC), true); } MathCell::Draw(parser, point, fontsize, all); } wxString SubSupCell::ToString(bool all) { wxString s; if (m_baseCell->IsCompound()) s += wxT("(") + m_baseCell->ToString(true) + wxT(")"); else s += m_baseCell->ToString(true); s += wxT("[") + m_indexCell->ToString(true) + wxT("]"); s += wxT("^"); if (m_exptCell->IsCompound()) s += wxT("("); s += m_exptCell->ToString(true); if (m_exptCell->IsCompound()) s += wxT(")"); s += MathCell::ToString(all); return s; } wxString SubSupCell::ToTeX(bool all) { wxString s = wxT("{") + m_baseCell->ToTeX(true) + wxT("}_{") + m_indexCell->ToTeX(true) + wxT("}^{") + m_exptCell->ToTeX(true) + wxT("}"); s += MathCell::ToTeX(all); return s; } wxString SubSupCell::ToXML(bool all) { return _T("") + m_baseCell->ToXML(true) + _T("") + m_indexCell->ToXML(true) + _T("") + m_exptCell->ToXML(true) + _T("") + MathCell::ToXML(all); } void SubSupCell::SelectInner(wxRect& rect, MathCell **first, MathCell **last) { *first = NULL; *last = NULL; if (m_indexCell->ContainsRect(rect)) m_indexCell->SelectRect(rect, first, last); else if (m_baseCell->ContainsRect(rect)) m_baseCell->SelectRect(rect, first, last); else if (m_exptCell->ContainsRect(rect)) m_exptCell->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/SubSupCell.h000644 000765 000024 00000003161 11705765322 017054 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2007-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _SUBSUPCELL_H_ #define _SUBSUPCELL_H_ #include "MathCell.h" class SubSupCell : public MathCell { public: SubSupCell(); ~SubSupCell(); MathCell* Copy(bool all); void Destroy(); void SetBase(MathCell *base); void SetIndex(MathCell *index); void SetExponent(MathCell *expt); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SetParent(MathCell *parent, bool all); protected: MathCell *m_baseCell; MathCell *m_exptCell; MathCell *m_indexCell; }; #endif //_SUBSUPCELL_H_ wxMaxima-13.04.2/src/SumCell.cpp000644 000765 000024 00000025516 11705765322 016742 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SumCell.h" #include "TextCell.h" #define SUM_SIGN "\x58" #define PROD_SIGN "\x59" #define SUM_DEC 2 SumCell::SumCell() : MathCell() { m_base = NULL; m_under = NULL; m_over = NULL; m_signSize = 50; m_signWidth = 30; m_signWCenter = 15; m_sumStyle = SM_SUM; } SumCell::~SumCell() { if (m_base != NULL) delete m_base; if (m_under != NULL) delete m_under; if (m_over != NULL) delete m_over; if (m_next != NULL) delete m_next; } void SumCell::SetParent(MathCell *parent, bool all) { if (m_base != NULL) m_base->SetParent(parent, true); if (m_under != NULL) m_under->SetParent(parent, true); if (m_over != NULL) m_over->SetParent(parent, true); MathCell::SetParent(parent, all); } MathCell* SumCell::Copy(bool all) { SumCell *tmp = new SumCell; CopyData(this, tmp); tmp->SetBase(m_base->Copy(true)); tmp->SetUnder(m_under->Copy(true)); tmp->SetOver(m_over->Copy(true)); tmp->m_sumStyle = m_sumStyle; if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void SumCell::Destroy() { if (m_base != NULL) delete m_base; if (m_under != NULL) delete m_under; if (m_over != NULL) delete m_over; m_next = NULL; m_base = NULL; m_under = NULL; m_over = NULL; } void SumCell::SetOver(MathCell* over) { if (over == NULL) return ; if (m_over != NULL) delete m_over; m_over = over; } void SumCell::SetBase(MathCell* base) { if (base == NULL) return ; if (m_base != NULL) delete m_base; m_base = base; } void SumCell::SetUnder(MathCell *under) { if (under == NULL) return ; if (m_under != NULL) delete m_under; m_under = under; } void SumCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_signSize = SCALE_PX(50, scale); m_signWidth = SCALE_PX(30, scale); m_signWCenter = SCALE_PX(15, scale); m_base->RecalculateWidths(parser, fontsize, true); m_under->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - SUM_DEC), true); if (m_over == NULL) m_over = new TextCell; m_over->RecalculateWidths(parser, MAX(MC_MIN_SIZE, fontsize - SUM_DEC), true); if (parser.CheckTeXFonts()) { wxDC& dc = parser.GetDC(); int fontsize1 = (int) ((fontsize * 1.5 * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); dc.GetTextExtent(m_sumStyle == SM_SUM ? wxT(SUM_SIGN) : wxT(PROD_SIGN), &m_signWidth, &m_signSize); m_signWCenter = m_signWidth / 2; m_signTop = (2* m_signSize) / 5; m_signSize = (2 * m_signSize) / 5; } m_signWCenter = MAX(m_signWCenter, m_under->GetFullWidth(scale) / 2); m_signWCenter = MAX(m_signWCenter, m_over->GetFullWidth(scale) / 2); m_width = 2 * m_signWCenter + m_base->GetFullWidth(scale) + SCALE_PX(4, scale); MathCell::RecalculateWidths(parser, fontsize, all); } void SumCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { double scale = parser.GetScale(); m_under->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - SUM_DEC), true); m_over->RecalculateSize(parser, MAX(MC_MIN_SIZE, fontsize - SUM_DEC), true); m_base->RecalculateSize(parser, fontsize, true); m_center = MAX(m_over->GetMaxHeight() + SCALE_PX(4, scale) + m_signSize / 2, m_base->GetMaxCenter()); m_height = m_center + MAX(m_under->GetMaxHeight() + SCALE_PX(4, scale) + m_signSize / 2, m_base->GetMaxDrop()); MathCell::RecalculateSize(parser, fontsize, all); } void SumCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { if (DrawThisCell(parser, point)) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); wxPoint base(point), under(point), over(point), sign(point); under.x += m_signWCenter - m_under->GetFullWidth(scale) / 2; under.y = point.y + m_signSize / 2 + m_under->GetMaxCenter() + SCALE_PX(2, scale); m_under->Draw(parser, under, MAX(MC_MIN_SIZE, fontsize - SUM_DEC), true); over.x += m_signWCenter - m_over->GetFullWidth(scale) / 2; over.y = point.y - m_signSize / 2 - m_over->GetMaxDrop() - SCALE_PX(2, scale); m_over->Draw(parser, over, MAX(MC_MIN_SIZE, fontsize - SUM_DEC), true); if (parser.CheckTeXFonts()) { SetForeground(parser); int fontsize1 = (int) ((fontsize * 1.5 * scale + 0.5)); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, false, false, false, parser.GetTeXCMEX())); dc.DrawText(m_sumStyle == SM_SUM ? wxT(SUM_SIGN) : wxT(PROD_SIGN), sign.x + m_signWCenter - m_signWidth / 2, sign.y - m_signTop); } else { SetPen(parser); if (m_sumStyle == SM_SUM) { //DRAW SUM SIGN // Upper part dc.DrawLine(point.x + m_signWCenter + m_signWidth / 6, point.y, point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2 + 1); dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2, point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2); dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2 + 1, point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2 + 1); dc.DrawLine(point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2, point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2 + SCALE_PX(5, scale)); // Lower part dc.DrawLine(point.x + m_signWCenter + m_signWidth / 6, point.y, point.x + m_signWCenter - m_signWidth / 2, point.y + m_signSize / 2 - 1); dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y + m_signSize / 2, point.x + m_signWCenter + m_signWidth / 2, point.y + m_signSize / 2); dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y + m_signSize / 2 - 1, point.x + m_signWCenter + m_signWidth / 2, point.y + m_signSize / 2 - 1); dc.DrawLine(point.x + m_signWCenter + m_signWidth / 2, point.y + m_signSize / 2, point.x + m_signWCenter + m_signWidth / 2, point.y + m_signSize / 2 - SCALE_PX(5, scale)); } else { // DRAW PRODUCT SIGN // Vertical lines dc.DrawLine(point.x + m_signWCenter + m_signWidth / 6, point.y + m_signSize / 2, point.x + m_signWCenter + m_signWidth / 6, point.y - m_signSize / 2 + SCALE_PX(4, scale)); dc.DrawLine(point.x + m_signWCenter - m_signWidth / 6, point.y + m_signSize / 2, point.x + m_signWCenter - m_signWidth / 6, point.y - m_signSize / 2 + SCALE_PX(4, scale)); // Horizonral line (double) dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2, point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2); dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2 + 1, point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2 + 1); // Ticks on horizontal line dc.DrawLine(point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2, point.x + m_signWCenter - m_signWidth / 2, point.y - m_signSize / 2 + SCALE_PX(5, scale)); dc.DrawLine(point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2, point.x + m_signWCenter + m_signWidth / 2, point.y - m_signSize / 2 + SCALE_PX(5, scale)); } UnsetPen(parser); } base.x += (2 * m_signWCenter + SCALE_PX(4, scale)); m_base->Draw(parser, base, fontsize, true); } MathCell::Draw(parser, point, fontsize, all); } wxString SumCell::ToString(bool all) { wxString s; if (m_sumStyle == SM_SUM) s = wxT("sum("); else s = wxT("product("); s += m_base->ToString(true); MathCell* tmp = m_under; wxString var = tmp->ToString(false); wxString from; tmp = tmp->m_next; if (tmp != NULL) { tmp = tmp->m_next; if (tmp != NULL) from = tmp->ToString(true); } wxString to = m_over->ToString(true); s += wxT(",") + var + wxT(",") + from; if (to != wxEmptyString) s += wxT(",") + to + wxT(")"); else s = wxT("l") + s + wxT(")"), s += MathCell::ToString(all); return s; } wxString SumCell::ToTeX(bool all) { wxString s; if (m_sumStyle == SM_SUM) s = wxT("\\sum"); else s = wxT("\\prod"); s += wxT("_{") + m_under->ToTeX(true) + wxT("}"); wxString to = m_over->ToTeX(true); if (to.Length()) s += wxT("^{") + to + wxT("}"); s += m_base->ToTeX(true); s += MathCell::ToTeX(all); return s; } wxString SumCell::ToXML(bool all) { wxString type(wxT("sum")); if (m_sumStyle == SM_PROD) type = wxT("prod"); else if (m_over->ToString(false) == wxEmptyString) type = wxT("lsum"); return _T("") + m_under->ToXML(true) + _T("") + m_over->ToXML(true) + _T("") + m_base->ToXML(true) + _T("") + MathCell::ToXML(all); } void SumCell::SelectInner(wxRect& rect, MathCell** first, MathCell** last) { *first = NULL; *last = NULL; if (m_over->ContainsRect(rect)) m_over->SelectRect(rect, first, last); else if (m_under->ContainsRect(rect)) m_under->SelectRect(rect, first, last); else if (m_base->ContainsRect(rect)) m_base->SelectRect(rect, first, last); if (*first == NULL || *last == NULL) { *first = this; *last = this; } } wxMaxima-13.04.2/src/SumCell.h000644 000765 000024 00000003422 11705765322 016377 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _SUMCELL_H_ #define _SUMCELL_H_ #include "MathCell.h" enum { SM_SUM, SM_PROD }; class SumCell : public MathCell { public: SumCell(); ~SumCell(); void Destroy(); MathCell* Copy(bool all); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void SetBase(MathCell* base); void SetUnder(MathCell* under); void SetOver(MathCell* name); void SetSumStyle(int style) { m_sumStyle = style; } wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); //new!! void SelectInner(wxRect& rect, MathCell** first, MathCell** last); void SetParent(MathCell *parent, bool all); protected: MathCell *m_base; MathCell *m_under; MathCell *m_over; int m_signSize; int m_signWidth; int m_sumStyle; int m_signWCenter; int m_signTop; }; #endif //_UNDERCELL_H_ wxMaxima-13.04.2/src/SumWiz.cpp000644 000765 000024 00000010720 11705765322 016623 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// enum { use_nusum_id }; #include "SumWiz.h" SumWiz::SumWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxDialog(parent, id, title, pos, size, wxDEFAULT_DIALOG_STYLE) { label_2 = new wxStaticText(this, -1, _("Expression:")); text_ctrl_1 = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); label_3 = new wxStaticText(this, -1, _("Variable:")); text_ctrl_2 = new BTextCtrl(this, -1, wxT("k"), wxDefaultPosition, wxSize(110, -1)); label_4 = new wxStaticText(this, -1, _("From:")); text_ctrl_3 = new BTextCtrl(this, -1, wxT("1"), wxDefaultPosition, wxSize(110, -1)); label_5 = new wxStaticText(this, -1, _("To:")); text_ctrl_4 = new BTextCtrl(this, -1, wxT("inf"), wxDefaultPosition, wxSize(110, -1)); checkbox_1 = new wxCheckBox(this, -1, _("&Simplify")); checkbox_2 = new wxCheckBox(this, use_nusum_id, _("&Nusum")); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif button_1->SetDefault(); set_properties(); do_layout(); } void SumWiz::set_properties() { SetTitle(_("Sum")); checkbox_1->SetValue(true); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif checkbox_1->SetToolTip(_("Simplify the sum")); checkbox_2->SetToolTip(_("Use Gosper algorithm")); text_ctrl_1->SetFocus(); } void SumWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxBoxSizer* sizer_2 = new wxBoxSizer(wxHORIZONTAL); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(6, 2, 0, 0); grid_sizer_2->Add(label_2, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_1, 0, wxALL, 5); grid_sizer_2->Add(label_3, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_2, 0, wxALL, 5); grid_sizer_2->Add(label_4, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_3, 0, wxALL, 5); grid_sizer_2->Add(label_5, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(text_ctrl_4, 0, wxALL, 5); sizer_2->Add(checkbox_1, 0, wxALL, 5); sizer_2->Add(checkbox_2, 0, wxALL, 5); grid_sizer_2->Add(20, 20, 0, 0); grid_sizer_2->Add(sizer_2, 1, wxALIGN_LEFT, 0); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString SumWiz::GetValue() { wxString s; if (checkbox_2->IsChecked()) s = wxT("nusum("); else s = wxT("sum("); s += text_ctrl_1->GetValue(); s += wxT(", "); s += text_ctrl_2->GetValue(); s += wxT(", "); s += text_ctrl_3->GetValue(); s += wxT(", "); s += text_ctrl_4->GetValue(); s += wxT(")"); if (checkbox_1->IsChecked() && !checkbox_2->IsChecked()) s += wxT(", simpsum;"); else s += wxT(";"); return s; } void SumWiz::OnCheckbox(wxCommandEvent& event) { checkbox_1->Enable(!checkbox_2->GetValue()); } BEGIN_EVENT_TABLE(SumWiz, wxDialog) EVT_CHECKBOX(use_nusum_id, SumWiz::OnCheckbox) END_EVENT_TABLE() wxMaxima-13.04.2/src/SumWiz.h000644 000765 000024 00000003371 11705765322 016274 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef SUMWIZ_H #define SUMWIZ_H #include #include #include "BTextCtrl.h" class SumWiz: public wxDialog { public: SumWiz(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); void SetValue(wxString s) { text_ctrl_1->SetValue(s); text_ctrl_1->SetSelection(-1, -1); } wxString GetValue(); private: void set_properties(); void do_layout(); void OnCheckbox(wxCommandEvent& event); protected: wxStaticText* label_2; BTextCtrl* text_ctrl_1; wxStaticText* label_3; BTextCtrl* text_ctrl_2; wxStaticText* label_4; BTextCtrl* text_ctrl_3; wxStaticText* label_5; BTextCtrl* text_ctrl_4; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; wxCheckBox* checkbox_1; wxCheckBox* checkbox_2; DECLARE_EVENT_TABLE() }; #endif // SUMWIZ_H wxMaxima-13.04.2/src/SystemWiz.cpp000644 000765 000024 00000006340 11705765322 017346 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "SystemWiz.h" SysWiz::SysWiz(wxWindow* parent, int id, const wxString& title, int numEq, const wxPoint& pos, const wxSize& sz, long style): wxDialog(parent, id, title, pos, sz, wxDEFAULT_DIALOG_STYLE) { m_size = numEq; for (int i = 0; i < m_size; i++) { m_inputs.push_back(new BTextCtrl(this, -1, wxT("0"), wxDefaultPosition, wxSize(230, -1))); } variables = new BTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, wxSize(230, -1)); static_line_1 = new wxStaticLine(this, -1); #if defined __WXMSW__ button_1 = new wxButton(this, wxID_OK, _("OK")); button_2 = new wxButton(this, wxID_CANCEL, _("Cancel")); #else button_1 = new wxButton(this, wxID_CANCEL, _("Cancel")); button_2 = new wxButton(this, wxID_OK, _("OK")); #endif set_properties(); do_layout(); } void SysWiz::set_properties() { variables->SetToolTip(_("Enter comma separated list of variables.")); #if defined __WXMSW__ button_1->SetDefault(); #else button_2->SetDefault(); #endif m_inputs[0]->SetFocus(); m_inputs[0]->SetSelection(-1, -1); } void SysWiz::do_layout() { wxFlexGridSizer* grid_sizer_1 = new wxFlexGridSizer(4, 1, 0, 0); wxFlexGridSizer* grid_sizer_2 = new wxFlexGridSizer(m_size + 1, 2, 0, 0); wxBoxSizer* sizer_1 = new wxBoxSizer(wxHORIZONTAL); wxStaticText* text; for (int i = 1; i <= m_size; i++) { text = new wxStaticText(this, -1, wxString::Format(_("Equation %d:"), i)); grid_sizer_2->Add(text, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxALL, 5); grid_sizer_2->Add(m_inputs[i - 1], 0, wxALL, 5); } text = new wxStaticText(this, -1, _("Variables:")); grid_sizer_2->Add(text, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, 5); grid_sizer_2->Add(variables, 0, wxALL, 5); grid_sizer_1->Add(grid_sizer_2, 1, wxEXPAND, 0); grid_sizer_1->Add(static_line_1, 0, wxEXPAND | wxLEFT | wxRIGHT, 2); sizer_1->Add(button_1, 0, wxALL, 5); sizer_1->Add(button_2, 0, wxALL, 5); grid_sizer_1->Add(sizer_1, 1, wxALIGN_RIGHT, 0); SetAutoLayout(true); SetSizer(grid_sizer_1); grid_sizer_1->Fit(this); grid_sizer_1->SetSizeHints(this); Layout(); } wxString SysWiz::GetValue() { wxString cmd = wxT("(["); for (int i = 0; i < m_size; i++) { cmd += m_inputs[i]->GetValue(); if (i < m_size - 1) cmd += wxT(", "); } cmd += wxT("], [") + variables->GetValue() + wxT("]);"); return cmd; } wxMaxima-13.04.2/src/SystemWiz.h000644 000765 000024 00000002662 11705765322 017016 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef SYSWIZ_H #define SYSWIZ_H_H #include #include #include "BTextCtrl.h" #include using namespace std; class SysWiz: public wxDialog { public: SysWiz(wxWindow* parent, int id, const wxString& title, int eqn, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE); wxString GetValue(); private: void set_properties(); void do_layout(); int m_size; vector m_inputs; BTextCtrl* variables; wxStaticLine* static_line_1; wxButton* button_1; wxButton* button_2; }; #endif // SYSWIZ_H wxMaxima-13.04.2/src/TextCell.cpp000644 000765 000024 00000061007 11705765322 017115 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "TextCell.h" #include "Setup.h" TextCell::TextCell() : MathCell() { m_text = wxEmptyString; m_fontSize = -1; m_highlight = false; m_altJs = m_alt = false; } TextCell::TextCell(wxString text) : MathCell() { m_text = text; m_text.Replace(wxT("\n"), wxEmptyString); m_highlight = false; m_altJs = m_alt = false; } TextCell::~TextCell() { if (m_next != NULL) delete m_next; } void TextCell::SetValue(wxString text) { m_text = text; m_width = -1; m_text.Replace(wxT("\n"), wxEmptyString); m_alt = m_altJs = false; } MathCell* TextCell::Copy(bool all) { TextCell *tmp = new TextCell(wxEmptyString); CopyData(this, tmp); tmp->m_text = wxString(m_text); tmp->m_forceBreakLine = m_forceBreakLine; tmp->m_bigSkip = m_bigSkip; tmp->m_isHidden = m_isHidden; tmp->m_textStyle = m_textStyle; tmp->m_highlight = m_highlight; if (all && m_next != NULL) tmp->AppendCell(m_next->Copy(all)); return tmp; } void TextCell::Destroy() { m_next = NULL; } void TextCell::RecalculateWidths(CellParser& parser, int fontsize, bool all) { SetAltText(parser); if (m_height == -1 || m_width == -1 || fontsize != m_fontSize || parser.ForceUpdate()) { m_fontSize = fontsize; wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); SetFont(parser, fontsize); /// Labels and prompts are fixed width - adjust font size so that /// they fit in if ((m_textStyle == TS_LABEL) || (m_textStyle == TS_MAIN_PROMPT)) { // Check for output annotations (/R/ for CRE and /T/ for Taylor expressions) if (m_text.Right(2) != wxT("/ ")) dc.GetTextExtent(wxT("(\%oXXX)"), &m_width, &m_height); else dc.GetTextExtent(wxT("(\%oXXX)/R/"), &m_width, &m_height); m_fontSizeLabel = m_fontSize; dc.GetTextExtent(m_text, &m_labelWidth, &m_labelHeight); while (m_labelWidth >= m_width) { int fontsize1 = (int) (((double) --m_fontSizeLabel) * scale + 0.5); dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, parser.IsItalic(m_textStyle), parser.IsBold(m_textStyle), false, //parser.IsUnderlined(m_textStyle), parser.GetFontName(m_textStyle), parser.GetFontEncoding())); dc.GetTextExtent(m_text, &m_labelWidth, &m_labelHeight); } } /// Check if we are using jsMath and have jsMath character else if (m_altJs && parser.CheckTeXFonts()) { dc.GetTextExtent(m_altJsText, &m_width, &m_height); if (m_texFontname == wxT("jsMath-cmsy10")) m_height = m_height / 2; } /// We are using a special symbol else if (m_alt) { dc.GetTextExtent(m_altText, &m_width, &m_height); } /// Empty string has height of X else if (m_text == wxEmptyString) { dc.GetTextExtent(wxT("X"), &m_width, &m_height); m_width = 0; } /// This is the default. else dc.GetTextExtent(m_text, &m_width, &m_height); m_width = m_width + 2 * SCALE_PX(MC_TEXT_PADDING, scale); m_height = m_height + 2 * SCALE_PX(MC_TEXT_PADDING, scale); /// Hidden cells (multiplication * is not displayed) if (m_isHidden) { m_height = 0; m_width = m_width / 4; } m_realCenter = m_center = m_height / 2; } MathCell::RecalculateWidths(parser, fontsize, all); } void TextCell::RecalculateSize(CellParser& parser, int fontsize, bool all) { MathCell::RecalculateSize(parser, fontsize, all); } void TextCell::Draw(CellParser& parser, wxPoint point, int fontsize, bool all) { double scale = parser.GetScale(); wxDC& dc = parser.GetDC(); if (m_width == -1 || m_height == -1) RecalculateWidths(parser, fontsize, false); if (DrawThisCell(parser, point) && !m_isHidden) { SetFont(parser, fontsize); SetForeground(parser); /// Labels and prompts have special fontsize if ((m_textStyle == TS_LABEL) || (m_textStyle == TS_MAIN_PROMPT)) { SetFont(parser, m_fontSizeLabel); dc.DrawText(m_text, point.x + SCALE_PX(MC_TEXT_PADDING, scale) + (m_width - m_labelWidth), point.y - m_realCenter + (m_height - m_labelHeight)/2); } /// Check if we are using jsMath and have jsMath character else if (m_altJs && parser.CheckTeXFonts()) dc.DrawText(m_altJsText, point.x + SCALE_PX(MC_TEXT_PADDING, scale), point.y - m_realCenter + SCALE_PX(MC_TEXT_PADDING, scale)); /// We are using a special symbol else if (m_alt) dc.DrawText(m_altText, point.x + SCALE_PX(MC_TEXT_PADDING, scale), point.y - m_realCenter + SCALE_PX(MC_TEXT_PADDING, scale)); /// Change asterisk else if (parser.GetChangeAsterisk() && m_text == wxT("*")) dc.DrawText(wxT("\xB7"), point.x + SCALE_PX(MC_TEXT_PADDING, scale), point.y - m_realCenter + SCALE_PX(MC_TEXT_PADDING, scale)); /// This is the default. else dc.DrawText(m_text, point.x + SCALE_PX(MC_TEXT_PADDING, scale), point.y - m_realCenter + SCALE_PX(MC_TEXT_PADDING, scale)); } MathCell::Draw(parser, point, fontsize, all); } void TextCell::SetFont(CellParser& parser, int fontsize) { wxDC& dc = parser.GetDC(); double scale = parser.GetScale(); int fontsize1 = (int) (((double)fontsize) * scale + 0.5); if ((m_textStyle == TS_TITLE) || (m_textStyle == TS_SECTION) || (m_textStyle == TS_SUBSECTION)) { fontsize1 = parser.GetFontSize(m_textStyle); fontsize1 = (int) (((double)fontsize1) * scale + 0.5); } fontsize1 = MAX(fontsize1, 1); // Use jsMath if (m_altJs && parser.CheckTeXFonts()) { dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, parser.IsBold(m_textStyle), parser.IsUnderlined(m_textStyle), m_texFontname)); } // We have an alternative symbol else if (m_alt) dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, wxFONTSTYLE_NORMAL, parser.IsBold(m_textStyle), false, m_fontname != wxEmptyString ? m_fontname : parser.GetFontName(m_textStyle), parser.GetFontEncoding())); // Titles, sections, subsections - don't underline else if ((m_textStyle == TS_TITLE) || (m_textStyle == TS_SECTION) || (m_textStyle == TS_SUBSECTION)) dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, parser.IsItalic(m_textStyle), parser.IsBold(m_textStyle), false, parser.GetFontName(m_textStyle), parser.GetFontEncoding())); // Default else dc.SetFont(wxFont(fontsize1, wxFONTFAMILY_MODERN, parser.IsItalic(m_textStyle), parser.IsBold(m_textStyle), parser.IsUnderlined(m_textStyle), parser.GetFontName(m_textStyle), parser.GetFontEncoding())); } bool TextCell::IsOperator() { if (wxString(wxT("+*/-")).Find(m_text) >= 0) return true; return false; } wxString TextCell::ToString(bool all) { wxString text; if (m_altCopyText != wxEmptyString) text = m_altCopyText; else text = m_text; if (m_textStyle == TS_STRING) text = wxT("\"") + text + wxT("\""); return text + MathCell::ToString(all); } wxString TextCell::ToTeX(bool all) { wxString text; if (m_isHidden) text = wxT("\\,"); else if (m_textStyle == TS_GREEK_CONSTANT) { if (m_text[0] != '%') text = wxT("%") + m_text; else text = m_text; if (text == wxT("%Alpha")) text = wxT("A"); else if (text == wxT("%Beta")) text = wxT("B"); else if (text == wxT("%Epsilon")) text = wxT("E"); else if (text == wxT("%Zeta")) text = wxT("Z"); else if (text == wxT("%Eta")) text = wxT("H"); else if (text == wxT("%Iota")) text = wxT("I"); else if (text == wxT("%Kappa")) text = wxT("K"); else if (text == wxT("%Mu")) text = wxT("M"); else if (text == wxT("%Nu")) text = wxT("N"); else if (text == wxT("%Omicron")) text = wxT("O"); else if (text == wxT("%Rho")) text = wxT("P"); else if (text == wxT("%Tau")) text = wxT("T"); else if (text == wxT("%Chi")) text = wxT("X"); else text = wxT("\\") + text.Mid(1); } else if (m_textStyle == TS_SPECIAL_CONSTANT) { if (m_text == wxT("inf")) text = wxT("\\infty "); else if (m_text == wxT("%e")) text = wxT("e"); else if (m_text == wxT("%i")) text = wxT("i"); else if (m_text == wxT("%pi")) text = wxT("\\pi "); else text = m_text; } else if (m_type == MC_TYPE_LABEL) { text = wxT("\\leqno{\\tt ") + m_text + wxT("}"); text.Replace(wxT("%"), wxT("\\%")); } else { if (m_textStyle == TS_FUNCTION) text = wxT("\\mathrm{") + m_text + wxT("}"); else text = m_text; text.Replace(wxT("^"), wxT("\\^")); text.Replace(wxT("_"), wxT("\\_")); text.Replace(wxT("%"), wxT("\\%")); } return text + MathCell::ToTeX(all); } wxString TextCell::ToXML(bool all) { wxString tag = ( m_isHidden ) ? _T("h") : ( m_textStyle == TS_GREEK_CONSTANT ) ? _T("g") : ( m_textStyle == TS_SPECIAL_CONSTANT ) ? _T("s") : ( m_textStyle == TS_VARIABLE ) ? _T("v") : ( m_textStyle == TS_FUNCTION ) ? _T("fnm") : ( m_textStyle == TS_NUMBER ) ? _T("n") : ( m_textStyle == TS_STRING ) ? _T("st") : ( m_textStyle == TS_LABEL) ? _T("lbl") : _T("t"); wxString xmlstring = m_text; // convert it, so that the XML parser doesn't fail xmlstring.Replace(wxT("&"), wxT("&")); xmlstring.Replace(wxT("<"), wxT("<")); xmlstring.Replace(wxT(">"), wxT(">")); xmlstring.Replace(wxT("'"), wxT("'")); xmlstring.Replace(wxT("\""), wxT(""")); return _T("<") + tag + _T(">") + xmlstring + _T("") + MathCell::ToXML(all); } wxString TextCell::GetDiffPart() { return wxT(",") + m_text + wxT(",1"); } bool TextCell::IsShortNum() { if (m_next != NULL) return false; else if (m_text.Length() < 4) return true; return false; } void TextCell::SetAltText(CellParser& parser) { m_altJs = m_alt = false; if (m_textStyle == TS_DEFAULT) return ; /// Greek characters are defined in jsMath, Windows and Unicode if (m_textStyle == TS_GREEK_CONSTANT) { m_altJs = true; m_altJsText = GetGreekStringTeX(); m_texFontname = wxT("jsMath-cmmi10"); #if wxUSE_UNICODE m_alt = true; m_altText = GetGreekStringUnicode(); #elif defined __WXMSW__ m_alt = true; m_altText = GetGreekStringSymbol(); m_fontname = wxT("Symbol"); #endif } /// Check for other symbols else { m_altJsText = GetSymbolTeX(); if (m_altJsText != wxEmptyString) { if (m_text == wxT("+") || m_text == wxT("=")) m_texFontname = wxT("jsMath-cmr10"); else if (m_text == wxT("%pi")) m_texFontname = wxT("jsMath-cmmi10"); else m_texFontname = wxT("jsMath-cmsy10"); m_altJs = true; } #if wxUSE_UNICODE m_altText = GetSymbolUnicode(parser.CheckKeepPercent()); if (m_altText != wxEmptyString) m_alt = true; #elif defined __WXMSW__ m_altText = GetSymbolSymbol(parser.CheckKeepPercent()); if (m_altText != wxEmptyString) { m_alt = true; m_fontname = wxT("Symbol"); } #endif } } #if wxUSE_UNICODE wxString TextCell::GetGreekStringUnicode() { wxString txt(m_text); if (txt == wxT("gamma")) return wxString(L"\x0393"); else if (txt == wxT("psi")) return wxString(L"\x03A8"); if (txt[0] != '%') txt = wxT("%") + txt; if (txt == wxT("%alpha")) return wxString(L"\x03B1"); else if (txt == wxT("%beta")) return wxString(L"\x03B2"); else if (txt == wxT("%gamma")) return wxString(L"\x03B3"); else if (txt == wxT("%delta")) return wxString(L"\x03B4"); else if (txt == wxT("%epsilon")) return wxString(L"\x03B5"); else if (txt == wxT("%zeta")) return wxString(L"\x03B6"); else if (txt == wxT("%eta")) return wxString(L"\x03B7"); else if (txt == wxT("%theta")) return wxString(L"\x03B8"); else if (txt == wxT("%iota")) return wxString(L"\x03B9"); else if (txt == wxT("%kappa")) return wxString(L"\x03BA"); else if (txt == wxT("%lambda")) return wxString(L"\x03BB"); else if (txt == wxT("%mu")) return wxString(L"\x03BC"); else if (txt == wxT("%nu")) return wxString(L"\x03BD"); else if (txt == wxT("%xi")) return wxString(L"\x03BE"); else if (txt == wxT("%omicron")) return wxString(L"\x03BF"); else if (txt == wxT("%pi")) return wxString(L"\x03C0"); else if (txt == wxT("%rho")) return wxString(L"\x03C1"); else if (txt == wxT("%sigma")) return wxString(L"\x03C3"); else if (txt == wxT("%tau")) return wxString(L"\x03C4"); else if (txt == wxT("%upsilon")) return wxString(L"\x03C5"); else if (txt == wxT("%phi")) return wxString(L"\x03C6"); else if (txt == wxT("%chi")) return wxString(L"\x03C7"); else if (txt == wxT("%psi")) return wxString(L"\x03C8"); else if (txt == wxT("%omega")) return wxString(L"\x03C9"); else if (txt == wxT("%Alpha")) return wxString(L"\x0391"); else if (txt == wxT("%Beta")) return wxString(L"\x0392"); else if (txt == wxT("%Gamma")) return wxString(L"\x0393"); else if (txt == wxT("%Delta")) return wxString(L"\x0394"); else if (txt == wxT("%Epsilon")) return wxString(L"\x0395"); else if (txt == wxT("%Zeta")) return wxString(L"\x0396"); else if (txt == wxT("%Eta")) return wxString(L"\x0397"); else if (txt == wxT("%Theta")) return wxString(L"\x0398"); else if (txt == wxT("%Iota")) return wxString(L"\x0399"); else if (txt == wxT("%Kappa")) return wxString(L"\x039A"); else if (txt == wxT("%Lambda")) return wxString(L"\x039B"); else if (txt == wxT("%Mu")) return wxString(L"\x039C"); else if (txt == wxT("%Nu")) return wxString(L"\x039D"); else if (txt == wxT("%Xi")) return wxString(L"\x039E"); else if (txt == wxT("%Omicron")) return wxString(L"\x039F"); else if (txt == wxT("%Pi")) return wxString(L"\x03A0"); else if (txt == wxT("%Rho")) return wxString(L"\x03A1"); else if (txt == wxT("%Sigma")) return wxString(L"\x03A3"); else if (txt == wxT("%Tau")) return wxString(L"\x03A4"); else if (txt == wxT("%Upsilon")) return wxString(L"\x03A5"); else if (txt == wxT("%Phi")) return wxString(L"\x03A6"); else if (txt == wxT("%Chi")) return wxString(L"\x03A7"); else if (txt == wxT("%Psi")) return wxString(L"\x03A8"); else if (txt == wxT("%Omega")) return wxString(L"\x03A9"); return wxEmptyString; } wxString TextCell::GetSymbolUnicode(bool keepPercent) { if (m_text == wxT("+")) return wxT("+"); else if (m_text == wxT("=")) return wxT("="); else if (m_text == wxT("inf")) return wxString(L"\x221E"); else if (m_text == wxT("%pi")) return wxString(L"\x03C0"); else if (m_text == wxT("<=")) return wxString(L"\x2264"); else if (m_text == wxT(">=")) return wxString(L"\x2265"); else if (m_text == wxT(" and ")) return wxString(L" \x22C0 "); else if (m_text == wxT(" or ")) return wxString(L" \x22C1 "); else if (m_text == wxT(" xor ")) return wxString(L" \x22BB "); else if (m_text == wxT(" nand ")) return wxString(L" \x22BC "); else if (m_text == wxT(" nor ")) return wxString(L" \x22BD "); else if (m_text == wxT(" implies ")) return wxString(L" \x21D2 "); else if (m_text == wxT(" equiv ")) return wxString(L" \x21D4 "); else if (m_text == wxT("not")) return wxString(L"\x00AC"); else if (m_text == wxT("->")) return wxString(L"\x2192"); /* else if (m_textStyle == TS_SPECIAL_CONSTANT && m_text == wxT("d")) return wxString(L"\x2202"); */ if (!keepPercent) { if (m_text == wxT("%e")) return wxString(L"e"); else if (m_text == wxT("%i")) return wxString(L"i"); } return wxEmptyString; } #elif defined __WXMSW__ wxString TextCell::GetGreekStringSymbol() { if (m_text == wxT("gamma")) return wxT("\x47"); else if (m_text == wxT("zeta")) return wxT("\x7A"); else if (m_text == wxT("psi")) return wxT("\x59"); wxString txt(m_text); if (txt[0] != '%') txt = wxT("%") + txt; if (txt == wxT("%alpha")) return wxT("\x61"); else if (txt == wxT("%beta")) return wxT("\x62"); else if (txt == wxT("%gamma")) return wxT("\x67"); else if (txt == wxT("%delta")) return wxT("\x64"); else if (txt == wxT("%epsilon")) return wxT("\x65"); else if (txt == wxT("%zeta")) return wxT("\x7A"); else if (txt == wxT("%eta")) return wxT("\x68"); else if (txt == wxT("%theta")) return wxT("\x71"); else if (txt == wxT("%iota")) return wxT("\x69"); else if (txt == wxT("%kappa")) return wxT("\x6B"); else if (txt == wxT("%lambda")) return wxT("\x6C"); else if (txt == wxT("%mu")) return wxT("\x6D"); else if (txt == wxT("%nu")) return wxT("\x6E"); else if (txt == wxT("%xi")) return wxT("\x78"); else if (txt == wxT("%omicron")) return wxT("\x6F"); else if (txt == wxT("%pi")) return wxT("\x70"); else if (txt == wxT("%rho")) return wxT("\x72"); else if (txt == wxT("%sigma")) return wxT("\x73"); else if (txt == wxT("%tau")) return wxT("\x74"); else if (txt == wxT("%upsilon")) return wxT("\x75"); else if (txt == wxT("%phi")) return wxT("\x66"); else if (txt == wxT("%chi")) return wxT("\x63"); else if (txt == wxT("%psi")) return wxT("\x79"); else if (txt == wxT("%omega")) return wxT("\x77"); else if (txt == wxT("%Alpha")) return wxT("\x41"); else if (txt == wxT("%Beta")) return wxT("\x42"); else if (txt == wxT("%Gamma")) return wxT("\x47"); else if (txt == wxT("%Delta")) return wxT("\x44"); else if (txt == wxT("%Epsilon")) return wxT("\x45"); else if (txt == wxT("%Zeta")) return wxT("\x5A"); else if (txt == wxT("%Eta")) return wxT("\x48"); else if (txt == wxT("%Theta")) return wxT("\x51"); else if (txt == wxT("%Iota")) return wxT("\x49"); else if (txt == wxT("%Kappa")) return wxT("\x4B"); else if (txt == wxT("%Lambda")) return wxT("\x4C"); else if (txt == wxT("%Mu")) return wxT("\x4D"); else if (txt == wxT("%Nu")) return wxT("\x4E"); else if (txt == wxT("%Xi")) return wxT("\x58"); else if (txt == wxT("%Omicron")) return wxT("\x4F"); else if (txt == wxT("%Pi")) return wxT("\x50"); else if (txt == wxT("%Rho")) return wxT("\x52"); else if (txt == wxT("%Sigma")) return wxT("\x53"); else if (txt == wxT("%Tau")) return wxT("\x54"); else if (txt == wxT("%Upsilon")) return wxT("\x55"); else if (txt == wxT("%Phi")) return wxT("\x46"); else if (txt == wxT("%Chi")) return wxT("\x43"); else if (txt == wxT("%Psi")) return wxT("\x59"); else if (txt == wxT("%Omega")) return wxT("\x57"); return wxEmptyString; } wxString TextCell::GetSymbolSymbol(bool keepPercent) { if (m_text == wxT("inf")) return wxT("\xA5"); else if (m_text == wxT("%pi")) return wxT("\x70"); else if (m_text == wxT("->")) return wxT("\xAE"); else if (m_text == wxT(">=")) return wxT("\xB3"); else if (m_text == wxT("<=")) return wxT("\xA3"); else if (m_text == wxT(" and ")) return wxT("\xD9"); else if (m_text == wxT(" or ")) return wxT("\xDA"); else if (m_text == wxT("not")) return wxT("\xD8"); else if (m_text == wxT(" nand ")) return wxT("\xAD"); else if (m_text == wxT(" nor ")) return wxT("\xAF"); else if (m_text == wxT(" implies ")) return wxT("\xDE"); else if (m_text == wxT(" equiv ")) return wxT("\xDB"); else if (m_text == wxT(" xor ")) return wxT("\xC5"); if (!keepPercent) { if (m_text == wxT("%e")) return wxString(L"e"); else if (m_text == wxT("%i")) return wxString(L"i"); } return wxEmptyString; } #endif wxString TextCell::GetGreekStringTeX() { if (m_text == wxT("gamma")) return wxT("\xC0"); else if (m_text == wxT("zeta")) return wxT("\xB0"); else if (m_text == wxT("psi")) return wxT("\xC9"); wxString txt(m_text); if (txt[0] != '%') txt = wxT("%") + txt; if (txt == wxT("%alpha")) return wxT("\xCB"); else if (txt == wxT("%beta")) return wxT("\xCC"); else if (txt == wxT("%gamma")) return wxT("\xCD"); else if (txt == wxT("%delta")) return wxT("\xCE"); else if (txt == wxT("%epsilon")) return wxT("\xCF"); else if (txt == wxT("%zeta")) return wxT("\xB0"); else if (txt == wxT("%eta")) return wxT("\xD1"); else if (txt == wxT("%theta")) return wxT("\xD2"); else if (txt == wxT("%iota")) return wxT("\xD3"); else if (txt == wxT("%kappa")) return wxT("\xD4"); else if (txt == wxT("%lambda")) return wxT("\xD5"); else if (txt == wxT("%mu")) return wxT("\xD6"); else if (txt == wxT("%nu")) return wxT("\xB7"); else if (txt == wxT("%xi")) return wxT("\xD8"); else if (txt == wxT("%omicron")) return wxT("o"); else if (txt == wxT("%pi")) return wxT("\xD9"); else if (txt == wxT("%rho")) return wxT("\xDA"); else if (txt == wxT("%sigma")) return wxT("\xDB"); else if (txt == wxT("%tau")) return wxT("\xDC"); else if (txt == wxT("%upsilon")) return wxT("\xB5"); else if (txt == wxT("%chi")) return wxT("\xDF"); else if (txt == wxT("%psi")) return wxT("\xEF"); else if (txt == wxT("%phi")) return wxT("\x27"); else if (txt == wxT("%omega")) return wxT("\x21"); else if (txt == wxT("%Alpha")) return wxT("A"); else if (txt == wxT("%Beta")) return wxT("B"); else if (txt == wxT("%Gamma")) return wxT("\xC0"); else if (txt == wxT("%Delta")) return wxT("\xC1"); else if (txt == wxT("%Epsilon")) return wxT("E"); else if (txt == wxT("%Zeta")) return wxT("Z"); else if (txt == wxT("%Eta")) return wxT("H"); else if (txt == wxT("%Theta")) return wxT("\xC2"); else if (txt == wxT("%Iota")) return wxT("I"); else if (txt == wxT("%Kappa")) return wxT("K"); else if (txt == wxT("%Lambda")) return wxT("\xC3"); else if (txt == wxT("%Mu")) return wxT("M"); else if (txt == wxT("%Nu")) return wxT("N"); else if (txt == wxT("%Xi")) return wxT("\xC4"); else if (txt == wxT("%Omicron")) return wxT("O"); else if (txt == wxT("%Pi")) return wxT("\xC5"); else if (txt == wxT("%Rho")) return wxT("P"); else if (txt == wxT("%Sigma")) return wxT("\xC6"); else if (txt == wxT("%Tau")) return wxT("T"); else if (txt == wxT("%Upsilon")) return wxT("Y"); else if (txt == wxT("%Phi")) return wxT("\xC8"); else if (txt == wxT("%Chi")) return wxT("X"); else if (txt == wxT("%Psi")) return wxT("\xC9"); else if (txt == wxT("%Omega")) return wxT("\xCA"); return wxEmptyString; } wxString TextCell::GetSymbolTeX() { if (m_text == wxT("inf")) return wxT("\x31"); else if (m_text == wxT("+")) return wxT("+"); else if (m_text == wxT("%pi")) return wxT("\xD9"); else if (m_text == wxT("=")) return wxT("="); else if (m_text == wxT("->")) return wxT("\x21"); else if (m_text == wxT(">=")) return wxT("\xD5"); else if (m_text == wxT("<=")) return wxT("\xD4"); /* else if (m_text == wxT(" and ")) return wxT(" \x5E "); else if (m_text == wxT(" or ")) return wxT(" \x5F "); else if (m_text == wxT(" nand ")) return wxT(" \x22 "); else if (m_text == wxT(" nor ")) return wxT(" \x23 "); else if (m_text == wxT(" eq ")) return wxT(" \x2C "); else if (m_text == wxT(" implies ")) return wxT(" \x29 "); else if (m_text == wxT("not")) return wxT("\x3A"); else if (m_text == wxT(" xor ")) return wxT("\xC8"); */ return wxEmptyString; } wxMaxima-13.04.2/src/TextCell.h000644 000765 000024 00000004103 11705765322 016554 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _TEXTCELL_H_ #define _TEXTCELL_H_ #include "MathCell.h" class TextCell : public MathCell { public: TextCell(); TextCell(wxString text); ~TextCell(); MathCell* Copy(bool all); void Destroy(); void SetValue(wxString text); void RecalculateSize(CellParser& parser, int fontsize, bool all); void RecalculateWidths(CellParser& parser, int fontsize, bool all); void Draw(CellParser& parser, wxPoint point, int fontsize, bool all); void SetFont(CellParser& parser, int fontsize); wxString ToString(bool all); wxString ToTeX(bool all); wxString ToXML(bool all); // new! wxString GetDiffPart(); bool IsOperator(); wxString GetValue() { return m_text; } wxString GetGreekStringTeX(); wxString GetSymbolTeX(); #if wxUSE_UNICODE wxString GetGreekStringUnicode(); wxString GetSymbolUnicode(bool keepPercent); #elif defined __WXMSW__ wxString GetGreekStringSymbol(); wxString GetSymbolSymbol(bool keepPercent); #endif bool IsShortNum(); protected: void SetAltText(CellParser& parser); wxString m_text; wxString m_altText, m_altJsText; wxString m_fontname, m_texFontname; bool m_alt, m_altJs; int m_realCenter; int m_fontSize; int m_fontSizeTeX; int m_fontSizeLabel; int m_labelWidth, m_labelHeight; }; #endif //_TEXTCELL_H_ wxMaxima-13.04.2/src/TextStyle.h000644 000765 000024 00000002700 11705765322 016776 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _TEXTSTYLE_H #define _TEXTSTYLE_H struct style { style() : bold(false), italic(false), underlined(false) { }; wxColour color; wxString font; int fontSize; bool bold; bool italic; bool underlined; }; enum { TS_DEFAULT = 0, TS_VARIABLE, TS_FUNCTION, TS_NUMBER, TS_GREEK_CONSTANT, TS_SPECIAL_CONSTANT, TS_STRING, TS_MAIN_PROMPT, TS_OTHER_PROMPT, TS_LABEL, TS_INPUT, TS_HIGHLIGHT, TS_TEXT_BACKGROUND, TS_TEXT, TS_SUBSECTION, TS_SECTION, TS_TITLE, TS_ERROR, TS_CELL_BRACKET, TS_ACTIVE_CELL_BRACKET, TS_CURSOR, TS_SELECTION, TS_OUTDATED }; #define STYLE_NUM 23 #endif wxMaxima-13.04.2/src/wxMaxima.cpp000644 000765 000024 00000420571 12135220031 017146 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2012 Andrej Vodopivec /// (C) 2008-2009 Ziga Lenarcic /// (C) 2011-2011 cw.ahbong /// (C) 2012-2013 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "wxMaxima.h" #include "Config.h" #include "SubstituteWiz.h" #include "IntegrateWiz.h" #include "LimitWiz.h" #include "Plot2dWiz.h" #include "SeriesWiz.h" #include "SumWiz.h" #include "Plot3dWiz.h" #include "Gen1Wiz.h" #include "Gen2Wiz.h" #include "Gen3Wiz.h" #include "Gen4Wiz.h" #include "BC2Wiz.h" #include "MatWiz.h" #include "SystemWiz.h" #include "MathPrintout.h" #include "MyTipProvider.h" #include "EditorCell.h" #include "SlideShowCell.h" #include "PlotFormatWiz.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined __WXMAC__ #if !wxCHECK_VERSION(2,9,0) #include #include #elif defined __WXOSX_CARBON__ #include #include #endif #define MACPREFIX "wxMaxima.app/Contents/Resources/" #endif enum { maxima_process_id }; wxMaxima::wxMaxima(wxWindow *parent, int id, const wxString title, const wxPoint pos, const wxSize size) : wxMaximaFrame(parent, id, title, pos, size) { m_port = 4010; m_pid = -1; m_inLispMode = false; m_first = true; m_isRunning = false; m_promptSuffix = wxT(""); m_promptPrefix = wxT(""); m_firstPrompt = wxT("(%i1) "); m_client = NULL; m_server = NULL; wxConfig::Get()->Read(wxT("lastPath"), &m_lastPath); m_lastPrompt = wxEmptyString; #if WXM_PRINT CheckForPrintingSupport(); m_printData = new wxPrintData; m_printData->SetQuality(wxPRINT_QUALITY_HIGH); #endif m_closing = false; m_openFile = wxEmptyString; m_currentFile = wxEmptyString; m_fileSaved = true; m_variablesOK = false; m_helpFile = wxEmptyString; m_isConnected = false; m_isRunning = false; wxFileSystem::AddHandler(new wxMemoryFSHandler); // for saving wxmx LoadRecentDocuments(); UpdateRecentDocuments(); m_findDialog = NULL; m_findData.SetFlags(wxFR_DOWN); m_console->SetFocus(); #if wxUSE_DRAG_AND_DROP m_console->SetDropTarget(new MyDropTarget(this)); #endif GetMenuBar()->Enable(menu_interrupt_id, false); /// RegEx for function definitions m_funRegEx.Compile(wxT("^ *([[:alnum:]%_]+) *\\(([[:alnum:]%_,[[.].] ]*)\\) *:=")); // RegEx for variable definitions m_varRegEx.Compile(wxT("^ *([[:alnum:]%_]+) *:")); } wxMaxima::~wxMaxima() { if (m_client != NULL) m_client->Destroy(); #if WXM_PRINT delete m_printData; #endif } #if wxUSE_DRAG_AND_DROP bool MyDropTarget::OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& files) { if (files.GetCount() != 1) return true; else { if (wxGetKeyState(WXK_SHIFT)) { m_wxmax->m_console->InsertText(files[0]); return true; } else if (files[0].Right(4) != wxT(".png") && files[0].Right(5) != wxT(".jpeg") && files[0].Right(4) != wxT(".jpg") && files[0].Right(4) != wxT(".wxm") && files[0].Right(5) != wxT(".wxmx") && files[0].Right(4) != wxT(".mac")) { m_wxmax->m_console->InsertText(files[0]); return true; } else { if (files[0].Right(4) == wxT(".png") || files[0].Right(5) == wxT(".jpeg") || files[0].Right(4) == wxT(".jpg")) m_wxmax->LoadImage(files[0]); else if (!m_wxmax->DocumentSaved() && (files[0].Right(4) == wxT(".wxm") || files[0].Right(5) == wxT(".wxmx"))) { int close = m_wxmax->SaveDocumentP(); if (close == wxID_CANCEL) return false; if (close == wxID_YES) { if (!m_wxmax->SaveFile()) return false; } m_wxmax->OpenFile(files[0]); } else m_wxmax->OpenFile(files[0]); return true; } } } #endif ///-------------------------------------------------------------------------------- /// Startup ///-------------------------------------------------------------------------------- #if WXM_PRINT void wxMaxima::CheckForPrintingSupport() { #if defined __WXMSW__ m_supportPrinting = true; #elif defined __WXMAC__ m_supportPrinting = true; #elif defined __WXGTK__ #if wxCHECK_VERSION(2,9,0) m_supportPrinting = true; #elif defined wxUSE_LIBGNOMEPRINT #if wxUSE_LIBGNOMEPRINT wxLogNull log; wxDynamicLibrary* m_gnomep = new wxDynamicLibrary(wxT("libgnomeprint-2-2.so")); wxDynamicLibrary* m_gnomepui = new wxDynamicLibrary(wxT("libgnomeprintui-2-2.so")); if (m_gnomep->IsLoaded() && m_gnomepui->IsLoaded()) m_supportPrinting = true; else m_supportPrinting = false; delete m_gnomep; delete m_gnomepui; #else m_supportPrinting = false; #endif #else m_supportPrinting = false; #endif #endif m_supportPrinting = true; } #endif void wxMaxima::InitSession() { bool server = false; int defaultPort = 4010; wxConfig::Get()->Read(wxT("defaultPort"), &defaultPort); m_port = defaultPort; while (!(server = StartServer())) { m_port++; if (m_port > defaultPort + 50) { wxMessageBox(_("wxMaxima could not start the server.\n\n" "Please check you have network support\n" "enabled and try again!"), _("Fatal error"), wxOK | wxICON_ERROR); break; } } if (!server) SetStatusText(_("Starting server failed")); else if (!StartMaxima()) SetStatusText(_("Starting Maxima process failed"), 1); } void wxMaxima::FirstOutput(wxString s) { int startMaxima = s.find(wxT("Maxima"), 5); // The first in s is wxMaxima version - skip it int startHTTP = s.find(wxT("http"), startMaxima); m_maximaVersion = s.SubString(startMaxima+7, startHTTP - 1); wxRegEx lisp(wxT("[u|U]sing Lisp ([^\n]*)\n")); if (lisp.Matches(s)) m_lispVersion = lisp.GetMatch(s, 1); m_lastPrompt = wxT("(%i1) "); /// READ FUNCTIONS FOR AUTOCOMPLETION #if defined __WXMSW__ wxString index = wxGetCwd(); index += wxT("\\data\\index.hhk"); #else wxString index = GetHelpFile(); index.Replace(wxT("header.hhp"), wxT("index.hhk")); #endif #if defined __WXMAC__ m_console->LoadSymbols(wxGetCwd() + wxT("/") + wxT(MACPREFIX) + wxT("/autocomplete.txt")); #elif defined __WXMSW__ m_console->LoadSymbols(wxGetCwd() + wxT("\\data\\autocomplete.txt")); #else wxString prefix(wxT(PREFIX)); m_console->LoadSymbols(prefix + wxT("/share/wxMaxima/autocomplete.txt")); #endif m_console->SetFocus(); } ///-------------------------------------------------------------------------------- /// Appending stuff to output ///-------------------------------------------------------------------------------- /*** * ConsoleAppend adds a new line s of type to the console window. It will call * DoConsoleAppend if s is in xml and DoRawCosoleAppend if s is not in xml. */ void wxMaxima::ConsoleAppend(wxString s, int type) { m_dispReadOut = false; s.Replace(m_promptSuffix, wxEmptyString); wxString t(s); t.Trim(); t.Trim(false); if (!t.Length()) return ; if (type != MC_TYPE_ERROR) SetStatusText(_("Parsing output"), 1); if (type == MC_TYPE_DEFAULT) { while (s.Length() > 0) { int start = s.Find(wxT("")); if (end == -1) end = s.Length(); else end += 5; wxString rest = s.SubString(start, end); if (pre1.Length()) { DoRawConsoleAppend(pre, MC_TYPE_DEFAULT); DoConsoleAppend(wxT("") + rest + wxT(""), type, false); } else { DoConsoleAppend(wxT("") + rest + wxT(""), type, false); } s = s.SubString(end + 1, s.Length()); } } } else if (type == MC_TYPE_PROMPT) { SetStatusText(_("Ready for user input"), 1); m_lastPrompt = s; if (s.StartsWith(wxT("MAXIMA> "))) { s = s.Right(8); } else s = s + wxT(" "); DoConsoleAppend(wxT("") + s + wxT(""), type, true); } else if (type == MC_TYPE_ERROR) DoRawConsoleAppend(s, MC_TYPE_ERROR); else DoConsoleAppend(wxT("") + s + wxT(""), type, false); } void wxMaxima::DoConsoleAppend(wxString s, int type, bool newLine, bool bigSkip) { MathCell* cell; s.Replace(wxT("\n"), wxT(""), true); cell = m_MParser.ParseLine(s, type); if (cell == NULL) { wxMessageBox(_("There was an error in generated XML!\n\n" "Please report this as a bug."), _("Error"), wxOK | wxICON_EXCLAMATION); return ; } cell->SetSkip(bigSkip); m_console->InsertLine(cell, newLine || cell->BreakLineHere()); } void wxMaxima::DoRawConsoleAppend(wxString s, int type) { if (type == MC_TYPE_MAIN_PROMPT) { TextCell* cell = new TextCell(s); cell->SetType(type); m_console->InsertLine(cell, true); } else { wxStringTokenizer tokens(s, wxT("\n")); int count = 0; MathCell *tmp = NULL, *lst = NULL; while (tokens.HasMoreTokens()) { TextCell* cell = new TextCell(tokens.GetNextToken()); cell->SetType(type); if (tokens.HasMoreTokens()) cell->SetSkip(false); if (lst == NULL) tmp = lst = cell; else { lst->AppendCell(cell); cell->ForceBreakLine(true); lst = cell; } count++; } m_console->InsertLine(tmp, true); } } void wxMaxima::SendMaxima(wxString s, bool history) { if (!m_variablesOK) { m_variablesOK = true; SetupVariables(); } #if wxUSE_UNICODE s.Replace(wxT("\x00B2"), wxT("^2")); s.Replace(wxT("\x00B3"), wxT("^3")); s.Replace(wxT("\x00BD"), wxT("(1/2)")); s.Replace(wxT("\x221A"), wxT("sqrt")); s.Replace(wxT("\x03C0"), wxT("%pi")); s.Replace(wxT("\x2148"), wxT("%i")); s.Replace(wxT("\x2147"), wxT("%e")); s.Replace(wxT("\x221E"), wxT("inf")); s.Replace(wxT("\x22C0"), wxT(" and ")); s.Replace(wxT("\x22C1"), wxT(" or ")); s.Replace(wxT("\x22BB"), wxT(" xor ")); s.Replace(wxT("\x22BC"), wxT(" nand ")); s.Replace(wxT("\x22BD"), wxT(" nor ")); s.Replace(wxT("\x21D2"), wxT(" implies ")); s.Replace(wxT("\x21D4"), wxT(" equiv ")); s.Replace(wxT("\x00AC"), wxT(" not ")); s.Replace(wxT("\x2212"), wxT("-")); #endif SetStatusText(_("Maxima is calculating"), 1); m_dispReadOut = false; /// Add this command to history if (history) AddToHistory(s); s.Replace(wxT("\n"), wxT(" ")); s.Append(wxT("\n")); /// Check for function/variable definitions wxStringTokenizer commands(s, wxT(";$")); while (commands.HasMoreTokens()) { wxString line = commands.GetNextToken(); if (m_varRegEx.Matches(line)) m_console->AddSymbol(m_varRegEx.GetMatch(line, 1)); if (m_funRegEx.Matches(line)) { wxString funName = m_funRegEx.GetMatch(line, 1); m_console->AddSymbol(funName); /// Create a template from the input wxString args = m_funRegEx.GetMatch(line, 2); wxStringTokenizer argTokens(args, wxT(",")); funName << wxT("("); int count = 0; while (argTokens.HasMoreTokens()) { if (count > 0) funName << wxT(","); wxString a = argTokens.GetNextToken().Trim().Trim(false); if (a != wxEmptyString) { if (a[0]=='[') funName << wxT("[<") << a.SubString(1, a.Length()-2) << wxT(">]"); else funName << wxT("<") << a << wxT(">"); count++; } } funName << wxT(")"); m_console->AddSymbol(funName, true); } } m_console->EnableEdit(false); #if wxUSE_UNICODE m_client->Write(s.utf8_str(), strlen(s.utf8_str())); #else m_client->Write(s.c_str(), s.Length()); #endif } ///-------------------------------------------------------------------------------- /// Socket stuff ///-------------------------------------------------------------------------------- /*** * Convert problematic characters in buffer into something sane, * so that special character codes are not encountered unexpectedly * (i.e. early). */ void wxMaxima::SanitizeSocketBuffer(char *buffer, int length) { for (int i = 0; i < length; i++) { if (buffer[i] == 0) buffer[i] = ' '; // convert input null (0) to space (0x20) } } /*** * Client event is triggered when there is something we can read from * the socket. */ void wxMaxima::ClientEvent(wxSocketEvent& event) { char buffer[SOCKET_SIZE + 1]; int read; switch (event.GetSocketEvent()) { case wxSOCKET_INPUT: m_client->Read(buffer, SOCKET_SIZE); if (!m_client->Error()) { read = m_client->LastCount(); buffer[read] = 0; SanitizeSocketBuffer(buffer, read); #if wxUSE_UNICODE m_currentOutput += wxString(buffer, wxConvUTF8); #else m_currentOutput += wxString(buffer, *wxConvCurrent); #endif if (!m_dispReadOut && m_currentOutput != wxT("\n")) { SetStatusText(_("Reading Maxima output"), 1); m_dispReadOut = true; } if (m_first && m_currentOutput.Find(m_firstPrompt) > -1) ReadFirstPrompt(); ReadLoadSymbols(); ReadMath(); ReadPrompt(); ReadLispError(); } break; case wxSOCKET_LOST: if (!m_closing) ConsoleAppend(wxT("\nCLIENT: Lost socket connection ...\n" "Restart Maxima with 'Maxima->Restart Maxima'.\n"), MC_TYPE_ERROR); m_console->SetWorkingGroup(NULL); m_console->SetSelection(NULL); m_console->SetActiveCell(NULL); m_pid = -1; m_client->Destroy(); m_client = NULL; m_isConnected = false; break; default: break; } } /*** * ServerEvent is triggered when maxima connects to the socket server. */ void wxMaxima::ServerEvent(wxSocketEvent& event) { switch (event.GetSocketEvent()) { case wxSOCKET_CONNECTION : { if (m_isConnected) { wxSocketBase *tmp = m_server->Accept(false); tmp->Close(); return; } m_isConnected = true; m_client = m_server->Accept(false); m_client->SetEventHandler(*this, socket_client_id); m_client->SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG); m_client->Notify(true); #ifndef __WXMSW__ ReadProcessOutput(); #endif } break; case wxSOCKET_LOST: if (!m_closing) ConsoleAppend(wxT("\nSERVER: Lost socket connection ...\n" "Restart Maxima with 'Maxima->Restart Maxima'.\n"), MC_TYPE_ERROR); m_pid = -1; m_isConnected = false; default: break; } } bool wxMaxima::StartServer() { SetStatusText(wxString::Format(_("Starting server on port %d"), m_port), 1); wxIPV4address addr; #ifndef __WXMAC__ addr.LocalHost(); #else addr.AnyAddress(); #endif addr.Service(m_port); m_server = new wxSocketServer(addr); if (!m_server->Ok()) { delete m_server; m_server = NULL; m_isRunning = false; m_isConnected = false; SetStatusText(_("Starting server failed"), 1); return false; } SetStatusText(_("Server started"), 1); m_server->SetEventHandler(*this, socket_server_id); m_server->SetNotify(wxSOCKET_CONNECTION_FLAG); m_server->Notify(true); m_isConnected = false; m_isRunning = true; return m_isRunning; } ///-------------------------------------------------------------------------------- /// Maxima process stuff ///-------------------------------------------------------------------------------- bool wxMaxima::StartMaxima() { if (m_isConnected) { KillMaxima(); // m_client->Close(); m_isConnected = false; } m_variablesOK = false; wxString command = GetCommand();; if (command.Length() > 0) { #if defined(__WXMSW__) #if wxCHECK_VERSION(2, 9, 0) if (wxGetOsVersion() == wxOS_WINDOWS_9X) #else if (wxGetOsVersion() == wxWIN95) #endif { wxString maximaPrefix = command.SubString(1, command.Length() - 3); wxString sysPath; wxGetEnv(wxT("path"), &sysPath); maximaPrefix.Replace(wxT("\\bin\\maxima.bat"), wxEmptyString); wxSetEnv(wxT("maxima_prefix"), maximaPrefix); wxSetEnv(wxT("path"), maximaPrefix + wxT("\\bin;") + sysPath); command = maximaPrefix + wxT("\\lib\\maxima"); if (!wxDirExists(command)) return false; wxArrayString files; wxDir::GetAllFiles(command, &files, wxT("maxima.exe")); if (files.Count() == 0) return false; else { command = files[0]; command.Append(wxString::Format( wxT(" -eval \"(maxima::start-client %d)\" -eval \"(run)\" -f"), m_port )); } } else command.Append(wxString::Format(wxT(" -s %d"), m_port)); wxSetEnv(wxT("home"), wxGetHomeDir()); wxSetEnv(wxT("maxima_signals_thread"), wxT("1")); #else command.Append(wxString::Format(wxT(" -r \":lisp (setup-client %d)\""), m_port)); #endif #if defined __WXMAC__ wxSetEnv(wxT("DISPLAY"), wxT(":0.0")); #endif m_process = new wxProcess(this, maxima_process_id); m_process->Redirect(); m_first = true; m_pid = -1; SetStatusText(_("Starting Maxima..."), 1); wxExecute(command, wxEXEC_ASYNC, m_process); m_input = m_process->GetInputStream(); SetStatusText(_("Maxima started. Waiting for connection..."), 1); } else return false; return true; } void wxMaxima::Interrupt(wxCommandEvent& event) { if (m_pid < 0) { GetMenuBar()->Enable(menu_interrupt_id, false); return ; } #if defined (__WXMSW__) wxString path, maxima = GetCommand(false); wxArrayString out; maxima = maxima.SubString(2, maxima.Length() - 3); wxFileName::SplitPath(maxima, &path, NULL, NULL); wxString command = wxT("\"") + path + wxT("\\winkill.exe\""); command += wxString::Format(wxT(" -INT %ld"), m_pid); wxExecute(command, out); #else wxProcess::Kill(m_pid, wxSIGINT); #endif } void wxMaxima::KillMaxima() { m_process->Detach(); if (m_pid < 0) { if (m_inLispMode) SendMaxima(wxT("($quit)")); else SendMaxima(wxT("quit();")); return ; } wxProcess::Kill(m_pid, wxSIGKILL); } void wxMaxima::OnProcessEvent(wxProcessEvent& event) { if (!m_closing) SetStatusText(_("Maxima process terminated."), 1); m_maximaVersion = wxEmptyString; m_lispVersion = wxEmptyString; // delete m_process; // m_process = NULL; } void wxMaxima::CleanUp() { if (m_client) m_client->Notify(false); if (m_isConnected) KillMaxima(); if (m_isRunning) m_server->Destroy(); } ///-------------------------------------------------------------------------------- /// Dealing with stuff read from the socket ///-------------------------------------------------------------------------------- void wxMaxima::ReadFirstPrompt() { #if defined(__WXMSW__) int start = m_currentOutput.Find(wxT("Maxima")); if (start == -1) start = 0; FirstOutput(wxT("wxMaxima ") wxT(VERSION) wxT(" http://andrejv.github.com/wxmaxima/\n") + m_currentOutput.SubString(start, m_currentOutput.Length() - 1)); #endif // __WXMSW__ int s = m_currentOutput.Find(wxT("pid=")) + 4; int t = s + m_currentOutput.SubString(s, m_currentOutput.Length()).Find(wxT("\n")) - 1; if (s < t) m_currentOutput.SubString(s, t).ToLong(&m_pid); if (m_pid > 0) GetMenuBar()->Enable(menu_interrupt_id, true); m_first = false; m_inLispMode = false; SetStatusText(_("Ready for user input"), 1); m_closing = false; // when restarting maxima this is temporarily true m_currentOutput = wxEmptyString; m_console->EnableEdit(true); if (m_openFile.Length()) { OpenFile(m_openFile); m_openFile = wxEmptyString; } else if (m_console->m_evaluationQueue->Empty()) { bool open = false; wxConfig::Get()->Read(wxT("openHCaret"), &open); if (open) m_console->OpenNextOrCreateCell(); } } /*** * Checks if maxima displayed a new chunk of math */ void wxMaxima::ReadMath() { int end = m_currentOutput.Find(m_promptPrefix); while (end > -1) { m_readingPrompt = true; wxString o = m_currentOutput.Left(end); ConsoleAppend(o, MC_TYPE_DEFAULT); m_currentOutput = m_currentOutput.SubString(end + m_promptPrefix.Length(), m_currentOutput.Length()); end = m_currentOutput.Find(m_promptPrefix); } if (m_readingPrompt) return ; wxString mth = wxT("
"); end = m_currentOutput.Find(mth); while (end > -1) { wxString o = m_currentOutput.Left(end); ConsoleAppend(o + mth, MC_TYPE_DEFAULT); m_currentOutput = m_currentOutput.SubString(end + mth.Length(), m_currentOutput.Length()); end = m_currentOutput.Find(mth); } } void wxMaxima::ReadLoadSymbols() { int start = m_currentOutput.Find(wxT("")); while (start > -1) { int end = m_currentOutput.Find(wxT("")); if (end > -1) { wxString symbols = m_currentOutput.SubString(start + 15, end - 1); m_currentOutput = m_currentOutput.SubString(0, start-1) + m_currentOutput.SubString(end + 16, m_currentOutput.Length()); wxStringTokenizer templates(symbols, wxT("$")); while (templates.HasMoreTokens()) m_console->AddSymbol(templates.GetNextToken()); start = m_currentOutput.Find(wxT("")); } else start = -1; } } /*** * Checks if maxima displayed a new prompt. */ void wxMaxima::ReadPrompt() { bool ready = true; int end = m_currentOutput.Find(m_promptSuffix); if (end > -1) { m_readingPrompt = false; wxString o = m_currentOutput.Left(end); if (o != wxT("\n") && o.Length()) { // Maxima displayed a new main prompt if (o.StartsWith(wxT("(%i"))) { //m_lastPrompt = o.Mid(1,o.Length()-1); //m_lastPrompt.Replace(wxT(")"), wxT(":"), false); m_lastPrompt = o; m_console->m_evaluationQueue->RemoveFirst(); // remove it from queue if (m_console->m_evaluationQueue->Empty()) { // queue empty? m_console->ShowHCaret(); m_console->SetWorkingGroup(NULL); m_console->Refresh(); } else { // we don't have an empty queue m_console->Refresh(); m_console->EnableEdit(); ready = false; TryEvaluateNextInQueue(); } m_console->EnableEdit(); if (m_console->m_evaluationQueue->Empty()) { bool open = false; wxConfig::Get()->Read(wxT("openHCaret"), &open); if (open) m_console->OpenNextOrCreateCell(); } } // We have a question else { if (o.Find(wxT("")) > -1) DoConsoleAppend(o, MC_TYPE_PROMPT); else DoRawConsoleAppend(o, MC_TYPE_PROMPT); } if (o.StartsWith(wxT("\nMAXIMA>"))) m_inLispMode = true; else m_inLispMode = false; } if (ready) SetStatusText(_("Ready for user input"), 1); m_currentOutput = m_currentOutput.SubString(end + m_promptSuffix.Length(), m_currentOutput.Length()); } } // OpenWXM(X)File // Clear document (if clearDocument == true), then insert file bool wxMaxima::OpenWXMFile(wxString file, MathCtrl *document, bool clearDocument) { SetStatusText(_("Opening file"), 1); wxBeginBusyCursor(); document->Freeze(); // open wxm file wxTextFile inputFile(file); wxArrayString *wxmLines = NULL; if (!inputFile.Open()) { wxEndBusyCursor(); document->Thaw(); wxMessageBox(_("wxMaxima encountered an error loading ") + file, _("Error"), wxOK | wxICON_EXCLAMATION); SetStatusText(_("Ready for user input"), 1); return false; } if (inputFile.GetFirstLine() != wxT("/* [wxMaxima batch file version 1] [ DO NOT EDIT BY HAND! ]*/")) { inputFile.Close(); wxEndBusyCursor(); document->Thaw(); wxMessageBox(_("wxMaxima encountered an error loading ") + file, _("Error"), wxOK | wxICON_EXCLAMATION); SetStatusText(_("Ready for user input"), 1); return false; } wxmLines = new wxArrayString(); wxString line; for (line = inputFile.GetFirstLine(); !inputFile.Eof(); line = inputFile.GetNextLine()) { wxmLines->Add(line); } wxmLines->Add(line); inputFile.Close(); GroupCell *tree = CreateTreeFromWXMCode(wxmLines); delete wxmLines; // from here on code is identical for wxm and wxmx if (clearDocument) document->ClearDocument(); document->InsertGroupCells(tree); // this also recalculates if (clearDocument) { m_currentFile = file; m_fileSaved = false; // to force reset title to update ResetTitle(true); document->SetSaved(true); } else ResetTitle(false); document->Thaw(); document->Refresh(); // redraw document outside Freeze-Thaw m_console->SetDefaultHCaret(); m_console->SetFocus(); SetStatusText(_("Ready for user input"), 1); SendMaxima(wxT(":lisp-quiet (setf $wxfilename \"") + file + wxT("\")")); SendMaxima(wxT(":lisp-quiet (xchdir ($pathname_directory \"") + file + wxT("\"))")); wxEndBusyCursor(); return true; } bool wxMaxima::OpenWXMXFile(wxString file, MathCtrl *document, bool clearDocument) { SetStatusText(_("Opening file"), 1); wxBeginBusyCursor(); document->Freeze(); // open wxmx file wxXmlDocument xmldoc; wxFileSystem fs; wxFSFile *fsfile = fs.OpenFile(wxT("file:") + file + wxT("#zip:content.xml")); if ((fsfile == NULL) || (!xmldoc.Load(*(fsfile->GetStream())))) { wxEndBusyCursor(); document->Thaw(); delete fsfile; wxMessageBox(_("wxMaxima encountered an error loading ") + file, _("Error"), wxOK | wxICON_EXCLAMATION); SetStatusText(_("Ready for user input"), 1); return false; } delete fsfile; // start processing the XML file if (xmldoc.GetRoot()->GetName() != wxT("wxMaximaDocument")) { wxEndBusyCursor(); document->Thaw(); wxMessageBox(_("wxMaxima encountered an error loading ") + file, _("Error"), wxOK | wxICON_EXCLAMATION); SetStatusText(_("Ready for user input"), 1); return false; } // read document version and complain #if wxCHECK_VERSION(2,9,0) wxString docversion = xmldoc.GetRoot()->GetAttribute(wxT("version"), wxT("1.0")); #else wxString docversion = xmldoc.GetRoot()->GetPropVal(wxT("version"),wxT("1.0")); #endif double version = 1.0; if (docversion.ToDouble(&version)) { int version_major = int(version); int version_minor = int(10* (version - double(version_major))); if (version_major > DOCUMENT_VERSION_MAJOR) { wxEndBusyCursor(); document->Thaw(); wxMessageBox(_("Document ") + file + _(" was saved using a newer version of wxMaxima. Please update your wxMaxima."), _("Error"), wxOK | wxICON_EXCLAMATION); SetStatusText(_("Ready for user input"), 1); return false; } if (version_minor > DOCUMENT_VERSION_MINOR) { wxEndBusyCursor(); wxMessageBox(_("Document ") + file + _(" was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima."), _("Warning"), wxOK | wxICON_EXCLAMATION); wxBeginBusyCursor(); } } // read zoom factor #if wxCHECK_VERSION(2,9,0) wxString doczoom = xmldoc.GetRoot()->GetAttribute(wxT("zoom"),wxT("100")); #else wxString doczoom = xmldoc.GetRoot()->GetPropVal(wxT("zoom"),wxT("100")); #endif wxXmlNode *xmlcells = xmldoc.GetRoot()->GetChildren(); GroupCell *tree = CreateTreeFromXMLNode(xmlcells, file); // from here on code is identical for wxm and wxmx if (clearDocument) { document->ClearDocument(); long int zoom = 100; if (!(doczoom.ToLong(&zoom))) zoom = 100; document->SetZoomFactor( double(zoom) / 100.0, false); // Set zoom if opening, dont recalculate } document->InsertGroupCells(tree); // this also recalculates if (clearDocument) { m_currentFile = file; m_fileSaved = false; // to force reset title to update ResetTitle(true); document->SetSaved(true); } else ResetTitle(false); document->Thaw(); document->Refresh(); // redraw document outside Freeze-Thaw m_console->SetDefaultHCaret(); m_console->SetFocus(); SetStatusText(_("Ready for user input"), 1); SendMaxima(wxT(":lisp-quiet (setf $wxfilename \"") + file + wxT("\")")); SendMaxima(wxT(":lisp-quiet (xchdir ($pathname_directory \"") + file + wxT("\"))")); wxEndBusyCursor(); return true; } GroupCell* wxMaxima::CreateTreeFromXMLNode(wxXmlNode *xmlcells, wxString wxmxfilename) { MathParser mp(wxmxfilename); MathCell *tree = NULL; MathCell *last = NULL; bool warning = true; if (xmlcells) { last = tree = mp.ParseTag(xmlcells, false); // first cell while (xmlcells->GetNext()) { xmlcells = xmlcells->GetNext(); MathCell *cell = mp.ParseTag(xmlcells, false); if (cell != NULL) { last->m_next = last->m_nextToDraw = cell; last->m_next->m_previous = last->m_next->m_previousToDraw = last; last = last->m_next; } else if (warning) { wxMessageBox(_("Parts of the document will not be loaded correctly!"), _("Warning"), wxOK | wxICON_WARNING); warning = false; } } } return dynamic_cast(tree); } GroupCell* wxMaxima::CreateTreeFromWXMCode(wxArrayString* wxmLines) { bool hide = false; GroupCell* tree = NULL; GroupCell* last = NULL; GroupCell* cell = NULL; while (wxmLines->GetCount()>0) { if (wxmLines->Item(0) == wxT("/* [wxMaxima: hide output ] */")) hide = true; // Print title else if (wxmLines->Item(0) == wxT("/* [wxMaxima: title start ]")) { wxmLines->RemoveAt(0); wxString line; while (wxmLines->Item(0) != wxT(" [wxMaxima: title end ] */")) { if (line.Length() == 0) line = wxmLines->Item(0); else line += wxT("\n") + wxmLines->Item(0); wxmLines->RemoveAt(0); } cell = new GroupCell(GC_TYPE_TITLE, line); if (hide) { cell->Hide(true); hide = false; } } // Print section else if (wxmLines->Item(0) == wxT("/* [wxMaxima: section start ]")) { wxmLines->RemoveAt(0); wxString line; while (wxmLines->Item(0) != wxT(" [wxMaxima: section end ] */")) { if (line.Length() == 0) line = wxmLines->Item(0); else line += wxT("\n") + wxmLines->Item(0); wxmLines->RemoveAt(0); } cell = new GroupCell(GC_TYPE_SECTION, line); if (hide) { cell->Hide(true); hide = false; } } // Print section else if (wxmLines->Item(0) == wxT("/* [wxMaxima: subsect start ]")) { wxmLines->RemoveAt(0); wxString line; while (wxmLines->Item(0) != wxT(" [wxMaxima: subsect end ] */")) { if (line.Length() == 0) line = wxmLines->Item(0); else line += wxT("\n") + wxmLines->Item(0); wxmLines->RemoveAt(0); } cell = new GroupCell(GC_TYPE_SUBSECTION, line); if (hide) { cell->Hide(true); hide = false; } } // Print comment else if (wxmLines->Item(0) == wxT("/* [wxMaxima: comment start ]")) { wxmLines->RemoveAt(0); wxString line; while (wxmLines->Item(0) != wxT(" [wxMaxima: comment end ] */")) { if (line.Length() == 0) line = wxmLines->Item(0); else line += wxT("\n") + wxmLines->Item(0); wxmLines->RemoveAt(0); } cell = new GroupCell(GC_TYPE_TEXT, line); if (hide) { cell->Hide(true); hide = false; } } // Print input else if (wxmLines->Item(0) == wxT("/* [wxMaxima: input start ] */")) { wxmLines->RemoveAt(0); wxString line; while (wxmLines->Item(0) != wxT("/* [wxMaxima: input end ] */")) { if (line.Length() == 0) line = wxmLines->Item(0); else line += wxT("\n") + wxmLines->Item(0); wxmLines->RemoveAt(0); } cell = new GroupCell(GC_TYPE_CODE, line); if (hide) { cell->Hide(true); hide = false; } } else if (wxmLines->Item(0) == wxT("/* [wxMaxima: page break ] */")) { wxmLines->RemoveAt(0); cell = new GroupCell(GC_TYPE_PAGEBREAK); } else if (wxmLines->Item(0) == wxT("/* [wxMaxima: fold start ] */")) { wxmLines->RemoveAt(0); last->HideTree(CreateTreeFromWXMCode(wxmLines)); } else if (wxmLines->Item(0) == wxT("/* [wxMaxima: fold end ] */")) { wxmLines->RemoveAt(0); break; } if (cell) { // if we have created a cell in this pass if (!tree) tree = last = cell; else { last->m_next = last->m_nextToDraw = ((MathCell *)cell); last->m_next->m_previous = last->m_next->m_previousToDraw = ((MathCell *)last); last = (GroupCell *)last->m_next; } cell = NULL; } wxmLines->RemoveAt(0); } return tree; } /*** * This works only for gcl by default - other lisps have different prompts. */ void wxMaxima::ReadLispError() { static const wxString lispError = wxT("dbl:MAXIMA>>"); // gcl int end = m_currentOutput.Find(lispError); if (end > -1) { m_readingPrompt = false; m_inLispMode = true; wxString o = m_currentOutput.Left(end); ConsoleAppend(o, MC_TYPE_DEFAULT); ConsoleAppend(lispError, MC_TYPE_PROMPT); SetStatusText(_("Ready for user input"), 1); m_currentOutput = wxEmptyString; } } #ifndef __WXMSW__ void wxMaxima::ReadProcessOutput() { wxString o; while (m_process->IsInputAvailable()) o += m_input->GetC(); int st = o.Find(wxT("Maxima")); if (st == -1) st = 0; FirstOutput(wxT("wxMaxima ") wxT(VERSION) wxT(" http://andrejv.github.com/wxmaxima/\n") + o.SubString(st, o.Length() - 1)); SetStatusText(_("Ready for user input"), 1); } #endif /*** * This method is called once when maxima starts. It loads wxmathml.lisp * and sets some option variables. */ void wxMaxima::SetupVariables() { SendMaxima(wxT(":lisp-quiet (setf *prompt-suffix* \"") + m_promptSuffix + wxT("\")")); SendMaxima(wxT(":lisp-quiet (setf *prompt-prefix* \"") + m_promptPrefix + wxT("\")")); SendMaxima(wxT(":lisp-quiet (setf $in_netmath nil)")); SendMaxima(wxT(":lisp-quiet (setf $show_openplot t)")); #if defined (__WXMSW__) wxString cwd = wxGetCwd(); cwd.Replace(wxT("\\"), wxT("/")); SendMaxima(wxT(":lisp-quiet ($load \"") + cwd + wxT("/data/wxmathml\")")); #elif defined (__WXMAC__) wxString cwd = wxGetCwd(); cwd = cwd + wxT("/") + wxT(MACPREFIX); SendMaxima(wxT(":lisp-quiet ($load \"") + cwd + wxT("wxmathml\")")); // check for Gnuplot.app - use it if it exists wxString gnuplotbin(wxT("/Applications/Gnuplot.app/Contents/Resources/bin/gnuplot")); if (wxFileExists(gnuplotbin)) SendMaxima(wxT(":lisp-quiet (setf $gnuplot_command \"") + gnuplotbin + wxT("\")")); #else wxString prefix = wxT(PREFIX); SendMaxima(wxT(":lisp-quiet ($load \"") + prefix + wxT("/share/wxMaxima/wxmathml\")")); #endif if (m_currentFile != wxEmptyString) { SendMaxima(wxT(":lisp-quiet (setf $wxfilename \"") + m_currentFile + wxT("\")")); SendMaxima(wxT(":lisp-quiet (xchdir ($pathname_directory \"") + m_currentFile + wxT("\"))")); } } ///-------------------------------------------------------------------------------- /// Getting confuguration ///-------------------------------------------------------------------------------- wxString wxMaxima::GetCommand(bool params) { #if defined (__WXMSW__) wxConfig *config = (wxConfig *)wxConfig::Get(); wxString maxima = wxGetCwd(); wxString parameters; maxima.Replace(wxT("wxMaxima"), wxT("bin\\maxima.bat")); if (!wxFileExists(maxima)) { config->Read(wxT("maxima"), &maxima); if (!wxFileExists(maxima)) { wxMessageBox(_("wxMaxima could not find Maxima!\n\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'."), _("Warning"), wxOK | wxICON_EXCLAMATION); SetStatusText(_("Please configure wxMaxima with 'Edit->Configure'.")); return wxEmptyString; } } config->Read(wxT("parameters"), ¶meters); if (params) return wxT("\"") + maxima + wxT("\" ") + parameters; return maxima; #else wxConfig *config = (wxConfig *)wxConfig::Get(); wxString command, parameters; bool have_config = config->Read(wxT("maxima"), &command); //Fix wrong" maxima=1" paraneter in ~/.wxMaxima if upgrading from 0.7.0a if (!have_config || (have_config && command.IsSameAs (wxT("1")))) { #if defined (__WXMAC__) command = wxT("/Applications/Maxima.app"); #else command = wxT("maxima"); #endif config->Write(wxT("maxima"), command); } #if defined (__WXMAC__) if (command.Right(4) == wxT(".app")) // if pointing to a Maxima.app command.Append(wxT("/Contents/Resources/maxima.sh")); #endif config->Read(wxT("parameters"), ¶meters); command = wxT("\"") + command + wxT("\" ") + parameters; return command; #endif } ///-------------------------------------------------------------------------------- /// Tips and help ///-------------------------------------------------------------------------------- void wxMaxima::ShowTip(bool force) { bool ShowTips = true; int tipNum = 0; wxConfig *config = (wxConfig *)wxConfig::Get(); config->Read(wxT("ShowTips"), &ShowTips); config->Read(wxT("tipNum"), &tipNum); if (!ShowTips && !force) return ; wxString tips = wxT("tips.txt"); #if defined (__WXMSW__) wxString prefix = wxGetCwd() + wxT("\\data\\"); #elif defined (__WXMAC__) wxString prefix = wxT(MACPREFIX); prefix += wxT("/"); #else wxString prefix = wxT(PREFIX); prefix += wxT("/share/wxMaxima/"); #endif tips = prefix + tips; if (wxFileExists(tips)) { MyTipProvider *t = new MyTipProvider(tips, tipNum); ShowTips = wxShowTip(this, t, ShowTips); config->Write(wxT("ShowTips"), ShowTips); tipNum = t->GetCurrentTip(); config->Write(wxT("tipNum"), tipNum); config->Flush(); delete t; } else { wxMessageBox(_("wxMaxima could not find tip files." "\n\nPlease check your installation."), _("Error"), wxICON_ERROR | wxOK); } } wxString wxMaxima::GetHelpFile() { #if defined __WXMSW__ wxString command; wxString chm; command = GetCommand(false); if (command.empty()) return wxEmptyString; command.Replace(wxT("bin\\maxima.bat"), wxT("share\\maxima")); chm = wxFindFirstFile(command + wxT("\\*"), wxDIR); if (chm.empty()) return wxEmptyString; chm = chm + wxT("\\doc\\chm\\"); wxString locale = wxGetApp().m_locale.GetCanonicalName().Left(2); if (wxFileExists(chm + locale + wxT("\\maxima.chm"))) return chm + locale + wxT("\\maxima.chm"); if (wxFileExists(chm + wxT("maxima.chm"))) return chm + wxT("maxima.chm"); return wxEmptyString; #else wxString headerFile; wxConfig::Get()->Read(wxT("helpFile"), &headerFile); if (headerFile.Length() && wxFileExists(headerFile)) return headerFile; else headerFile = wxEmptyString; wxProcess *process = new wxProcess(this, -1); process->Redirect(); wxString command = GetCommand(); command += wxT(" -d"); wxArrayString output; wxExecute(command, output, wxEXEC_ASYNC); wxString line; wxString docdir; wxString langsubdir; for (unsigned int i=0; iWrite(wxT("helpFile"), headerFile); return headerFile; #endif } void wxMaxima::ShowHelp(wxString keyword) { wxLogNull disableWarnings; if (m_helpFile.Length() == 0) { m_helpFile = GetHelpFile(); if (m_helpFile.Length() == 0) { wxMessageBox(_("wxMaxima could not find help files." "\n\nPlease check your installation."), _("Error"), wxICON_ERROR | wxOK); return ; } m_helpCtrl.Initialize(m_helpFile); } if (keyword == wxT("%")) m_helpCtrl.DisplayContents(); else m_helpCtrl.KeywordSearch(keyword, wxHELP_SEARCH_INDEX); } ///-------------------------------------------------------------------------------- /// Idle event ///-------------------------------------------------------------------------------- /*** * On idle event we check if the document is saved. */ void wxMaxima::OnIdle(wxIdleEvent& event) { ResetTitle(m_console->IsSaved()); event.Skip(); } ///-------------------------------------------------------------------------------- /// Menu and button events ///-------------------------------------------------------------------------------- void wxMaxima::MenuCommand(wxString cmd) { m_console->SetFocus(); m_console->SetSelection(NULL); m_console->SetActiveCell(NULL); m_console->OpenHCaret(cmd); m_console->AddCellToEvaluationQueue(dynamic_cast(m_console->GetActiveCell()->GetParent())); TryEvaluateNextInQueue(); } void wxMaxima::DumpProcessOutput() { wxString o; while (m_process->IsInputAvailable()) { o += m_input->GetC(); } wxMessageBox(o, wxT("Process output (stdout)")); o = wxEmptyString; wxInputStream *error = m_process->GetErrorStream(); while (m_process->IsErrorAvailable()) { o += error->GetC(); } wxMessageBox(o, wxT("Process output (stderr)")); } ///-------------------------------------------------------------------------------- /// Menu and button events ///-------------------------------------------------------------------------------- #if WXM_PRINT void wxMaxima::PrintMenu(wxCommandEvent& event) { if (!m_supportPrinting) return ; switch (event.GetId()) { case wxID_PRINT: #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_print: #endif { wxPrintDialogData printDialogData(*m_printData); wxPrinter printer(&printDialogData); wxString title(_("wxMaxima document")), suffix; if (m_currentFile.Length()) { wxString suffix; wxFileName::SplitPath(m_currentFile, NULL, NULL, &title, &suffix); title << wxT(".") << suffix; } MathPrintout printout(title); MathCell* copy = m_console->CopyTree(); printout.SetData(copy); /* if (!printer.Print(this, &printout, true)) { if (wxPrinter::GetLastError() == wxPRINTER_ERROR) wxMessageBox(_("There was a problem printing.\n" "Perhaps your current printer is not set correctly?"), _("Printing"), wxOK); } else { (*m_printData) = printer.GetPrintDialogData().GetPrintData(); } */ if (printer.Print(this, &printout, true)) (*m_printData) = printer.GetPrintDialogData().GetPrintData(); break; } } } #endif void wxMaxima::UpdateMenus(wxUpdateUIEvent& event) { wxMenuBar* menubar = GetMenuBar(); menubar->Enable(menu_copy_from_console, m_console->CanCopy(true)); menubar->Enable(menu_cut, m_console->CanCut()); menubar->Enable(menu_copy_tex_from_console, m_console->CanCopy()); menubar->Enable(menu_copy_as_bitmap, m_console->CanCopy()); menubar->Enable(menu_copy_to_file, m_console->CanCopy()); menubar->Enable(menu_copy_text_from_console, m_console->CanCopy()); menubar->Enable(menu_select_all, m_console->GetTree() != NULL); menubar->Enable(menu_undo, m_console->CanUndo()); menubar->Enable(menu_redo, m_console->CanRedo()); menubar->Enable(menu_remove_output, m_console->GetWorkingGroup() == NULL); menubar->Enable(menu_interrupt_id, m_pid>0); // if (m_console->GetSelectionStart() != NULL) // menubar->Enable(menu_evaluate, m_console->GetSelectionStart()->GetType() == MC_TYPE_GROUP); // else // menubar->Enable(menu_evaluate, m_console->GetActiveCell() != NULL); menubar->Enable(menu_evaluate_all_visible, m_console->GetTree() != NULL); menubar->Enable(menu_evaluate_all, m_console->GetTree() != NULL); menubar->Enable(menu_save_id, !m_fileSaved); for (int id = menu_pane_math; id<=menu_pane_stats; id++) menubar->Check(id, IsPaneDisplayed(id)); #if defined __WXMAC__ menubar->Check(menu_show_toolbar, GetToolBar()->IsShown()); #else if (GetToolBar() != NULL) menubar->Check(menu_show_toolbar, true); else menubar->Check(menu_show_toolbar, false); #endif #if WXM_PRINT if (m_console->GetTree() != NULL && m_supportPrinting) menubar->Enable(wxID_PRINT, true); else menubar->Enable(wxID_PRINT, false); #endif double zf = m_console->GetZoomFactor(); if (zf < 3.0) menubar->Enable(menu_zoom_in, true); else menubar->Enable(menu_zoom_in, false); if (zf > 0.8) menubar->Enable(menu_zoom_out, true); else menubar->Enable(menu_zoom_out, false); } #if defined (__WXMSW__) || defined (__WXGTK20__) || defined(__WXMAC__) void wxMaxima::UpdateToolBar(wxUpdateUIEvent& event) { wxToolBar * toolbar = GetToolBar(); toolbar->EnableTool(tb_copy, m_console->CanCopy(true)); toolbar->EnableTool(tb_cut, m_console->CanCut()); toolbar->EnableTool(tb_save, !m_fileSaved); if (m_pid > 0) toolbar->EnableTool(tb_interrupt, true); else toolbar->EnableTool(tb_interrupt, false); #if WXM_PRINT if (m_console->GetTree() != NULL && m_supportPrinting) toolbar->EnableTool(tb_print, true); else toolbar->EnableTool(tb_print, false); #endif if (m_console->CanAnimate() && !m_console->AnimationRunning()) toolbar->EnableTool(tb_animation_start, true); else toolbar->EnableTool(tb_animation_start, false); if (m_console->CanAnimate() && m_console->AnimationRunning()) toolbar->EnableTool(tb_animation_stop, true); else toolbar->EnableTool(tb_animation_stop, false); } #endif wxString wxMaxima::ExtractFirstExpression(wxString entry) { int semicolon = entry.Find(';'); int dollar = entry.Find('$'); bool semiFound = (semicolon != wxNOT_FOUND); bool dollarFound = (dollar != wxNOT_FOUND); int index; if (semiFound && dollarFound) index = MIN(semicolon, dollar); else if (semiFound && !dollarFound) index = semicolon; else if (!semiFound && dollarFound) index = dollar; else // neither semicolon nor dollar found index = entry.Length(); return entry.SubString(0, index - 1); } wxString wxMaxima::GetDefaultEntry() { if (m_console->CanCopy(true)) return (m_console->GetString()).Trim().Trim(false); if (m_console->GetActiveCell() != NULL) return ExtractFirstExpression(m_console->GetActiveCell()->ToString(false)); return wxT("%"); } void wxMaxima::OpenFile(wxString file, wxString cmd) { if (file.Length() && wxFileExists(file)) { AddRecentDocument(file); m_lastPath = wxPathOnly(file); wxString unixFilename(file); #if defined __WXMSW__ unixFilename.Replace(wxT("\\"), wxT("/")); #endif if (cmd.Length() > 0) { MenuCommand(cmd + wxT("(\"") + unixFilename + wxT("\")$")); } else if (file.Right(4) == wxT(".wxm")) OpenWXMFile(file, m_console); else if (file.Right(5) == wxT(".wxmx")) OpenWXMXFile(file, m_console); // clearDocument = true else if (file.Right(4) == wxT(".dem")) MenuCommand(wxT("demo(\"") + unixFilename + wxT("\")$")); else MenuCommand(wxT("load(\"") + unixFilename + wxT("\")$")); } } bool wxMaxima::SaveFile(bool forceSave) { wxString file = m_currentFile; wxString fileExt; int ext = -1; if (file.Length() == 0 || forceSave) { if (file.Length() == 0) file = _("untitled"); else wxFileName::SplitPath(file, NULL, NULL, &file, &fileExt); wxFileDialog fileDialog(this, _("Save As"), m_lastPath, file, _("wxMaxima document (*.wxm)|*.wxm|" "wxMaxima xml document (*.wxmx)|*.wxmx|" "Maxima batch file (*.mac)|*.mac"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (fileExt == wxT("wxm")) fileDialog.SetFilterIndex(0); else if (fileExt == wxT("wxmx")) fileDialog.SetFilterIndex(1); else if (fileExt == wxT("mac")) fileDialog.SetFilterIndex(2); if (fileDialog.ShowModal() == wxID_OK) { file = fileDialog.GetPath(); ext = fileDialog.GetFilterIndex(); } else return false; } if (file.Length()) { if (ext == 0 && file.Right(4) != wxT(".wxm")) file += wxT(".wxm"); else if (ext == 1 && file.Right(5) != wxT(".wxmx")) file += wxT(".wxmx"); else if (ext == 2 && file.Right(4) != wxT(".mac")) file += wxT(".mac"); m_currentFile = file; m_lastPath = wxPathOnly(file); if (file.Right(5) == wxT(".wxmx")) m_console->ExportToWXMX(file); else m_console->ExportToMAC(file); AddRecentDocument(file); return true; } return false; } void wxMaxima::FileMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; bool forceSave = false; #if defined __WXMSW__ wxString b = wxT("\\"); wxString f = wxT("/"); #endif switch (event.GetId()) { #if defined __WXMAC__ case mac_closeId: Close(); break; #elif defined __WXMSW__ || defined __WXGTK20__ case menu_new_id: case tb_new: wxExecute(wxTheApp->argv[0]); break; #endif #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_open: #endif case menu_open_id: { if (!m_fileSaved) { int close = SaveDocumentP(); if (close == wxID_CANCEL) return; if (close == wxID_YES) { if (!SaveFile()) return; } } wxString file = wxFileSelector(_("Open"), m_lastPath, wxEmptyString, wxEmptyString, _("wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx"), wxFD_OPEN); OpenFile(file); } break; case menu_save_as_id: forceSave = true; m_fileSaved = false; #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_save: #endif case menu_save_id: SaveFile(forceSave); break; case menu_export_html: { wxString file(_("untitled")); if (m_currentFile.Length() >0) wxFileName::SplitPath(m_currentFile, NULL, NULL, &file, NULL); file = wxFileSelector(_("Export"), m_lastPath, file + wxT(".html"), wxT("html"), _("HTML file (*.html)|*.html|" "pdfLaTeX file (*.tex)|*.tex|" "All|*"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file.Length()) { m_lastPath = wxPathOnly(file); if (file.Right(5) != wxT(".html") && file.Right(4) != wxT(".tex")) file = file + wxT(".html"); if (file.Right(4) == wxT(".tex")) { if (!m_console->ExportToTeX(file)) wxMessageBox(_("Exporting to TeX failed!"), _("Error!"), wxOK); } else { if (!m_console->ExportToHTML(file)) wxMessageBox(_("Exporting to HTML failed!"), _("Error!"), wxOK); } } } break; case menu_load_id: { wxString file = wxFileSelector(_("Load Package"), m_lastPath, wxEmptyString, wxEmptyString, _("Maxima package (*.mac)|*.mac|" "Lisp package (*.lisp)|*.lisp|All|*"), wxFD_OPEN); OpenFile(file, wxT("load")); } break; case menu_batch_id: { wxString file = wxFileSelector(_("Batch File"), m_lastPath, wxEmptyString, wxEmptyString, _("Maxima package (*.mac)|*.mac"), wxFD_OPEN); OpenFile(file, wxT("batch")); } break; case wxID_EXIT: Close(); break; case popid_animation_start: #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_animation_start: #endif if (m_console->CanAnimate() && !m_console->AnimationRunning()) m_console->Animate(true); break; #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_animation_stop: if (m_console->CanAnimate() && m_console->AnimationRunning()) m_console->Animate(false); break; #endif default: break; } } void wxMaxima::EditMenu(wxCommandEvent& event) { if (m_findDialog != NULL) { event.Skip(); return; } switch (event.GetId()) { case wxID_PREFERENCES: #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_pref: #endif { Config *configW = new Config(this); configW->Centre(wxBOTH); if (configW->ShowModal() == wxID_OK) { configW->WriteSettings(); m_console->RecalculateForce(); m_console->Refresh(); } configW->Destroy(); } break; #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_copy: #endif case menu_copy_from_console: if (m_console->CanCopy(true)) m_console->Copy(); break; case menu_copy_text_from_console: if (m_console->CanCopy(true)) m_console->Copy(true); break; #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_cut: #endif case menu_cut: if (m_console->CanCut()) m_console->CutToClipboard(); break; case menu_select_all: m_console->SelectAll(); break; #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_paste: #endif case menu_paste: if (m_console->CanPaste()) m_console->PasteFromClipboard(); break; case menu_undo: if (m_console->CanUndo()) m_console->Undo(); break; case menu_redo: if (m_console->CanRedo()) m_console->Redo(); break; case menu_copy_tex_from_console: if (m_console->CanCopy()) m_console->CopyTeX(); break; case menu_copy_as_bitmap: if (m_console->CanCopy()) m_console->CopyBitmap(); break; case menu_copy_to_file: { wxString file = wxFileSelector(_("Save Selection to Image"), m_lastPath, wxT("image.png"), wxT("png"), _("PNG image (*.png)|*.png|" "JPEG image (*.jpg)|*.jpg|" "Windows bitmap (*.bmp)|*.bmp|" "X pixmap (*.xpm)|*.xpm"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file.Length()) { m_console->CopyToFile(file); m_lastPath = wxPathOnly(file); } } break; case popid_delete: if (m_console->CanDeleteSelection()) { m_console->DeleteSelection(); m_console->Recalculate(); m_console->Refresh(); return; } break; case menu_zoom_in: if (m_console->GetZoomFactor() < 3.0) { m_console->SetZoomFactor(m_console->GetZoomFactor() + 0.1); wxString message = _("Zoom set to "); message << int(100.0 * m_console->GetZoomFactor()) << wxT("%"); SetStatusText(message, 1); } break; case menu_zoom_out: if (m_console->GetZoomFactor() > 0.8) { m_console->SetZoomFactor(m_console->GetZoomFactor() - 0.1); wxString message = _("Zoom set to "); message << int(100.0 * m_console->GetZoomFactor()) << wxT("%"); SetStatusText(message, 1); } break; case menu_zoom_80: m_console->SetZoomFactor(0.8); break; case menu_zoom_100: m_console->SetZoomFactor(1.0); break; case menu_zoom_120: m_console->SetZoomFactor(1.2); break; case menu_zoom_150: m_console->SetZoomFactor(1.5); break; case menu_zoom_200: m_console->SetZoomFactor(2.0); break; case menu_zoom_300: m_console->SetZoomFactor(3.0); break; case menu_fullscreen: ShowFullScreen( !IsFullScreen() ); break; case menu_remove_output: m_console->RemoveAllOutput(); break; case menu_show_toolbar: #if defined __WXMAC__ ShowToolBar(!(GetToolBar()->IsShown())); #else ShowToolBar(!(GetToolBar() != NULL)); #endif break; case menu_edit_find: #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_find: #endif if ( m_findDialog != NULL ) { delete m_findDialog; m_findDialog = NULL; } else { m_findDialog = new wxFindReplaceDialog( this, &m_findData, _("Find and Replace"), wxFR_REPLACEDIALOG | wxFR_NOWHOLEWORD); m_findDialog->Show(true); } break; case menu_history_next: { wxString command = m_history->GetCommand(true); if (command != wxEmptyString) m_console->SetActiveCellText(command); } break; case menu_history_previous: { wxString command = m_history->GetCommand(false); if (command != wxEmptyString) m_console->SetActiveCellText(command); } break; } } void wxMaxima::OnFind(wxFindDialogEvent& event) { if (!m_console->FindNext(event.GetFindString(), event.GetFlags() & wxFR_DOWN, !(event.GetFlags() & wxFR_MATCHCASE))) wxMessageBox(_("No matches found!")); } void wxMaxima::OnFindClose(wxFindDialogEvent& event) { m_findDialog->Destroy(); m_findDialog = NULL; } void wxMaxima::OnReplace(wxFindDialogEvent& event) { m_console->Replace(event.GetFindString(), event.GetReplaceString()); if (!m_console->FindNext(event.GetFindString(), event.GetFlags() & wxFR_DOWN, !(event.GetFlags() & wxFR_MATCHCASE))) wxMessageBox(_("No matches found!")); } void wxMaxima::OnReplaceAll(wxFindDialogEvent& event) { int count = m_console->ReplaceAll(event.GetFindString(), event.GetReplaceString()); wxMessageBox(wxString::Format(_("Replaced %d occurences."), count)); } void wxMaxima::MaximaMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; wxString b = wxT("\\"); wxString f = wxT("/"); switch (event.GetId()) { case menu_restart_id: m_closing = true; m_console->ClearEvaluationQueue(); m_console->ResetInputPrompts(); StartMaxima(); break; case menu_soft_restart: MenuCommand(wxT("kill(all);")); break; case menu_functions: MenuCommand(wxT("functions;")); break; case menu_variables: MenuCommand(wxT("values;")); break; case menu_display: { wxString choices[] = { wxT("xml"), wxT("ascii"), wxT("none") }; wxString choice = wxGetSingleChoice( _("Select math display algorithm"), _("Display algorithm"), 3, choices, this ); if (choice.Length()) { cmd = wxT("set_display('") + choice + wxT(")$"); MenuCommand(cmd); } } break; case menu_texform: cmd = wxT("tex(") + expr + wxT(")$"); MenuCommand(cmd); break; case menu_time: cmd = wxT("if showtime#false then showtime:false else showtime:all$"); MenuCommand(cmd); break; case menu_fun_def: cmd = GetTextFromUser(_("Show the definition of function:"), _("Function"), wxEmptyString, this); if (cmd.Length()) { cmd = wxT("fundef(") + cmd + wxT(");"); MenuCommand(cmd); } break; case menu_add_path: { if (m_lastPath.Length() == 0) m_lastPath = wxGetHomeDir(); wxString dir = wxDirSelector(_("Add dir to path:"), m_lastPath); if (dir.Length()) { m_lastPath = dir; #if defined (__WXMSW__) dir.Replace(wxT("\\"), wxT("/")); #endif cmd = wxT("file_search_maxima : cons(sconcat(\"") + dir + wxT("/###.{lisp,mac,mc}\"), file_search_maxima)$"); MenuCommand(cmd); } } break; case menu_evaluate_all_visible: m_console->AddDocumentToEvaluationQueue(); TryEvaluateNextInQueue(); break; case menu_evaluate_all: m_console->AddEntireDocumentToEvaluationQueue(); TryEvaluateNextInQueue(); break; case menu_clear_var: cmd = GetTextFromUser(_("Delete variable(s):"), _("Delete"), wxT("all"), this); if (cmd.Length()) { cmd = wxT("remvalue(") + cmd + wxT(");"); MenuCommand(cmd); } break; case menu_clear_fun: cmd = GetTextFromUser(_("Delete function(s):"), _("Delete"), wxT("all"), this); if (cmd.Length()) { cmd = wxT("remfunction(") + cmd + wxT(");"); MenuCommand(cmd); } break; case menu_subst: case button_subst: { SubstituteWiz *wiz = new SubstituteWiz(this, -1, _("Substitute")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; default: break; } } void wxMaxima::EquationsMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; switch (event.GetId()) { case menu_allroots: cmd = wxT("allroots(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_bfallroots: cmd = wxT("bfallroots(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_realroots: cmd = wxT("realroots(") + expr + wxT(");"); MenuCommand(cmd); break; case button_solve: case menu_solve: { Gen2Wiz *wiz = new Gen2Wiz(_("Equation(s):"), _("Variable(s):"), expr, wxT("x"), this, -1, _("Solve"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("solve([") + wiz->GetValue1() + wxT("], [") + wiz->GetValue2() + wxT("]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_solve_to_poly: { Gen2Wiz *wiz = new Gen2Wiz(_("Equation(s):"), _("Variable(s):"), expr, wxT("x"), this, -1, _("Solve"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("to_poly_solve([") + wiz->GetValue1() + wxT("], [") + wiz->GetValue2() + wxT("]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_solve_num: { if (expr.StartsWith(wxT("%"))) expr = wxT("''(") + expr + wxT(")"); Gen4Wiz *wiz = new Gen4Wiz(_("Equation:"), _("Variable:"), _("Lower bound:"), _("Upper bound:"), expr, wxT("x"), wxT("-1"), wxT("1"), this, -1, _("Find root"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("find_root(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(", ") + wiz->GetValue4() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case button_solve_ode: case menu_solve_ode: { Gen3Wiz *wiz = new Gen3Wiz(_("Equation:"), _("Function:"), _("Variable:"), expr, wxT("y"), wxT("x"), this, -1, _("Solve ODE")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("ode2(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case menu_ivp_1: { Gen3Wiz *wiz = new Gen3Wiz(_("Solution:"), _("Point:"), _("Value:"), expr, wxT("x="), wxT("y="), this, -1, _("IC1"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("ic1(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case menu_ivp_2: { Gen4Wiz *wiz = new Gen4Wiz(_("Solution:"), _("Point:"), _("Value:"), _("Derivative:"), expr, wxT("x="), wxT("y="), wxT("'diff(y,x)="), this, -1, _("IC2"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("ic2(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(", ") + wiz->GetValue4() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case menu_bvp: { BC2Wiz *wiz = new BC2Wiz(this, -1, _("BC2")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case menu_eliminate: { Gen2Wiz *wiz = new Gen2Wiz(_("Equations:"), _("Variables:"), expr, wxEmptyString, this, -1, _("Eliminate"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("eliminate([") + wiz->GetValue1() + wxT("],[") + wiz->GetValue2() + wxT("]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_solve_algsys: { wxString sz = GetTextFromUser(_("Number of equations:"), _("Solve algebraic system"), wxT("3"), this); if (sz.Length() == 0) return ; long isz; if (!sz.ToLong(&isz) || isz <= 0) { wxMessageBox(_("Not a valid number of equations!"), _("Error!"), wxOK | wxICON_ERROR); return ; } SysWiz *wiz = new SysWiz(this, -1, _("Solve algebraic system"), isz); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("algsys") + wiz->GetValue(); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_solve_lin: { wxString sz = GetTextFromUser(_("Number of equations:"), _("Solve linear system"), wxT("3"), this); if (sz.Length() == 0) return ; long isz; if (!sz.ToLong(&isz) || isz <= 0) { wxMessageBox(_("Not a valid number of equations!"), _("Error!"), wxOK | wxICON_ERROR); return ; } SysWiz *wiz = new SysWiz(this, -1, _("Solve linear system"), isz); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("linsolve") + wiz->GetValue(); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_solve_de: { Gen2Wiz *wiz = new Gen2Wiz(_("Equation(s):"), _("Function(s):"), expr, wxT("y(x)"), this, -1, _("Solve ODE")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("desolve([") + wiz->GetValue1() + wxT("],[") + wiz->GetValue2() + wxT("]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_atvalue: { Gen3Wiz *wiz = new Gen3Wiz(_("Expression:"), _("Point:"), _("Value:"), expr, wxT("x=0"), wxT("0"), this, -1, _("At value")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("atvalue(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; default: break; } } void wxMaxima::AlgebraMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; switch (event.GetId()) { case menu_invert_mat: cmd = wxT("invert(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_determinant: cmd = wxT("determinant(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_eigen: cmd = wxT("eigenvalues(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_eigvect: cmd = wxT("eigenvectors(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_adjoint_mat: cmd = wxT("adjoint(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_transpose: cmd = wxT("transpose(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_map_mat: { Gen2Wiz *wiz = new Gen2Wiz(_("Function:"), _("Matrix:"), wxEmptyString, expr, this, -1, _("Matrix map")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("matrixmap(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_enter_mat: case menu_stats_enterm: { MatDim *wiz = new MatDim(this, -1, _("Matrix")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { if (wiz->GetValue0() != wxEmptyString) cmd = wiz->GetValue0() + wxT(": "); long w, h; int type = wiz->GetMatrixType(); if (!(wiz->GetValue2()).ToLong(&w) || !(wiz->GetValue1()).ToLong(&h) || w <= 0 || h <= 0) { wxMessageBox(_("Not a valid matrix dimension!"), _("Error!"), wxOK | wxICON_ERROR); return ; } if (w != h) type = MATRIX_GENERAL; MatWiz *mwiz = new MatWiz(this, -1, _("Enter matrix"), type, w, h); mwiz->Centre(wxBOTH); if (mwiz->ShowModal() == wxID_OK) { cmd += mwiz->GetValue(); MenuCommand(cmd); } mwiz->Destroy(); } wiz->Destroy(); } break; case menu_cpoly: { Gen2Wiz *wiz = new Gen2Wiz(_("Matrix:"), _("Variable:"), expr, wxT("x"), this, -1, _("Char poly")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("charpoly(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT("), expand;"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_gen_mat: { Gen4Wiz *wiz = new Gen4Wiz(_("Array:"), _("Width:"), _("Height:"), _("Name:"), expr, wxT("3"), wxT("3"), wxEmptyString, this, -1, _("Generate Matrix")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("genmatrix(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); if (wiz->GetValue4() != wxEmptyString) val = wiz->GetValue4() + wxT(": ") + val; MenuCommand(val); } wiz->Destroy(); } break; case menu_gen_mat_lambda: { Gen4Wiz *wiz = new Gen4Wiz(_("matrix[i,j]:"), _("Width:"), _("Height:"), _("Name:"), expr, wxT("3"), wxT("3"), wxEmptyString, this, -1, _("Generate Matrix")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("genmatrix(lambda([i,j], ") + wiz->GetValue1() + wxT("), ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); if (wiz->GetValue4() != wxEmptyString) val = wiz->GetValue4() + wxT(": ") + val; MenuCommand(val); } wiz->Destroy(); } break; case button_map: case menu_map: { Gen2Wiz *wiz = new Gen2Wiz(_("Function:"), _("List:"), wxEmptyString, expr, this, -1, _("Map")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("map(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_make_list: { Gen4Wiz *wiz = new Gen4Wiz(_("Expression:"), _("Variable:"), _("From:"), _("To:"), expr, wxT("k"), wxT("1"), wxT("10"), this, -1, _("Make list")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("makelist(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(", ") + wiz->GetValue4() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_apply: { Gen2Wiz *wiz = new Gen2Wiz(_("Function:"), _("List:"), wxT("\"+\""), expr, this, -1, _("Apply"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("apply(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; default: break; } } void wxMaxima::SimplifyMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; switch (event.GetId()) { case menu_nouns: cmd = wxT("ev(") + expr + wxT(", nouns);"); MenuCommand(cmd); break; case button_ratsimp: case menu_ratsimp: cmd = wxT("ratsimp(") + expr + wxT(");"); MenuCommand(cmd); break; case button_radcan: case menu_radsimp: cmd = wxT("radcan(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_to_fact: cmd = wxT("makefact(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_to_gamma: cmd = wxT("makegamma(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_factcomb: cmd = wxT("factcomb(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_factsimp: cmd = wxT("minfactorial(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_logcontract: cmd = wxT("logcontract(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_logexpand: cmd = expr + wxT(", logexpand=super;"); MenuCommand(cmd); break; case button_expand: case menu_expand: cmd = wxT("expand(") + expr + wxT(");"); MenuCommand(cmd); break; case button_factor: case menu_factor: cmd = wxT("factor(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_gfactor: cmd = wxT("gfactor(") + expr + wxT(");"); MenuCommand(cmd); break; case button_trigreduce: case menu_trigreduce: cmd = wxT("trigreduce(") + expr + wxT(");"); MenuCommand(cmd); break; case button_trigsimp: case menu_trigsimp: cmd = wxT("trigsimp(") + expr + wxT(");"); MenuCommand(cmd); break; case button_trigexpand: case menu_trigexpand: cmd = wxT("trigexpand(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_trigrat: case button_trigrat: cmd = wxT("trigrat(") + expr + wxT(");"); MenuCommand(cmd); break; case button_rectform: case menu_rectform: cmd = wxT("rectform(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_polarform: cmd = wxT("polarform(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_demoivre: cmd = wxT("demoivre(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_exponentialize: cmd = wxT("exponentialize(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_realpart: cmd = wxT("realpart(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_imagpart: cmd = wxT("imagpart(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_talg: cmd = wxT("algebraic : not(algebraic);"); MenuCommand(cmd); break; case menu_tellrat: cmd = GetTextFromUser(_("Enter an equation for rational simplification:"), _("Tellrat"), wxEmptyString, this); if (cmd.Length()) { cmd = wxT("tellrat(") + cmd + wxT(");"); MenuCommand(cmd); } break; case menu_modulus: cmd = GetTextFromUser(_("Calculate modulus:"), _("Modulus"), wxT("false"), this); if (cmd.Length()) { cmd = wxT("modulus : ") + cmd + wxT(";"); MenuCommand(cmd); } break; default: break; } } void wxMaxima::CalculusMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; switch (event.GetId()) { case menu_change_var: { Gen4Wiz *wiz = new Gen4Wiz(_("Integral/Sum:"), _("Old variable:"), _("New variable:"), _("Equation:"), expr, wxT("x"), wxT("y"), wxT("y=x"), this, -1, _("Change variable"), true); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("changevar(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue4() + wxT(", ") + wiz->GetValue3() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case menu_pade: { Gen3Wiz *wiz = new Gen3Wiz(_("Taylor series:"), _("Num. deg:"), _("Denom. deg:"), expr, wxT("4"), wxT("4"), this, -1, _("Pade approximation")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("pade(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case menu_continued_fraction: cmd += wxT("cfdisrep(cf(") + expr + wxT("));"); MenuCommand(cmd); break; case menu_lcm: { Gen2Wiz *wiz = new Gen2Wiz(_("Polynomial 1:"), _("Polynomial 2:"), wxEmptyString, wxEmptyString, this, -1, _("LCM"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("lcm(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_gcd: { Gen2Wiz *wiz = new Gen2Wiz(_("Polynomial 1:"), _("Polynomial 2:"), wxEmptyString, wxEmptyString, this, -1, _("GCD"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("gcd(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_divide: { Gen2Wiz *wiz = new Gen2Wiz(_("Polynomial 1:"), _("Polynomial 2:"), expr, wxEmptyString, this, -1, _("Divide"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("divide(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_partfrac: { Gen2Wiz *wiz = new Gen2Wiz(_("Expression:"), _("Variable:"), expr, wxT("n"), this, -1, _("Partial fractions")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("partfrac(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_risch: { Gen2Wiz *wiz = new Gen2Wiz(_("Expression:"), _("Variable:"), expr, wxT("x"), this, -1, _("Integrate (risch)")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("risch(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case button_integrate: case menu_integrate: { IntegrateWiz *wiz = new IntegrateWiz(this, -1, _("Integrate")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case menu_laplace: { Gen3Wiz *wiz = new Gen3Wiz(_("Expression:"), _("Old variable:"), _("New variable:"), expr, wxT("t"), wxT("s"), this, -1, _("Laplace")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("laplace(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case menu_ilt: { Gen3Wiz *wiz = new Gen3Wiz(_("Expression:"), _("Old variable:"), _("New variable:"), expr, wxT("s"), wxT("t"), this, -1, _("Inverse Laplace")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wxT("ilt(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case button_diff: case menu_diff: { Gen3Wiz *wiz = new Gen3Wiz(_("Expression:"), _("Variable(s):"), _("Times:"), expr, wxT("x"), wxT("1"), this, -1, _("Differentiate")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxStringTokenizer vars(wiz->GetValue2(), wxT(",")); wxStringTokenizer times(wiz->GetValue3(), wxT(",")); wxString val = wxT("diff(") + wiz->GetValue1(); while (vars.HasMoreTokens() && times.HasMoreTokens()) { val += wxT(",") + vars.GetNextToken(); val += wxT(",") + times.GetNextToken(); } val += wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case button_taylor: case menu_series: { SeriesWiz *wiz = new SeriesWiz(this, -1, _("Series")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case button_limit: case menu_limit: { LimitWiz *wiz = new LimitWiz(this, -1, _("Limit")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case menu_lbfgs: { Gen4Wiz *wiz = new Gen4Wiz(_("Expression:"), _("Variables:"), _("Initial Estimates:"), _("Epsilon:"), expr, wxT("x"), wxT("1.0"), wxT("1e-4"), this, -1, _("Find minimum")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("lbfgs(") + wiz->GetValue1() + wxT(", [") + wiz->GetValue2() + wxT("], [") + wiz->GetValue3() + wxT("], ") + wiz->GetValue4() + wxT(", [-1,0]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case button_sum: case menu_sum: { SumWiz *wiz = new SumWiz(this, -1, _("Sum")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case button_product: case menu_product: { Gen4Wiz *wiz = new Gen4Wiz(_("Expression:"), _("Variable:"), _("From:"), _("To:"), expr, wxT("k"), wxT("1"), wxT("n"), this, -1, _("Product")); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { cmd = wxT("product(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(", ") + wiz->GetValue4() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; default: break; } } void wxMaxima::PlotMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; switch (event.GetId()) { case button_plot3: case gp_plot3: { Plot3DWiz *wiz = new Plot3DWiz(this, -1, _("Plot 3D")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case button_plot2: case gp_plot2: { Plot2DWiz *wiz = new Plot2DWiz(this, -1, _("Plot 2D")); wiz->SetValue(expr); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case menu_plot_format: { PlotFormatWiz *wiz = new PlotFormatWiz(this, -1, _("Plot format")); wiz->Center(wxBOTH); if (wiz->ShowModal() == wxID_OK) { MenuCommand(wiz->GetValue()); } wiz->Destroy(); /*wxString format = GetTextFromUser(_("Enter new plot format:"), _("Plot format"), wxT("gnuplot"), this); if (format.Length()) { MenuCommand(wxT("set_plot_option(['plot_format, '") + format + wxT("])$")); }*/ } default: break; } } void wxMaxima::NumericalMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; switch (event.GetId()) { case menu_to_float: cmd = wxT("float(") + expr + wxT("), numer;"); MenuCommand(cmd); break; case menu_to_bfloat: cmd = wxT("bfloat(") + expr + wxT(");"); MenuCommand(cmd); break; case menu_num_out: cmd = wxT("if numer#false then numer:false else numer:true;"); MenuCommand(cmd); break; case menu_set_precision: cmd = GetTextFromUser(_("Enter new precision:"), _("Precision"), wxT("16"), this); if (cmd.Length()) { cmd = wxT("fpprec : ") + cmd + wxT(";"); MenuCommand(cmd); } break; default: break; } } #ifndef __WXGTK__ MyAboutDialog::MyAboutDialog(wxWindow *parent, int id, const wxString title, wxString description) : wxDialog(parent, id, title) { wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL); wxHtmlWindow* html_top = new wxHtmlWindow(this, -1, wxDefaultPosition, wxSize(380, 250), wxHW_SCROLLBAR_NEVER); html_top->SetBorders(5); wxHtmlWindow* html_bottom = new wxHtmlWindow(this, -1, wxDefaultPosition, wxSize(380, 280)); html_bottom->SetBorders(5); wxString cwd = wxGetCwd(); #if defined __WXMAC__ cwd = cwd + wxT("/") + wxT(MACPREFIX); #else cwd.Replace(wxT("\\"), wxT("/")); cwd = cwd + wxT("/data/"); #endif wxString page_top = wxString::Format( wxT("" "" "" "" "
" "

" "" "

" "

wxMaxima %s

" "

(C) 2004 - 2013 Andrej Vodopivec

" "
" "" ""), cwd.c_str(), wxT(VERSION)); wxString page_bottom = wxString::Format( wxT("" "" "" "" "
" "

" "%s" "

" "

wxMaxima
" " Maxima

" "

%s

" "

" "wxWidgets: %d.%d.%d
" "%s: %s
" "%s" "

" "

%s

" "

" "Andrej Vodopivec
" "Ziga Lenarcic
" "Doug Ilijev
" "

" "

Patches

" "Sandro Montanar (SF-patch 2537150)" "

" "

%s

" "

" "%s: Sven Hodapp
" "%s: TANGO project" "

" "

%s

" "

" "Innocent De Marchi (ca)
" "Josef Barak (cs)
" "Robert Marik (cs)
" "Jens Thostrup (da)
" "Harald Geyer (de)
" "Dieter Kaiser (de)
" "Alkis Akritas (el)
" "Evgenia Kelepesi-Akritas (el)
" "Kostantinos Derekas (el)
" "Mario Rodriguez Riotorto (es)
" "Antonio Ullan (es)
" "Eric Delevaux (fr)
" "Michele Gosse (fr)
" #if wxUSE_UNICODE "Blahota István (hu)
" #else "Blahota Istvan (hu)
" #endif "Marco Ciampa (it)
" "Rafal Topolnicki (pl)
" "Eduardo M. Kalinowski (pt_br)
" "Alexey Beshenov (ru)
" "Vadim V. Zhytnikov (ru)
" "Sergey Semerikov (uk)
" "Frank Weng (zh_TW)
" "cw.ahbong (zh_TW)" "

" "
" "" ""), _("wxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets."), _("System info"), wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER, _("Unicode Support"), #if wxUSE_UNICODE wxT("yes"), #else wxT("no"), #endif description.c_str(), _("Written by"), _("Artwork by"), _("wxMaxima icon"), _("Toolbar icons"), _("Translated by")); html_top->SetPage(page_top); html_bottom->SetPage(page_bottom); html_top->SetSize(wxDefaultCoord, html_top->GetInternalRepresentation()->GetHeight()); sizer->Add(html_top, 0, wxALL, 0); sizer->Add(html_bottom, 0, wxALL, 0); SetSizer(sizer); sizer->Fit(this); sizer->SetSizeHints(this); SetAutoLayout(true); Layout(); } void MyAboutDialog::OnLinkClicked(wxHtmlLinkEvent& event) { wxLaunchDefaultBrowser(event.GetLinkInfo().GetHref()); } BEGIN_EVENT_TABLE(MyAboutDialog, wxDialog) EVT_HTML_LINK_CLICKED(wxID_ANY, MyAboutDialog::OnLinkClicked) END_EVENT_TABLE() #endif void wxMaxima::HelpMenu(wxCommandEvent& event) { wxString expr = GetDefaultEntry(); wxString cmd; wxString helpSearchString = wxT("%"); if (m_console->CanCopy(true)) helpSearchString = m_console->GetString(); else if (m_console->GetActiveCell() != NULL) { helpSearchString = m_console->GetActiveCell()->SelectWordUnderCaret(false); } if (helpSearchString == wxT("")) helpSearchString = wxT("%"); switch (event.GetId()) { case wxID_ABOUT: #if defined __WXGTK__ { wxAboutDialogInfo info; wxString description; description = _("wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets."); description += wxString::Format( _("\n\nwxWidgets: %d.%d.%d\nUnicode support: %s"), wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER, #if wxUSE_UNICODE _("yes") #else _("no") #endif ); if (m_maximaVersion != wxEmptyString) description += _("\nMaxima version: ") + m_maximaVersion; else description += _("\nNot connected."); if (m_lispVersion != wxEmptyString) description += _("\nLisp: ") + m_lispVersion; info.SetDescription(description); info.SetName(_("wxMaxima")); info.SetVersion(wxT(VERSION)); info.SetCopyright(wxT("(C) 2004-2013 Andrej Vodopivec")); info.SetWebSite(wxT("http://andrejv.github.com/wxmaxima/")); info.AddDeveloper(wxT("Andrej Vodopivec ")); info.AddDeveloper(wxT("Ziga Lenarcic ")); info.AddDeveloper(wxT("Doug Ilijev ")); info.AddTranslator(wxT("Innocent de Marchi (ca)")); info.AddTranslator(wxT("Josef Barak (cs)")); info.AddTranslator(wxT("Robert Marik (cs)")); info.AddTranslator(wxT("Jens Thostrup (da)")); info.AddTranslator(wxT("Harald Geyer (de)")); info.AddTranslator(wxT("Dieter Kaiser (de)")); info.AddTranslator(wxT("Alkis Akritas (el)")); info.AddTranslator(wxT("Evgenia Kelepesi-Akritas (el)")); info.AddTranslator(wxT("Kostantinos Derekas (el)")); info.AddTranslator(wxT("Mario Rodriguez Riotorto (es)")); info.AddTranslator(wxT("Antonio Ullan (es)")); info.AddTranslator(wxT("Eric Delevaux (fr)")); info.AddTranslator(wxT("Michele Gosse (fr)")); info.AddTranslator(wxT("Marco Ciampa (it)")); #if wxUSE_UNICODE info.AddTranslator(wxT("Blahota István (hu)")); #else info.AddTranslator(wxT("Blahota Istvan (hu)")); #endif info.AddTranslator(wxT("Rafal Topolnicki (pl)")); info.AddTranslator(wxT("Eduardo M. Kalinowski (pt_br)")); info.AddTranslator(wxT("Alexey Beshenov (ru)")); info.AddTranslator(wxT("Vadim V. Zhytnikov (ru)")); info.AddTranslator(wxT("Sergey Semerikov (uk)")); info.AddTranslator(wxT("Frank Weng (zh_TW)")); info.AddTranslator(wxT("cw.ahbong (zh_TW)")); info.AddArtist(wxT("wxMaxima icon: Sven Hodapp")); wxAboutBox(info); } #else { wxString description; if (m_maximaVersion != wxEmptyString) description += _("Maxima version: ") + m_maximaVersion; else description += _("Not connected."); if (m_lispVersion != wxEmptyString) description += _("
Lisp: ") + m_lispVersion; MyAboutDialog dlg(this, wxID_ANY, wxString(_("About")), description); dlg.Center(); dlg.ShowModal(); } #endif break; case wxID_HELP: #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) case tb_help: #endif ShowHelp(helpSearchString); break; case menu_example: if (expr == wxT("%")) cmd = GetTextFromUser(_("Show an example for the command:"), _("Example"), wxEmptyString, this); else cmd = expr; if (cmd.Length()) { cmd = wxT("example(") + cmd + wxT(");"); MenuCommand(cmd); } break; case menu_apropos: if (expr == wxT("%")) cmd = GetTextFromUser(_("Show all commands similar to:"), _("Apropos"), wxEmptyString, this); else cmd = expr; if (cmd.Length()) { cmd = wxT("apropos(\"") + cmd + wxT("\");"); MenuCommand(cmd); } break; case menu_show_tip: ShowTip(true); break; case menu_build_info: MenuCommand(wxT("wxbuild_info()$")); break; case menu_bug_report: MenuCommand(wxT("wxbug_report()$")); break; case menu_help_tutorials: wxLaunchDefaultBrowser(wxT("http://andrejv.github.com/wxmaxima/help.html")); break; case menu_check_updates: CheckForUpdates(true); break; default: break; } } void wxMaxima::StatsMenu(wxCommandEvent &ev) { wxString expr = GetDefaultEntry(); switch (ev.GetId()) { case menu_stats_histogram: { Gen2Wiz *wiz = new Gen2Wiz(_("Data:"), _("Classes:"), expr, wxT("10"), this, -1, _("Histogram"), false); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("wxhistogram(") + wiz->GetValue1() + wxT(", nclasses=") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_stats_scatterplot: { Gen2Wiz *wiz = new Gen2Wiz(_("Data:"), _("Classes:"), expr, wxT("10"), this, -1, _("Scatterplot"), false); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("wxscatterplot(") + wiz->GetValue1() + wxT(", nclasses=") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_stats_barsplot: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("wxbarsplot(") + data + wxT(");")); } break; case menu_stats_boxplot: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("wxboxplot([") + data + wxT("]);")); } break; case menu_stats_piechart: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("wxpiechart(") + data + wxT(");")); } break; case menu_stats_mean: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("mean(") + data + wxT(");")); } break; case menu_stats_median: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("median(") + data + wxT(");")); } break; case menu_stats_var: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("var(") + data + wxT(");")); } break; case menu_stats_dev: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("std(") + data + wxT(");")); } break; case menu_stats_tt1: { Gen2Wiz *wiz = new Gen2Wiz(_("Sample:"), _("Mean:"), expr, wxT("0"), this, -1, _("One sample t-test"), false); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("test_mean(") + wiz->GetValue1() + wxT(", mean=") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_stats_tt2: { Gen2Wiz *wiz = new Gen2Wiz(_("Sample 1:"), _("Sample 2:"), wxEmptyString, wxEmptyString, this, -1, _("Two sample t-test"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("test_means_difference(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_stats_tnorm: { wxString data = GetTextFromUser(_("Data:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("test_normality(") + data + wxT(");")); } break; case menu_stats_linreg: { wxString data = GetTextFromUser(_("Data Matrix:"), _("Enter Data"), expr, this); if (data.Length() > 0) MenuCommand(wxT("simple_linear_regression(") + data + wxT(");")); } break; case menu_stats_lsquares: { Gen4Wiz *wiz = new Gen4Wiz(_("Data Matrix:"), _("Col. names:"), _("Equation:"), _("Variables:"), expr, wxT("x,y"), wxT("y=A*x+B"), wxT("A,B"), this, -1, _("Least Squares Fit"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("lsquares_estimates(") + wiz->GetValue1() + wxT(", [") + wiz->GetValue2() + wxT("], ") + wiz->GetValue3() + wxT(", [") + wiz->GetValue4() + wxT("], iprint=[-1,0]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case menu_stats_readm: { wxString file = wxFileSelector(_("Open matrix"), m_lastPath, wxEmptyString, wxEmptyString, _("Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt"), wxFD_OPEN); if (file != wxEmptyString) { m_lastPath = wxPathOnly(file); #if defined __WXMSW__ file.Replace(wxT("\\"), wxT("/")); #endif wxString name = wxGetTextFromUser(wxT("Enter matrix name:"), wxT("Marix name")); wxString cmd; if (name != wxEmptyString) cmd << name << wxT(": "); wxString format; if (file.EndsWith(wxT(".csv"))) format = wxT("csv"); else if (file.EndsWith(wxT(".tab"))) format = wxT("tab"); if (format != wxEmptyString) MenuCommand(cmd + wxT("read_matrix(\"") + file + wxT("\", '") + format + wxT(");")); else MenuCommand(cmd + wxT("read_matrix(\"") + file + wxT("\");")); } } break; case menu_stats_subsample: { Gen4Wiz *wiz = new Gen4Wiz(_("Data Matrix:"), _("Condition:"), _("Include columns:"), _("Matrix name:"), expr, wxT("col[1]#'NA"), wxEmptyString, wxEmptyString, this, -1, _("Select Subsample"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString name = wiz->GetValue4(); wxString cmd; if (name != wxEmptyString) cmd << name << wxT(": "); cmd += wxT("subsample(\n ") + wiz->GetValue1() + wxT(",\n ") + wxT("lambda([col], is( "); if (wiz->GetValue2() != wxEmptyString) cmd += wiz->GetValue2() + wxT(" ))"); else cmd += wxT("true ))"); if (wiz->GetValue3() != wxEmptyString) cmd += wxT(",\n ") + wiz->GetValue3(); cmd += wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; } } void wxMaxima::OnClose(wxCloseEvent& event) { if (!m_fileSaved && event.CanVeto()) { int close = SaveDocumentP(); if (close == wxID_CANCEL) { event.Veto(); return; } if (close == wxID_YES) { if (!SaveFile()) { event.Veto(); return; } } } wxConfig *config = (wxConfig *)wxConfig::Get(); wxSize size = GetSize(); wxPoint pos = GetPosition(); bool maximized = IsMaximized(); config->Write(wxT("pos-x"), pos.x); config->Write(wxT("pos-y"), pos.y); config->Write(wxT("pos-w"), size.GetWidth()); config->Write(wxT("pos-h"), size.GetHeight()); if (maximized) config->Write(wxT("pos-max"), 1); else config->Write(wxT("pos-max"), 0); if (m_lastPath.Length() > 0) config->Write(wxT("lastPath"), m_lastPath); m_closing = true; #if defined __WXMAC__ wxGetApp().topLevelWindows.Erase(wxGetApp().topLevelWindows.Find(this)); #endif wxTheClipboard->Flush(); CleanUp(); Destroy(); } void wxMaxima::PopupMenu(wxCommandEvent& event) { wxString selection = m_console->GetString(); switch (event.GetId()) { case popid_copy: if (m_console->CanCopy(true)) m_console->Copy(); break; case popid_copy_tex: if (m_console->CanCopy(true)) m_console->CopyTeX(); break; case popid_cut: if (m_console->CanCopy(true)) m_console->CutToClipboard(); break; case popid_paste: m_console->PasteFromClipboard(); break; case popid_select_all: m_console->SelectAll(); break; case popid_comment_selection: m_console->CommentSelection(); break; case popid_divide_cell: m_console->DivideCell(); break; case popid_copy_image: if (m_console->CanCopy()) m_console->CopyBitmap(); break; case popid_simplify: MenuCommand(wxT("ratsimp(") + selection + wxT(");")); break; case popid_expand: MenuCommand(wxT("expand(") + selection + wxT(");")); break; case popid_factor: MenuCommand(wxT("factor(") + selection + wxT(");")); break; case popid_solve: { Gen2Wiz *wiz = new Gen2Wiz(_("Equation(s):"), _("Variable(s):"), selection, wxT("x"), this, -1, _("Solve"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("solve([") + wiz->GetValue1() + wxT("], [") + wiz->GetValue2() + wxT("]);"); MenuCommand(cmd); } wiz->Destroy(); } break; case popid_solve_num: { Gen4Wiz *wiz = new Gen4Wiz(_("Equation:"), _("Variable:"), _("Lower bound:"), _("Upper bound:"), selection, wxT("x"), wxT("-1"), wxT("1"), this, -1, _("Find root"), true); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString cmd = wxT("find_root(") + wiz->GetValue1() + wxT(", ") + wiz->GetValue2() + wxT(", ") + wiz->GetValue3() + wxT(", ") + wiz->GetValue4() + wxT(");"); MenuCommand(cmd); } wiz->Destroy(); } break; case popid_integrate: { IntegrateWiz *wiz = new IntegrateWiz(this, -1, _("Integrate")); wiz->SetValue(selection); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case popid_diff: { Gen3Wiz *wiz = new Gen3Wiz(_("Expression:"), _("Variable(s):"), _("Times:"), selection, wxT("x"), wxT("1"), this, -1, _("Differentiate")); wiz->SetValue(selection); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxStringTokenizer vars(wiz->GetValue2(), wxT(",")); wxStringTokenizer times(wiz->GetValue3(), wxT(",")); wxString val = wxT("diff(") + wiz->GetValue1(); while (vars.HasMoreTokens() && times.HasMoreTokens()) { val += wxT(",") + vars.GetNextToken(); val += wxT(",") + times.GetNextToken(); } val += wxT(");"); MenuCommand(val); } wiz->Destroy(); } break; case popid_subst: { SubstituteWiz *wiz = new SubstituteWiz(this, -1, _("Substitute")); wiz->SetValue(selection); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case popid_plot2d: { Plot2DWiz *wiz = new Plot2DWiz(this, -1, _("Plot 2D")); wiz->SetValue(selection); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case popid_plot3d: { Plot3DWiz *wiz = new Plot3DWiz(this, -1, _("Plot 3D")); wiz->SetValue(selection); wiz->Centre(wxBOTH); if (wiz->ShowModal() == wxID_OK) { wxString val = wiz->GetValue(); MenuCommand(val); } wiz->Destroy(); } break; case popid_float: MenuCommand(wxT("float(") + selection + wxT("), numer;")); break; case popid_image: { wxString file = wxFileSelector(_("Save selection to file"), m_lastPath, wxT("image.png"), wxT("png"), _("PNG image (*.png)|*.png|" "JPEG image (*.jpg)|*.jpg|" "Windows bitmap (*.bmp)|*.bmp|" "X pixmap (*.xpm)|*.xpm"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file.Length()) { m_console->CopyToFile(file); m_lastPath = wxPathOnly(file); } } break; case popid_animation_save: { wxString file = wxFileSelector(_("Save animation to file"), m_lastPath, wxT("animation.gif"), wxT("gif"), _("GIF image (*.gif)|*.gif"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT); if (file.Length()) { MathCell *selection = m_console->GetSelectionStart(); if (selection != NULL && selection->GetType() == MC_TYPE_SLIDE) ((SlideShow *)(selection))->ToGif(file); } } break; case popid_evaluate: m_console->AddSelectionToEvaluationQueue(); TryEvaluateNextInQueue(); break; case popid_merge_cells: m_console->MergeCells(); break; } } void wxMaxima::OnRecentDocument(wxCommandEvent& event) { if (!m_fileSaved) { int close = SaveDocumentP(); if (close == wxID_CANCEL) return; if (close == wxID_YES) { if (!SaveFile()) return; } } wxString file = GetRecentDocument(event.GetId() - menu_recent_document_0); if (wxFileExists(file)) OpenFile(file); else { wxMessageBox(_("File you tried to open does not exist."), _("File not found"), wxOK); RemoveRecentDocument(file); } } void wxMaxima::EditInputMenu(wxCommandEvent& event) { if (!m_console->CanEdit()) return ; EditorCell* tmp = dynamic_cast(m_console->GetSelectionStart()); if (tmp == NULL) return ; m_console->SetActiveCell(tmp); } // EvaluateEvent // User tried to evaluate, find out what is the case // Normally just add the respective groupcells to evaluationqueue // If there is a special case - eg sending from output section // of the working group, handle it carefully. void wxMaxima::EvaluateEvent(wxCommandEvent& event) { MathCell* tmp = m_console->GetActiveCell(); if (tmp != NULL) // we have an active cell { if (tmp->GetType() == MC_TYPE_INPUT && !m_inLispMode) tmp->AddEnding(); // if active cell is part of a working group, we have a special // case - answering a question. Manually send answer to Maxima. if (tmp->GetParent() == m_console->m_evaluationQueue->GetFirst()) { SendMaxima(tmp->ToString(false), true); } else { // normally just add to queue m_console->AddCellToEvaluationQueue(dynamic_cast(tmp->GetParent())); TryEvaluateNextInQueue(); } } else { // no evaluate has been called on no active cell? m_console->AddSelectionToEvaluationQueue(); TryEvaluateNextInQueue(); } } // TryEvaluateNextInQueue // Tries to evaluate next group cell in queue // Calling this function should not do anything dangerous void wxMaxima::TryEvaluateNextInQueue() { if (!m_isConnected) { wxMessageBox(_("\nNot connected to Maxima!\n"), _("Error"), wxOK | wxICON_ERROR); if (!m_console->m_evaluationQueue->Empty()) { if (m_console->m_evaluationQueue->GetFirst()->GetInput()->ToString(false) == wxT("wxmaxima_debug_dump_output;")) DumpProcessOutput(); } while (!m_console->m_evaluationQueue->Empty()) m_console->m_evaluationQueue->RemoveFirst(); m_console->Refresh(); return ; } GroupCell * group = m_console->m_evaluationQueue->GetFirst(); if (group == NULL) { m_console->SetWorkingGroup(NULL); return; //empty queue } if (group->GetEditable()->GetValue() != wxEmptyString) { group->GetEditable()->AddEnding(); group->GetEditable()->ContainsChanges(false); wxString text = group->GetEditable()->ToString(false); // override evaluation when input equals wxmaxima_debug_dump_output if (text.IsSameAs(wxT("wxmaxima_debug_dump_output;"))) { m_console->m_evaluationQueue->RemoveFirst(); DumpProcessOutput(); return; } group->RemoveOutput(); m_console->SetWorkingGroup(group); group->GetPrompt()->SetValue(m_lastPrompt); m_console->Recalculate(); m_console->ScrollToCell(group); SendMaxima(text, true); } else { m_console->m_evaluationQueue->RemoveFirst(); TryEvaluateNextInQueue(); } } void wxMaxima::InsertMenu(wxCommandEvent& event) { int type = 0; bool output = false; switch (event.GetId()) { case menu_insert_previous_output: output = true; case popid_insert_input: case menu_insert_input: case menu_insert_previous_input: type = GC_TYPE_CODE; break; case menu_autocomplete: m_console->Autocomplete(); return ; break; case menu_autocomplete_templates: m_console->Autocomplete(true); return ; break; case menu_add_comment: case popid_add_comment: case menu_format_text: case popid_insert_text: type = GC_TYPE_TEXT; break; case menu_add_title: case menu_format_title: case popid_insert_title: type = GC_TYPE_TITLE; break; case menu_add_section: case menu_format_section: case popid_insert_section: type = GC_TYPE_SECTION; break; case menu_add_subsection: case menu_format_subsection: case popid_insert_subsection: type = GC_TYPE_SUBSECTION; break; case menu_add_pagebreak: case menu_format_pagebreak: m_console->InsertGroupCells(new GroupCell(GC_TYPE_PAGEBREAK), m_console->GetHCaret()); m_console->Refresh(); m_console->SetFocus(); return; break; case menu_insert_image: case menu_format_image: { wxString file = wxFileSelector(_("Insert Image"), m_lastPath, wxEmptyString, wxEmptyString, _("Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm"), wxFD_OPEN); if (file != wxEmptyString) { m_console->OpenHCaret(file, GC_TYPE_IMAGE); } m_console->SetFocus(); return ; } break; case menu_fold_all_cells: m_console->FoldAll(); m_console->Recalculate(true); // send cursor to the top m_console->SetHCaret(NULL); break; case menu_unfold_all_cells: m_console->UnfoldAll(); m_console->Recalculate(true); // refresh without moving cursor m_console->SetHCaret(m_console->GetHCaret()); break; } m_console->SetFocus(); if (event.GetId() == menu_insert_previous_input || event.GetId() == menu_insert_previous_output) { wxString input; if (output == true) input = m_console->GetOutputAboveCaret(); else input = m_console->GetInputAboveCaret(); if (input != wxEmptyString) m_console->OpenHCaret(input, type); } else if (event.GetId() == menu_unfold_all_cells || event.GetId() == menu_fold_all_cells) { // don't do anything else } else m_console->OpenHCaret(wxEmptyString, type); } void wxMaxima::ResetTitle(bool saved) { if (saved != m_fileSaved) { m_fileSaved = saved; if (m_currentFile.Length() == 0) { #ifndef __WXMAC__ if (saved) SetTitle(wxString::Format(_("wxMaxima %s "), wxT(VERSION)) + _("[ unsaved ]")); else SetTitle(wxString::Format(_("wxMaxima %s "), wxT(VERSION)) + _("[ unsaved* ]")); #endif } else { wxString name, ext; wxFileName::SplitPath(m_currentFile, NULL, NULL, &name, &ext); #ifndef __WXMAC__ if (m_fileSaved) SetTitle(wxString::Format(_("wxMaxima %s "), wxT(VERSION)) + wxT(" [ ") + name + wxT(".") + ext + wxT(" ]")); else SetTitle(wxString::Format(_("wxMaxima %s "), wxT(VERSION)) + wxT(" [ ") + name + wxT(".") + ext + wxT("* ]")); #else SetTitle(name + wxT(".") + ext); #endif } #if defined __WXMAC__ #if defined __WXOSX_COCOA__ OSXSetModified(!saved); if (m_currentFile != wxEmptyString) SetRepresentedFilename(m_currentFile); #else WindowRef win = (WindowRef)MacGetTopLevelWindowRef(); SetWindowModified(win,!saved); if (m_currentFile != wxEmptyString) { FSRef fsref; wxMacPathToFSRef(m_currentFile, &fsref); HIWindowSetProxyFSRef(win, &fsref); } #endif #endif } } ///-------------------------------------------------------------------------------- /// Plot Slider ///-------------------------------------------------------------------------------- void wxMaxima::UpdateSlider(wxUpdateUIEvent &ev) { if (m_plotSlider == NULL) return; if (m_console->IsSelected(MC_TYPE_SLIDE)) { if (!m_console->AnimationRunning()) { SlideShow *cell = (SlideShow *)m_console->GetSelectionStart(); m_plotSlider->SetRange(0, cell->Length() - 1); m_plotSlider->SetValue(cell->GetDisplayedIndex()); m_plotSlider->Enable(true); } else m_plotSlider->Enable(false); } else m_plotSlider->Enable(false); } void wxMaxima::SliderEvent(wxScrollEvent &ev) { SlideShow *cell = (SlideShow *)m_console->GetSelectionStart(); if (cell != NULL) { cell->SetDisplayedIndex(ev.GetPosition()); m_console->Refresh(); } } void wxMaxima::ShowPane(wxCommandEvent &ev) { int id = ev.GetId(); wxMaximaFrame::ShowPane(id, !IsPaneDisplayed(id)); } void wxMaxima::HistoryDClick(wxCommandEvent& ev) { m_console->OpenHCaret(ev.GetString(), GC_TYPE_CODE); m_console->SetFocus(); } long *VersionToInt(wxString version) { long *intV = new long[3]; wxStringTokenizer tokens(version, wxT(".")); for (int i=0; i<3 && tokens.HasMoreTokens(); i++) tokens.GetNextToken().ToLong(&intV[i]); return intV; } /*** * Checks the file http://andrejv.github.com/wxmaxima/version.txt to * see if there is a newer version available. */ void wxMaxima::CheckForUpdates(bool reportUpToDate) { wxHTTP connection; connection.SetHeader(wxT("Content-type"), wxT("text/html; charset=utf-8")); connection.SetTimeout(2); if (!connection.Connect(wxT("andrejv.github.com"))) { wxMessageBox(_("Can not connect to the web server."), _("Error"), wxOK | wxICON_ERROR); return; } wxInputStream *inputStream = connection.GetInputStream(_T("/wxmaxima/version.txt")); if (connection.GetError() == wxPROTO_NOERR) { wxString version; wxStringOutputStream outputStream(&version); inputStream->Read(outputStream); if (version.StartsWith(wxT("wxmaxima = "))) { version = version.Mid(11, version.Length()).Trim(); long *myVersion = VersionToInt(wxT(VERSION)); long *currVersion = VersionToInt(version); bool upgrade = myVersion[0] < currVersion[0] || (myVersion[0] == currVersion[0] && myVersion[1]Read(wxT("saveUntitled"), &save); if (!save) return change_return_code(wxNO); #if defined __WXMAC__ file = GetTitle(); #else file = _("unsaved"); #endif } else { wxString ext; wxFileName::SplitPath(m_currentFile, NULL, NULL, &file, &ext); file += wxT(".") + ext; } #if wxCHECK_VERSION(2,9,0) wxMessageDialog dialog(this, _("Do you want to save the changes you made in the document \"") + file + wxT("\"?"), wxEmptyString, wxCENTER | wxYES_NO | wxCANCEL); dialog.SetExtendedMessage(_("Your changes will be lost if you don't save them.")); dialog.SetYesNoCancelLabels(_("Save"), _("Don't save"), _("Cancel")); return dialog.ShowModal(); #else #if defined __WXMAC__ return change_return_code( wxMessageBox(_("Your changes will be lost if you don't save them."), _("Do you want to save the changes you made in the document \"") + file + wxT("\"?"), wxYES_NO|wxCANCEL)); #else return change_return_code( wxMessageBox(_("Save changes before closing?"), _("Save changes?"), wxYES_NO|wxCANCEL)); #endif #endif } BEGIN_EVENT_TABLE(wxMaxima, wxFrame) #if defined __WXMAC__ EVT_MENU(mac_closeId, wxMaxima::FileMenu) #endif EVT_MENU(menu_check_updates, wxMaxima::HelpMenu) EVT_COMMAND_SCROLL(plot_slider_id, wxMaxima::SliderEvent) EVT_MENU(popid_copy, wxMaxima::PopupMenu) EVT_MENU(popid_copy_image, wxMaxima::PopupMenu) EVT_MENU(popid_insert_text, wxMaxima::InsertMenu) EVT_MENU(popid_insert_title, wxMaxima::InsertMenu) EVT_MENU(popid_insert_section, wxMaxima::InsertMenu) EVT_MENU(popid_insert_subsection, wxMaxima::InsertMenu) EVT_MENU(popid_delete, wxMaxima::EditMenu) EVT_MENU(popid_simplify, wxMaxima::PopupMenu) EVT_MENU(popid_factor, wxMaxima::PopupMenu) EVT_MENU(popid_expand, wxMaxima::PopupMenu) EVT_MENU(popid_solve, wxMaxima::PopupMenu) EVT_MENU(popid_solve_num, wxMaxima::PopupMenu) EVT_MENU(popid_subst, wxMaxima::PopupMenu) EVT_MENU(popid_plot2d, wxMaxima::PopupMenu) EVT_MENU(popid_plot3d, wxMaxima::PopupMenu) EVT_MENU(popid_diff, wxMaxima::PopupMenu) EVT_MENU(popid_integrate, wxMaxima::PopupMenu) EVT_MENU(popid_float, wxMaxima::PopupMenu) EVT_MENU(popid_copy_tex, wxMaxima::PopupMenu) EVT_MENU(popid_image, wxMaxima::PopupMenu) EVT_MENU(popid_animation_save, wxMaxima::PopupMenu) EVT_MENU(popid_animation_start, wxMaxima::FileMenu) EVT_BUTTON(button_integrate, wxMaxima::CalculusMenu) EVT_BUTTON(button_diff, wxMaxima::CalculusMenu) EVT_BUTTON(button_solve, wxMaxima::EquationsMenu) EVT_BUTTON(button_solve_ode, wxMaxima::EquationsMenu) EVT_BUTTON(button_sum, wxMaxima::CalculusMenu) EVT_BUTTON(button_expand, wxMaxima::SimplifyMenu) EVT_BUTTON(button_factor, wxMaxima::SimplifyMenu) EVT_BUTTON(button_taylor, wxMaxima::CalculusMenu) EVT_BUTTON(button_limit, wxMaxima::CalculusMenu) EVT_BUTTON(button_ratsimp, wxMaxima::SimplifyMenu) EVT_BUTTON(button_trigexpand, wxMaxima::SimplifyMenu) EVT_BUTTON(button_trigreduce, wxMaxima::SimplifyMenu) EVT_BUTTON(button_trigsimp, wxMaxima::SimplifyMenu) EVT_BUTTON(button_product, wxMaxima::CalculusMenu) EVT_BUTTON(button_radcan, wxMaxima::SimplifyMenu) EVT_BUTTON(button_subst, wxMaxima::MaximaMenu) EVT_BUTTON(button_plot2, wxMaxima::PlotMenu) EVT_BUTTON(button_plot3, wxMaxima::PlotMenu) EVT_BUTTON(button_map, wxMaxima::AlgebraMenu) EVT_BUTTON(button_rectform, wxMaxima::SimplifyMenu) EVT_BUTTON(button_trigrat, wxMaxima::SimplifyMenu) EVT_MENU(menu_polarform, wxMaxima::SimplifyMenu) EVT_MENU(menu_restart_id, wxMaxima::MaximaMenu) #ifndef __WXMAC__ EVT_MENU(wxID_EXIT, wxMaxima::FileMenu) #endif EVT_MENU(wxID_ABOUT, wxMaxima::HelpMenu) EVT_MENU(menu_save_id, wxMaxima::FileMenu) EVT_MENU(menu_save_as_id, wxMaxima::FileMenu) EVT_MENU(menu_load_id, wxMaxima::FileMenu) EVT_MENU(menu_functions, wxMaxima::MaximaMenu) EVT_MENU(menu_variables, wxMaxima::MaximaMenu) EVT_MENU(wxID_PREFERENCES, wxMaxima::EditMenu) EVT_MENU(menu_sconsole_id, wxMaxima::FileMenu) EVT_MENU(menu_export_html, wxMaxima::FileMenu) EVT_MENU(wxID_HELP, wxMaxima::HelpMenu) EVT_MENU(menu_help_tutorials, wxMaxima::HelpMenu) EVT_MENU(menu_bug_report, wxMaxima::HelpMenu) EVT_MENU(menu_build_info, wxMaxima::HelpMenu) EVT_MENU(menu_interrupt_id, wxMaxima::Interrupt) EVT_MENU(menu_new_id, wxMaxima::FileMenu) EVT_MENU(menu_open_id, wxMaxima::FileMenu) EVT_MENU(menu_batch_id, wxMaxima::FileMenu) EVT_MENU(menu_ratsimp, wxMaxima::SimplifyMenu) EVT_MENU(menu_radsimp, wxMaxima::SimplifyMenu) EVT_MENU(menu_expand, wxMaxima::SimplifyMenu) EVT_MENU(menu_factor, wxMaxima::SimplifyMenu) EVT_MENU(menu_gfactor, wxMaxima::SimplifyMenu) EVT_MENU(menu_trigsimp, wxMaxima::SimplifyMenu) EVT_MENU(menu_trigexpand, wxMaxima::SimplifyMenu) EVT_MENU(menu_trigreduce, wxMaxima::SimplifyMenu) EVT_MENU(menu_rectform, wxMaxima::SimplifyMenu) EVT_MENU(menu_demoivre, wxMaxima::SimplifyMenu) EVT_MENU(menu_num_out, wxMaxima::NumericalMenu) EVT_MENU(menu_to_float, wxMaxima::NumericalMenu) EVT_MENU(menu_to_bfloat, wxMaxima::NumericalMenu) EVT_MENU(menu_exponentialize, wxMaxima::SimplifyMenu) EVT_MENU(menu_invert_mat, wxMaxima::AlgebraMenu) EVT_MENU(menu_determinant, wxMaxima::AlgebraMenu) EVT_MENU(menu_eigen, wxMaxima::AlgebraMenu) EVT_MENU(menu_eigvect, wxMaxima::AlgebraMenu) EVT_MENU(menu_adjoint_mat, wxMaxima::AlgebraMenu) EVT_MENU(menu_transpose, wxMaxima::AlgebraMenu) EVT_MENU(menu_set_precision, wxMaxima::NumericalMenu) EVT_MENU(menu_talg, wxMaxima::SimplifyMenu) EVT_MENU(menu_tellrat, wxMaxima::SimplifyMenu) EVT_MENU(menu_modulus, wxMaxima::SimplifyMenu) EVT_MENU(menu_allroots, wxMaxima::EquationsMenu) EVT_MENU(menu_bfallroots, wxMaxima::EquationsMenu) EVT_MENU(menu_realroots, wxMaxima::EquationsMenu) EVT_MENU(menu_solve, wxMaxima::EquationsMenu) EVT_MENU(menu_solve_to_poly, wxMaxima::EquationsMenu) EVT_MENU(menu_solve_num, wxMaxima::EquationsMenu) EVT_MENU(menu_solve_ode, wxMaxima::EquationsMenu) EVT_MENU(menu_map_mat, wxMaxima::AlgebraMenu) EVT_MENU(menu_enter_mat, wxMaxima::AlgebraMenu) EVT_MENU(menu_cpoly, wxMaxima::AlgebraMenu) EVT_MENU(menu_solve_lin, wxMaxima::EquationsMenu) EVT_MENU(menu_solve_algsys, wxMaxima::EquationsMenu) EVT_MENU(menu_eliminate, wxMaxima::EquationsMenu) EVT_MENU(menu_clear_var, wxMaxima::MaximaMenu) EVT_MENU(menu_clear_fun, wxMaxima::MaximaMenu) EVT_MENU(menu_ivp_1, wxMaxima::EquationsMenu) EVT_MENU(menu_ivp_2, wxMaxima::EquationsMenu) EVT_MENU(menu_bvp, wxMaxima::EquationsMenu) EVT_MENU(menu_bvp, wxMaxima::EquationsMenu) EVT_MENU(menu_fun_def, wxMaxima::MaximaMenu) EVT_MENU(menu_divide, wxMaxima::CalculusMenu) EVT_MENU(menu_gcd, wxMaxima::CalculusMenu) EVT_MENU(menu_lcm, wxMaxima::CalculusMenu) EVT_MENU(menu_continued_fraction, wxMaxima::CalculusMenu) EVT_MENU(menu_partfrac, wxMaxima::CalculusMenu) EVT_MENU(menu_risch, wxMaxima::CalculusMenu) EVT_MENU(menu_integrate, wxMaxima::CalculusMenu) EVT_MENU(menu_laplace, wxMaxima::CalculusMenu) EVT_MENU(menu_ilt, wxMaxima::CalculusMenu) EVT_MENU(menu_diff, wxMaxima::CalculusMenu) EVT_MENU(menu_series, wxMaxima::CalculusMenu) EVT_MENU(menu_limit, wxMaxima::CalculusMenu) EVT_MENU(menu_lbfgs, wxMaxima::CalculusMenu) EVT_MENU(menu_gen_mat, wxMaxima::AlgebraMenu) EVT_MENU(menu_gen_mat_lambda, wxMaxima::AlgebraMenu) EVT_MENU(menu_map, wxMaxima::AlgebraMenu) EVT_MENU(menu_sum, wxMaxima::CalculusMenu) EVT_MENU(menu_example, wxMaxima::HelpMenu) EVT_MENU(menu_apropos, wxMaxima::HelpMenu) EVT_MENU(menu_show_tip, wxMaxima::HelpMenu) EVT_MENU(menu_trigrat, wxMaxima::SimplifyMenu) EVT_MENU(menu_solve_de, wxMaxima::EquationsMenu) EVT_MENU(menu_atvalue, wxMaxima::EquationsMenu) EVT_MENU(menu_sum, wxMaxima::CalculusMenu) EVT_MENU(menu_product, wxMaxima::CalculusMenu) EVT_MENU(menu_change_var, wxMaxima::CalculusMenu) EVT_MENU(menu_make_list, wxMaxima::AlgebraMenu) EVT_MENU(menu_apply, wxMaxima::AlgebraMenu) EVT_MENU(menu_time, wxMaxima::MaximaMenu) EVT_MENU(menu_factsimp, wxMaxima::SimplifyMenu) EVT_MENU(menu_factcomb, wxMaxima::SimplifyMenu) EVT_MENU(menu_realpart, wxMaxima::SimplifyMenu) EVT_MENU(menu_imagpart, wxMaxima::SimplifyMenu) EVT_MENU(menu_nouns, wxMaxima::SimplifyMenu) EVT_MENU(menu_logcontract, wxMaxima::SimplifyMenu) EVT_MENU(menu_logexpand, wxMaxima::SimplifyMenu) EVT_MENU(gp_plot2, wxMaxima::PlotMenu) EVT_MENU(gp_plot3, wxMaxima::PlotMenu) EVT_MENU(menu_plot_format, wxMaxima::PlotMenu) EVT_MENU(menu_soft_restart, wxMaxima::MaximaMenu) EVT_MENU(menu_display, wxMaxima::MaximaMenu) EVT_MENU(menu_pade, wxMaxima::CalculusMenu) EVT_MENU(menu_add_path, wxMaxima::MaximaMenu) EVT_MENU(menu_copy_from_console, wxMaxima::EditMenu) EVT_MENU(menu_copy_text_from_console, wxMaxima::EditMenu) EVT_MENU(menu_copy_tex_from_console, wxMaxima::EditMenu) EVT_MENU(menu_undo, wxMaxima::EditMenu) EVT_MENU(menu_redo, wxMaxima::EditMenu) EVT_MENU(menu_texform, wxMaxima::MaximaMenu) EVT_MENU(menu_to_fact, wxMaxima::SimplifyMenu) EVT_MENU(menu_to_gamma, wxMaxima::SimplifyMenu) #if WXM_PRINT EVT_MENU(wxID_PRINT, wxMaxima::PrintMenu) #if defined (__WXMSW__) || (__WXGTK20__) || defined (__WXMAC__) EVT_TOOL(tb_print, wxMaxima::PrintMenu) #endif #endif EVT_MENU(menu_zoom_in, wxMaxima::EditMenu) EVT_MENU(menu_zoom_out, wxMaxima::EditMenu) EVT_MENU(menu_zoom_80, wxMaxima::EditMenu) EVT_MENU(menu_zoom_100, wxMaxima::EditMenu) EVT_MENU(menu_zoom_120, wxMaxima::EditMenu) EVT_MENU(menu_zoom_150, wxMaxima::EditMenu) EVT_MENU(menu_zoom_200, wxMaxima::EditMenu) EVT_MENU(menu_zoom_300, wxMaxima::EditMenu) EVT_MENU(menu_fullscreen, wxMaxima::EditMenu) EVT_MENU(menu_copy_as_bitmap, wxMaxima::EditMenu) EVT_MENU(menu_copy_to_file, wxMaxima::EditMenu) EVT_MENU(menu_select_all, wxMaxima::EditMenu) EVT_MENU(menu_subst, wxMaxima::MaximaMenu) #if defined (__WXMSW__) || defined (__WXGTK20__) EVT_TOOL(tb_new, wxMaxima::FileMenu) #endif #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) EVT_TOOL(tb_open, wxMaxima::FileMenu) EVT_TOOL(tb_save, wxMaxima::FileMenu) EVT_TOOL(tb_copy, wxMaxima::EditMenu) EVT_TOOL(tb_paste, wxMaxima::EditMenu) EVT_TOOL(tb_cut, wxMaxima::EditMenu) EVT_TOOL(tb_pref, wxMaxima::EditMenu) EVT_TOOL(tb_interrupt, wxMaxima::Interrupt) EVT_TOOL(tb_help, wxMaxima::HelpMenu) EVT_TOOL(tb_animation_start, wxMaxima::FileMenu) EVT_TOOL(tb_animation_stop, wxMaxima::FileMenu) EVT_TOOL(tb_find, wxMaxima::EditMenu) #endif EVT_SOCKET(socket_server_id, wxMaxima::ServerEvent) EVT_SOCKET(socket_client_id, wxMaxima::ClientEvent) EVT_UPDATE_UI(menu_interrupt_id, wxMaxima::UpdateMenus) EVT_UPDATE_UI(plot_slider_id, wxMaxima::UpdateSlider) EVT_UPDATE_UI(menu_copy_from_console, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_copy_text_from_console, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_copy_tex_from_console, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_zoom_in, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_zoom_out, wxMaxima::UpdateMenus) EVT_UPDATE_UI(wxID_PRINT, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_copy_as_bitmap, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_copy_to_file, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_evaluate, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_evaluate_all, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_select_all, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_undo, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_pane_hideall, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_pane_math, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_pane_stats, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_pane_history, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_pane_format, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_remove_output, wxMaxima::UpdateMenus) #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) EVT_UPDATE_UI(tb_print, wxMaxima::UpdateToolBar) EVT_UPDATE_UI(tb_copy, wxMaxima::UpdateToolBar) EVT_UPDATE_UI(tb_cut, wxMaxima::UpdateToolBar) EVT_UPDATE_UI(tb_interrupt, wxMaxima::UpdateToolBar) EVT_UPDATE_UI(tb_save, wxMaxima::UpdateToolBar) EVT_UPDATE_UI(tb_animation_start, wxMaxima::UpdateToolBar) EVT_UPDATE_UI(tb_animation_stop, wxMaxima::UpdateToolBar) #endif EVT_UPDATE_UI(menu_save_id, wxMaxima::UpdateMenus) EVT_UPDATE_UI(menu_show_toolbar, wxMaxima::UpdateMenus) EVT_CLOSE(wxMaxima::OnClose) EVT_END_PROCESS(maxima_process_id, wxMaxima::OnProcessEvent) EVT_MENU(popid_edit, wxMaxima::EditInputMenu) EVT_MENU(menu_evaluate, wxMaxima::EvaluateEvent) EVT_MENU(menu_add_comment, wxMaxima::InsertMenu) EVT_MENU(menu_add_section, wxMaxima::InsertMenu) EVT_MENU(menu_add_subsection, wxMaxima::InsertMenu) EVT_MENU(menu_add_title, wxMaxima::InsertMenu) EVT_MENU(menu_add_pagebreak, wxMaxima::InsertMenu) EVT_MENU(menu_fold_all_cells, wxMaxima::InsertMenu) EVT_MENU(menu_unfold_all_cells, wxMaxima::InsertMenu) EVT_MENU(popid_add_comment, wxMaxima::InsertMenu) EVT_MENU(menu_insert_previous_input, wxMaxima::InsertMenu) EVT_MENU(menu_insert_previous_output, wxMaxima::InsertMenu) EVT_MENU(menu_autocomplete, wxMaxima::InsertMenu) EVT_MENU(menu_autocomplete_templates, wxMaxima::InsertMenu) EVT_MENU(menu_insert_input, wxMaxima::InsertMenu) EVT_MENU(popid_insert_input, wxMaxima::InsertMenu) EVT_MENU(menu_history_previous, wxMaxima::EditMenu) EVT_MENU(menu_history_next, wxMaxima::EditMenu) EVT_MENU(menu_cut, wxMaxima::EditMenu) EVT_MENU(menu_paste, wxMaxima::EditMenu) EVT_MENU(menu_paste_input, wxMaxima::EditMenu) EVT_MENU(popid_cut, wxMaxima::PopupMenu) EVT_MENU(popid_paste, wxMaxima::PopupMenu) EVT_MENU(popid_select_all, wxMaxima::PopupMenu) EVT_MENU(popid_comment_selection, wxMaxima::PopupMenu) EVT_MENU(popid_divide_cell, wxMaxima::PopupMenu) EVT_MENU(popid_evaluate, wxMaxima::PopupMenu) EVT_MENU(popid_merge_cells, wxMaxima::PopupMenu) EVT_MENU(menu_evaluate_all_visible, wxMaxima::MaximaMenu) EVT_MENU(menu_evaluate_all, wxMaxima::MaximaMenu) EVT_IDLE(wxMaxima::OnIdle) EVT_MENU(menu_remove_output, wxMaxima::EditMenu) EVT_MENU_RANGE(menu_recent_document_0, menu_recent_document_9, wxMaxima::OnRecentDocument) EVT_MENU(menu_insert_image, wxMaxima::InsertMenu) EVT_MENU_RANGE(menu_pane_hideall, menu_pane_stats, wxMaxima::ShowPane) EVT_MENU(menu_show_toolbar, wxMaxima::EditMenu) EVT_LISTBOX_DCLICK(history_ctrl_id, wxMaxima::HistoryDClick) EVT_BUTTON(menu_stats_histogram, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_piechart, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_scatterplot, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_barsplot, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_boxplot, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_mean, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_median, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_var, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_dev, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_tt1, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_tt2, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_tnorm, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_linreg, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_lsquares, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_readm, wxMaxima::StatsMenu) EVT_BUTTON(menu_stats_enterm, wxMaxima::AlgebraMenu) EVT_BUTTON(menu_stats_subsample, wxMaxima::StatsMenu) EVT_BUTTON(menu_format_title, wxMaxima::InsertMenu) EVT_BUTTON(menu_format_text, wxMaxima::InsertMenu) EVT_BUTTON(menu_format_subsection, wxMaxima::InsertMenu) EVT_BUTTON(menu_format_section, wxMaxima::InsertMenu) EVT_BUTTON(menu_format_pagebreak, wxMaxima::InsertMenu) EVT_BUTTON(menu_format_image, wxMaxima::InsertMenu) EVT_MENU(menu_edit_find, wxMaxima::EditMenu) EVT_FIND(wxID_ANY, wxMaxima::OnFind) EVT_FIND_NEXT(wxID_ANY, wxMaxima::OnFind) EVT_FIND_REPLACE(wxID_ANY, wxMaxima::OnReplace) EVT_FIND_REPLACE_ALL(wxID_ANY, wxMaxima::OnReplaceAll) EVT_FIND_CLOSE(wxID_ANY, wxMaxima::OnFindClose) END_EVENT_TABLE() wxMaxima-13.04.2/src/wxMaxima.h000644 000765 000024 00000017451 12106400472 016621 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2013 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef _WXMAXIMA_H_ #define _WXMAXIMA_H_ #include "wxMaximaFrame.h" #include "MathParser.h" #include #include #include #include #include #include #include #if defined (__WXMSW__) #include #else #include #endif #define SOCKET_SIZE 1024 #define DOCUMENT_VERSION_MAJOR 1 #define DOCUMENT_VERSION_MINOR 1 class MyApp : public wxApp { public: virtual bool OnInit(); wxLocale m_locale; void NewWindow(wxString file = wxEmptyString); #if defined (__WXMAC__) wxWindowList topLevelWindows; void OnFileMenu(wxCommandEvent &ev); virtual void MacNewFile(); virtual void MacOpenFile(const wxString& file); #endif }; DECLARE_APP(MyApp) #ifndef __WXGTK__ class MyAboutDialog : public wxDialog { public: MyAboutDialog(wxWindow *parent, int id, const wxString title, wxString description); ~MyAboutDialog() {}; void OnLinkClicked(wxHtmlLinkEvent& event); DECLARE_EVENT_TABLE() }; #endif class wxMaxima : public wxMaximaFrame { public: wxMaxima(wxWindow *parent, int id, const wxString title, const wxPoint pos, const wxSize size = wxDefaultSize); ~wxMaxima(); void ShowTip(bool force); wxString GetHelpFile(); void ShowHelp(wxString keyword = wxEmptyString); void InitSession(); void SetOpenFile(wxString file) { m_openFile = file; } void SendMaxima(wxString s, bool history = false); void OpenFile(wxString file, wxString command = wxEmptyString); // Open a file bool DocumentSaved() { return m_fileSaved; } void LoadImage(wxString file) { m_console->OpenHCaret(file, GC_TYPE_IMAGE); } protected: void CheckForUpdates(bool reportUpToDate = false); void OnRecentDocument(wxCommandEvent& event); void OnIdle(wxIdleEvent& event); void MenuCommand(wxString cmd); // void FileMenu(wxCommandEvent& event); // void MaximaMenu(wxCommandEvent& event); // void AlgebraMenu(wxCommandEvent& event); // void EquationsMenu(wxCommandEvent& event); // void CalculusMenu(wxCommandEvent& event); // event handling for menus void SimplifyMenu(wxCommandEvent& event); // void PlotMenu(wxCommandEvent& event); // void NumericalMenu(wxCommandEvent& event); // void HelpMenu(wxCommandEvent& event); // void EditMenu(wxCommandEvent& event); // void Interrupt(wxCommandEvent& event); // void UpdateMenus(wxUpdateUIEvent& event); // void UpdateToolBar(wxUpdateUIEvent& event); // void UpdateSlider(wxUpdateUIEvent& event); // void ShowPane(wxCommandEvent& event); // void OnProcessEvent(wxProcessEvent& event); // void PopupMenu(wxCommandEvent& event); // void StatsMenu(wxCommandEvent& event); // void OnFind(wxFindDialogEvent& event); void OnFindClose(wxFindDialogEvent& event); void OnReplace(wxFindDialogEvent& event); void OnReplaceAll(wxFindDialogEvent& event); void SanitizeSocketBuffer(char *buffer, int length); // fix early nulls void ServerEvent(wxSocketEvent& event); // server event: maxima connection void ClientEvent(wxSocketEvent& event); // client event: maxima input/output void ConsoleAppend(wxString s, int type); // append maxima output to console void DoConsoleAppend(wxString s, int type, // bool newLine = true, bool bigSkip = true); void DoRawConsoleAppend(wxString s, int type); // void EditInputMenu(wxCommandEvent& event); // void EvaluateEvent(wxCommandEvent& event); // void InsertMenu(wxCommandEvent& event); // void SliderEvent(wxScrollEvent& event); void HistoryDClick(wxCommandEvent& event); void OnInspectorEvent(wxCommandEvent& ev); void DumpProcessOutput(); void TryEvaluateNextInQueue(); void TryUpdateInspector(); #if WXM_PRINT void CheckForPrintingSupport(); void PrintMenu(wxCommandEvent& event); #endif wxString ExtractFirstExpression(wxString entry); wxString GetDefaultEntry(); bool StartServer(); // starts the server bool StartMaxima(); // starts maxima (uses getCommand) void CleanUp(); // shuts down server and client on exit void OnClose(wxCloseEvent& event); // close wxMaxima window wxString GetCommand(bool params = true); // returns the command to start maxima // (uses guessConfiguration) void ReadFirstPrompt(); // reads everything before first prompt // setsup m_pid void ReadPrompt(); // reads prompts void ReadMath(); // reads output other than prompts void ReadLispError(); // lisp errors (no prompt prefix/suffix) void ReadLoadSymbols(); // functions after load command #ifndef __WXMSW__ void ReadProcessOutput(); // reads output of maxima command #endif void SetupVariables(); // sets some maxima variables void KillMaxima(); // kills the maxima process void ResetTitle(bool saved); void FirstOutput(wxString s); // loading functions bool OpenWXMFile(wxString file, MathCtrl *document, bool clearDocument = true); bool OpenWXMXFile(wxString file, MathCtrl *document, bool clearDocument = true); GroupCell* CreateTreeFromXMLNode(wxXmlNode *xmlcells, wxString wxmxfilename = wxEmptyString); GroupCell* CreateTreeFromWXMCode(wxArrayString *wxmLines); bool SaveFile(bool forceSave = false); int SaveDocumentP(); wxSocketBase *m_client; wxSocketServer *m_server; bool m_isConnected; bool m_isRunning; bool m_first; long m_pid; wxProcess *m_process; wxInputStream *m_input; int m_port; wxString m_currentOutput; wxString m_promptSuffix; wxString m_promptPrefix; wxString m_firstPrompt; bool m_readingPrompt; bool m_dispReadOut; // what is displayed in statusbar bool m_inLispMode; // don't add ; in lisp mode wxString m_lastPrompt; wxString m_lastPath; MathParser m_MParser; wxPrintData* m_printData; #if WXM_PRINT bool m_supportPrinting; #endif bool m_closing; wxString m_openFile; wxString m_currentFile; bool m_fileSaved; bool m_variablesOK; wxString m_helpFile; wxString m_maximaVersion; wxString m_lispVersion; #if defined (__WXMSW__) wxCHMHelpController m_helpCtrl; #else wxHtmlHelpController m_helpCtrl; #endif wxFindReplaceDialog *m_findDialog; wxFindReplaceData m_findData; wxRegEx m_funRegEx; wxRegEx m_varRegEx; #if wxUSE_DRAG_AND_DROP friend class MyDropTarget; #endif DECLARE_EVENT_TABLE() }; #if wxUSE_DRAG_AND_DROP class MyDropTarget : public wxFileDropTarget { public: MyDropTarget(wxMaxima * wxmax) { m_wxmax = wxmax; } bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& files); private: wxMaxima *m_wxmax; }; #endif #endif //_WXMAXIM_H_ wxMaxima-13.04.2/src/wxMaximaFrame.cpp000644 000765 000024 00000142143 12065554640 020137 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2011-2011 cw.ahbong /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #include "wxMaximaFrame.h" #include #include #include #include wxMaximaFrame::wxMaximaFrame(wxWindow* parent, int id, const wxString& title, const wxPoint& pos, const wxSize& size, long style): wxFrame(parent, id, title, pos, size, wxDEFAULT_FRAME_STYLE) { m_manager.SetManagedWindow(this); // console m_console = new MathCtrl(this, -1, wxDefaultPosition, wxDefaultSize); // history m_history = new History(this, -1); m_plotSlider = NULL; SetupMenu(); #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) SetupToolBar(); #endif CreateStatusBar(2); int widths[] = { -1, 300 }; SetStatusWidths(2, widths); #if defined __WXMSW__ wxAcceleratorEntry entries[1]; entries[0].Set(wxACCEL_CTRL, WXK_RETURN, menu_evaluate); wxAcceleratorTable accel(1, entries); SetAcceleratorTable(accel); #endif set_properties(); do_layout(); m_console->SetFocus(); } wxMaximaFrame::~wxMaximaFrame() { wxString perspective = m_manager.SavePerspective(); wxConfig::Get()->Write(wxT("AUI/perspective"), perspective); #if defined __WXMAC__ wxConfig::Get()->Write(wxT("AUI/toolbar"), (GetToolBar()->IsShown())); #else wxConfig::Get()->Write(wxT("AUI/toolbar"), (GetToolBar() != NULL)); #endif m_manager.UnInit(); } void wxMaximaFrame::set_properties() { #if defined (__WXMSW__) SetIcon(wxICON(icon0)); #elif defined (__WXGTK__) wxString icon(wxT(PREFIX)); icon += wxT("/share/wxMaxima/wxmaxima.png"); SetIcon(wxIcon(icon, wxBITMAP_TYPE_PNG)); #endif #ifndef __WXMAC__ SetTitle(wxString::Format(_("wxMaxima %s "), wxT(VERSION)) + _("[ unsaved ]")); #else SetTitle(_("untitled")); #endif m_console->SetBackgroundColour(wxColour(wxT("WHITE"))); m_console->SetMinSize(wxSize(100, 100)); SetStatusText(_("Welcome to wxMaxima"), 0); } void wxMaximaFrame::do_layout() { m_manager.AddPane(m_console, wxAuiPaneInfo().Name(wxT("console")). Center(). CloseButton(false). CaptionVisible(false). PaneBorder(false)); m_manager.AddPane(m_history, wxAuiPaneInfo().Name(wxT("history")). Caption(_("History")). Show(false). TopDockable(false). BottomDockable(false). PaneBorder(true). Right()); m_manager.AddPane(CreateStatPane(), wxAuiPaneInfo().Name(wxT("stats")). Caption(_("Statistics")). Show(false). TopDockable(false). BottomDockable(false). PaneBorder(true). Fixed(). Left()); m_manager.AddPane(CreateMathPane(), wxAuiPaneInfo().Name(wxT("math")). Caption(_("General Math")). Show(false). TopDockable(false). BottomDockable(false). PaneBorder(true). Fixed(). Left()); m_manager.AddPane(CreateFormatPane(), wxAuiPaneInfo().Name(wxT("format")). Caption(_("Insert")). Show(false). TopDockable(false). BottomDockable(false). PaneBorder(true). Fixed(). Left()); wxConfigBase *config = wxConfig::Get(); bool loadPanes = false; config->Read(wxT("AUI/savePanes"), &loadPanes); if (loadPanes) { wxString perspective; bool toolbar = true; if (config->Read(wxT("AUI/perspective"), &perspective)) m_manager.LoadPerspective(perspective); config->Read(wxT("AUI/toolbar"), &toolbar); ShowToolBar(toolbar); } else m_manager.Update(); } void wxMaximaFrame::SetupMenu() { wxMenuBar *frame_1_menubar = new wxMenuBar(); #if defined __WXGTK20__ wxMenuItem *tmp_menu_item; #define APPEND_MENU_ITEM(menu, id, label, help, stock) \ tmp_menu_item = new wxMenuItem((menu), (id), (label), (help), wxITEM_NORMAL); \ tmp_menu_item->SetBitmap(wxArtProvider::GetBitmap((stock), wxART_MENU)); \ (menu)->Append(tmp_menu_item); #else #define APPEND_MENU_ITEM(menu, id, label, help, stock) \ (menu)->Append((id), (label), (help), wxITEM_NORMAL); #endif // File menu wxMenu* wxglade_tmp_menu_1 = new wxMenu; #if defined __WXMAC__ wxglade_tmp_menu_1->Append(mac_newId, _("New\tCtrl-N"), _("Open a new window")); #else APPEND_MENU_ITEM(wxglade_tmp_menu_1, menu_new_id, _("New\tCtrl-N"), _("Open a new window"), wxT("gtk-new")); #endif APPEND_MENU_ITEM(wxglade_tmp_menu_1, menu_open_id, _("&Open...\tCtrl-O"), _("Open a document"), wxT("gtk-open")); m_recentDocumentsMenu = new wxMenu(); wxglade_tmp_menu_1->Append(menu_recent_documents, _("Open Recent"), m_recentDocumentsMenu); #if defined __WXMAC__ wxglade_tmp_menu_1->AppendSeparator(); wxglade_tmp_menu_1->Append(mac_closeId, _("Close\tCtrl-W"), _("Close window"), wxITEM_NORMAL); #endif APPEND_MENU_ITEM(wxglade_tmp_menu_1, menu_save_id, _("&Save\tCtrl-S"), _("Save document"), wxT("gtk-save")); APPEND_MENU_ITEM(wxglade_tmp_menu_1, menu_save_as_id, _("Save As...\tShift-Ctrl-S"), _("Save document as"), wxT("gtk-save")); wxglade_tmp_menu_1->Append(menu_load_id, _("&Load Package...\tCtrl-L"), _("Load a Maxima package file"), wxITEM_NORMAL); wxglade_tmp_menu_1->Append(menu_batch_id, _("&Batch File...\tCtrl-B"), _("Load a Maxima file using the batch command"), wxITEM_NORMAL); wxglade_tmp_menu_1->Append(menu_export_html, _("&Export..."), _("Export document to a HTML or pdfLaTeX file"), wxITEM_NORMAL); #if WXM_PRINT wxglade_tmp_menu_1->AppendSeparator(); APPEND_MENU_ITEM(wxglade_tmp_menu_1, wxID_PRINT, _("&Print...\tCtrl-P"), _("Print document"), wxT("gtk-print")); #endif wxglade_tmp_menu_1->AppendSeparator(); APPEND_MENU_ITEM(wxglade_tmp_menu_1, wxID_EXIT, _("E&xit\tCtrl-Q"), _("Exit wxMaxima"), wxT("gtk-quit")); frame_1_menubar->Append(wxglade_tmp_menu_1, _("&File")); // Edit menu wxMenu* wxglade_tmp_menu_2 = new wxMenu; wxglade_tmp_menu_2->Append(menu_undo, _("Undo\tCtrl-Z"), _("Undo last change"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_redo, _("Redo\tCtrl-Shift-Z"), _("Redo last change"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_cut, _("Cut\tCtrl-X"), _("Cut selection"), wxITEM_NORMAL); APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_copy_from_console, _("&Copy\tCtrl-C"), _("Copy selection"), wxT("gtk-copy")); wxglade_tmp_menu_2->Append(menu_copy_text_from_console, _("Copy as Text\tCtrl-Shift-C"), _("Copy selection from document as text"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_copy_tex_from_console, _("Copy as LaTeX"), _("Copy selection from document in LaTeX format"), wxITEM_NORMAL); #if defined __WXMSW__ || defined __WXMAC__ wxglade_tmp_menu_2->Append(menu_copy_as_bitmap, _("Copy as Image"), _("Copy selection from document as an image"), wxITEM_NORMAL); #endif wxglade_tmp_menu_2->Append(menu_paste, _("Paste\tCtrl-V"), _("Paste text from clipboard"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_edit_find, _("Find\tCtrl-F"), _("Find and replace"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_select_all, _("Select All\tCtrl-A"), _("Select all"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_copy_to_file, _("Save Selection to Image..."), _("Save selection from document to an image file"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_zoom_in, _("Zoom &In\tAlt-I"), _("Zoom in 10%"), wxT("gtk-zoom-in")); APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_zoom_out, _("Zoom Ou&t\tAlt-O"), _("Zoom out 10%"), wxT("gtk-zoom-out")); // zoom submenu wxMenu* edit_zoom_sub = new wxMenu; edit_zoom_sub->Append(menu_zoom_80, wxT("80%"), _("Set zoom to 80%"), wxITEM_NORMAL); edit_zoom_sub->Append(menu_zoom_100, wxT("100%"), _("Set zoom to 100%"), wxITEM_NORMAL); edit_zoom_sub->Append(menu_zoom_120, wxT("120%"), _("Set zoom to 120%"), wxITEM_NORMAL); edit_zoom_sub->Append(menu_zoom_150, wxT("150%"), _("Set zoom to 150%"), wxITEM_NORMAL); edit_zoom_sub->Append(menu_zoom_200, wxT("200%"), _("Set zoom to 200%"), wxITEM_NORMAL); edit_zoom_sub->Append(menu_zoom_300, wxT("300%"), _("Set zoom to 300%"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(wxNewId(), _("Set Zoom"), edit_zoom_sub, _("Set Zoom")); wxglade_tmp_menu_2->Append(menu_fullscreen, _("Full Screen\tAlt-Enter"), _("Toggle full screen editing"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); #if defined __WXMAC__ APPEND_MENU_ITEM(wxglade_tmp_menu_2, wxID_PREFERENCES, _("Preferences...\tCTRL+,"), _("Configure wxMaxima"), wxT("gtk-preferences")); #else APPEND_MENU_ITEM(wxglade_tmp_menu_2, wxID_PREFERENCES, _("C&onfigure"), _("Configure wxMaxima"), wxT("gtk-preferences")); #endif frame_1_menubar->Append(wxglade_tmp_menu_2, _("&Edit")); // Cell menu wxglade_tmp_menu_2 = new wxMenu; wxglade_tmp_menu_2->Append(menu_evaluate, _("Evaluate Cell(s)"), _("Evaluate active or selected cell(s)"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_evaluate_all_visible, _("Evaluate All Visible Cells\tCtrl-R"), _("Evaluate all visible cells in the document"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_evaluate_all, _("Evaluate All Cells\tCtrl-Shift-R"), _("Evaluate all cells in the document"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_remove_output, _("Remove All Output"), _("Remove output from input cells"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_insert_previous_input, _("Copy Previous Input\tCtrl-I"), _("Create a new cell with previous input"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_insert_previous_output, _("Copy Previous Output\tCtrl-U"), _("Create a new cell with previous output"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_autocomplete, _("Complete Word\tCtrl-K"), _("Complete word"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_autocomplete_templates, _("Show Template\tCtrl-Shift-K"), _("Show function template"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_insert_input, _("Insert Input &Cell"), _("Insert a new input cell")); wxglade_tmp_menu_2->Append(menu_add_comment, _("Insert &Text Cell\tCtrl-1"), _("Insert a new text cell")); wxglade_tmp_menu_2->Append(menu_add_title, _("Insert T&itle Cell\tCtrl-2"), _("Insert a new title cell")); wxglade_tmp_menu_2->Append(menu_add_section, _("Insert &Section Cell\tCtrl-3"), _("Insert a new section cell")); wxglade_tmp_menu_2->Append(menu_add_subsection, _("Insert S&ubsection Cell\tCtrl-4"), _("Insert a new subsection cell")); wxglade_tmp_menu_2->Append(menu_add_pagebreak, _("Insert Page Break"), _("Insert a page break")); wxglade_tmp_menu_2->Append(menu_insert_image, _("Insert Image..."), _("Insert image"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_fold_all_cells, _("Fold All\tCtrl-Alt-["), _("Fold all sections"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_unfold_all_cells, _("Unfold All\tCtrl-Alt-]"), _("Unfold all folded sections"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_history_previous, _("Previous Command\tAlt-Up"), _("Recall previous command from history"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_history_next, _("Next Command\tAlt-Down"), _("Recall next command from history"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_2, _("Ce&ll")); // Maxima menu wxglade_tmp_menu_2 = new wxMenu; // panes wxMenu *wxglade_tmp_menu_2_sub2 = new wxMenu; wxglade_tmp_menu_2_sub2->Append(menu_pane_hideall, _("Hide All\tAlt-Shift--"), _("Hide all panes"), wxITEM_NORMAL); wxglade_tmp_menu_2_sub2->AppendSeparator(); wxglade_tmp_menu_2_sub2->AppendCheckItem(menu_pane_math, _("General Math\tAlt-Shift-M")); wxglade_tmp_menu_2_sub2->AppendCheckItem(menu_pane_stats, _("Statistics\tAlt-Shift-S")); wxglade_tmp_menu_2_sub2->AppendCheckItem(menu_pane_history, _("History\tAlt-Shift-H")); wxglade_tmp_menu_2_sub2->AppendCheckItem(menu_pane_format, _("Insert Cell\tAlt-Shift-C")); wxglade_tmp_menu_2_sub2->AppendSeparator(); wxglade_tmp_menu_2_sub2->AppendCheckItem(menu_show_toolbar, _("Toolbar\tAlt-Shift-T")); wxglade_tmp_menu_2->Append(wxNewId(), _("Panes"), wxglade_tmp_menu_2_sub2); wxglade_tmp_menu_2->AppendSeparator(); #if defined (__WXMAC__) APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_interrupt_id, _("&Interrupt\tCtrl-."), // command-. interrupts (mac standard) _("Interrupt current computation"), wxT("gtk-stop")); #else APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_interrupt_id, _("&Interrupt\tCtrl-G"), _("Interrupt current computation"), wxT("gtk-stop")); #endif APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_restart_id, _("&Restart Maxima"), _("Restart Maxima"), wxT("gtk-refresh")); wxglade_tmp_menu_2->Append(menu_soft_restart, _("&Clear Memory"), _("Delete all values from memory"), wxITEM_NORMAL); APPEND_MENU_ITEM(wxglade_tmp_menu_2, menu_add_path, _("Add to &Path..."), _("Add a directory to search path"), wxT("gtk-add")); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_functions, _("Show &Functions"), _("Show defined functions"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_fun_def, _("Show &Definition..."), _("Show definition of a function"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_variables, _("Show &Variables"), _("Show defined variables"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_clear_fun, _("Delete F&unction..."), _("Delete a function"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_clear_var, _("Delete V&ariable..."), _("Delete a variable"), wxITEM_NORMAL); wxglade_tmp_menu_2->AppendSeparator(); wxglade_tmp_menu_2->Append(menu_time, _("Toggle &Time Display"), _("Display time used for evaluation"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_display, _("Change &2d Display"), _("Change the 2d display algorithm used to display math output"), wxITEM_NORMAL); wxglade_tmp_menu_2->Append(menu_texform, _("Display Te&X Form"), _("Display last result in TeX form"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_2, _("&Maxima")); // Equations menu wxMenu* wxglade_tmp_menu_3 = new wxMenu; wxglade_tmp_menu_3->Append(menu_solve, _("&Solve..."), _("Solve equation(s)"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_solve_to_poly, _("Solve (to_poly)..."), _("Solve equation(s) with to_poly_solver"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_solve_num, _("&Find Root..."), _("Find a root of an equation on an interval"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_allroots, _("Roots of &Polynomial"), _("Find all roots of a polynomial"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_bfallroots, _("Roots of Polynomial (bfloat)"), _("Find all roots of a polynomial (bfloat)"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_realroots, _("&Roots of Polynomial (Real)"), _("Find real roots of a polynomial"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_solve_lin, _("Solve &Linear System..."), _("Solve linear system of equations"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_solve_algsys, _("Solve &Algebraic System..."), _("Solve algebraic system of equations"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_eliminate, _("&Eliminate Variable..."), _("Eliminate a variable from a system " "of equations"), wxITEM_NORMAL); wxglade_tmp_menu_3->AppendSeparator(); wxglade_tmp_menu_3->Append(menu_solve_ode, _("Solve &ODE..."), _("Solve ordinary differential equation " "of maximum degree 2"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_ivp_1, _("Initial Value Problem (&1)..."), _("Solve initial value problem for first" " degree ODE"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_ivp_2, _("Initial Value Problem (&2)..."), _("Solve initial value problem for second " "degree ODE"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_bvp, _("&Boundary Value Problem..."), _("Solve boundary value problem for second " "degree ODE"), wxITEM_NORMAL); wxglade_tmp_menu_3->AppendSeparator(); wxglade_tmp_menu_3->Append(menu_solve_de, _("Solve ODE with Lapla&ce..."), _("Solve ordinary differential equations " "with Laplace transformation"), wxITEM_NORMAL); wxglade_tmp_menu_3->Append(menu_atvalue, _("A&t Value..."), _("Setup atvalues for solving ODE with " "Laplace transformation"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_3, _("E&quations")); // Algebra menu wxMenu* wxglade_tmp_menu_4 = new wxMenu; wxglade_tmp_menu_4->Append(menu_gen_mat, _("&Generate Matrix..."), _("Generate a matrix from a 2-dimensional array"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_gen_mat_lambda, _("Generate Matrix from Expression..."), _("Generate a matrix from a lambda expression"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_enter_mat, _("&Enter Matrix..."), _("Enter a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_invert_mat, _("&Invert Matrix"), _("Compute the inverse of a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_cpoly, _("&Characteristic Polynomial..."), _("Compute the characteristic polynomial " "of a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_determinant, _("&Determinant"), _("Compute the determinant of a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_eigen, _("Eigen&values"), _("Find eigenvalues of a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_eigvect, _("Eige&nvectors"), _("Find eigenvectors of a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_adjoint_mat, _("Ad&joint Matrix"), _("Compute the adjoint matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_transpose, _("&Transpose Matrix"), _("Transpose a matrix"), wxITEM_NORMAL); wxglade_tmp_menu_4->AppendSeparator(); wxglade_tmp_menu_4->Append(menu_make_list, _("Make &List..."), _("Make list from expression"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_apply, _("&Apply to List..."), _("Apply function to a list"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_map, _("&Map to List..."), _("Map function to a list"), wxITEM_NORMAL); wxglade_tmp_menu_4->Append(menu_map_mat, _("Ma&p to Matrix..."), _("Map function to a matrix"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_4, _("&Algebra")); // Calculus menu wxMenu* wxglade_tmp_menu_6 = new wxMenu; wxglade_tmp_menu_6->Append(menu_integrate, _("&Integrate..."), _("Integrate expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_risch, _("Risch Integration..."), _("Integrate expression with Risch algorithm"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_change_var, _("C&hange Variable..."), _("Change variable in integral or sum"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_diff, _("&Differentiate..."), _("Differentiate expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_limit, _("Find &Limit..."), _("Find a limit of an expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_lbfgs, _("Find Minimum..."), _("Find a (unconstrained) minimum of an expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_series, _("Get &Series..."), _("Get the Taylor or power series of expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_pade, _("P&ade Approximation..."), _("Pade approximation of a Taylor series"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_sum, _("Calculate Su&m..."), _("Calculate sums"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_product, _("Calculate &Product..."), _("Calculate products"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_laplace, _("Laplace &Transform..."), _("Get Laplace transformation of an expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_ilt, _("Inverse Laplace T&ransform..."), _("Get inverse Laplace transformation of an expression"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_gcd, _("&Greatest Common Divisor..."), _("Compute the greatest common divisor"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_lcm, _("Least Common Multiple..."), _("Compute the least common multiple " "(do load(functs) before using)"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_divide, _("Di&vide Polynomials..."), _("Divide numbers or polynomials"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_partfrac, _("Partial &Fractions..."), _("Decompose rational function to partial fractions"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_continued_fraction, _("&Continued Fraction"), _("Compute continued fraction of a value"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_6, _("&Calculus")); // Simplify menu wxMenu* wxglade_tmp_menu_5 = new wxMenu; wxglade_tmp_menu_5->Append(menu_ratsimp, _("&Simplify Expression"), _("Simplify rational expression"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_radsimp, _("Simplify &Radicals"), _("Simplify expression containing radicals"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_factor, _("&Factor Expression"), _("Factor an expression"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_gfactor, _("Factor Complex"), _("Factor an expression in Gaussian numbers"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_expand, _("&Expand Expression"), _("Expand an expression"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_logexpand, _("Expand Logarithms"), _("Convert logarithm of product to sum of logarithms"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_logcontract, _("Contract Logarithms"), _("Convert sum of logarithms to logarithm of product"), wxITEM_NORMAL); wxglade_tmp_menu_5->AppendSeparator(); // Factorials and gamma wxMenu* wxglade_tmp_menu_5_sub1 = new wxMenu; wxglade_tmp_menu_5_sub1->Append(menu_to_fact, _("Convert to &Factorials"), _("Convert binomials, beta and gamma function to factorials"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub1->Append(menu_to_gamma, _("Convert to &Gamma"), _("Convert binomials, factorials and beta function to gamma function"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub1->Append(menu_factsimp, _("&Simplify Factorials"), _("Simplify an expression containing factorials"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub1->Append(menu_factcomb, _("&Combine Factorials"), _("Combine factorials in an expression"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(wxNewId(), _("Factorials and &Gamma"), wxglade_tmp_menu_5_sub1, _("Functions for simplifying factorials and gamma function")); // Trigonometric wxMenu* wxglade_tmp_menu_5_sub2 = new wxMenu; wxglade_tmp_menu_5_sub2->Append(menu_trigsimp, _("&Simplify Trigonometric"), _("Simplify trigonometric expression"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub2->Append(menu_trigreduce, _("&Reduce Trigonometric"), _("Reduce trigonometric expression"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub2->Append(menu_trigexpand, _("&Expand Trigonometric"), _("Expand trigonometric expression"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub2->Append(menu_trigrat, _("&Canonical Form"), _("Convert trigonometric expression to canonical quasilinear form"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(wxNewId(), _("&Trigonometric Simplification"), wxglade_tmp_menu_5_sub2, _("Functions for simplifying trigonometric expressions")); // Complex wxMenu* wxglade_tmp_menu_5_sub3 = new wxMenu; wxglade_tmp_menu_5_sub3->Append(menu_rectform, _("Convert to &Rectform"), _("Convert complex expression to rect form"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub3->Append(menu_polarform, _("Convert to &Polarform"), _("Convert complex expression to polar form"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub3->Append(menu_realpart, _("Get Real P&art"), _("Get the real part of complex expression"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub3->Append(menu_imagpart, _("Get &Imaginary Part"), _("Get the imaginary part of complex expression"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub3->Append(menu_demoivre, _("&Demoivre"), _("Convert exponential function of imaginary argument to trigonometric form"), wxITEM_NORMAL); wxglade_tmp_menu_5_sub3->Append(menu_exponentialize, _("&Exponentialize"), _("Convert trigonometric functions to exponential form"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(wxNewId(), _("&Complex Simplification"), wxglade_tmp_menu_5_sub3, _("Functions for complex simplification")); wxglade_tmp_menu_5->AppendSeparator(); wxglade_tmp_menu_5->Append(menu_subst, _("Substitute..."), _("Make substitution in expression"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_nouns, _("Evaluate &Noun Forms"), _("Evaluate all noun forms in expression"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_talg, _("Toggle &Algebraic Flag"), _("Toggle algebraic flag"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_tellrat, _("Add Algebraic E&quality..."), _("Add equality to the rational simplifier"), wxITEM_NORMAL); wxglade_tmp_menu_5->Append(menu_modulus, _("&Modulus Computation..."), _("Setup modulus computation"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_5, _("&Simplify")); // Plot menu wxglade_tmp_menu_6 = new wxMenu; wxglade_tmp_menu_6->Append(gp_plot2, _("Plot &2d..."), _("Plot in 2 dimensions"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(gp_plot3, _("Plot &3d..."), _("Plot in 3 dimensions"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_plot_format, _("Plot &Format..."), _("Set plot format"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_6, _("&Plot")); // Numeric menu wxglade_tmp_menu_6 = new wxMenu; wxglade_tmp_menu_6->Append(menu_num_out, _("Toggle &Numeric Output"), _("Toggle numeric output"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_to_float, _("To &Float"), _("Calculate float value of the last result"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_to_bfloat, _("To &Bigfloat"), _("Calculate bigfloat value of the last result"), wxITEM_NORMAL); wxglade_tmp_menu_6->Append(menu_set_precision, _("Set &Precision..."), _("Set bigfloat precision"), wxITEM_NORMAL); frame_1_menubar->Append(wxglade_tmp_menu_6, _("&Numeric")); // Help menu wxMenu* wxglade_tmp_menu_7 = new wxMenu; #if defined __WXMAC__ wxglade_tmp_menu_7->Append(wxID_HELP, _("Maxima &Help\tCTRL+?"), _("Show Maxima help"), wxITEM_NORMAL); #else APPEND_MENU_ITEM(wxglade_tmp_menu_7, wxID_HELP, _("Maxima &Help\tF1"), _("Show Maxima help"), wxT("gtk-help")); #endif wxglade_tmp_menu_7->Append(menu_example, _("&Example..."), _("Show an example of usage"), wxITEM_NORMAL); wxglade_tmp_menu_7->Append(menu_apropos, _("&Apropos..."), _("Show commands similar to"), wxITEM_NORMAL); APPEND_MENU_ITEM(wxglade_tmp_menu_7, menu_show_tip, _("Show &Tips..."), _("Show a tip"), wxART_TIP); wxglade_tmp_menu_7->AppendSeparator(); wxglade_tmp_menu_7->Append(menu_help_tutorials, _("Tutorials"), _("Online tutorials"), wxITEM_NORMAL); wxglade_tmp_menu_7->AppendSeparator(); wxglade_tmp_menu_7->Append(menu_build_info, _("Build &Info"), _("Info about Maxima build"), wxITEM_NORMAL); wxglade_tmp_menu_7->Append(menu_bug_report, _("&Bug Report"), _("Report bug"), wxITEM_NORMAL); wxglade_tmp_menu_7->AppendSeparator(); wxglade_tmp_menu_7->Append(menu_check_updates, _("Check for Updates"), _("Check if a newer version of wxMaxima/Maxima exist."), wxITEM_NORMAL); #ifndef __WXMAC__ wxglade_tmp_menu_7->AppendSeparator(); #endif APPEND_MENU_ITEM(wxglade_tmp_menu_7, wxID_ABOUT, #ifndef __WXMAC__ _("About"), #else _("About wxMaxima"), #endif _("About wxMaxima"), wxT("stock_about")); frame_1_menubar->Append(wxglade_tmp_menu_7, _("&Help")); SetMenuBar(frame_1_menubar); #undef APPEND_MENU_ITEM } #if defined (__WXMSW__) || defined (__WXMAC__) #if defined (__WXMSW__) #define IMAGE(img) wxImage(wxT("art/toolbar/") wxT(img)) #else #define IMAGE(img) wxImage(wxT("wxMaxima.app/Contents/Resources/toolbar/") wxT(img)) #endif void wxMaximaFrame::SetupToolBar() { wxToolBar* frame_1_toolbar = CreateToolBar(); frame_1_toolbar->SetToolBitmapSize(wxSize(22, 22)); #if defined __WXMSW__ frame_1_toolbar->AddTool(tb_new, _("New"), IMAGE("new.png"), _("New document")); #endif frame_1_toolbar->AddTool(tb_open, _("Open"), IMAGE("open.png"), _("Open document")); frame_1_toolbar->AddTool(tb_save, _("Save"), IMAGE("save.png"), _("Save document")); frame_1_toolbar->AddSeparator(); #if WXM_PRINT frame_1_toolbar->AddTool(tb_print, _("Print"), IMAGE("print.png"), _("Print document")); #endif frame_1_toolbar->AddTool(tb_pref, _("Options"), IMAGE("configure.png"), _("Configure wxMaxima")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_cut, _("Cut"), IMAGE("cut.png"), _("Cut selection")); frame_1_toolbar->AddTool(tb_copy, _("Copy"), IMAGE("copy.png"), _("Copy selection")); frame_1_toolbar->AddTool(tb_paste, _("Paste"), IMAGE("paste.png"), _("Paste from clipboard")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_find, _("Find"), IMAGE("find.png"), _("Find and replace")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_interrupt, _("Interrupt"), IMAGE("stop.png"), _("Interrupt current computation")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_animation_start, _("Start animation"), IMAGE("playback-start.png"), _("Start animation")); frame_1_toolbar->AddTool(tb_animation_stop, _("Stop animation"), IMAGE("playback-stop.png"), _("Stop animation")); m_plotSlider = new wxSlider(frame_1_toolbar, plot_slider_id, 0, 0, 10, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL | !wxSL_AUTOTICKS); frame_1_toolbar->AddControl(m_plotSlider); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_help, _("Help"), IMAGE("help.png"), _("Show Maxima help")); frame_1_toolbar->Realize(); SetToolBar(frame_1_toolbar); } #elif defined (__WXGTK20__) void wxMaximaFrame::SetupToolBar() { wxToolBar* frame_1_toolbar = CreateToolBar(); frame_1_toolbar->AddTool(tb_new, _("New"), wxArtProvider::GetBitmap(wxT("gtk-new"), wxART_TOOLBAR), _("New document")); frame_1_toolbar->AddTool(tb_open, _("Open"), wxArtProvider::GetBitmap(wxT("gtk-open"), wxART_TOOLBAR), _("Open document")); frame_1_toolbar->AddTool(tb_save, _("Save"), wxArtProvider::GetBitmap(wxT("gtk-save"), wxART_TOOLBAR), _("Save document")); frame_1_toolbar->AddSeparator(); #if WXM_PRINT frame_1_toolbar->AddTool(tb_print, _("Print"), wxArtProvider::GetBitmap(wxT("gtk-print"), wxART_TOOLBAR), _("Print document")); #endif frame_1_toolbar->AddTool(tb_pref, _("Options"), wxArtProvider::GetBitmap(wxT("gtk-preferences"), wxART_TOOLBAR), _("Configure wxMaxima")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_cut, _("Cut"), wxArtProvider::GetBitmap(wxT("gtk-cut"), wxART_TOOLBAR), _("Cut selection")); frame_1_toolbar->AddTool(tb_copy, _("Copy"), wxArtProvider::GetBitmap(wxT("gtk-copy"), wxART_TOOLBAR), _("Copy selection")); frame_1_toolbar->AddTool(tb_paste, _("Paste"), wxArtProvider::GetBitmap(wxT("gtk-paste"), wxART_TOOLBAR), _("Paste from clipboard")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_find, _("Find..."), wxArtProvider::GetBitmap(wxT("gtk-find"), wxART_TOOLBAR), _("Find and replace")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_interrupt, _("Interrupt"), wxArtProvider::GetBitmap(wxT("gtk-stop"), wxART_TOOLBAR), _("Interrupt current computation")); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_animation_start, _("Animation"), wxArtProvider::GetBitmap(wxT("media-playback-start"), wxART_TOOLBAR)); frame_1_toolbar->AddTool(tb_animation_stop, _("Stop animation"), wxArtProvider::GetBitmap(wxT("media-playback-stop"), wxART_TOOLBAR)); m_plotSlider = new wxSlider(frame_1_toolbar, plot_slider_id, 0, 0, 10, wxDefaultPosition, wxSize(200, -1), wxSL_HORIZONTAL | !wxSL_AUTOTICKS); frame_1_toolbar->AddControl(m_plotSlider); frame_1_toolbar->AddSeparator(); frame_1_toolbar->AddTool(tb_help, _("Help"), wxArtProvider::GetBitmap(wxT("gtk-help"), wxART_TOOLBAR), _("Show Maxima help")); frame_1_toolbar->Realize(); SetToolBar(frame_1_toolbar); } #endif void wxMaximaFrame::LoadRecentDocuments() { wxConfigBase *config = wxConfig::Get(); m_recentDocuments.Clear(); for (int i=0; i<10; i++) { wxString recent = wxString::Format(wxT("RecentDocuments/document_%d"), i); wxString file; if (config->Read(recent, &file)) m_recentDocuments.Add(file); } } void wxMaximaFrame::SaveRecentDocuments() { wxConfigBase *config = wxConfig::Get(); // Delete previous recent documents for (unsigned int i=0; i<10; i++) { wxString recent = wxString::Format(wxT("RecentDocuments/document_%d"), i); config->DeleteEntry(recent); } // Save new recent documents for (unsigned int i=0; iWrite(recent, m_recentDocuments[i]); } } void wxMaximaFrame::UpdateRecentDocuments() { for (int i=menu_recent_document_0; i<= menu_recent_document_9; i++) { if (m_recentDocumentsMenu->FindItem(i) != NULL) { wxMenuItem *item = m_recentDocumentsMenu->Remove(i); delete item; item = NULL; } if (i-menu_recent_document_0 < (signed)m_recentDocuments.Count()) { wxFileName filename(m_recentDocuments[i - menu_recent_document_0]); wxString path(filename.GetPath()), fullname(filename.GetFullName()); wxString label(fullname + wxT(" [ ") + path + wxT(" ]")); m_recentDocumentsMenu->Append(i, label); } } SaveRecentDocuments(); } void wxMaximaFrame::AddRecentDocument(wxString file) { m_recentDocuments.Remove(file); m_recentDocuments.Insert(file, 0); UpdateRecentDocuments(); } void wxMaximaFrame::RemoveRecentDocument(wxString file) { m_recentDocuments.Remove(file); UpdateRecentDocuments(); } bool wxMaximaFrame::IsPaneDisplayed(int id) { bool displayed = false; switch (id) { case menu_pane_math: displayed = m_manager.GetPane(wxT("math")).IsShown(); break; case menu_pane_history: displayed = m_manager.GetPane(wxT("history")).IsShown(); break; case menu_pane_stats: displayed = m_manager.GetPane(wxT("stats")).IsShown(); break; case menu_pane_format: displayed = m_manager.GetPane(wxT("format")).IsShown(); break; } return displayed; } void wxMaximaFrame::ShowPane(int id, bool show) { switch (id) { case menu_pane_math: m_manager.GetPane(wxT("math")).Show(show); break; case menu_pane_history: m_manager.GetPane(wxT("history")).Show(show); break; case menu_pane_stats: m_manager.GetPane(wxT("stats")).Show(show); break; case menu_pane_format: m_manager.GetPane(wxT("format")).Show(show); break; case menu_pane_hideall: m_manager.GetPane(wxT("math")).Show(false); m_manager.GetPane(wxT("history")).Show(false); m_manager.GetPane(wxT("stats")).Show(false); m_manager.GetPane(wxT("format")).Show(false); break; } m_manager.Update(); } wxPanel* wxMaximaFrame::CreateMathPane() { wxGridSizer *grid = new wxGridSizer(2); wxPanel *panel = new wxPanel(this, -1); int style = wxALL | wxEXPAND; #if defined __WXMSW__ int border = 1; #else int border = 0; #endif grid->Add(new wxButton(panel, button_ratsimp, _("Simplify")), 0, style, border); grid->Add(new wxButton(panel, button_radcan, _("Simplify (r)")), 0, style, border); grid->Add(new wxButton(panel, button_factor, _("Factor")), 0, style, border); grid->Add(new wxButton(panel, button_expand, _("Expand")), 0, style, border); grid->Add(new wxButton(panel, button_rectform, _("Rectform")), 0, style, border); grid->Add(new wxButton(panel, button_subst, _("Subst...")), 0, style, border); grid->Add(new wxButton(panel, button_trigrat, _("Canonical (tr)")), 0, style, border); grid->Add(new wxButton(panel, button_trigsimp, _("Simplify (tr)")), 0, style, border); grid->Add(new wxButton(panel, button_trigexpand, _("Expand (tr)")), 0, style, border); grid->Add(new wxButton(panel, button_trigreduce, _("Reduce (tr)")), 0, style, border); grid->Add(new wxButton(panel, button_solve, _("Solve...")), 0, style, border); grid->Add(new wxButton(panel, button_solve_ode, _("Solve ODE...")), 0, style, border); grid->Add(new wxButton(panel, button_diff, _("Diff...")), 0, style, border); grid->Add(new wxButton(panel, button_integrate, _("Integrate...")), 0, style, border); grid->Add(new wxButton(panel, button_limit, _("Limit...")), 0, style, border); grid->Add(new wxButton(panel, button_taylor, _("Series...")), 0, style, border); grid->Add(new wxButton(panel, button_plot2, _("Plot 2D...")), 0, style, border); grid->Add(new wxButton(panel, button_plot3, _("Plot 3D...")), 0, style, border); panel->SetSizer(grid); grid->Fit(panel); grid->SetSizeHints(panel); return panel; } wxPanel* wxMaximaFrame::CreateStatPane() { wxGridSizer *grid1 = new wxGridSizer(2); wxBoxSizer *box = new wxBoxSizer(wxVERTICAL); wxBoxSizer *box1 = new wxBoxSizer(wxVERTICAL); wxGridSizer *grid2 = new wxGridSizer(2); wxGridSizer *grid3 = new wxGridSizer(2); wxBoxSizer *box3 = new wxBoxSizer(wxVERTICAL); wxPanel *panel = new wxPanel(this, -1); int style = wxALL | wxEXPAND; #if defined __WXMSW__ int border = 1; #else int border = 0; #endif int sizerBorder = 2; grid1->Add(new wxButton(panel, menu_stats_mean, _("Mean...")), 0, style, border); grid1->Add(new wxButton(panel, menu_stats_median, _("Median...")), 0, style, border); grid1->Add(new wxButton(panel, menu_stats_var, _("Variance...")), 0, style, border); grid1->Add(new wxButton(panel, menu_stats_dev, _("Deviation...")), 0, style, border); box->Add(grid1, 0, style, sizerBorder); box1->Add(new wxButton(panel, menu_stats_tt1, _("Mean Test...")), 0, style, border); box1->Add(new wxButton(panel, menu_stats_tt2, _("Mean Difference Test...")), 0, style, border); box1->Add(new wxButton(panel, menu_stats_tnorm, _("Normality Test...")), 0, style, border); box1->Add(new wxButton(panel, menu_stats_linreg, _("Linear Regression...")), 0, style, border); box1->Add(new wxButton(panel, menu_stats_lsquares, _("Least Squares Fit...")), 0, style, border); box->Add(box1, 0, style, sizerBorder); grid2->Add(new wxButton(panel, menu_stats_histogram, _("Histogram...")), 0, style, border); grid2->Add(new wxButton(panel, menu_stats_scatterplot, _("Scatterplot...")), 0, style, border); grid2->Add(new wxButton(panel, menu_stats_barsplot, _("Barsplot...")), 0, style, border); grid2->Add(new wxButton(panel, menu_stats_piechart, _("Piechart...")), 0, style, border); grid2->Add(new wxButton(panel, menu_stats_boxplot, _("Boxplot...")), 0, style, border); box->Add(grid2, 0, style, sizerBorder); grid3->Add(new wxButton(panel, menu_stats_readm, _("Read Matrix...")), 0, style, border); grid3->Add(new wxButton(panel, menu_stats_enterm, _("Enter Matrix...")), 0, style, border); box->Add(grid3, 0, style, sizerBorder); box3->Add(new wxButton(panel, menu_stats_subsample, _("Subsample...")), 0, style, border); box->Add(box3, 0, style, sizerBorder); panel->SetSizer(box); box->Fit(panel); box->SetSizeHints(panel); return panel; } wxPanel *wxMaximaFrame::CreateFormatPane() { wxGridSizer *grid = new wxGridSizer(2); wxPanel *panel = new wxPanel(this, -1); int style = wxALL | wxEXPAND; #if defined __WXMSW__ int border = 1; #else int border = 0; #endif grid->Add(new wxButton(panel, menu_format_text, _("Text")), 0, style, border); grid->Add(new wxButton(panel, menu_format_title, _("Title")), 0, style, border); grid->Add(new wxButton(panel, menu_format_subsection, _("Subsection")), 0, style, border); grid->Add(new wxButton(panel, menu_format_section, _("Section")), 0, style, border); grid->Add(new wxButton(panel, menu_format_image, _("Image")), 0, style, border); grid->Add(new wxButton(panel, menu_format_pagebreak, _("Pagebreak")), 0, style, border); panel->SetSizer(grid); grid->Fit(panel); grid->SetSizeHints(panel); return panel; } void wxMaximaFrame::ShowToolBar(bool show) { #if defined __WXMAC__ wxToolBar *tbar = GetToolBar(); tbar->Show(show); #else if (show) { if (GetToolBar() == NULL) SetupToolBar(); } else { wxToolBar *tbar = GetToolBar(); if (tbar != NULL) { delete tbar; m_plotSlider = NULL; SetToolBar(NULL); } } #endif } wxMaxima-13.04.2/src/wxMaximaFrame.h000644 000765 000024 00000015270 12065554640 017604 0ustar00andrejstaff000000 000000 /// /// Copyright (C) 2004-2011 Andrej Vodopivec /// (C) 2012 Doug Ilijev /// /// 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, write to the Free Software /// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA /// #ifndef WXMAXIMAFRAME_H #define WXMAXIMAFRAME_H #include #include #include #include #include #include #include "MathCtrl.h" #include "Setup.h" #include "History.h" enum { socket_client_id = wxID_HIGHEST, socket_server_id, plot_slider_id, input_line_id, menu_new_id, menu_open_id, menu_batch_id, menu_save_id, menu_save_as_id, menu_load_id, menu_sconsole_id, menu_interrupt_id, menu_restart_id, menu_solve, menu_solve_to_poly, menu_solve_num, menu_allroots, menu_bfallroots, menu_realroots, menu_solve_lin, menu_solve_algsys, menu_eliminate, menu_solve_ode, menu_ivp_1, menu_ivp_2, menu_bvp, menu_gen_mat, menu_gen_mat_lambda, menu_enter_mat, menu_invert_mat, menu_cpoly, menu_determinant, menu_eigen, menu_eigvect, menu_fun_def, menu_adjoint_mat, menu_transpose, menu_map_mat, menu_ratsimp, menu_radsimp, menu_factor, menu_gfactor, menu_expand, menu_talg, menu_tellrat, menu_modulus, menu_trigsimp, menu_trigreduce, menu_trigexpand, menu_trigrat, menu_rectform, menu_polarform, menu_demoivre, menu_exponentialize, menu_num_out, menu_to_float, menu_to_bfloat, menu_set_precision, menu_functions, menu_variables, menu_clear_var, menu_clear_fun, menu_integrate, menu_risch, menu_laplace, menu_ilt, menu_continued_fraction, menu_gcd, menu_lcm, menu_divide, menu_partfrac, menu_sum, menu_limit, menu_lbfgs, menu_series, menu_pade, menu_map, menu_diff, menu_solve_de, menu_atvalue, menu_example, menu_apropos, menu_product, menu_make_list, menu_apply, menu_time, menu_factsimp, menu_factcomb, menu_realpart, menu_imagpart, menu_subst, button_factor_id, button_solve, button_solve_ode, button_limit, button_taylor, button_expand, button_ratsimp, button_radcan, button_trigsimp, button_trigexpand, button_trigreduce, button_trigrat, button_integrate, button_diff, button_sum, button_product, button_button_constant, button_factor, button_subst, button_plot2, button_plot3, button_rectform, button_map, gp_plot2, gp_plot3, menu_display, menu_soft_restart, menu_plot_format, menu_build_info, menu_bug_report, menu_add_path, menu_evaluate_all_visible, menu_evaluate_all, menu_show_tip, menu_copy_from_console, menu_copy_tex_from_console, menu_copy_text_from_console, menu_undo, menu_redo, menu_select_all, menu_logcontract, menu_logexpand, menu_to_fact, menu_to_gamma, menu_texform, button_enter, menu_zoom_in, menu_zoom_out, menu_zoom_80, menu_zoom_100, menu_zoom_120, menu_zoom_150, menu_zoom_200, menu_zoom_300, menu_copy_as_bitmap, menu_copy_to_file, menu_export_html, menu_change_var, menu_nouns, #if defined (__WXMSW__) || defined (__WXGTK20__) tb_new, #endif #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) tb_open, tb_save, tb_copy, tb_paste, tb_cut, tb_print, tb_pref, tb_interrupt, tb_help, tb_animation_start, tb_animation_stop, tb_find, #endif menu_evaluate, menu_add_comment, menu_add_subsection, menu_add_section, menu_add_title, menu_add_pagebreak, menu_fold_all_cells, menu_unfold_all_cells, menu_insert_input, menu_insert_previous_input, menu_insert_previous_output, menu_autocomplete, menu_autocomplete_templates, menu_cut, menu_paste, menu_paste_input, menu_fullscreen, menu_remove_output, #if defined (__WXMAC__) mac_newId, mac_openId, mac_closeId, #endif menu_recent_documents, menu_recent_document_0, menu_recent_document_1, menu_recent_document_2, menu_recent_document_3, menu_recent_document_4, menu_recent_document_5, menu_recent_document_6, menu_recent_document_7, menu_recent_document_8, menu_recent_document_9, menu_insert_image, menu_pane_hideall, menu_pane_math, menu_pane_history, menu_pane_format, menu_pane_stats, menu_stats_mean, menu_stats_median, menu_stats_var, menu_stats_dev, menu_stats_tt1, menu_stats_tt2, menu_stats_tnorm, menu_stats_linreg, menu_stats_lsquares, menu_stats_histogram, menu_stats_scatterplot, menu_stats_barsplot, menu_stats_piechart, menu_stats_boxplot, menu_stats_readm, menu_stats_enterm, menu_stats_subsample, menu_format_code, menu_format_text, menu_format_subsection, menu_format_section, menu_format_title, menu_format_image, menu_format_pagebreak, menu_help_tutorials, menu_show_toolbar, menu_edit_find, menu_history_previous, menu_history_next, menu_check_updates }; #define FIRST_PANE menu_pane_hideall #define LAST_PANE menu_pane_stats class wxMaximaFrame: public wxFrame { public: wxMaximaFrame(wxWindow* parent, int id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE); ~wxMaximaFrame(); void UpdateRecentDocuments(); void AddRecentDocument(wxString file); void RemoveRecentDocument(wxString file); wxString GetRecentDocument(int i) { return m_recentDocuments[i]; } bool IsPaneDisplayed(int id); void ShowPane(int id, bool hide); void AddToHistory(wxString cmd) { m_history->AddToHistory(cmd); } void ShowToolBar(bool show); private: void set_properties(); void do_layout(); #if defined (__WXMSW__) || defined (__WXGTK20__) || defined (__WXMAC__) void SetupToolBar(); #endif void SetupMenu(); wxPanel *CreateStatPane(); wxPanel *CreateMathPane(); wxPanel *CreateFormatPane(); protected: void LoadRecentDocuments(); void SaveRecentDocuments(); wxAuiManager m_manager; MathCtrl* m_console; History * m_history; wxSlider* m_plotSlider; wxArrayString m_recentDocuments; wxMenu* m_recentDocumentsMenu; }; #endif // WXMAXIMAFRAME_H wxMaxima-13.04.2/locales/ca.mo000644 000765 000024 00000163363 12073007214 016434 0ustar00andrejstaff000000 000000 Dl0@)@@@@@&@gAJAAA AAB *B 6B@BPB nB|BBB BB B BBCC%C 6CBCUCkC {CCC CCCC CCDD$DP3,Q`Q eQ sQ~Q Q QQQ(Q$R,,R%YRRR R RRR R1RR0R&S .S ]*k]]]]+]]3],/^,\^'^^^^;^ ___+_:_ L_ V_c_k__ _`i`m`~q``@`7aHaQaia|aa aaaab b&b6bIb[bzbbbbbbbc1cHc`c tc c ccc)c c cdQdqddddd4ddd ee"e8eQecexe~eeee e*eee ff .f oDo Lo Vo`ohomooo ooooo p "p0pAp#Spwp-ppp"p4q 9qEqTq \q iqtqqqq qqq zrr rrrrr rrss)s:sKs\s:lssss sstt /t:t Xtyttttttu+$u Puquzu u uu,u'uv.v!?vav Wwawgww ww ww ww#x2(x[x%mx0x1xx y8+yAdyyyyyyyyz#z:z Uz`zwzzzz z zzz z zz zz{ { {{D0{u{B1|ut||||} }$} } }~ ~~`. 7Ncy ̀ڀ    $0AQ Yf-{ ΁ ؁ ΂,Ղ  fw)_U1߇'9H X d q ~ ɈЈ Ո    ( 1>UDىCbbŊle~.& :aHa (ˎӎ 8G^ӏ 2<NWo ɐې , B LYbj}Α &< CMe}ƒ ے   ,6L `j Ǔޓ0Cc#i q; NZk()!63j  ɗ*ۗ2Rai ϙ)$@Qd.s.њ S*~%͛B*=&Nu ~ $"ל"0 F(T}/$ǝ N. }% Ξ7?9+y0J֟7!7YՠC87pw ȡܡ* ,8-e,Ǣ ۢ͢6?0F w ˣߣ , Md { Ĥ̤ߤ ''Oow3إ $ 3/=mu56:K(e ǧ֧ͧݧ"(.'W3ʨݨ #5Y)b ˩֩ -0Hy %70"h/',$&8'_& ˬ%֬C`fnw í)̭58,ei# $̮2.$S[u3;̯J5S. ϰ>ܰ$*AX a l z$ ʲβҲ[Db*³!@T]}Ǵش& 3O"nŵ #*Hh~&ȶ i ķGͷ.HPXq ȸ ϸٸ1 ?Xt.Ź&#?0_ǺϺֺ>/n(rڻMa~  ż̼Ѽ ռ ?)U% Ͻؽ/40Iz ž;־f,¿տ޿2-`hx *) " /< P\k z $%8 ^h~ $0/#S d&p1# .A!Wy '7_ q.,%C0Z=5Si-y 8B ISdx%/ 7RmZ3DZl# 1O"n7# (3HWg(}&)) '1:Yu &9S$h<;$9CK}  :!M"o    #/>C[muz=Kx l y.hI\d%, GT fq  2 =S Z g q { t8} w9tWf.D1s   .=F NXaq   BKdv#c5.*ttz@nmfmj < `t~F<J"GO+KTxgWb$,pbLg_sLE.B(Se! i|wFE6Zd:}$\W159_ ziGQ(p/K 5c>,@.OrxUc/Q\F3;2xu}R];wI<# Py *A ;{-X^)n)If,QX 7`c%]C?}"@iN[` HbDSVN-I{hlu3lkM=':7[z96M h4   %RV4~-3'PASL[4aevKkuZDy:0ED7+TkT"q#o/p!Xj$ A=1]_|UHrBvR?8nMH9agJ2oh012B6+P&vY8et lz^ rs*~sdYa|m&0qJW('N\UCqY.^)>Z*V#!yC8t%=fo&dw>j O?G5{ wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: ca Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2012-09-18 19:37+0100 Last-Translator: Innocent De Marchi Language-Team: Innocent De Marchi Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Catalan X-Poedit-Country: SPAIN wxWidgets: %d.%d.%d Soport unicode: %s Lisp: Versió de Maxima: No conectat a Maxima! No conectat. << Expressió excessivament llarga per ser mostrada! >> es va desar amb una versió més actualitzada de wxMaxima; és possible que no es carregui correctament. Si us plau, actualitzeu wxMaxima. es va desar amb una versió més actualitzada de wxMaxima. Si us plau, actualitzeu wxMaxima..Àl&gebra&Aplicar a llista&Quant aArxiu per &Batch Ctrl-BPro&blema de contornInformar d'e&rrorA&nàlisiForma &canònicaPolinomi &caracteristic&Netejar memòria&Combinar factorialsSimplificació &complexaFracció contín&ua&Copiar Ctrl-CIntegració &definida&Demoivre&Determinant&Derivar&EditarEliminar &variable&Introduir matriu&Exemple&Expandeix expressióExpandeix &trigonometríaExpo&nencialitzar&Exportar&Factoritza expressió&ArxiuC&alcula arrel&Genera matriuMà&xim comú divisorA&juda&Integrar&Interrupció Ctrl-G&Interrupció Ctrl-GIn&verteix matriuCarrega &paquet Ctrl-LDistribui&r sobre lista&MaximaCàlcul del &mòdulo&Nou Ctrl-NN&umèricIntegració &numèrica&Nusum&Obre Ctrl-O&Obre... Ctrl-O&GràficsSèrie de &potències&Imprimir... Ctrl-P&RacionalR&eduir trigonometria&Reiniciar MaximaArrels reals d'un polino&mi&Desa Ctrl-S&Simplifica&Simplifica expressió&Simplifica factorials&Simplifica trigonometria&ResolEspecialSèrie de Taylor&Matriu transportaSimplificació &trigonomètrica&pm3D(Fer servir l'idioma predeterminat)- Infiinit
Lisp: S'ha introduït en wxMaxima 0.8.0 un 'cursor horitzontal'. El seu aspecte és el d'una línia horitzontal entre cel·les, indicant on apareixerà una nova cel·la en escriure o copiar una nova instrucció.S'ha introduït en wxMaxima 0.8.2 un nou format de document que permet desar les instruccions i comentaris de l'usuari i també els resultats. En desar el document, seleccioneu 'Document xml wxMaxima' &Condició inicial&Quant a...Quant a wxMaximaClaudàtor de cel·la activaMatriu ad&juntaAfegir &igualtat algebraicaAfegir un directori a la ruta de recercaAfegir dir. a la ruta:Afegir igualtat al simplificador racionalAfe&gir a la rutaParàmetres addicionals per a Maxima (p. ex. -l clisp)Paràmetres addicionals:Tots|*AnimacióAplicarAplicar funció a llistaA propòsitVector:Il·lustració deDemanar per a desar documents sense títolCondició inicialBC2Diagrama de barres...Arxius bat (*.bat)|*.bat|Tots|*Arxiu per lotsNegretaDiagrama de caixes...Navegar&Informació de compilacióPer defecte, Shift-Enter es fa servir per avaluar instruccions, i Retorn per introduir línies múltiples. És possible canviar aquest comportament en 'Editar->Preferències' seleccionant 'Tecla retorn avalúa cel·les', intercanviant la funcionalitat de les tecles.C&anviar variable&Preferències&Calcular producteCalcular su&maFormat real gran de la darrera expressióFormat real de la darrera expressióCalcular mòdul:Calcular productesCalcular sumesNo és possible connectar amb el servidor web.No es pot baixar la informació de la versió.Cancel·larCanònic (tr)CatalàCe&l·laClaudàtor de cel·laCanviar pantalla &2DCanviar l'algoritme fet servir per mostrar la sortida matemàtica a la pantalla 2D.Canviar variableCanviar variable a la integral o sumaPolinomi característicComprovar actualitzacionsComprovar si hi ha disponible una nova versió de wxMaxima/Maxima.Xinés tradicionalSeleccionar fontSeleccionau un nuo format de gràfics:Classes:Tanca Ctrl-WTanca la finestraNoms col.:Columnes:Combinar factorials a una expressióCoordenades x separades per comes.Coordenades y separades per comes.Comentar selecció&Autocompletar Ctrl-KAutocompletarCalcular la fracció continua d'un valorCalcula la matriu adjuntaCalcula el polinomi característic d'una matriuCalcular el determinant d'una matriuCalcular el màxim divisor comúCalcular la inversa d'una matriuCalcular el mínim comú múltiple (executar load(functs) abans de fer servir)CondicióArxius de configuració (*.ini)|*.iniAdvertència sobre configuracióConfigurar wxMaximaConstantC&ontreure logaritmesConvertir binomials, funcions beta i gamma a factorialsConvertir binomials, funcions factorials i beta a funció gammaConvertir expressió complexa a forma polarConvertir expressió complexa a forma cartesianaConvertir funció exponencial d'argument imaginari a forma trigonomètricaConvertir logaritme d'un producte en suma de logaritmesConvertir suma de logaritmes en logaritme d'un producteConvertir a &factorialsConvertir a &gammaConvertir a forma &polarConvertir a forma &cartesianaConvertir expressió trigonomètrica a forma canònica quasi linealConvertir funcions trigonomètriques a forma exponencialCopiarCopiar com imatgeCopiar LaTeX&Copiar entrada anterior Ctrl-ICopiar com imatgeCopiar com a &LaTeXCopiar coma &text Ctrl-Shift-CCopiar seleccióCopiar selecció del document com a imatgeCopiar selecció del document en format textCopiar selecció del document en format LaTeXCrea una nova cel·la con l'entrada anteriorCursorTalla&Talla Ctrl-XTalla seleccióTxecDanèsMatriu de dades:Arxiu de dades (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDades:Descomposa funció racional en fraccions simplesPredeterminatFont predeterminada:Port predeterminat:SuprimeixSuprimeix f&uncióSuprimeix seleccióSuprimeix v&ariableSuprimeix una funcióSuprimeix una variableSuprimeix totes les variables de la memòriaSuprimeix funció(ns):Suprimeix variable(s):denom deg:fondària:Derivada:Desviació...Di&vidir polinomisDerivarDerivarDerivar expressióDerivarDirecció:Gràfic discretMostrar format Te&XMostra algoritmeMostra el darrer resultat en format TeXMostra el temps de l'avaluacióDividirDividir cel·laDividir números o polinomisVoleu desar els canvis que realitzats al document "DocumentFons del documentNo desisE&quacions&Surt Ctrl-QVectors &propisVa&lors propisSuprimeixSuprimeix una variable d'un sistema d'equacionsAnglèsIntroduïu les dadesIntroduir matriuIntroduir una matriuIntroduir una equació per a simplificació racional:Introduir una llista de variables separades per comes.Tecla retorn avalua cel·lesIntroduir matriuIntroduir nova precisió:Introduir la ruta a l'executable Maxima.Epsilon:Equació %d:Equació(ns):Equació:Equacions:ErrorError %dError!Avaluar formes &nominalsAvaluar t&otes les cel·les Ctrl-RA&valuar cel·la(es)Avaluar cel·les actives o seleccionadesAvaluar totes les cel·les del documentAvaluar totes les formes nominals en una expressióExempleText d'exempleSortir de wxMaximaExpandirExpandir (tr)Expandir expressióEx&pandir logaritmesExpandir una expressióExpandir expressió trigonomètrica&ExportaExportar document a arxiu HTML o pdfLaTeXHa fallat l'exportació a HTML!Ha fallat l'exportació a TeX!ExpressióExpressió(ns):Expressió:FactoritzarFactorització comple&xeFactoritzar expresióFactoritzar una expressióFactoritzar una expressió en números gaussiansFactorials i &gammaError fatalFigura %d:ArxiuNo es troba l'arxiuNo existeix l'arxiu que cal carregarArxiuBuscar&Buscar Ctrl-FCalcula &límitCalcula mínimCalcula arrel...Calcula el mínim (sense restriccions) d'una expressióCalcula el límit d'una expressióCalcula una arrel d'una equació en un intervalCalcular totes les arrels d'un polinomiCalcula totes les arrels reals d'un polinomiCercar i substituirCercar i substituirCalcula els valors propis d'una matriuCalcula els vectors propis d'una matriuCalcula mínimCalcula les arrels reals d'un polinomiCalcula arrelCalcula...Font proporcional en controls de textFont fet servir en el document.Font feta servir per mostrar caràcters matemàtics en el document.FontsFormat:FrancèsDes de:P&antalla completa Alt-RetornFuncióNoms de funcionsFunció(ns):Funció:Funcions per a la simplificació complexaFuncions per a simplificar factorials i funció gammaFuncions per a simplificar expressions trigonomètriquesMCDImatges gif (*.gif)|*.gifMatemàtiques generals&Matemàtiques generals Alt-Shift-MGenera matriu&Genera matriu a partir d'expressióGenera matriu a partir d'una taula de 2 dimensionsGenera matriu a partir d'una expressió lambdaAlemanyCalcula part &imaginàriaCalcula &sèrieCalcula la transformada de Laplace d'una expressióCalcula part &realCalcula la transformada inversa de Laplace d'una expressióCalcula el desenvolupament de Taylor o sèrie de potències de l'expresióCalcula la part imaginària d'una expressió complexaCalcula la part real d'una expressió complexaGrecConstants greguesQuadrícula:Arxiu HTML (*.html)|*.html|Arxiu pdfLaTeX (*.tex)|*.tex|Tots|*Alçada:Ajuda&Amaga tot Alt-Shift--Amaga tots els panellsResaltatHistogramaHistograma...Història&Història Alt-Shift-HEl cursor horitzontal funciona com un cursor normal, però opera amb cel·les: polsau la fletxa amunt o abaix per moure'l; si manteniu polsada la tecla 'Majúscula' durant el movimient es seleccionaran les cel·les, prement 'Retroces' o 'Espai' dues vegades es suprimirà la cel·la contigua.HongarèsIC1IC2Si es torba molt a realitzar-se un càlcul, és possible aturar-ho seleccionant 'Maxima->atura' o 'Maxima->Reinicia Maxima' en el menú.ImatgeArxius gràfics (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmIncloure columnes:InfinitInformació sobre la compilació de MaximaEstimadors inicials:Problema de valor inicial (&1)Problema de valor inicial (&2)Introduir etiquetesInsereixNova cel·la de &secció Ctrl-3Nova cel·la de te&xt Ctrl-1In&serta cel·la Alt-Shift-CInsereix imatgeI&nsereix imatgeNova cel·la d'&entradaInsereix un salt de pàginaInsereix cel·la de s&ubsecció Ctrl-4Insereix cel·la de seccióInsereix cel·la de subseccióInsereix cel·la de &títol Ctrl-2Insereix cel·la de textInsereix cel·la de títolInsereix nova cel·la d'entradaInsereix nova cel·la de seccióInsereix nova cel·la de subseccióInsereix nova cel·la de textInsereix nova cel·la de títolInsereix nova pàginaInsereix imatgeIntegral/suma:IntegraIntegra (risch)Integra expressióIntegra expressió amb algoritme RischIntegra...AturaAtura el càlcul actualEntrada no vàlida per a el programa Maxima. Si us plau, introduïu novament la ruta al programa Maxima.Laplace inversaTrans&formada inversa de LaplaceItaliàItàlicaJaponésMantenir el signe de percentatge per a símbols especials: %e, %i, etc.MCMIdioma de la interfície d'usuari de wxMaxima.Idioma:Laplace&Transformada de LaplaceMí&nim comú múltipleAjust per mínims quadratsAjust per mínims quadrats...LímitLímit...Regressió lineal...Llista:CarregaCarrega paquetCarrega un arxiu Maxima fent servir l'ordre batchCarrega un paquet MaximaLlegir estil des d'un arxiuCota inferior:Distribuir sobre &matriu...Construir &llista...Construir llistaConstruir una llista a partir d'una expressióFer una substitució en una expressióAplicarAplica funció a una llistaAplica una funció a una matriuFer coincidir parèntesi en els controle de textFont matemàtica:MatriuAplica rmatriuNom de matriu:Matriu:MaximaA&juda de Maxima F1Entrada MaximaMaxima està calculantPaquet de Maxima (*.mac)|*.macPaquet Maxima (*.mac)|*.mac|Paquet Lisp (*.lisp)|*.lisp|Tots|*Procés de Maxima finalitzat.Programa Maxima:Preguntes de MaximaMaxima iniciat. Esperant la connexió...Maxima fa servir ':' per assignar un valor a una variable ('a : 3;') i ':=' per definir funcions ('f(x) := x^2;').Versió de Maxima: Test diferència de mitjanesTest mitjanes...Aplicar...Mitjana:Mediana...Unir cel·lesMètode:MòdulNom:NouNou Ctrl-NNou documentNuo valor:Nova variable:Següent ordre Alt-DownNo s'han trobat coincidències!Test de normalitat...La dimensió de la matriu no és vàlida!El nombre d'equacions és incorrecte!No conectat.num deg:Nombre d'equacions:Númerosd'AcordValor anterior:Variable anterior:Test t per a una mostraTutorials en líniaObreObre sessió &recentObrir una cel·la quan Maxima espera una entradaObre un documentObre nova finestraObre documentObre matriuObrint arxiuOpcionsOpcions:Cel·les obsoletesEtiquetes de sortidaAproximació de &Padé...Imatge PNG (*.png)|*.png|Imatge JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*.mbp|pixmap X (*.xpm)|*.xpmAproximació de PadéAproximació de Padé d'una sèrie de TaylorSalt de pàgina&PanellsGràfic paramètricAnalitzant sortidaFraccion&s simples...Fraccions simplesParts del document no s'han carregat correctament!Enganxa&Enganxa Ctrl-VEnganxa des del porta-papersAferra text des del porta-papersDiagrama de sectors...Configuri wxMaxima amb 'Edita->Configura'.Reiniciau wxMaxima per aplicar els canvisGràfics &2DGràfics &3D&Format de gràficsGràfics 2DGràfics 2D...Gràfics 2D...Gràfics 3DGràfics 3D...Gràfics 3D....Format dels gràficsGràfic en 2 dimensionsGràfic en 3 dimensionsGràfic a l'arxiu:Punt:PolonèsPolinomi 1:Polinomi 2:Portuguès (Brasil)Arxiu postscript (*.eps)|*.eps|Tots|*PrecisióOrdre anterior Alt-UpImprimirImprimir documentProducteLlegir matriLlegint el resultat de MaximaPreparat per a l'entrada de l'usuariTorna a executar la següent ordre del historialTornar executar l'ordre anterior del historialForma cartesianaReduir (tr)Simplificar expressió trigonomètrica&Suprimeix tots els resultatsSuprimeix els resultats de les cel·les d'entradaReemplaçades %d coincidències.Informa de l'errorReinicia MaximaIntegració &RischArrels d'un &polinomiArrels reals &grans d'un polinomiFiles:RussExemple 1:Exemple 2:Mostra:DesaDesa animacióDesa comDesa &com Shift-Ctrl-SDesa imatge...Desa selecció a imatges&Desa selecció a imatges...Desa animació en un arxiuVoleu desar els canvis abans de tancar?Desar els canvis?Desa documentDesa document comDesa la disposició de panellsDesa la disposició de panells entre sessions.Desa gràfic en un arxiuCopia la selecció del document a una imatgeDesa la selecció en un arxiuDesa estil en un arxiuDesa el mida/posició de la finestra de wxMaximaDesa mida/posició de la finestra de wxMaxima entre sessions.Diagrama dispersióDiagrama dispersió...SeccióCel·la de seccióSelecciona tot&Selecciona tot Ctrl-ASelecciona el programa MaximaSelecciona sub-mostraSelecciona una constantSelecciona totSelecciona l'algoritme de sortida matemàticaSeleccionant una part del resultat i polsant el botó dret emergirà un menú amb funcions aplicables sobre la selecció.SeleccióSèrieSèrie...Servidor iniciatEstablir &precisióEstablir aug&mentEstablir la precisió en coma flotantEstablir la font fitxa en els controls de text.Establir el format dels gràficsEstablir ampliació a 100%Establir ampliació a 120%Establir ampliació a 150%Establir ampliació a 200%Establir ampliació a 300%Establir reducció al 80%Establir les condicions inicials per a resoldre EDO mitjançant la transformada de LaplaceConfigura el càlcul del mòdulMostra &definició...Mostra &funcionsMostra &suggiments...Mostra &variablesMostra l'ajuda de Maxima&Mostra plantilla Ctrl-Shift-KMostra un suggerimentMostra tots les ordres semblents a:Mostra un exemple per a l'ordre:Mostra un exemple d'úsMostra ordres semblants aMostra les funcions definidesMostra les variables definidesMostra la definició d'una funcióMostra la plantilla de funcióMostra expressions llarguesMostra expressions llargues en el document de wxMaxima.Mostra la definició de la funció:SimplificaSimplifica &radicalsSimplifica (r)Simplifica (tr)Simplifica expressióSimplifica una expressió amb factorialsSimplifica una expressió amb radicalsSimplifica expressió racionalSimplifica la sumaSimplifica una expressió trigonomètricaDes de wxMaxima 0.8.2 es possible inserir imatges en els documents. Seleccioni 'Cel·la->Inserir imatge' en el menú. Cal tenir present que cal desar el document en format 'Document xml wxMaxima' si voleu que es desi la imatge amb la resta del document.Solució:ResoldreReso&ldre sistema algebraic...Resoldre &sistema lineal...Resoldre &EDO...Res&oldre (to_poly)...Resoldre EDOResoldre E&DO amb Laplace...Resoldre EDO...Resoldre sistema algebraicResoldre sistema algebraic d'equacionsResoldre problema de contorn per a una EDO de segon ordreResoldre equació(s)Resoldre equació amb to_poly_solverResoldre problema de valor inicial per a EDO de primer ordreResoldre problema de valor inicial per a EDO de segon ordreResoldre sistema linealResoldre sistema d'equacions linealsResoldre equació diferencial ordinària d'ordre màxim 2Resoldre equacions diferencials ordinàries amb la transformada de LaplaceResoldreCastellàEspecialConstants especialsInicia animacióInicia animacióHa fallat l'engegada de MaximaEngegant maxima...L'engegada del servidor ha fallatEngegant el servidor en el port %dEstadística&Estadística Alt-Shift-SAtura l'animacióCadenes de textEstilEstilsSub-mostraSub-seccióCel·la de sub-seccióS&ubstitueixSubstitueixSubstitueix...SumaInformació del sistemaSèrie de Taylor:TellratTextCel·la de textFons de cel·la de textPort predeterminat per a comunicació entre Maxima i wxMaximaHi ha més recursos sobre Maxima i wxMaxima a internet. Visitau http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials per obtenir més información.S'ha produït un error en el XML generat! Si us plau, informeu de l'error.HI ha hagut un error en la exportació a imatge GIF! Assegurau-vos que el programa ImageMagick està instal·lat i què wxMaxima pot trobar el programa de conversió.Graduacions:Repeticions:Perdoneu, el suggeriment no està disponible, TítolCel·la de títolLes cel·les de títol, secció i sub-secció són plegables per a ocultar el contingut. Tant per plegar-les com per a des-plegarles feu clic en el quadre contigu a la cel·la. Si al mateix temps polsau 'Majúscules', tots els sub-nivells es plegaran/des-plegaran.A real gran (&bigfloat)A &realA realPer a representar en coordenades polars, seleccioneu 'set polar' a l'entrada d'Opcions del quadre de diàleg de Gràfic 2D. Podeu ferla representació en coordenades esfèriques i cilíndriques en 3D.Per a col·locar entre parèntesi una expressió, seleccioneu-la i premeu '(' o ')', segons on voleu que es col·loqui el cursor.Per a desar la mida i posició de la finestra de wxMaxima entre sessions, feu servir 'Edita->Configura'.Per engegar fent servir wxMaxima tot seguit, comenceu teclejant una instrucció. Apareixerà una cel·la d'entrada. Polseu 'Majúscules-Retorn' per a iniciar el càlcul.Fins a:Activa l'opció &algebraicaActiva sortida &numèricaActiva la pantalla de &tempsActiva l'opció algebraicaActiva l'edició de pantalla completaActiva sortida numèrica&Barra d'eines Alt-Shift-TIcones de la barra d'einesTraduït perMatriu transposta&TutorialsTest t amb dues mostresTipus:UcraïnésSubrallatD&esfer Ctrl-ZDesfer el darrer canviSuport UnicodeActualitzaCota superior:Usar algoritme GosperUsar punt centrat com a operador de multiplicacióUtilitza fonts jsMathValor:Variable(s):Variable:VariablesVariables:Variància...AvísBienvingut a wxMaximaEn aplicar funcions amb un argument del menú, l'argument pre-determinat és '%'. Per aplicar la funció a un altre valor, seleccioneu-lo en el document abans d'executar la instrucció del menú.Amplada:Escriure parèntesi coincidents en els controls de text.Escrit perPodeu veure la darrera sortida fent servir la variable '%' . És possible veure la sortida de les ordres anteriors fent servir les variables '%on' on n és el número de la sortida.Podeu avaluar el document complet seleccionant 'Cel·la->Avaluar totes les cel·les' en el menú o amb les tecles ràpides. Les cel·les s'avaluaran en l'ordre en què apareixen en el document.Podeu llegir informació sobre una funció de Maxima seleccionant o fent clic sobre el nom i polsant F1. wxMaxima mostrarà l'ajuda disponible de la paraula sota el cursor.Podeu amagar la part del resultat d'una cel·la fent clic sobre el triangle a la seva esquerra. Això mateix podeu fer-ho a cel·les de text.Podeu afegir diferents tipus de cel·les en un document de wxMaxima seleccionant el menú 'Cel·la'. Cal tenir present que només és possible avaluar 'cel·les d'entrada', els altres tipus de cel·les es fan servir per a comentaris i estructuració dels vostres càlculs.Podeu seleccionar més d'una cel·la, amb el ratolí, fent clic i arrossegant entre cel·les o claudàtor de cel·les, amb el teclat, mantenint polsada la tecla de Majúscules a la vegada que es mou el cursor horitzontal, per a operar sobre la selecció. Això serà d'utilitat en haver de suprimir o avaluar vàries cel·les simultàniament.La seva versió és %s. La versió actual és %s. Seleccionau d'Acord per visitar la web de wxMaxima.Els vostres canvis es perdran si no els desau.La vostra versió de wxMaxima està actualitzada.Ampl&ia Alt-I&Redueix Alt-ORedueix 10%Amplia 10%Estableix ampliació a [sense desar][sense desar*]anti-simètricaambdós costatspre-determinatdiagonalgeneralen líniaesquerralínies ocultesescala logarítmicamatriu[i,j]:nodretasimètricasense desarsense nomsense nom %dwxMaximawxMaxima %s Configuració de wxMaximawxMaxima no localitza Maxima! Configureu wxMaxima amb 'Edita->Configura. A continuació engegueu Maxima amb 'Maxima->Re-engega maxima'.wxMaxima no troba els arxius d'ajuda. Comproveu la instal·lació.wxMaxima no troba els arxius de suggeriments. Comproveu la instal·lació.wxMaxima no pot engegar el servidor. Comproveu si teniu el suport de xarxa activat i proveu de nou!En los quadres de diàleg de wxMaxima apareixen entrades pre-determinades, una de las quals és '%'. Si heu fet una selecció en el document, es farà servir enlloc de '%'.Document wxMaximaDocument wxMaxima (*.wxm)|*.wxm|Document xml wxMaxima (*.wxmx)|*.wxmx|Arxiu de Maxima (*.mac)|*.macDocument wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima ha detectat un error en carregar Icone de wxMaximawxMaxima es una interfície gràfica d'usuari per al Sistema d'Àlgebra Simbòlica (CAS) MAXIMA, basat en wxWidgets.wxMaxima es una interfície gràfica d'usuari per al Sistema d'Àlgebra Simbòlica (CAS) Maxima, basat en wxWidgets.síwxMaxima-13.04.2/locales/ca.po000644 000765 000024 00000325663 12065554625 016460 0ustar00andrejstaff000000 000000 # translation of ca.po to Innocent De Marchi # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Innocent De Marchi , 2010-2012. msgid "" msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2012-09-18 19:37+0100\n" "Last-Translator: Innocent De Marchi \n" "Language-Team: Innocent De Marchi \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Catalan\n" "X-Poedit-Country: SPAIN\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Soport unicode: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Versió de Maxima: " #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "No conectat a Maxima!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "No conectat." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << Expressió excessivament llarga per ser mostrada! >>" #: ../src/wxMaxima.cpp:1084 msgid " was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima." msgstr " es va desar amb una versió més actualitzada de wxMaxima; és possible que no es carregui correctament. Si us plau, actualitzeu wxMaxima." #: ../src/wxMaxima.cpp:1076 msgid " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr " es va desar amb una versió més actualitzada de wxMaxima. Si us plau, actualitzeu wxMaxima.." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "Àl&gebra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "&Aplicar a llista" #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&Quant a" #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "Arxiu per &Batch\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Pro&blema de contorn" #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Informar d'e&rror" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "A&nàlisi" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "Forma &canònica" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "Polinomi &caracteristic" #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Netejar memòria" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "&Combinar factorials" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "Simplificació &complexa" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "Fracció contín&ua" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "&Copiar\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Integració &definida" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Determinant" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Derivar" #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Editar" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "Eliminar &variable" #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "&Introduir matriu" #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "&Exemple" #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "&Expandeix expressió" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "Expandeix &trigonometría" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "Expo&nencialitzar" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Exportar" #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "&Factoritza expressió" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Arxiu" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "C&alcula arrel" #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "&Genera matriu" #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "Mà&xim comú divisor" #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "A&juda" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Integrar" #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "&Interrupció\tCtrl-G" #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "&Interrupció\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "In&verteix matriu" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Carrega &paquet\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "Distribui&r sobre lista" #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Càlcul del &mòdulo" #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Nou\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "N&umèric" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Integració &numèrica" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Nusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Obre\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Obre...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Gràfics" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Sèrie de &potències" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Imprimir...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Racional" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "R&eduir trigonometria" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Reiniciar Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "Arrels reals d'un polino&mi" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Desa\tCtrl-S" #: ../src/SumWiz.cpp:42 #: ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "&Simplifica" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "&Simplifica expressió" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "&Simplifica factorials" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "&Simplifica trigonometria" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "&Resol" #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "Especial" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Sèrie de Taylor" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "&Matriu transporta" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "Simplificació &trigonomètrica" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3D" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Fer servir l'idioma predeterminat)" #: ../src/LimitWiz.cpp:133 #: ../src/LimitWiz.cpp:144 #: ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 #: ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- Infiinit" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command." msgstr "S'ha introduït en wxMaxima 0.8.0 un 'cursor horitzontal'. El seu aspecte és el d'una línia horitzontal entre cel·les, indicant on apareixerà una nova cel·la en escriure o copiar una nova instrucció." #: ../data/tips.txt:6 msgid "A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format." msgstr "S'ha introduït en wxMaxima 0.8.2 un nou format de document que permet desar les instruccions i comentaris de l'usuari i també els resultats. En desar el document, seleccioneu 'Document xml wxMaxima' " #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "&Condició inicial" #: ../src/wxMaximaFrame.cpp:665 #: ../src/wxMaxima.cpp:3490 msgid "About" msgstr "&Quant a..." #: ../src/wxMaximaFrame.cpp:667 #: ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "Quant a wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Claudàtor de cel·la activa" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Matriu ad&junta" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Afegir &igualtat algebraica" #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Afegir un directori a la ruta de recerca" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Afegir dir. a la ruta:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Afegir igualtat al simplificador racional" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Afe&gir a la ruta" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Paràmetres addicionals per a Maxima (p. ex. -l clisp)" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Paràmetres addicionals:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Tots|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animació" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Aplicar" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Aplicar funció a llista" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "A propòsit" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Vector:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "Il·lustració de" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "Demanar per a desar documents sense títol" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Condició inicial" #: ../src/BC2Wiz.cpp:57 #: ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "Diagrama de barres..." #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Arxius bat (*.bat)|*.bat|Tots|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Arxiu per lots" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Negreta" #: ../src/wxMaximaFrame.cpp:1019 msgid "Boxplot..." msgstr "Diagrama de caixes..." #: ../src/Plot2dWiz.cpp:122 #: ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Navegar" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "&Informació de compilació" #: ../data/tips.txt:2 msgid "By default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands." msgstr "Per defecte, Shift-Enter es fa servir per avaluar instruccions, i Retorn per introduir línies múltiples. És possible canviar aquest comportament en 'Editar->Preferències' seleccionant 'Tecla retorn avalúa cel·les', intercanviant la funcionalitat de les tecles." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "C&anviar variable" #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "&Preferències" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "&Calcular producte" #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Calcular su&ma" #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Format real gran de la darrera expressió" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Format real de la darrera expressió" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Calcular mòdul:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Calcular productes" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Calcular sumes" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "No és possible connectar amb el servidor web." #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "No es pot baixar la informació de la versió." #: ../src/SystemWiz.cpp:37 #: ../src/SystemWiz.cpp:39 #: ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 #: ../src/SumWiz.cpp:47 #: ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 #: ../src/MatWiz.cpp:41 #: ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 #: ../src/IntegrateWiz.cpp:59 #: ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 #: ../src/Gen3Wiz.cpp:51 #: ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 #: ../src/Gen4Wiz.cpp:55 #: ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 #: ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 #: ../src/SeriesWiz.cpp:50 #: ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 #: ../src/wxMaxima.cpp:4419 #: ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 #: ../src/Plot2dWiz.cpp:561 #: ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 #: ../src/Plot2dWiz.cpp:658 #: ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 #: ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 #: ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Cancel·lar" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "Canònic (tr)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Català" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "Ce&l·la" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Claudàtor de cel·la" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Canviar pantalla &2D" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "Canviar l'algoritme fet servir per mostrar la sortida matemàtica a la pantalla 2D." #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Canviar variable" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Canviar variable a la integral o suma" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Polinomi característic" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "Comprovar actualitzacions" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Comprovar si hi ha disponible una nova versió de wxMaxima/Maxima." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Xinés tradicional" #: ../src/Config.cpp:345 #: ../src/Config.cpp:347 #: ../src/Config.cpp:376 msgid "Choose font" msgstr "Seleccionar font" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Seleccionau un nuo format de gràfics:" #: ../src/wxMaxima.cpp:3564 #: ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "Classes:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "Tanca\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Tanca la finestra" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Noms col.:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Columnes:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Combinar factorials a una expressió" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Coordenades x separades per comes." #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Coordenades y separades per comes." #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Comentar selecció" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "&Autocompletar\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Autocompletar" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Calcular la fracció continua d'un valor" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Calcula la matriu adjunta" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Calcula el polinomi característic d'una matriu" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Calcular el determinant d'una matriu" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Calcular el màxim divisor comú" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Calcular la inversa d'una matriu" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Calcular el mínim comú múltiple (executar load(functs) abans de fer servir)" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Condició" #: ../src/Config.cpp:1064 #: ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Arxius de configuració (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Advertència sobre configuració" #: ../src/wxMaximaFrame.cpp:277 #: ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "Configurar wxMaxima" #: ../src/LimitWiz.cpp:135 #: ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 #: ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Constant" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "C&ontreure logaritmes" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Convertir binomials, funcions beta i gamma a factorials" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Convertir binomials, funcions factorials i beta a funció gamma" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Convertir expressió complexa a forma polar" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Convertir expressió complexa a forma cartesiana" #: ../src/wxMaximaFrame.cpp:587 msgid "Convert exponential function of imaginary argument to trigonometric form" msgstr "Convertir funció exponencial d'argument imaginari a forma trigonomètrica" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Convertir logaritme d'un producte en suma de logaritmes" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Convertir suma de logaritmes en logaritme d'un producte" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Convertir a &factorials" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Convertir a &gamma" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Convertir a forma &polar" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "Convertir a forma &cartesiana" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Convertir expressió trigonomètrica a forma canònica quasi lineal" #: ../src/wxMaximaFrame.cpp:590 msgid "Convert trigonometric functions to exponential form" msgstr "Convertir funcions trigonomètriques a forma exponencial" #: ../src/MathCtrl.cpp:660 #: ../src/MathCtrl.cpp:673 #: ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 #: ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Copiar" #: ../src/MathCtrl.cpp:675 #: ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Copiar com imatge" #: ../src/MathCtrl.cpp:674 #: ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Copiar LaTeX" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "&Copiar entrada anterior\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Copiar com imatge" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Copiar com a &LaTeX" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Copiar coma &text\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 #: ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Copiar selecció" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Copiar selecció del document com a imatge" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Copiar selecció del document en format text" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Copiar selecció del document en format LaTeX" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Crea una nova cel·la con l'entrada anterior" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Cursor" #: ../src/MathCtrl.cpp:731 #: ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Talla" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "&Talla\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 #: ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Talla selecció" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Txec" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Danès" #: ../src/wxMaxima.cpp:3679 #: ../src/wxMaxima.cpp:3686 #: ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Matriu de dades:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Arxiu de dades (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 #: ../src/wxMaxima.cpp:3578 #: ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 #: ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 #: ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Dades:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Descomposa funció racional en fraccions simples" #: ../src/Config.cpp:351 msgid "Default" msgstr "Predeterminat" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Font predeterminada:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Port predeterminat:" #: ../src/wxMaxima.cpp:2310 #: ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Suprimeix" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Suprimeix f&unció" #: ../src/MathCtrl.cpp:678 #: ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Suprimeix selecció" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "Suprimeix v&ariable" #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Suprimeix una funció" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Suprimeix una variable" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Suprimeix totes les variables de la memòria" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Suprimeix funció(ns):" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Suprimeix variable(s):" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "denom deg:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "fondària:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Derivada:" #: ../src/wxMaximaFrame.cpp:1003 msgid "Deviation..." msgstr "Desviació..." #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Di&vidir polinomis" #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Derivar" #: ../src/wxMaxima.cpp:3061 #: ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Derivar" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Derivar expressió" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Derivar" #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Direcció:" #: ../src/Plot2dWiz.cpp:448 #: ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Gràfic discret" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Mostrar format Te&X" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Mostra algoritme" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Mostra el darrer resultat en format TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Mostra el temps de l'avaluació" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Dividir" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Dividir cel·la" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Dividir números o polinomis" #: ../src/wxMaxima.cpp:4414 #: ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "Voleu desar els canvis que realitzats al document \"" #: ../src/wxMaxima.cpp:1075 #: ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Document" #: ../src/Config.cpp:368 msgid "Document background" msgstr "Fons del document" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "No desis" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "E&quacions" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "&Surt\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Vectors &propis" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Va&lors propis" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Suprimeix" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Suprimeix una variable d'un sistema d'equacions" #: ../src/Config.cpp:243 msgid "English" msgstr "Anglès" #: ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 #: ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 #: ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 #: ../src/wxMaxima.cpp:3679 msgid "Enter Data" msgstr "Introduïu les dades" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Introduir matriu" #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Introduir una matriu" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Introduir una equació per a simplificació racional:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Introduir una llista de variables separades per comes." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Tecla retorn avalua cel·les" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Introduir matriu" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Introduir nova precisió:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Introduir la ruta a l'executable Maxima." #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Equació %d:" #: ../src/wxMaxima.cpp:2367 #: ../src/wxMaxima.cpp:2381 #: ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Equació(ns):" #: ../src/wxMaxima.cpp:2397 #: ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 #: ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Equació:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Equacions:" #: ../src/ImgCell.cpp:101 #: ../src/Config.cpp:488 #: ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 #: ../src/wxMaxima.cpp:984 #: ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 #: ../src/wxMaxima.cpp:1077 #: ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 #: ../src/wxMaxima.cpp:4075 #: ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Error" #: ../src/SlideShowCell.cpp:72 #: ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Error %d" #: ../src/wxMaxima.cpp:1965 #: ../src/wxMaxima.cpp:1970 #: ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 #: ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Error!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Avaluar formes &nominals" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Avaluar t&otes les cel·les\tCtrl-R" #: ../src/MathCtrl.cpp:681 #: ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "A&valuar cel·la(es)" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Avaluar cel·les actives o seleccionades" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Avaluar totes les cel·les del document" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Avaluar totes les formes nominals en una expressió" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Exemple" #: ../src/Config.cpp:1018 #: ../src/Config.cpp:1110 msgid "Example text" msgstr "Text d'exemple" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Sortir de wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Expandir" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Expandir (tr)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Expandir expressió" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Ex&pandir logaritmes" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Expandir una expressió" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Expandir expressió trigonomètrica" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "&Exporta" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Exportar document a arxiu HTML o pdfLaTeX" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "Ha fallat l'exportació a HTML!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "Ha fallat l'exportació a TeX!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Expressió" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Expressió(ns):" #: ../src/LimitWiz.cpp:26 #: ../src/SumWiz.cpp:30 #: ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 #: ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 #: ../src/wxMaxima.cpp:2725 #: ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 #: ../src/wxMaxima.cpp:3025 #: ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3112 #: ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Expressió:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Factoritzar" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Factorització comple&xe" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Factoritzar expresió" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Factoritzar una expressió" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Factoritzar una expressió en números gaussians" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Factorials i &gamma" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Error fatal" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "Figura %d:" #: ../src/main.cpp:107 msgid "File" msgstr "Arxiu" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "No es troba l'arxiu" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "No existeix l'arxiu que cal carregar" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Arxiu" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Buscar" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "&Buscar\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Calcula &límit" #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Calcula mínim" #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Calcula arrel..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Calcula el mínim (sense restriccions) d'una expressió" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Calcula el límit d'una expressió" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Calcula una arrel d'una equació en un interval" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Calcular totes les arrels d'un polinomi" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Calcula totes les arrels reals d'un polinomi" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Cercar i substituir" #: ../src/wxMaximaFrame.cpp:248 #: ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Cercar i substituir" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Calcula els valors propis d'una matriu" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Calcula els vectors propis d'una matriu" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Calcula mínim" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Calcula les arrels reals d'un polinomi" #: ../src/wxMaxima.cpp:2400 #: ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Calcula arrel" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Calcula..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Font proporcional en controls de text" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Font fet servir en el document." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Font feta servir per mostrar caràcters matemàtics en el document." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Fonts" #: ../src/Plot2dWiz.cpp:70 #: ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Format:" #: ../src/Config.cpp:244 msgid "French" msgstr "Francès" #: ../src/SumWiz.cpp:36 #: ../src/IntegrateWiz.cpp:43 #: ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 #: ../src/Plot2dWiz.cpp:49 #: ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 #: ../src/Plot3dWiz.cpp:46 #: ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "Des de:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "P&antalla completa\tAlt-Retorn" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Funció" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Noms de funcions" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Funció(ns):" #: ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2607 #: ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Funció:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Funcions per a la simplificació complexa" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Funcions per a simplificar factorials i funció gamma" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Funcions per a simplificar expressions trigonomètriques" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "MCD" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "Imatges gif (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Matemàtiques generals" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "&Matemàtiques generals\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 #: ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Genera matriu" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "&Genera matriu a partir d'expressió" #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Genera matriu a partir d'una taula de 2 dimensions" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Genera matriu a partir d'una expressió lambda" #: ../src/Config.cpp:245 msgid "German" msgstr "Alemany" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "Calcula part &imaginària" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Calcula &sèrie" #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Calcula la transformada de Laplace d'una expressió" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "Calcula part &real" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Calcula la transformada inversa de Laplace d'una expressió" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Calcula el desenvolupament de Taylor o sèrie de potències de l'expresió" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Calcula la part imaginària d'una expressió complexa" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Calcula la part real d'una expressió complexa" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Grec" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Constants gregues" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Quadrícula:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Arxiu HTML (*.html)|*.html|Arxiu pdfLaTeX (*.tex)|*.tex|Tots|*" #: ../src/wxMaxima.cpp:2671 #: ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Alçada:" #: ../src/wxMaximaFrame.cpp:742 #: ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Ajuda" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "&Amaga tot\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Amaga tots els panells" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Resaltat" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Histograma" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Histograma..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Història" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "&Història\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "Horizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it." msgstr "El cursor horitzontal funciona com un cursor normal, però opera amb cel·les: polsau la fletxa amunt o abaix per moure'l; si manteniu polsada la tecla 'Majúscula' durant el movimient es seleccionaran les cel·les, prement 'Retroces' o 'Espai' dues vegades es suprimirà la cel·la contigua." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Hongarès" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "Si es torba molt a realitzar-se un càlcul, és possible aturar-ho seleccionant 'Maxima->atura' o 'Maxima->Reinicia Maxima' en el menú." #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Imatge" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Arxius gràfics (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "Incloure columnes:" #: ../src/LimitWiz.cpp:132 #: ../src/LimitWiz.cpp:142 #: ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 #: ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Infinit" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Informació sobre la compilació de Maxima" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Estimadors inicials:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Problema de valor inicial (&1)" #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Problema de valor inicial (&2)" #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Introduir etiquetes" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Insereix" #: ../src/wxMaximaFrame.cpp:302 msgid "Insert &Section Cell\tCtrl-3" msgstr "Nova cel·la de &secció\tCtrl-3" #: ../src/wxMaximaFrame.cpp:298 msgid "Insert &Text Cell\tCtrl-1" msgstr "Nova cel·la de te&xt\tCtrl-1" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "In&serta cel·la\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Insereix imatge" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "I&nsereix imatge" #: ../src/wxMaximaFrame.cpp:296 msgid "Insert Input &Cell" msgstr "Nova cel·la d'&entrada" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Page Break" msgstr "Insereix un salt de pàgina" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Insereix cel·la de s&ubsecció\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Insereix cel·la de secció" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Insereix cel·la de subsecció" #: ../src/wxMaximaFrame.cpp:300 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Insereix cel·la de &títol\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Insereix cel·la de text" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Insereix cel·la de títol" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Insereix nova cel·la d'entrada" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Insereix nova cel·la de secció" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Insereix nova cel·la de subsecció" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Insereix nova cel·la de text" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Insereix nova cel·la de títol" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Insereix nova pàgina" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Insereix imatge" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Integral/suma:" #: ../src/IntegrateWiz.cpp:72 #: ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Integra" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Integra (risch)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Integra expressió" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Integra expressió amb algoritme Risch" #: ../src/MathCtrl.cpp:709 #: ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Integra..." #: ../src/wxMaximaFrame.cpp:727 #: ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Atura" #: ../src/wxMaximaFrame.cpp:339 #: ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 #: ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Atura el càlcul actual" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Entrada no vàlida per a el programa Maxima.\n" "\n" "Si us plau, introduïu novament la ruta al programa Maxima." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Laplace inversa" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "Trans&formada inversa de Laplace" #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italià" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Itàlica" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Japonés" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Mantenir el signe de percentatge per a símbols especials: %e, %i, etc." #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "MCM" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Idioma de la interfície d'usuari de wxMaxima." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Idioma:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "&Transformada de Laplace" #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Mí&nim comú múltiple" #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Ajust per mínims quadrats" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Ajust per mínims quadrats..." #: ../src/LimitWiz.cpp:66 #: ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Límit" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Límit..." #: ../src/wxMaximaFrame.cpp:1010 msgid "Linear Regression..." msgstr "Regressió lineal..." #: ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Llista:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Carrega" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Carrega paquet" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Carrega un arxiu Maxima fent servir l'ordre batch" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Carrega un paquet Maxima" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Llegir estil des d'un arxiu" #: ../src/wxMaxima.cpp:2398 #: ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Cota inferior:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Distribuir sobre &matriu..." #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "Construir &llista..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Construir llista" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Construir una llista a partir d'una expressió" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Fer una substitució en una expressió" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Aplicar" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Aplica funció a una llista" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Aplica una funció a una matriu" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Fer coincidir parèntesi en els controle de text" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Font matemàtica:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Matriu" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Aplica rmatriu" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Nom de matriu:" #: ../src/wxMaxima.cpp:2607 #: ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Matriu:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "A&juda de Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Entrada Maxima" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima està calculant" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Paquet de Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Paquet Maxima (*.mac)|*.mac|Paquet Lisp (*.lisp)|*.lisp|Tots|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Procés de Maxima finalitzat." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Programa Maxima:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Preguntes de Maxima" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima iniciat. Esperant la connexió..." #: ../data/tips.txt:3 msgid "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;')." msgstr "Maxima fa servir ':' per assignar un valor a una variable ('a : 3;') i ':=' per definir funcions ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Versió de Maxima: " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "Test diferència de mitjanes" #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "Test mitjanes..." #: ../src/wxMaximaFrame.cpp:1000 msgid "Mean..." msgstr "Aplicar..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Mitjana:" #: ../src/wxMaximaFrame.cpp:1001 msgid "Median..." msgstr "Mediana..." #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Unir cel·les" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Mètode:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Mòdul" #: ../src/MatWiz.cpp:182 #: ../src/wxMaxima.cpp:2671 #: ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Nom:" #: ../src/wxMaximaFrame.cpp:693 #: ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "Nou" #: ../src/wxMaximaFrame.cpp:185 #: ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "Nou\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 #: ../src/wxMaximaFrame.cpp:759 msgid "New document" msgstr "Nou document" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Nuo valor:" #: ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3026 #: ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Nova variable:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "Següent ordre\tAlt-Down" #: ../src/wxMaxima.cpp:2202 #: ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "No s'han trobat coincidències!" #: ../src/wxMaximaFrame.cpp:1009 msgid "Normality Test..." msgstr "Test de normalitat..." #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "La dimensió de la matriu no és vàlida!" #: ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "El nombre d'equacions és incorrecte!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "No conectat." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "num deg:" #: ../src/wxMaxima.cpp:2492 #: ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Nombre d'equacions:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Números" #: ../src/SystemWiz.cpp:36 #: ../src/SystemWiz.cpp:40 #: ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 #: ../src/SumWiz.cpp:46 #: ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 #: ../src/MatWiz.cpp:42 #: ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 #: ../src/IntegrateWiz.cpp:58 #: ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 #: ../src/Gen3Wiz.cpp:52 #: ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 #: ../src/Gen4Wiz.cpp:54 #: ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 #: ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 #: ../src/SeriesWiz.cpp:51 #: ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 #: ../src/Plot2dWiz.cpp:100 #: ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 #: ../src/Plot2dWiz.cpp:564 #: ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 #: ../src/Gen2Wiz.cpp:41 #: ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 #: ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 #: ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "d'Acord" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Valor anterior:" #: ../src/wxMaxima.cpp:2899 #: ../src/wxMaxima.cpp:3025 #: ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Variable anterior:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "Test t per a una mostra" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Tutorials en línia" #: ../src/wxMaximaFrame.cpp:697 #: ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 #: ../src/Config.cpp:306 #: ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Obre" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Obre sessió &recent" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "Obrir una cel·la quan Maxima espera una entrada" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Obre un document" #: ../src/wxMaximaFrame.cpp:186 #: ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Obre nova finestra" #: ../src/wxMaximaFrame.cpp:699 #: ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Obre document" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "Obre matriu" #: ../src/wxMaxima.cpp:962 #: ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Obrint arxiu" #: ../src/wxMaximaFrame.cpp:709 #: ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Opcions" #: ../src/Plot2dWiz.cpp:81 #: ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Opcions:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Cel·les obsoletes" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Etiquetes de sortida" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Aproximació de &Padé..." #: ../src/wxMaxima.cpp:2091 #: ../src/wxMaxima.cpp:3970 msgid "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm" msgstr "Imatge PNG (*.png)|*.png|Imatge JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*.mbp|pixmap X (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Aproximació de Padé" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Aproximació de Padé d'una sèrie de Taylor" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Salt de pàgina" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "&Panells" #: ../src/Plot2dWiz.cpp:447 #: ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Gràfic paramètric" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Analitzant sortida" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "Fraccion&s simples..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Fraccions simples" #: ../src/wxMaxima.cpp:1152 #: ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "Parts del document no s'han carregat correctament!" #: ../src/MathCtrl.cpp:719 #: ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 #: ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Enganxa" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "&Enganxa\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 #: ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Enganxa des del porta-papers" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Aferra text des del porta-papers" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "Diagrama de sectors..." #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Configuri wxMaxima amb 'Edita->Configura'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Reiniciau wxMaxima per aplicar els canvis" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "Gràfics &2D" #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "Gràfics &3D" #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "&Format de gràfics" #: ../src/wxMaxima.cpp:3190 #: ../src/wxMaxima.cpp:3939 #: ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 #: ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "Gràfics 2D" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "Gràfics 2D..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "Gràfics 2D..." #: ../src/wxMaxima.cpp:3176 #: ../src/wxMaxima.cpp:3952 #: ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "Gràfics 3D" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "Gràfics 3D..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "Gràfics 3D...." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Format dels gràfics" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "Gràfic en 2 dimensions" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "Gràfic en 3 dimensions" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Gràfic a l'arxiu:" #: ../src/LimitWiz.cpp:32 #: ../src/BC2Wiz.cpp:29 #: ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 #: ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Punt:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polonès" #: ../src/wxMaxima.cpp:2936 #: ../src/wxMaxima.cpp:2951 #: ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Polinomi 1:" #: ../src/wxMaxima.cpp:2936 #: ../src/wxMaxima.cpp:2951 #: ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Polinomi 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portuguès (Brasil)" #: ../src/Plot2dWiz.cpp:515 #: ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Arxiu postscript (*.eps)|*.eps|Tots|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Precisió" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "Ordre anterior\tAlt-Up" #: ../src/wxMaximaFrame.cpp:705 #: ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Imprimir" #: ../src/wxMaximaFrame.cpp:213 #: ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Imprimir document" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Producte" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "Llegir matri" #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Llegint el resultat de Maxima" #: ../src/wxMaxima.cpp:362 #: ../src/wxMaxima.cpp:819 #: ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 #: ../src/wxMaxima.cpp:985 #: ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 #: ../src/wxMaxima.cpp:1057 #: ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 #: ../src/wxMaxima.cpp:1344 #: ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Preparat per a l'entrada de l'usuari" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "Torna a executar la següent ordre del historial" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "Tornar executar l'ordre anterior del historial" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Forma cartesiana" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Reduir (tr)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Simplificar expressió trigonomètrica" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "&Suprimeix tots els resultats" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Suprimeix els resultats de les cel·les d'entrada" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "Reemplaçades %d coincidències." #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Informa de l'error" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Reinicia Maxima" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Integració &Risch" #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Arrels d'un &polinomi" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Arrels reals &grans d'un polinomi" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Files:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Russ" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Exemple 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Exemple 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Mostra:" #: ../src/wxMaximaFrame.cpp:700 #: ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 #: ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Desa" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Desa animació" #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Desa com" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Desa &com\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Desa imatge..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Desa selecció a imatges" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "&Desa selecció a imatges..." #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Desa animació en un arxiu" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "Voleu desar els canvis abans de tancar?" #: ../src/wxMaxima.cpp:4432 msgid "Save changes?" msgstr "Desar els canvis?" #: ../src/wxMaximaFrame.cpp:201 #: ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Desa document" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Desa document com" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Desa la disposició de panells" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Desa la disposició de panells entre sessions." #: ../src/Plot2dWiz.cpp:513 #: ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Desa gràfic en un arxiu" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Copia la selecció del document a una imatge" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Desa la selecció en un arxiu" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Desa estil en un arxiu" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Desa el mida/posició de la finestra de wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Desa mida/posició de la finestra de wxMaxima entre sessions." #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "Diagrama dispersió" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "Diagrama dispersió..." #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Secció" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Cel·la de secció" #: ../src/MathCtrl.cpp:720 #: ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Selecciona tot" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "&Selecciona tot\tCtrl-A" #: ../src/Config.cpp:472 #: ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Selecciona el programa Maxima" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "Selecciona sub-mostra" #: ../src/LimitWiz.cpp:134 #: ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 #: ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Selecciona una constant" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Selecciona tot" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Selecciona l'algoritme de sortida matemàtica" #: ../data/tips.txt:13 msgid "Selecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection." msgstr "Seleccionant una part del resultat i polsant el botó dret emergirà un menú amb funcions aplicables sobre la selecció." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Selecció" #: ../src/SeriesWiz.cpp:61 #: ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Sèrie" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Sèrie..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Servidor iniciat" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Establir &precisió" #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Establir aug&ment" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Establir la precisió en coma flotant" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Establir la font fitxa en els controls de text." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Establir el format dels gràfics" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Establir ampliació a 100%" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Establir ampliació a 120%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Establir ampliació a 150%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Establir ampliació a 200%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Establir ampliació a 300%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Establir reducció al 80%" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "Establir les condicions inicials per a resoldre EDO mitjançant la transformada de Laplace" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Configura el càlcul del mòdul" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Mostra &definició..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Mostra &funcions" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Mostra &suggiments..." #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Mostra &variables" #: ../src/wxMaximaFrame.cpp:639 #: ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Mostra l'ajuda de Maxima" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "&Mostra plantilla\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Mostra un suggeriment" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Mostra tots les ordres semblents a:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Mostra un exemple per a l'ordre:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Mostra un exemple d'ús" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Mostra ordres semblants a" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Mostra les funcions definides" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Mostra les variables definides" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Mostra la definició d'una funció" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "Mostra la plantilla de funció" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Mostra expressions llargues" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Mostra expressions llargues en el document de wxMaxima." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Mostra la definició de la funció:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Simplifica" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Simplifica &radicals" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Simplifica (r)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Simplifica (tr)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Simplifica expressió" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Simplifica una expressió amb factorials" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Simplifica una expressió amb radicals" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Simplifica expressió racional" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Simplifica la suma" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Simplifica una expressió trigonomètrica" #: ../data/tips.txt:22 msgid "Since wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document." msgstr "Des de wxMaxima 0.8.2 es possible inserir imatges en els documents. Seleccioni 'Cel·la->Inserir imatge' en el menú. Cal tenir present que cal desar el document en format 'Document xml wxMaxima' si voleu que es desi la imatge amb la resta del document." #: ../src/BC2Wiz.cpp:26 #: ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Solució:" #: ../src/wxMaxima.cpp:2368 #: ../src/wxMaxima.cpp:2382 #: ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Resoldre" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Reso&ldre sistema algebraic..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Resoldre &sistema lineal..." #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Resoldre &EDO..." #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Res&oldre (to_poly)..." #: ../src/wxMaxima.cpp:2418 #: ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Resoldre EDO" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Resoldre E&DO amb Laplace..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Resoldre EDO..." #: ../src/wxMaxima.cpp:2493 #: ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Resoldre sistema algebraic" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Resoldre sistema algebraic d'equacions" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Resoldre problema de contorn per a una EDO de segon ordre" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Resoldre equació(s)" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Resoldre equació amb to_poly_solver" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Resoldre problema de valor inicial per a EDO de primer ordre" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Resoldre problema de valor inicial per a EDO de segon ordre" #: ../src/wxMaxima.cpp:2517 #: ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Resoldre sistema lineal" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Resoldre sistema d'equacions lineals" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Resoldre equació diferencial ordinària d'ordre màxim 2" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Resoldre equacions diferencials ordinàries amb la transformada de Laplace" #: ../src/MathCtrl.cpp:701 #: ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Resoldre" #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Castellà" #: ../src/LimitWiz.cpp:35 #: ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 #: ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Especial" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Constants especials" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Inicia animació" #: ../src/wxMaximaFrame.cpp:731 #: ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Inicia animació" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Ha fallat l'engegada de Maxima" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Engegant maxima..." #: ../src/wxMaxima.cpp:262 #: ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "L'engegada del servidor ha fallat" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Engegant el servidor en el port %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Estadística" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "&Estadística\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 #: ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Atura l'animació" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Cadenes de text" #: ../src/Config.cpp:99 msgid "Style" msgstr "Estil" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Estils" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "Sub-mostra" #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Sub-secció" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Cel·la de sub-secció" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "S&ubstitueix" #: ../src/SubstituteWiz.cpp:53 #: ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Substitueix" #: ../src/MathCtrl.cpp:707 #: ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Substitueix..." #: ../src/SumWiz.cpp:61 #: ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Suma" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "Informació del sistema" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Sèrie de Taylor:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Text" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Cel·la de text" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Fons de cel·la de text" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Port predeterminat per a comunicació entre Maxima i wxMaxima" #: ../data/tips.txt:9 msgid "There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima." msgstr "Hi ha més recursos sobre Maxima i wxMaxima a internet. Visitau http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials per obtenir més información." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "S'ha produït un error en el XML generat!\n" "\n" "Si us plau, informeu de l'error." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "HI ha hagut un error en la exportació a imatge GIF!\n" "\n" "Assegurau-vos que el programa ImageMagick està instal·lat i què wxMaxima pot trobar el programa de conversió." #: ../src/Plot2dWiz.cpp:66 #: ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Graduacions:" #: ../src/wxMaxima.cpp:3060 #: ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Repeticions:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Perdoneu, el suggeriment no està disponible, " #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Títol" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Cel·la de títol" #: ../data/tips.txt:7 msgid "Title, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold." msgstr "Les cel·les de títol, secció i sub-secció són plegables per a ocultar el contingut. Tant per plegar-les com per a des-plegarles feu clic en el quadre contigu a la cel·la. Si al mateix temps polsau 'Majúscules', tots els sub-nivells es plegaran/des-plegaran." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "A real gran (&bigfloat)" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "A &real" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "A real" #: ../data/tips.txt:17 msgid "To plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D." msgstr "Per a representar en coordenades polars, seleccioneu 'set polar' a l'entrada d'Opcions del quadre de diàleg de Gràfic 2D. Podeu ferla representació en coordenades esfèriques i cilíndriques en 3D." #: ../data/tips.txt:19 msgid "To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards." msgstr "Per a col·locar entre parèntesi una expressió, seleccioneu-la i premeu '(' o ')', segons on voleu que es col·loqui el cursor." #: ../data/tips.txt:21 msgid "To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog." msgstr "Per a desar la mida i posició de la finestra de wxMaxima entre sessions, feu servir 'Edita->Configura'." #: ../data/tips.txt:1 msgid "To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command." msgstr "Per engegar fent servir wxMaxima tot seguit, comenceu teclejant una instrucció. Apareixerà una cel·la d'entrada. Polseu 'Majúscules-Retorn' per a iniciar el càlcul." #: ../src/SumWiz.cpp:39 #: ../src/IntegrateWiz.cpp:47 #: ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 #: ../src/Plot2dWiz.cpp:52 #: ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 #: ../src/Plot3dWiz.cpp:49 #: ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "Fins a:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Activa l'opció &algebraica" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Activa sortida &numèrica" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Activa la pantalla de &temps" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Activa l'opció algebraica" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Activa l'edició de pantalla completa" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Activa sortida numèrica" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "&Barra d'eines\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "Icones de la barra d'eines" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Traduït per" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Matriu transposta" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "&Tutorials" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "Test t amb dues mostres" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Tipus:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ucraïnés" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Subrallat" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "D&esfer\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Desfer el darrer canvi" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Suport Unicode" #: ../src/wxMaxima.cpp:4351 #: ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "Actualitza" #: ../src/wxMaxima.cpp:2398 #: ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Cota superior:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Usar algoritme Gosper" #: ../src/Config.cpp:132 #: ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Usar punt centrat com a operador de multiplicació" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Utilitza fonts jsMath" #: ../src/BC2Wiz.cpp:32 #: ../src/BC2Wiz.cpp:38 #: ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 #: ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Valor:" #: ../src/wxMaxima.cpp:2367 #: ../src/wxMaxima.cpp:2381 #: ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 #: ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Variable(s):" #: ../src/LimitWiz.cpp:29 #: ../src/SumWiz.cpp:33 #: ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 #: ../src/wxMaxima.cpp:2397 #: ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 #: ../src/wxMaxima.cpp:2725 #: ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 #: ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 #: ../src/Plot2dWiz.cpp:56 #: ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 #: ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Variable:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Variables" #: ../src/SystemWiz.cpp:72 #: ../src/wxMaxima.cpp:2478 #: ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Variables:" #: ../src/wxMaximaFrame.cpp:1002 msgid "Variance..." msgstr "Variància..." #: ../src/wxMaxima.cpp:1085 #: ../src/wxMaxima.cpp:1152 #: ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Avís" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Bienvingut a wxMaxima" #: ../data/tips.txt:20 msgid "When applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command." msgstr "En aplicar funcions amb un argument del menú, l'argument pre-determinat és '%'. Per aplicar la funció a un altre valor, seleccioneu-lo en el document abans d'executar la instrucció del menú." #: ../src/wxMaxima.cpp:2671 #: ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Amplada:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Escriure parèntesi coincidents en els controls de text." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Escrit per" #: ../data/tips.txt:4 msgid "You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output." msgstr "Podeu veure la darrera sortida fent servir la variable '%' . És possible veure la sortida de les ordres anteriors fent servir les variables '%on' on n és el número de la sortida." #: ../data/tips.txt:15 msgid "You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document." msgstr "Podeu avaluar el document complet seleccionant 'Cel·la->Avaluar totes les cel·les' en el menú o amb les tecles ràpides. Les cel·les s'avaluaran en l'ordre en què apareixen en el document." #: ../data/tips.txt:10 msgid "You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor." msgstr "Podeu llegir informació sobre una funció de Maxima seleccionant o fent clic sobre el nom i polsant F1. wxMaxima mostrarà l'ajuda disponible de la paraula sota el cursor." #: ../data/tips.txt:8 msgid "You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also." msgstr "Podeu amagar la part del resultat d'una cel·la fent clic sobre el triangle a la seva esquerra. Això mateix podeu fer-ho a cel·les de text." #: ../data/tips.txt:5 msgid "You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations." msgstr "Podeu afegir diferents tipus de cel·les en un document de wxMaxima seleccionant el menú 'Cel·la'. Cal tenir present que només és possible avaluar 'cel·les d'entrada', els altres tipus de cel·les es fan servir per a comentaris i estructuració dels vostres càlculs." #: ../data/tips.txt:14 msgid "You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells." msgstr "Podeu seleccionar més d'una cel·la, amb el ratolí, fent clic i arrossegant entre cel·les o claudàtor de cel·les, amb el teclat, mantenint polsada la tecla de Majúscules a la vegada que es mou el cursor horitzontal, per a operar sobre la selecció. Això serà d'utilitat en haver de suprimir o avaluar vàries cel·les simultàniament." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "La seva versió és %s. La versió actual és %s.\n" "\n" "Seleccionau d'Acord per visitar la web de wxMaxima." #: ../src/wxMaxima.cpp:4418 #: ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "Els vostres canvis es perdran si no els desau." #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "La vostra versió de wxMaxima està actualitzada." #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Ampl&ia\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "&Redueix\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Redueix 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Amplia 10%" #: ../src/wxMaxima.cpp:2116 #: ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Estableix ampliació a " #: ../src/wxMaximaFrame.cpp:93 #: ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[sense desar]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[sense desar*]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "anti-simètrica" #: ../src/LimitWiz.cpp:39 #: ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "ambdós costats" #: ../src/Plot2dWiz.cpp:73 #: ../src/Plot2dWiz.cpp:398 #: ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "pre-determinat" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonal" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "general" #: ../src/Plot2dWiz.cpp:74 #: ../src/Plot2dWiz.cpp:205 #: ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 #: ../src/Plot3dWiz.cpp:73 #: ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 #: ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "en línia" #: ../src/LimitWiz.cpp:40 #: ../src/LimitWiz.cpp:121 msgid "left" msgstr "esquerra" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "línies ocultes" #: ../src/Plot2dWiz.cpp:55 #: ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "escala logarítmica" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "matriu[i,j]:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "no" #: ../src/LimitWiz.cpp:41 #: ../src/LimitWiz.cpp:123 msgid "right" msgstr "dreta" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "simètrica" #: ../src/wxMaxima.cpp:4403 msgid "unsaved" msgstr "sense desar" #: ../src/wxMaximaFrame.cpp:95 #: ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "sense nom" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "sense nom %d" #: ../src/main.cpp:167 #: ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 #: ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 #: ../src/wxMaxima.cpp:4222 #: ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 #: ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Configuració de wxMaxima" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima no localitza Maxima!\n" "\n" "Configureu wxMaxima amb 'Edita->Configura.\n" "A continuació engegueu Maxima amb 'Maxima->Re-engega maxima'." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima no troba els arxius d'ajuda.\n" "Comproveu la instal·lació." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima no troba els arxius de suggeriments.\n" "\n" "Comproveu la instal·lació." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima no pot engegar el servidor.\n" "\n" "Comproveu si teniu el suport de xarxa\n" "activat i proveu de nou!" #: ../data/tips.txt:18 msgid "wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'." msgstr "En los quadres de diàleg de wxMaxima apareixen entrades pre-determinades, una de las quals és '%'. Si heu fet una selecció en el document, es farà servir enlloc de '%'." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "Document wxMaxima" #: ../src/wxMaxima.cpp:1842 msgid "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.mac" msgstr "Document wxMaxima (*.wxm)|*.wxm|Document xml wxMaxima (*.wxmx)|*.wxmx|Arxiu de Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 #: ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "Document wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 #: ../src/wxMaxima.cpp:984 #: ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima ha detectat un error en carregar " #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "Icone de wxMaxima" #: ../src/wxMaxima.cpp:3355 msgid "wxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets." msgstr "wxMaxima es una interfície gràfica d'usuari per al Sistema d'Àlgebra Simbòlica (CAS) MAXIMA, basat en wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets." msgstr "wxMaxima es una interfície gràfica d'usuari per al Sistema d'Àlgebra Simbòlica (CAS) Maxima, basat en wxWidgets." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "sí" #~ msgid "&Cell" #~ msgstr "Ce&l·la" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Nova finestra\tCtrl-N" #~ msgid "Close document?" #~ msgstr "Tancar document?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Document sense desar!\n" #~ "\n" #~ "¿Tancar el document actual i perdre tots els canvis?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Document sense desar!\n" #~ "\n" #~ "Tancar wxMaxima i perdre tots els canvis?" #~ msgid "Maxima options" #~ msgstr "Opcions de Maxima" #~ msgid "Mean" #~ msgstr "Mitjana" #~ msgid "Quit?" #~ msgstr "Sortir?" #~ msgid "wxMaxima options" #~ msgstr "Opcions de wxMaxima" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima es una interface gráfica de usuario para \n" #~ "el Sistema de Cálculo Simbólico Maxima, basado en wxWidgets." #~ msgid "<< Nothing to display >>" #~ msgstr "<< Nada que mostrar >>" #~ msgid "Functions and macros" #~ msgstr "Funciones y macros" #~ msgid "Inspector" #~ msgstr "Inspector" #~ msgid "Inspector\tAlt-Shift-I" #~ msgstr "&Inspector\tAlt-Shift-I" #~ msgid "Labels" #~ msgstr "Etiquetas" #~ msgid "Autocomplete" #~ msgstr "Autocompletar" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "Copiar selección al portapapeles cuando se hace en el documento." #~ msgid "Copy to clipboard on select" #~ msgstr "Copiar la selección al portapapeles" #~ msgid "Input" #~ msgstr "Entrada" #~ msgid "Save document as ..." #~ msgstr "Guardar documento como" #~ msgid "Show Maxima header" #~ msgstr "Mostrar el encabezamiento de Maxima" #~ msgid "Show initial header with Maxima system information." #~ msgstr "Mostrar encabezamiento inicial con información de Maxima." #~ msgid "Adjustment for the size of greek font." #~ msgstr "Ajuste para el tamaño de la fuente griega" #~ msgid "Adjustment:" #~ msgstr "Ajuste:" #~ msgid "Basic" #~ msgstr "Básico" #~ msgid "Button panel:" #~ msgstr "Panel de botones:" #~ msgid "Copy selected cell(s)" #~ msgstr "Copiar celda(s) seleccionada(s)" #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr "Cortar Celda(s)\tCtrl-Shift-X" #~ msgid "Decrease fontsize in document" #~ msgstr "Disminuir el tamaño de la fuente en el documento" #~ msgid "Delete selected cell(s)" #~ msgstr "Borrar celda(s) seleccionada(s)" #~ msgid "Delete selection" #~ msgstr "Borrar selección" #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr "Fuente usada para mostrar glifos unicode en el documento." #~ msgid "Full" #~ msgstr "Completo" #~ msgid "Increase fontsize in document" #~ msgstr "Aumentar el tamaño de fuente del documento." #~ msgid "Insert input cell" #~ msgstr "Insertar celda de entrada" #~ msgid "Insert input group" #~ msgstr "Insertar grupo de entrada" #~ msgid "Insert text" #~ msgstr "Insertar texto" #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr "Celda de nuevo t&ítulo\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "Desactivado" #~ msgid "Paste cell(s) to document" #~ msgstr "Pegar celda(s) al documento" #~ msgid "Product..." #~ msgstr "Producto" #~ msgid "Select file to open" #~ msgstr "Seleccionar archivo para abrir" #~ msgid "Sum..." #~ msgstr "Suma" #~ msgid "To &Float\tCtrl-F" #~ msgstr "A real \tCtrl-F" #~ msgid "Use greek font to display greek characters." #~ msgstr "Usar fuente griega para mostrar caracteres griegos." #~ msgid "Use greek font:" #~ msgstr "Usar fuente griega:" #~ msgid "untitled.wxm" #~ msgstr "sinnombre.wxm" #~ msgid "wxMaxima session (*.wxm)|*.wxm" #~ msgstr "Sesión de wxMaxima (*.wxm)|*.wxm" #~ msgid "aquamarine" #~ msgstr "aguamarina" #~ msgid "black" #~ msgstr "negro" #~ msgid "blue" #~ msgstr "azul" #~ msgid "blue violet" #~ msgstr "azul violeta" #~ msgid "brown" #~ msgstr "marrón" #~ msgid "cadet blue" #~ msgstr "azul cadete" #~ msgid "coral" #~ msgstr "coral" #~ msgid "cornflower blue" #~ msgstr "azulina" #~ msgid "cyan" #~ msgstr "cyan" #~ msgid "dark green" #~ msgstr "verde oscuro" #~ msgid "dark grey" #~ msgstr "gris oscuro" #~ msgid "dark olive green" #~ msgstr "verde oliva oscuro" #~ msgid "dark orchid" #~ msgstr "orquídea oscuro" #~ msgid "dark slate blue" #~ msgstr "azul pizarra oscuro" #~ msgid "dark slate grey" #~ msgstr "gris pizarra oscuro" #~ msgid "dark turquoise" #~ msgstr "turquesa oscuro" #~ msgid "dim grey" #~ msgstr "gris débil" #~ msgid "firebrick" #~ msgstr "teja" #~ msgid "forest green" #~ msgstr "verde bosque" #~ msgid "gold" #~ msgstr "oro" #~ msgid "goldenrod" #~ msgstr "barra de oro" #~ msgid "green" #~ msgstr "verde" #~ msgid "green yellow" #~ msgstr "verde amarillo" #~ msgid "grey" #~ msgstr "gris" #~ msgid "khaki" #~ msgstr "caqui" #~ msgid "light blue" #~ msgstr "azul claro" #~ msgid "light grey" #~ msgstr "gris claro" #~ msgid "light steel blue" #~ msgstr "azul acero claro" #~ msgid "lime green" #~ msgstr "verde lima" #~ msgid "maroon" #~ msgstr "granate" #~ msgid "medium aquamarine" #~ msgstr "aguamarina medio" #~ msgid "medium blue" #~ msgstr "azul medio" #~ msgid "medium forrest green" #~ msgstr "verde bosque medio" #~ msgid "medium goldenrod" #~ msgstr "barra de oro media" #~ msgid "medium orchid" #~ msgstr "orquídea medio" #~ msgid "medium sea green" #~ msgstr "verde mar medio" #~ msgid "medium slate blue" #~ msgstr "azul pizarra medio" #~ msgid "medium spring green" #~ msgstr "verde primavera medio" #~ msgid "medium turquoise" #~ msgstr "turquesa medio" #~ msgid "medium violet red" #~ msgstr "rojo violeta medio" #~ msgid "midnight blue" #~ msgstr "azul medianoche" #~ msgid "navy" #~ msgstr "marina" #~ msgid "orange" #~ msgstr "naranja" #~ msgid "orange red" #~ msgstr "rojo anaranjado" #~ msgid "orchid" #~ msgstr "orquídea" #~ msgid "pale green" #~ msgstr "verde pálido" #~ msgid "pink" #~ msgstr "rosa" #~ msgid "plum" #~ msgstr "ciruela" #~ msgid "purple" #~ msgstr "morado" #~ msgid "red" #~ msgstr "rojo" #~ msgid "salmon" #~ msgstr "salmón" #~ msgid "sea green" #~ msgstr "verde mar" #~ msgid "sienna" #~ msgstr "siena" #~ msgid "sky blue" #~ msgstr "azul cielo" #~ msgid "spring green" #~ msgstr "verde primavera" #~ msgid "steel blue" #~ msgstr "azul acero" #~ msgid "tan" #~ msgstr "tan" #~ msgid "thistle" #~ msgstr "cardo" #~ msgid "turquoise" #~ msgstr "turquesa" #~ msgid "violet" #~ msgstr "violeta" #~ msgid "wheat" #~ msgstr "trigo" #~ msgid "white" #~ msgstr "blanco" #~ msgid "yellow" #~ msgstr "amarillo" #~ msgid "yellow green" #~ msgstr "verde amarillo" #~ msgid " << Unfold >>" #~ msgstr " << Desplegar >>" #~ msgid "Background" #~ msgstr "Fondo" #~ msgid "Copy cells" #~ msgstr "Copiar celdas" #~ msgid "Cut selection from document" #~ msgstr "Cortar selección del documento" #~ msgid "Evaluate cell\tShift-Enter" #~ msgstr "Evaluar celda\tShift-Enter" #~ msgid "Export to HTML file" #~ msgstr "Exportar a un archivo HTML" #~ msgid "Hidden groups" #~ msgstr "Grupos ocultos" #~ msgid "Integrate ..." #~ msgstr "Integrar" #~ msgid "Main prompts" #~ msgstr "Indicadores principales" #~ msgid "Open session from a file" #~ msgstr "Abrir sesión desde un archivo" #~ msgid "Other prompts" #~ msgstr "Otros indicadores" #~ msgid "Save session" #~ msgstr "Guardar sesión" #~ msgid "Save session to a file" #~ msgstr "Guardar sesión en un archivo" #~ msgid "Save to file" #~ msgstr "Guardar en un archivo" #~ msgid "Select package to load" #~ msgstr "Seleccionar paquete para cargar" #~ msgid "Substitute ..." #~ msgstr "Sustituir" #~ msgid "wxMaxima session" #~ msgstr "Sesión de wxMaxima" #~ msgid "&Copy" #~ msgstr "&Copiar" #~ msgid "&Describe\tCtrl-H" #~ msgstr "&Describir\tCtrl-H" #~ msgid "&Edit input\tCtrl-E" #~ msgstr "E&ditar entrada\tCtrl-E" #~ msgid "&Input\tF7" #~ msgstr "&Entrada\tF7" #~ msgid "&Monitor file" #~ msgstr "&Monitorizar archivo" #~ msgid "&Re-evaluate input\tCtrl-R" #~ msgstr "&Re-calcular entrada\tCtrl-R" #~ msgid "&Read file" #~ msgstr "Leer &archivo" #~ msgid "&Text\tF6" #~ msgstr "&Texto\tF6" #~ msgid "" #~ "All|*|Maxima package (*.mac)|*.mac|Demo file (*.dem)|*.dem|Lisp file (*." #~ "lisp)|*.lisp" #~ msgstr "" #~ "Todos|*|Paquete maxima(*.mac)|*.mac|Archivo demo (*.dem)|*.dem|Archivo " #~ "lisp (*.lisp)|*.lisp" #~ msgid "Autoload a file when it is updated" #~ msgstr "Autocargar un archivo cuando sea actualizado" #~ msgid "C&lear screen" #~ msgstr "&Limpiar pantalla" #~ msgid "Copy input" #~ msgstr "Copiar entrada" #~ msgid "Copy input from console" #~ msgstr "Copiar entrada desde documento" #~ msgid "Copy selection from console to input line" #~ msgstr "Copiar selección de la consola a la línea de entrada" #~ msgid "Copy to input" #~ msgstr "Copiar a la entrada" #~ msgid "Delete selected input/output group" #~ msgstr "Borrar grupo de entrada/salida seleccionado" #~ msgid "Delete the contents of console." #~ msgstr "Borrar los contenidos de la consola." #~ msgid "Describe" #~ msgstr "Describir" #~ msgid "Edit input" #~ msgstr "Editar entrada" #~ msgid "Edit selected input" #~ msgstr "Editar la entrada seleccionada" #~ msgid "Edit text" #~ msgstr "Editar texto" #~ msgid "Enter command" #~ msgstr "Introducir comando" #~ msgid "Go to input\tCtrl-Shift-D" #~ msgstr "Ir a\tCtrl-Shift-D" #~ msgid "Go to input\tF4" #~ msgstr "Ir a la entrada\tF4" #~ msgid "Go to output window\tF3" #~ msgstr "Ir a la ventana de salida\tF3" #~ msgid "I&nsert" #~ msgstr "I&nsertar" #~ msgid "INPUT:" #~ msgstr "ENTRADA:" #~ msgid "" #~ "If you want to input more than one line at a time, use the 'Multiline " #~ "input' button at the right of the input line." #~ msgstr "" #~ "Si desea introducir más de una línea a la vez, utilice el botón \"Entrada " #~ "multilínea\" a la derecha de la línea de entrada." #~ msgid "Insert new input before selected input" #~ msgstr "Insertar nueva entrada antes de la entrada seleccionada" #~ msgid "Insert section before selected input" #~ msgstr "Insertar sección antes de la entrada seleccionada" #~ msgid "Insert text before selected input" #~ msgstr "Insertar texto antes de la entrada seleccionada" #~ msgid "Insert title before selected input" #~ msgstr "Insertar título antes de la entrada seleccionada" #~ msgid "" #~ "Instead of typing a long pathname of a file to input line, you can select " #~ "that file using 'File->Select file'." #~ msgstr "" #~ "En lugar de introducir una ruta larga para un archivo, puede seleccionar " #~ "ese archivo utilizando 'Archivo->Seleccionar archivo'." #~ msgid "Multiline input" #~ msgstr "Entrada multilínea" #~ msgid "Open multiline input dialog" #~ msgstr "Abrir diálogo de entrada multilínea" #~ msgid "Paste input" #~ msgstr "Pegar entrada" #~ msgid "Paste input to console" #~ msgstr "Pegar entrada a la consola" #~ msgid "Re-evaluate all\tCtrl-Shift-R" #~ msgstr "&Re-calcular todo\tCtrl-Shift-R" #~ msgid "Re-evaluate all input" #~ msgstr "Re-calcular todas las entradas" #~ msgid "Re-evaluate input" #~ msgstr "Re-calcular entrada" #~ msgid "Read file from command line" #~ msgstr "Leer archivo desde línea de comandos" #~ msgid "Select &file" #~ msgstr "Seleccionar &archivo" #~ msgid "Select a file" #~ msgstr "Seleccionar un archivo" #~ msgid "Select a file (copy filename to input line)" #~ msgstr "" #~ "Seleccionar un archivo (copiar el nombre del fichero en la línea de " #~ "entrada)" #~ msgid "Select last input\tCtrl-D" #~ msgstr "Seleccionar la última entrada\tCtrl-D" #~ msgid "Select last input\tF2" #~ msgstr "Seleccionar la última entrada\tF2" #~ msgid "Select last input in the colsole!" #~ msgstr "¡Seleccionar la última entrada en la consola!" #~ msgid "Select last input in the console!" #~ msgstr "¡Seleccionar la última entrada en la consola!" #~ msgid "Selection to input\tCtrl-Shift-E" #~ msgstr "Selección a entrada\tCtrl-Shift-E" #~ msgid "Selection to input\tF5" #~ msgstr "Selección a entrada\tF5" #~ msgid "Set focus to the input line" #~ msgstr "Poner el foco en la línea de entrada" #~ msgid "Set focus to the output window" #~ msgstr "Poner el foco en la ventana de salida" #~ msgid "Show the description of a command" #~ msgstr "Mostrar la descripción de un comando" #~ msgid "Show the description of command/variable:" #~ msgstr "Mostrar la descripción de un comando/variable:" #~ msgid "" #~ "To enter a matrix A, type 'A : ' to input line and select 'Algebra->Enter " #~ "matrix' from menus." #~ msgstr "" #~ "Para introducir una matriz A, escriba 'A:' en la línea de entrada y " #~ "seleccionar 'Algebra->Introducir matriz' del menú" #~ msgid "" #~ "To put parenthesis around an expression you previously typed into the " #~ "input line, select the expression with mouse and then type '('." #~ msgstr "" #~ "Para poner paréntesis a una expresión previamente escrita en la línea de " #~ "entrada, seleccionar la expresión con el ratón y entonces escribir '('." #~ msgid "" #~ "To repeat a long command you previously entered in the input line, type " #~ "in the first few letters to the input line and then pres tab key." #~ msgstr "" #~ "Para repetir un comando largo previamente introducido, escribir las " #~ "primeras letras del mismo en la línea de entrada y pulsar la tecla " #~ "tabulador." #~ msgid "" #~ "You can delete output/input group if you select the input label and " #~ "choose 'Edit->Delete selection' from menus." #~ msgstr "" #~ "Se puede eliminar grupo entrada/salida si se selecciona la etiqueta de " #~ "entrada y se elige 'Editar->Eliminar selección' de los menús." #~ msgid "" #~ "You can hide the output by clicking on the output label. Clicking on the " #~ "input label hides input and output. Clicking on the label again, shows " #~ "hidden expressions." #~ msgstr "" #~ "Se puede ocultar la salida haciendo clic en la etiqueta de salida. " #~ "Haciendo clic otra vez en la etiqueta, se muestran las expresiones " #~ "ocultas." #~ msgid "" #~ "You can load a file into maxima by dragging it from a file browser to the " #~ "console window." #~ msgstr "" #~ "Se puede cargar un archivo en maxima arrastrándolo del explorador de " #~ "archivos a la ventana de la consola." #~ msgid "" #~ "You can load files into maxima if you drop them on the console window. " #~ "You can select a custom function for loading your file. If your custom " #~ "function is 'A:read_matrix(%file%, csv)', then %file% will be replaced " #~ "with the filename of your file." #~ msgstr "" #~ "Se pueden cargar archivos en maxima si se arrastran desde la ventana de " #~ "la consola. Se puede seleccionar una función personalizada para cargar el " #~ "archivo. Si la función personalizada es 'A:read_matrix(%file%, csv)', " #~ "entonces %file% será reemplazado con el nombre del archivo." #~ msgid "" #~ "You can select the output of maxima in wxMaxima console with mouse and " #~ "copy it to the clipboard with 'Edit->copy'." #~ msgstr "" #~ "Se puede seleccionar la salida de maxima en la consola de wxMaxima con el " #~ "ratón y copiándolo al portapapeles con 'Editar->Copiar.'" #~ msgid "" #~ "You can use the maxima tex command to print the expression in TeX form. " #~ "Then you can copy it to text editor to include it in you paper." #~ msgstr "" #~ "Se puede usar el comando tex de maxima para mostrar la expresión en " #~ "formato TeX. Luego se puede copiar a un editor de texto para incluirlo en " #~ "su documento." #~ msgid "" #~ "wxMaxima has nice plot dialogs. If you want to modify previous plot " #~ "commands, access them using command history and then push the plot button." #~ msgstr "" #~ "wxMaxima tiene buenos cuadros de diálogo. Si se quiere modificar los " #~ "comandos gráficos anteriores, se puede acceder usando la historia de " #~ "comandos y a continuación pulsando el botón de gráficos." #~ msgid "" #~ "wxMaxima's input line has command history available using up and down " #~ "keys and command completion based on previous input available using the " #~ "tab key." #~ msgstr "" #~ "La línea de entrada de wxMaxima tiene un histórico disponible usando las " #~ "teclas de dirección arriba y abajo, y un autocompletado de comandos " #~ "basado en la entrada anterior disponible, usando la tecla tabulador." #~ msgid "Apply function:" #~ msgstr "Aplicar función:" #~ msgid "At point:" #~ msgstr "En el punto:" #~ msgid "Char poly of:" #~ msgstr "Polinomio característico de:" #~ msgid "Comment out" #~ msgstr "Comentar" #~ msgid "Copy &text" #~ msgstr "Copiar &texto" #~ msgid "Copy selection from console (including linebreaks)" #~ msgstr "Copiar selección de la consola (saltos de línea incluidos)" #~ msgid "From array:" #~ msgstr "De la tabla:" #~ msgid "From equations:" #~ msgstr "De las ecuaciones:" #~ msgid "Integrate:" #~ msgstr "Integrar:" #~ msgid "Limit of:" #~ msgstr "Límite de:" #~ msgid "Map function:" #~ msgstr "Aplicar la función:" #~ msgid "Product:" #~ msgstr "Producto:" #~ msgid "Solve &numerically ..." #~ msgstr "Resolver &numéricamente" #~ msgid "Solve equation(s):" #~ msgstr "Resolver ecuación(es):" #~ msgid "Solve equation:" #~ msgstr "Resolver ecuación:" #~ msgid "Solve numerically" #~ msgstr "Resolver numéricamente" #~ msgid "Solve numerically ..." #~ msgstr "Resolver numéricamente" #~ msgid "Substitute:" #~ msgstr "Sustituir:" #~ msgid "Substitution" #~ msgstr "Sustitución" #~ msgid "Sum of:" #~ msgstr "Suma de:" #~ msgid "Uncomment" #~ msgstr "Descomentar" #~ msgid "Unfold" #~ msgstr "Desplegar" #~ msgid "Unfold all folded groups" #~ msgstr "Desplegar todos los grupos" #~ msgid "Use &Taylor series" #~ msgstr "Usar serie de &Taylor" #~ msgid "around:" #~ msgstr "entorno a:" #~ msgid "by variable:" #~ msgstr "para la variable:" #~ msgid "change var:" #~ msgstr "cambiar var:" #~ msgid "eliminate variables:" #~ msgstr "eliminar las variables:" #~ msgid "equation:" #~ msgstr "ecuación:" #~ msgid "for function(s):" #~ msgstr "para la(s) función(es):" #~ msgid "for variable(s):" #~ msgstr "para la(s) variable(s):" #~ msgid "from expression:" #~ msgstr "de la expresión:" #~ msgid "function:" #~ msgstr "función:" #~ msgid "goes to:" #~ msgstr "tiende a:" #~ msgid "in variable:" #~ msgstr "respecto la variable:" #~ msgid "in:" #~ msgstr "en:" #~ msgid "the value is:" #~ msgstr "el valor es:" #~ msgid "variable" #~ msgstr "variable" #~ msgid "variable:" #~ msgstr "variable:" #~ msgid "when variable:" #~ msgstr "cuando la variable:" #~ msgid "with:" #~ msgstr "con:" #~ msgid "" #~ "wxMaxima is a wxWidgets interface for the\n" #~ "computer algebra system MAXIMA.\n" #~ "\n" #~ "Version: %s.\n" #~ "License: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgstr "" #~ "wxMaxima es una interfaz wxWidgets para el\n" #~ "sistema de cálculo simbólico MAXIMA.\n" #~ "\n" #~ "Versión: %s.\n" #~ "Licencia: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgid "wxMaxima session (*.wxm)|*.wxm|Maxima batch file (*mac)|*.mac|All|*" #~ msgstr "" #~ "Sesión wxMaxima (*.wxm)|*.wxm|Archivo por lotes de Maxima (*mac)|*.mac|" #~ "Todos|*" #~ msgid "Maxima session (*.wxm)|*.wxm" #~ msgstr "Sesión de Maxima (*.wxm)|*.wxm" wxMaxima-13.04.2/locales/ChangeLog000644 000765 000024 00000004202 11670654443 017266 0ustar00andrejstaff000000 000000 2008-12-17 Marco Ciampa * it.po: updated italian translation. 2008-11-15 Marco Ciampa * it.po: updated italian translation. 2007-12-23 Marco Ciampa * it.po: updated italian translation. 2007-07-23 Harald Geyer * de.po: Updated german translation for next release * de.po: Made some translations shorter to fit better into the UI * de.po: Rearranged accelerator keys for Datei->... slightly 2007-03-22 Harald Geyer * de.po: Updated german translation 2006-12-05 Marco Ciampa * it.po: updated italian translation 2006-12-03 Harald Geyer * de.po: Updated german translation 2006-10-27 Marco Ciampa * it.po: re-encoded to UTF-8 since the encoding problem could be resolved with unicows.dll 2006-09-19 Harald Geyer * de.po: Updated german translation * de.po: re-encoded to utf-8 to make new gtk/pango happy 2006-08-09 Marco Ciampa * it.po: re-encoded to iso-8859-1 to resolve mswindows issue 2006-08-09 Marco Ciampa * it.po * es.po * de.po * fr.po * pt_BR * ru.po: strings updated 2006-08-09 Marco Ciampa * it.po: updated italian translation. 2006-04-09 Antonio Ullan * es.po: Updated spanish translation. 2006-04-08 Harald Geyer * de.po: Updated german translation 2006-03-30 Marco Ciampa * it.po: Updated italian translation. 2006-03-29 Marco Ciampa * it.po: Updated italian translation. 2006-03-23 Harald Geyer * de.po: Updated german translation 2005-11-17 Antonio Ullan * es.po: Updated spanish translation. 2005-11-05 Marco Ciampa * it.po: Updated italian translation. 2005-05-13 Marco Ciampa * it.po: Updated italian translation. 2005-02-14 Marco Ciampa * it.po: Updated italian translation. 2005-01-31 Marco Ciampa * it.po: Updated italian translation. wxMaxima-13.04.2/locales/cs.mo000644 000765 000024 00000145313 11710501376 016456 0ustar00andrejstaff000000 000000 *H9)I9s9{999&9g9JG::: ::: : :;; .;<;P;h; |;; ; ;;;;; ;<<+< ;<F<Y< _<m<<< <<<<<< == ,=8=A=X= _=l=|= == ==== = =>>.> F>P>Y>h>z>>> >>? e@r@x@@@@@'@ A1ALAcA iAsAyAAAAAA AAA AAB BBC+&C(RC{CCCCC;CD"D 9DCD WD cDoD#xDDDDD D% E3E1NE#E#EE@E )F4FNFdFwFF8FAF(G'8GH`G1G1G H$H6HLH>aHH H HH H HHI(I$GI,lI%III I III I1I/J05JfJ nJ |JJJJJJJJ K K 4K@K GKSKjK rKKK K KKKK L(L /L;L YLcL wL L L L L/LLLL. M(:McM yMM(MM M M M MMN NN'NAN#RN"vN%NN N NN NNOO.ONO*UOOO OO OOOOP(P?P UPaPfP&uPPP PPP P/PQ)-QWQ'vQQQQQ QR (R2R:R"VR5yRRRRRRRR R S$S74S3lSSS SSS"S,T*BTmTtTT+TT3T,U,3U'`UUU;UUUUU V V 'V4VW~BWW@WXX)XmNm Wm bmpmtmm mmDmmBnunaohoooo oo dp qp{ppq`qrrrrrrr s!s5s HsRs Xs bs msys ss-sss s s t tt&t:tt,t'uuwyv)vx*x :x Fx Sx `x lx yx xxxxxx xx xxx xxx x y#yDyCyb0zz:{eL{.{&{a|j|n|)!~K~S~%l~~2~~VX  !+=[n Ԁ * >L"^ ́# !3FX$m ӂ 18IY%nʃ ڃ 5AJ[ p ńQ ep *;<<Pׇ &6G O ]1i Ӊ*'9K^mu8 Š"͊M> Uct}..̋ %3S-q.P X#c  ōύEM(.v0P֎0'1X׏E <G`#u!Ȑ,(*/S.Б 673= q} В"+ Cdy   ʓדޓ #&:ahwȔڔ ( *</L3|ɕؕ8* 3?HQZ`i p(/Ӗ-41 fp ʗޗ!'!@!b  Șܘ+8IP4a Ùՙ! 5)V!  !)*K8v ˛ϛ.6>4uʜ )G!b  ؝*,/@+p' ĞAϞ %=V l v t'G- u ӡ'8Lh!Ţ  &G,Y #Qã!$7\en)֤! 1R YcktBѥ ';Lh $٦+:B`vD1+f] Ĩ Ψڨ"4Om| ˩$DJQclz" +=Wi,ǫ֫8B>  ɬ Ѭ ܬ  # .9*S ~ ŭ٭*%+'Qy#ܮ  % 2=E Xe կ+2^3vȰ%4; A O[n U]cl,ɲ *GdB- >L#a (մ-Ii0͵ "+@,T! Ķ$ֶ  /N^ s$ŷ0-30a0ø#޸+" N Y frҹ ' 8BG MYjs  @ֺ: ż!ϼ Խ1#>޾jgҿqu0:W ku z  2# , 8 D O [f 3.=l{_*;JZi    %25 <HQ ZfT,MS#d4)TH~)>/'/fE<3\ l XxBL!ck_G"=jp~%~]#bI+4ggZl>uj$ & 5TKOWMipxn"&W_w`zF :BcXah2 Y]D`VS6PrTfBV4}kC{cywA$T(6m9n\U$|:mYu?}sOVnsPDd4wjh{7!(I@ie .CZt*=,N;z HMv= -9J0NFG^H^N,;S ztFGLd0%[O8f-I3/P,  b. UgZ "rRAMi1H;6mR]obq^Q&|t[ Dx*U|qL2C@:h9y+J )7?vW1o0Q?pQ}el'\A K2sveE!%k.*X#8y#7<5-8'ad) >1rK5~E<a@Y(+`_[{S3uoJqR wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- InfinityA 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:At valueBC2Bat files (*.bat)|*.bat|All|*Batch FileBoldBrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCancelChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyChinese traditionalChoose fontCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDocument Document backgroundE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert Cell Alt-Shift-CInsert ImageInsert Image...Insert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicLCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Mean:Merge CellsMethod:ModulusName:New value:New variable:Not a valid matrix dimension!Not a valid number of equations!Num. deg:Number of equations:NumbersOKOld value:Old variable:Online tutorialsOpenOpen RecentOpen a documentOpen a new windowOpen documentOpening fileOptionsOptions:Output labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrintPrint documentProductReading Maxima outputReady for user inputRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsectionSubsection cellSubst...SubstituteSubstitute...SumTaylor series:TextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TTranspose a matrixTutorialsType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricuntitledwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: cs Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2010-03-10 14:21+0100 Last-Translator: Robert Marik Language-Team: Language: 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: Czech X-Poedit-Country: CZECH REPUBLIC X-Generator: KBabel 1.11.4 wxWidgets: %d.%d.%d podpora Unicode: %s Lisp: Verze programu Maxima: Není připojeno k programu Maxima! Není připojeno. << Výraz je příliš dlouhý pro zobrazení! >>bylo uloženo v novější verzi programu wxMaxima, takže nemůže být korektně načteno. Prosím proveďte update programu.bylo uloženo v novější verzi programu wxMaxima. Prosím proveďte update programu.&AlgebraPřid&at do seznamu...&Apropos...Dávkový sou&bor... Ctrl-BOkrajová &úloha...Hlášení o chy&bě&Analýza&Kanonická forma&Charakteristický polynom...&Vyčistit paměť&Sloučit faktoriály&Komplexní zjednodušení&Celá část&Kopírovat Ctrl-C&Určitý integrál&Trigonometrický tvar&Determinant&Derivovat...&Editovat&Eliminovat proměnnou...Zadání matic&e...&Příklad...&Rozložit výrazRozložit trigonom&etrický výrazDo &exponenciálního tvaru&Export...Na součin&SouborNajít &kořen...&Generovat matici...&Největší společný dělitel...&Nápověda&Integrovat...Přeruš&it Ctrl-Přeruš&it Ctrl-G&Inverzní matice&Load Package Ctrl-LPoužít funkci na prvky sezna&mu...&MaximaVýpočet &modulo...&Nový Ctrl-NN&umerické výpočty&Numerické integrování&Numerické sčítání (nusum)&Otevřít Ctrl-O&Otevřít Ctrl-O&Grafy&Mocninná řada&Tisk... Ctrl-P&Racionální výrazZjednodušit t&rigonometrický výraz&Restart programu MaximaKořeny polynomu (&reálné)&Uložit Ctrl-S&ZjednodušitZjednodušit výrazZjednodušit faktoriályTrigonometrické zjednodušení&Řešit...&Special&Taylorova řada&Transponovat matici&Trigonometrické zjednodušení&pm3d(Původní jazykové nastavení)- Nekonečno'Horizontální kurzor' se poprvé objevil ve wxMaxima 0.8.0. Vypadá jako vodorovná čára mezi kolonkami. Indikuje novou buňku při psaní nebo vkládání textu nebo provedení příkazu menu.Nový formát dokumentu, používaný od verze wxMaxima 0.8.2, ukládá nejen vstup a komentáře, ale také výsledky výpočtů. Při ukládání dokumentu zvolte 'wxMaxima XML document' formát.Hodno&ta v bodě...O programuO programu wxMaximaAd&jungovaná maticePřidat alg&ebraickou rovnost...Přidat adresář k prohledávaným (path)Přidat adresář do path:Přidat rovnost k zjednodušovateli racionálních výrazůPřidat do &path...Doplňkové parametry pro program Maxima (např., -l clisp).Doplňkové parametry:Vše|* AnimacePoužítPřidat funkci do seznamuHledání výskytů řetězcePole:Hodnota v boděBC2Dávkové soubory (*.bat)|*.bat|Vše|*Dávkový souborTučnýProhlíženíBuild &InfoVe výchozím nastavení je pro vyhodnocení přikazů použit příkaz Shift-Enter, zatímco klávesa Enter je určena pro víceřádkový vstup. Toto nastavení je možno změnit v Editovat -> Nastavení zaškrtnutím volby 'Enter vyhodnocuje výraz'. Toto nastavení prohodí výše uvedené příkazy.Změnit proměnnou...NastaveníVý&počet součinu...Výpočet su&my...Poslední výsledek s přesností bigfloatPoslední výsledek s přesností floatVýpočet modulo:Výpočet součinuVýpočet sumyZrušitZměnit &2D výstupZměnit 2D výstup pro zobrazení výsledků výpočtů.SubstituceSubstituce v integrálu nebo suměCharakteristický polynom Характеристический полиномTradiční čínštinaVýběr fontuJména sloupců:Sloupce:Sloučit faktoriály ve výrazuZadejte x-ové souřadnice oddělené čárkouZadejte y-ové souřadnice oddělené čárkouZakomentovat výběrDoplnit slovo Ctrl-KDoplnit slovoVýpočet celé části hodnotyVýpočet adjungované maticeVýpočet charakteristického polynomu maticeVýpočet determinantu maticeVýpočet největšího společného děliteleVýpočet inverzní maticeVýpočet nejmenšího společného násobku (před tím proveďte load(functs))Podmínka:Konfigurační soubor (*.ini)|*.iniNastavení varovných hlášeníNastavení programu wxMaximaKonstantaSloučit logaritmyPřevod binomických koeficientů, beta a gama funkcí na faktoriályPřevod binomických koeficientů, faktoriálů a beta funkcí na gama funkcePřevod komplexního výrazu na polární tvarPřevod komplexního výrazu na standardní tvarPřevod exponenciální funkce imaginárního argumentu na trigonometrický tvarPřevod logaritmu součinu na součet logaritmůPřevod součtu logaritmů na logaritmus součinuKonverze na faktoriályKonverze na &Gamma funkcePřevod na &polární tvarKonverze na algeb&raický tvarPřevod trigonometrického výrazu na kanonický kvazilineární tvarKopírovatKopírovat jako obrázekKopírovat do LaTeXuKopírovat předchozí vstup Ctrl-IKopírovat jako obrázekKopírovat jako LaTeXKopírovat jako text Ctrl-Shift-CKopírovat výběrKopírovat výběr z dokumentu jako obrázekKopírovat výběr z dokumentu jako textKopírovat výběr z dokumentu jako kód LaTeXuVytvořit vstupní pole s předchozím vstupemKurzorVyjmoutVyjmout Ctrl-XVystřihnout výběrČeskyDánskyMatice dat:Datový soubor (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Rozložit racionální funkci na parciální zlomkyImplicitníImplicitní font:Implicitní port:OdstranitZrušit &funkci...Odstranit výběrZrušit proměnnou...Zrušit funkciZrušit proměnnouZrušit všechny hodnoty z pamětiZrušit funkci (funkce)Zrušit proměnnou (proměnné):Stupeň jmenovatele:Hloubka:Derivace:Dělení polynomů...Derivovat...DerivovatDerivovat výrazDerivovat...Směr:Diskrétní grafVýstup ve formátu Te&XDruh výstupuPoslední výsledek ve formátu TeXZobrazit čas potřebný pro výpočetDělitRozdělit poleDělit čísla nebo polynomyDokumentPozadí dokumentu&RovniceUkončit Ctrl-QVlastní &vektoryVlastní &hodnotyEliminovatEliminovat proměnnou ze soustavy rovnicAnglickýVložte matici...Zadání maticeZadejte rovnici pro racionální zjednodušeníZadejte seznam proměnných oddělených čárkami.Enter vyhodnocuje výrazZadejte maticiZadejte novou přesnost:Zadejte cestu ke spustitelnému souboru programu Maxima.Epsilon:Rovnice %d:Rovnice:Rovnice:Rovnice:ChybaChyba %dChyba!Vyhodnotit nevyhodnocené funkceVyhodnotit všechna vstupní pole Ctrl-RVyhodnotit vstupní poleVyhodnotit aktivní nebo vybraná vstupní poleVyhodnotit všechna vstupní pole v dokumentuVyhodnotit všechny nevyhodnocené funkce ve výrazuPříkladText příkladuUkončení programu wxMaximaRozložitRozložit (trig.)Rozložit výrazRozvinout logaritmyRozložit výrazRozložit trigonometrický výrazExportExport dokumentu do HTML nebo pdfLaTeXuExport do HTML byl neúspěšný!Export do TeXu byl neúspěšný!VýrazVýraz(y):Výraz:Na součinFaktorizovat komplexní výrazFaktorizovat výrazFaktorizovat výrazFaktorizovat výraz v Gaussových číslechFaktoriály a &gamma funkceZávažná chybaSouborSoubor nenalezenSoubor, který se pokoušíte otevřít, neexistuje.Soubor:NajdiNajdi Ctrl-FNajít &limitu...Najít minimum...Najít kořen...Najít minimum výrazuNajít limitu výrazuNajít kořen rovnice z intervaluNajít všechny kořeny polynomuNajít všechny kořeny polynomu (bfloat)Najdi a nahraďNajdi a nahraďNаjít vlastní hodnoty maticeNаjít vlastní vektory maticeNajít minimumNаjít reálné kořeny polynomuNajdi kořenNajít ...Fixní font v textových vstupechFont použitý pro zobrazení v dokumentu.Font pro zobrazení matematických symbolů v dokumentu.FontyFormát:FrancouzskýOd:Celá obrazovka Alt-EnterFunkceNázvy funkcíFunkce:Funkce:Funkce pro zjednodušení komplexních číselFunkce pro zjednodušení faktoriálů a gamma funkcíFunkce pro zjednodušení trigonometických výrazůNejvětší společný dělitelGIF image (*.gif)|*.gifMatematické operaceMatematické operace Alt-Shift-MVytvořit maticiGenerovat matici z výrazu...Vytvořit matici z 2D poleVytvořit matici z lambda výrazuNěmeckýImaginární částRozložit v řadu...Použít Laplaceovu transformaciReálná částPoužít inverzní Laplaceovu transformaciRozložit výraz v mocninnou Taylorovu řaduUrčit imaginární část komplexního výrazuUrčit reálnou část komplexního výrazuKonstanty označené řeckými písmenyMřížka:Soubory HTML (*.html)|*.html|soubory pdfLaTeX (*.tex)|*.tex|All|*Výška:NápovědaSkrýt vše Alt-Shift--Skrýt panely nástrojůZvýraznění (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HVodorovný kurzor se chová stejně jako kurzor klasický, ale je použit u polí: stiskněte šipku nahoru nebo dolů pro posun, pro označování stiskněte navíc shift. Stisk klávesy Backspace nebo dvojí stisk klávesy Delete vymaže sousední pole.MaďarskýIC1IC2Jestliže výpočet trvá příliš dlouho, můžete zkusit volby 'Maxima->Interrupt' nebo 'Maxima->Restart Maxima'.ObrazSoubory s obrázky (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmNekonečnoInformace o programu MaximaPočáteční odhady:Počáteční podmínka (&1) ...Počáteční podmínka (&2) ...Značka pro vstupVložitVložit pole Alt-Shift-CVložit obrázekVložit obrázek...Vložit nové vstupní poleVložit pole s novou kapitolouVložit pole s novou podkapitolouVložit nové textové poleVložit pole s novým nadpisemVložit zlom stránkyVložit obrázekIntegrál/suma:IntegrovatIntegrovat (Rischův algoritmus)Integrovat výrazIntegrovat výraz pomocí Rischova algoritmuIntegrovat...PřerušitPřerušit probíhající výpočetChybné volání programu Maxima. Zadejte prosím znovu cestu k programu Maxima.Inverzní Laplaceova transformaceInverzní Laplaceova transformace...ItalskýKurzívaNejmenší společný násobekJazyk používaný GUI programu wxMaxima.Jazyk:Laplaceova transformaceLaplaceova transformace...Nejmenší společný násobek...Metoda nejmenších čtvercůMetoda nejmenších čtverců...LimitaLimita...Seznam:NačístNačíst balíček Ctrl-LNačíst soubor programu Maxima s použitím dávkového příkazuNačíst Maxima balíčekNačíst styl ze souboruDolní mez:&Použít na matici...Vytvořit seznam...Vytvořit seznamVytvořit seznam z výrazůZavést substituci ve výrazuPoužít na prvkyPoužít funkci na prvky seznamuPoužít funkci na prvky maticeKontrola závorek v textovém vstupuMatematický font:MaticePoužít na maticiNázev matice:Matice:Nápověda programu Maxima F1Vstup programu MaximaMaxima počítáMaxima balíček (*.mac)|*.macMaxima balíček (*.mac)|*.mac|Lisp balíček (*.lisp)|*.lisp|Vše|*Proces Maxima ukončen.Program Maxima:Otázka programu MaximaMaxima je spuštěna. Čekání na připojení...Maxima používá ':' pro přiřazení hodnot ('a : 3;') a ':=' pro definici funkcí ('f(x) := x^2;').Průměr:Spojit poleMetoda:ModulJméno:Nová hodnota:Nová proměnná:Nesprávná hodnota řádu matice!Nesprávný počet rovnic!Stupeň polynomu v čitateli:Počet rovnic:PočtyOKPůvodní hodnota:Původní proměnná:Online tutoriályOtevřítOtevřít naposledy použitéOtevřít dokumentOtevřít nové oknoOtevřít dokumentChyba při otevírání souboruVolbyVolby:Značky výstupůP&adého aproximace...Obrázek PNG (*.png)|*.png|obrázek JPEG (*.jpg)|*.jpg|Windows bitmapa (*.bmp)|*.bmp|X pixmapa (*.xpm)|*.xpmPadého aproximacePadého aproximace Taylorovy řadyZlom stránkyPanely nástrojůGraf zadaný parametrickyAnalýza výstupuParciální zlomky...Parciální zlomkyČást dokumentu nebude otevřena korektně!VložitVložit Ctrl-VVložit ze schránkyVložit text z clipboarduKonfigurujte program wxMaxima pomocí 'Edit->Configure'.Aby změny byly provedeny, je nutné program wxMaxima restartovat!&2D graf...&3D graf...&Formát grafu...2D graf2D graf...2D graf...3D graf3D graf...3D graf...Formát grafu2D graf3D grafGraf do souboru:Bod:PolskýPolynom 1:Polynom 2:Portugalský (Brazilský)Postscriptový soubor (*.eps)|*.eps|Vše|*PřesnostTiskTisk dokumentuSoučinČtení výstupu programu MaximaPřipraven na vstupAlgebraický tvarZjednodušit (trig.)Zjednodušení trigonometrických výrazůVymazat všechny výsledky výpočtůOdstranit výsledky ze vstupních políNahrazeno %d výskytůNahlásit chybuRestart programu MaximaIntegrovat (Rischův algoritmus)...Kořeny &polynomuKořeny polynomu (bfloat)Řádky:RuskýPříklad 1:Příklad 2:Příklad:UložitUložit animaci...Uložit jakoUložit jako... Shift-Ctrl-SUložit obrázek...Uložit výběr jako obrázekUložit výběr jako obrázek...Uložit animaci do souboruUložit dokumentUložit dokument jakoUložit nastavení panelůUložit velikost/pozici oken mezi sezenímiUložit graf do souboruUložit výběr z dokumentu jako obrázkový souborUložit označené do souboruUložit styl do souboruUložit velikost/pozici okna wxMaximaUložit velikost/pozici okna wxMaxima mezi sessions.SekcePole kapitolyVybrat všeVybrat vše Ctrl-AVýběr programu MaximaVybrat konstantuVybrat všeVybrat způsob zobrazeníVýběrem části výstupu a použitím pravého tlačítka myši obrdržíte menu obsahující funkce vhodné pro práci s právě vybraným výrazem.VýběrŘadyŘady...Spouštění serveruNastavit &přesnost...Nastavit zvětšeníNastavit přesnost bigfloatNastavit fixní font pro textové příkazy.Nastavit formát grafuNastavit zvětšení na 100%Nastavit zvětšení na 120%Nastavit zvětšení na 150%Nastavit zvětšení na 200%Nastavit zvětšení na 300%Nastavit zvětšení na 80%Nastavit hodnoty pro řešení ODR pomocí Laplaceovy transformaceNastavit výpočet moduloZobrazit &definici...Zobrazit &funkceUkázat &tipyZobrazit &proměnnéZobrazit nápovědu programu MaximaUkázat vzor Ctrl-Shift-KZobrazit tipZobrazit všechny příkazy podobné na:Zobrazit příklad k příkazu:Ukázat příklad použitíZobrazit podobné příkazyZobrazit definované funkceZobrazit definované proměnnéZobrazit definici funkcíZobrazit dlouhé výrazyZobrazovat dlouhé výrazy v dokumentu wxMaxima.Zobrazit definici funkce:ZjednodušitZjednodušit vý&raz s odmocninamiZjednodušit (rac.)Zjednodušit (trig.)Zjednodušit výrazZjednodušit výraz obsahující faktoriályZjednodušit výraz s odmocninamiZjednodušit racionální výrazZjednodušit sumuZjednodušit trigonometrický výrazŘešení:ŘešitŘešit &algebraický systém...Řešit &lineární systém...Řešit &ODR...Řešit (to_poly)...Řešit ODRŘešit ODR pomocí LTR...Řešit ODR...Řesit algebraický systémŘesit systém algebraických rovnicŘešit okrajovou úlohu pro ODR druhého řáduŘešit rovnici/rovniceŘešit rovnici/rovnice pomocí to_poly_solveŘešit ODR 1. řádu s počáteční podmínkouŘešit ODR 2. řádu s počáteční podmínkouŘešit lineární systémŘešit systém lineárních rovnicŘešit ODR nejvýše 2. řáduŘešit ODR pomocí Laplaceovy transfromaceŘešit...ŠpanělskýSpeciálníSpeciální konstantySpustit animaciStart programu Maxima selhalSpouštím program Maxima...Start serveru selhalSpouštím server na portu %dStatistikaStatistika Alt-Shift-SZastavit animaciŘetězceStylStylyPodkapitolaPole podkapitolySubst...Provést substituciSubstituce...SumaTaylorova řada:TextTextové polePozadí textového poleStandardní port pro komunikaci mezi programy Maxima a wxMaxima.Na Internetu existuje mnoho materiálů o programech Maxima a wxMaxima. Navštivte http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials pro získání více informací o používání obou programů.Chyba při vytváření XML! Nahlaste prosím tuto chybu.Chyba pří exportu do formátu GIF Ujistěte se, že máte nainstalovaný program ImageMagick a wxMaxima je schopna najít program convert.Počet dělicích bodů:Násobit:Tipy nejsou bohužel k dispozici!NázevPole nadpisuPole s názvem, kapitolou a podkapitolou mohou být sbalena. Pro jejich sbalení nebo rozbalení klikněte na čtvereček vedle pole. Kliknutí s tlačítkem Shift sbalí/rozbalí také všechny podčásti.Přesnost &bigfloatpřevést na &Float (plovoucí řádová čárka)Float (plovoucí řádová čárka)Pro graf v polárních souřadnicích zvolte 'set polar' v Nastavení Plot2D. Můžete též zvolit 3D graf ve sférických nebo cylindrických souřadnicích.Pro vložení závorky okolo výrazu tento výraz označte a stiskněte '(' nebo ')', podle toho, kde chcete následně umístit kurzor.Použijte dialog 'Edit->Configure' pro uložení velikosti a pozice okna programu wxMaxima mezi sezeními.Pro okamžité používání programu Maxima začněte psát příkaz. Vstupní pole se objeví automaticky. Pro vyhodnocení příkazu použijte Shift-Enter.Do:Přepnout příznak &algebraicPřepnout &numerický výstupPřepnou&t zobrazení časuPřepnout příznak algebraicZapnutí celoobrazovkového editačního režimuPřepnout numerický výstupPanel nástrojů Alt-Shift-TTransponovat maticiTutoriálTyp:UkrajinskýPodtrženíZpět Ctrl-ZZpět poslední změnuHorní mez:Použít Gosperův algoritmusPoužít centrovanou tečku jako symbol násobeníPoužít jsMathHodnota:Proměnné:Proměnná:ProměnnéProměnné:VarováníVítejte v programu wxMaximaPři aplikaci funkcejedné proměnné pomocí menu je výchozí přednastavený argument '%'. Pro aplikaci funkce na jiný argument musíte tento před volbou v menu označit.Šířka:Psát párové závorky v textových vstupech.Poslední výsledek se označuje '%'. Výsledek libovolného jiného výpočtu se označuje '%on', kde n je pořadové číslo výpočtu.Nápovědu k funkcím programu Maxima získáte výběrem požadované funkce nebo kliknutím na její jméno a následným stisknutím F1. Program wxMaxima prohledává index nápovědy pro výběr nebo pro slovo, na kterém je kurzor.Výstup můžete skrýt kliknutím na trojúhelníček nalevo od pole. Tuto operaci můžete použít i u textových polí.Pomocí myši (tažením a pohybem) nebo pohybem vodorovného kurzoru (s klávesou Shift) můžete vybratvíce polí a pracovat s nimi. Toto je vhodné, pokud chcete vymazat nebo vyhodnotit více polí.Zvětš&it Alt-IZmenšit Alt-OZvětšit o 10%Zmenšit o 10%Zvětšení nastaveno na[ neuloženo ][ neuloženo* ]antisymetrickáoboustrannýstandardní nastavenídiagonálníobecnávestavěnýzlevaskryté řádkylogaritmické měřítkomatice[i,j]:nezpravasymetrickáuntitledwxMaximawxMaxima %sKonfigurace programu wxMaximawxMaxima nemůže nalézt program Maxima! Prosím nakonfigurujte program wxMaxima pomocí 'Edit->Configure'. Poté proveďte restart pomocí 'Maxima->Restart Maxima'.wxMaxima nemůže najít soubory s nápovědou. Zkontrolujte si instalaci programu.wxMaxima nemůže najít soubory s tipy. Zkontrolujte si instalaci programu.wxMaxima nemůže spustit server. Ověřte síťové nastavení a zkuste to znovu!Dialog programu wxMaxima nastaví vstupní hodnoty, z nichž jedna je '%'. Pokud v dokumentu vyberete část textu, je místo toho použit tento výběr.wxMaxima dokumentwxMaxima dokument (*.wxm)|wxMaxima XML dokument (*.wxm)|*.wxmx|Dávkový soubor Maxima (*.mac)|*.macwxMaxima dokument (*.wxm)|*.wxmChyba při načítání programu wxMaximawxMaxima je GUI algebraického systému Maxima, založený na wxWidgets.anowxMaxima-13.04.2/locales/cs.po000644 000765 000024 00000257653 11705765322 016503 0ustar00andrejstaff000000 000000 # translation of cs.po to # wxMaxima Czech po translation. # # Copyright (c) Josef Barák , 2009. # # Robert Marik , 2010. # This file is distributed under the same license as the wxMaxima package. msgid "" msgstr "" "Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2010-03-10 14:21+0100\n" "Last-Translator: Robert Marik \n" "Language-Team: \n" "Language: \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: Czech\n" "X-Poedit-Country: CZECH REPUBLIC\n" "X-Generator: KBabel 1.11.4\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "podpora Unicode: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Verze programu Maxima: " #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Není připojeno k programu Maxima!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "Není připojeno." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << Výraz je příliš dlouhý pro zobrazení! >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" "bylo uloženo v novější verzi programu wxMaxima, takže nemůže být korektně " "načteno. Prosím proveďte update programu." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" "bylo uloženo v novější verzi programu wxMaxima. Prosím proveďte update " "programu." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "&Algebra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "Přid&at do seznamu..." #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&Apropos..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "Dávkový sou&bor...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Okrajová &úloha..." #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Hlášení o chy&bě" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "&Analýza" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "&Kanonická forma" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "&Charakteristický polynom..." #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Vyčistit paměť" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "&Sloučit faktoriály" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "&Komplexní zjednodušení" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "&Celá část" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "&Kopírovat\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "&Určitý integrál" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "&Trigonometrický tvar" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Determinant" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Derivovat..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Editovat" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "&Eliminovat proměnnou..." #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "Zadání matic&e..." #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "&Příklad..." #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "&Rozložit výraz" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "Rozložit trigonom&etrický výraz" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "Do &exponenciálního tvaru" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Export..." #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "Na součin" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Soubor" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "Najít &kořen..." #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "&Generovat matici..." #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "&Největší společný dělitel..." #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "&Nápověda" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Integrovat..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "Přeruš&it\tCtrl-" #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "Přeruš&it\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "&Inverzní matice" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "&Load Package\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "Použít funkci na prvky sezna&mu..." #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Výpočet &modulo..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Nový\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "N&umerické výpočty" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "&Numerické integrování" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Numerické sčítání (nusum)" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Otevřít\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Otevřít\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Grafy" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "&Mocninná řada" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Tisk...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Racionální výraz" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "Zjednodušit t&rigonometrický výraz" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Restart programu Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "Kořeny polynomu (&reálné)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Uložit\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "&Zjednodušit" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "Zjednodušit výraz" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "Zjednodušit faktoriály" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "Trigonometrické zjednodušení" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "&Řešit..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "&Special" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "&Taylorova řada" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "&Transponovat matici" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "&Trigonometrické zjednodušení" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Původní jazykové nastavení)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- Nekonečno" #: ../src/wxMaxima.cpp:3488 #, fuzzy msgid "
Lisp: " msgstr "" "\n" "Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "'Horizontální kurzor' se poprvé objevil ve wxMaxima 0.8.0. Vypadá jako " "vodorovná čára mezi kolonkami. Indikuje novou buňku při psaní nebo vkládání " "textu nebo provedení příkazu menu." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Nový formát dokumentu, používaný od verze wxMaxima 0.8.2, ukládá nejen vstup " "a komentáře, ale také výsledky výpočtů. Při ukládání dokumentu zvolte " "'wxMaxima XML document' formát." #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "Hodno&ta v bodě..." #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "O programu" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "O programu wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Ad&jungovaná matice" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Přidat alg&ebraickou rovnost..." #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Přidat adresář k prohledávaným (path)" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Přidat adresář do path:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Přidat rovnost k zjednodušovateli racionálních výrazů" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Přidat do &path..." #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Doplňkové parametry pro program Maxima (např., -l clisp)." #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Doplňkové parametry:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Vše|* " #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animace" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Použít" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Přidat funkci do seznamu" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "Hledání výskytů řetězce" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Pole:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Hodnota v bodě" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Dávkové soubory (*.bat)|*.bat|Vše|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Dávkový soubor" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Tučný" #: ../src/wxMaximaFrame.cpp:1019 #, fuzzy msgid "Boxplot..." msgstr "Export" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Prohlížení" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "Build &Info" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Ve výchozím nastavení je pro vyhodnocení přikazů použit příkaz Shift-Enter, " "zatímco klávesa Enter je určena pro víceřádkový vstup. Toto nastavení je " "možno změnit v Editovat -> Nastavení zaškrtnutím volby 'Enter vyhodnocuje " "výraz'. Toto nastavení prohodí výše uvedené příkazy." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "Změnit proměnnou..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "Nastavení" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "Vý&počet součinu..." #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Výpočet su&my..." #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Poslední výsledek s přesností bigfloat" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Poslední výsledek s přesností float" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Výpočet modulo:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Výpočet součinu" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Výpočet sumy" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "" #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "" #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Zrušit" #: ../src/wxMaximaFrame.cpp:962 #, fuzzy msgid "Canonical (tr)" msgstr "&Kanonická forma" #: ../src/Config.cpp:239 #, fuzzy msgid "Catalan" msgstr "Italský" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Změnit &2D výstup" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "Změnit 2D výstup pro zobrazení výsledků výpočtů." #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Substituce" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Substituce v integrálu nebo sumě" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Charakteristický polynom Характеристический полином" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "" #: ../src/wxMaximaFrame.cpp:658 #, fuzzy msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "" "bylo uloženo v novější verzi programu wxMaxima. Prosím proveďte update " "programu." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Tradiční čínština" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Výběr fontu" #: ../src/PlotFormatWiz.cpp:27 #, fuzzy msgid "Choose new plot format:" msgstr "Zadejte nový formát grafů:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "" #: ../src/wxMaximaFrame.cpp:197 #, fuzzy msgid "Close\tCtrl-W" msgstr "&Kopírovat\tCtrl-C" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Jména sloupců:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Sloupce:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Sloučit faktoriály ve výrazu" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Zadejte x-ové souřadnice oddělené čárkou" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Zadejte y-ové souřadnice oddělené čárkou" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Zakomentovat výběr" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "Doplnit slovo\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Doplnit slovo" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Výpočet celé části hodnoty" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Výpočet adjungované matice" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Výpočet charakteristického polynomu matice" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Výpočet determinantu matice" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Výpočet největšího společného dělitele" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Výpočet inverzní matice" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Výpočet nejmenšího společného násobku (před tím proveďte load(functs))" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Podmínka:" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Konfigurační soubor (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Nastavení varovných hlášení" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "Nastavení programu wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Konstanta" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "Sloučit logaritmy" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Převod binomických koeficientů, beta a gama funkcí na faktoriály" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "" "Převod binomických koeficientů, faktoriálů a beta funkcí na gama funkce" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Převod komplexního výrazu na polární tvar" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Převod komplexního výrazu na standardní tvar" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Převod exponenciální funkce imaginárního argumentu na trigonometrický tvar" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Převod logaritmu součinu na součet logaritmů" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Převod součtu logaritmů na logaritmus součinu" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Konverze na faktoriály" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Konverze na &Gamma funkce" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Převod na &polární tvar" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "Konverze na algeb&raický tvar" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Převod trigonometrického výrazu na kanonický kvazilineární tvar" #: ../src/wxMaximaFrame.cpp:590 #, fuzzy msgid "Convert trigonometric functions to exponential form" msgstr "Převod trigonometrických funkcí do exponenciálního tvaru" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Kopírovat" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Kopírovat jako obrázek" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Kopírovat do LaTeXu" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "Kopírovat předchozí vstup\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Kopírovat jako obrázek" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Kopírovat jako LaTeX" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Kopírovat jako text\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Kopírovat výběr" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Kopírovat výběr z dokumentu jako obrázek" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Kopírovat výběr z dokumentu jako text" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Kopírovat výběr z dokumentu jako kód LaTeXu" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Vytvořit vstupní pole s předchozím vstupem" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Kurzor" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Vyjmout" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "Vyjmout\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Vystřihnout výběr" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Česky" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Dánsky" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Matice dat:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Datový soubor (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Data:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Rozložit racionální funkci na parciální zlomky" #: ../src/Config.cpp:351 msgid "Default" msgstr "Implicitní" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Implicitní font:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Implicitní port:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Odstranit" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Zrušit &funkci..." #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Odstranit výběr" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "Zrušit proměnnou..." #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Zrušit funkci" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Zrušit proměnnou" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Zrušit všechny hodnoty z paměti" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Zrušit funkci (funkce)" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Zrušit proměnnou (proměnné):" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "Stupeň jmenovatele:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Hloubka:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Derivace:" #: ../src/wxMaximaFrame.cpp:1003 #, fuzzy msgid "Deviation..." msgstr "Deviace" #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Dělení polynomů..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Derivovat..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Derivovat" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Derivovat výraz" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Derivovat..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Směr:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Diskrétní graf" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Výstup ve formátu Te&X" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Druh výstupu" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Poslední výsledek ve formátu TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Zobrazit čas potřebný pro výpočet" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Dělit" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Rozdělit pole" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Dělit čísla nebo polynomy" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Dokument" #: ../src/Config.cpp:368 msgid "Document background" msgstr "Pozadí dokumentu" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "&Rovnice" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "Ukončit\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Vlastní &vektory" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Vlastní &hodnoty" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Eliminovat" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Eliminovat proměnnou ze soustavy rovnic" #: ../src/Config.cpp:243 msgid "English" msgstr "Anglický" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 #, fuzzy msgid "Enter Data" msgstr "Zadejte matici" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Vložte matici..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Zadání matice" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Zadejte rovnici pro racionální zjednodušení" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Zadejte seznam proměnných oddělených čárkami." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Enter vyhodnocuje výraz" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Zadejte matici" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Zadejte novou přesnost:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Zadejte cestu ke spustitelnému souboru programu Maxima." #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Rovnice %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Rovnice:" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Rovnice:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Rovnice:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Chyba" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Chyba %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Chyba!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Vyhodnotit nevyhodnocené funkce" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Vyhodnotit všechna vstupní pole\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "Vyhodnotit vstupní pole" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Vyhodnotit aktivní nebo vybraná vstupní pole" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Vyhodnotit všechna vstupní pole v dokumentu" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Vyhodnotit všechny nevyhodnocené funkce ve výrazu" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Příklad" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Text příkladu" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Ukončení programu wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Rozložit" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Rozložit (trig.)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Rozložit výraz" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Rozvinout logaritmy" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Rozložit výraz" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Rozložit trigonometrický výraz" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "Export" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Export dokumentu do HTML nebo pdfLaTeXu" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "Export do HTML byl neúspěšný!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "Export do TeXu byl neúspěšný!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Výraz" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Výraz(y):" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Výraz:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Na součin" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Faktorizovat komplexní výraz" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Faktorizovat výraz" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Faktorizovat výraz" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Faktorizovat výraz v Gaussových číslech" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Faktoriály a &gamma funkce" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Závažná chyba" #: ../src/GroupCell.cpp:1263 #, fuzzy, c-format msgid "Figure %d:" msgstr "Obrázek" #: ../src/main.cpp:107 msgid "File" msgstr "Soubor" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "Soubor nenalezen" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "Soubor, který se pokoušíte otevřít, neexistuje." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Soubor:" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Najdi" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "Najdi\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Najít &limitu..." #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Najít minimum..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Najít kořen..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Najít minimum výrazu" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Najít limitu výrazu" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Najít kořen rovnice z intervalu" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Najít všechny kořeny polynomu" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Najít všechny kořeny polynomu (bfloat)" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Najdi a nahraď" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Najdi a nahraď" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Nаjít vlastní hodnoty matice" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Nаjít vlastní vektory matice" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Najít minimum" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Nаjít reálné kořeny polynomu" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Najdi kořen" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Najít ..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Fixní font v textových vstupech" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Font použitý pro zobrazení v dokumentu." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Font pro zobrazení matematických symbolů v dokumentu." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Fonty" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Formát:" #: ../src/Config.cpp:244 msgid "French" msgstr "Francouzský" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "Od:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "Celá obrazovka\tAlt-Enter" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Funkce" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Názvy funkcí" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Funkce:" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Funkce:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Funkce pro zjednodušení komplexních čísel" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Funkce pro zjednodušení faktoriálů a gamma funkcí" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Funkce pro zjednodušení trigonometických výrazů" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "Největší společný dělitel" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "GIF image (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Matematické operace" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "Matematické operace\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Vytvořit matici" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "Generovat matici z výrazu..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Vytvořit matici z 2D pole" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Vytvořit matici z lambda výrazu" #: ../src/Config.cpp:245 msgid "German" msgstr "Německý" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "Imaginární část" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Rozložit v řadu..." #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Použít Laplaceovu transformaci" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "Reálná část" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Použít inverzní Laplaceovu transformaci" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Rozložit výraz v mocninnou Taylorovu řadu" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Určit imaginární část komplexního výrazu" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Určit reálnou část komplexního výrazu" #: ../src/Config.cpp:246 msgid "Greek" msgstr "" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Konstanty označené řeckými písmeny" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Mřížka:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Soubory HTML (*.html)|*.html|soubory pdfLaTeX (*.tex)|*.tex|All|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Výška:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Nápověda" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "Skrýt vše\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Skrýt panely nástrojů" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Zvýraznění (dpart)" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Histogram" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Histogram..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "History" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "History\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "Vodorovný kurzor se chová stejně jako kurzor klasický, ale je použit u polí: " "stiskněte šipku nahoru nebo dolů pro posun, pro označování stiskněte navíc " "shift. Stisk klávesy Backspace nebo dvojí stisk klávesy Delete vymaže " "sousední pole." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Maďarský" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Jestliže výpočet trvá příliš dlouho, můžete zkusit volby 'Maxima->Interrupt' " "nebo 'Maxima->Restart Maxima'." #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Obraz" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Soubory s obrázky (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Nekonečno" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Informace o programu Maxima" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Počáteční odhady:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Počáteční podmínka (&1) ..." #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Počáteční podmínka (&2) ..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Značka pro vstup" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Vložit" #: ../src/wxMaximaFrame.cpp:302 #, fuzzy msgid "Insert &Section Cell\tCtrl-3" msgstr "Vložit pole s kapitolou\tF8" #: ../src/wxMaximaFrame.cpp:298 #, fuzzy msgid "Insert &Text Cell\tCtrl-1" msgstr "Vložit textové pole\tF6" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "Vložit pole\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Vložit obrázek" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "Vložit obrázek..." #: ../src/wxMaximaFrame.cpp:296 #, fuzzy msgid "Insert Input &Cell" msgstr "Vložit vstupní pole\tF5" #: ../src/wxMaximaFrame.cpp:306 #, fuzzy msgid "Insert Page Break" msgstr "Vložit zlom stránky\tF10" #: ../src/wxMaximaFrame.cpp:304 #, fuzzy msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Vložit pole s podkapitolou\tF8" #: ../src/MathCtrl.cpp:724 #, fuzzy msgid "Insert Section Cell" msgstr "Vložit pole s kapitolou\tF8" #: ../src/MathCtrl.cpp:725 #, fuzzy msgid "Insert Subsection Cell" msgstr "Vložit pole s podkapitolou\tF8" #: ../src/wxMaximaFrame.cpp:300 #, fuzzy msgid "Insert T&itle Cell\tCtrl-2" msgstr "Vložit pole s nadpisem\tF9" #: ../src/MathCtrl.cpp:722 #, fuzzy msgid "Insert Text Cell" msgstr "Vložit textové pole\tF6" #: ../src/MathCtrl.cpp:723 #, fuzzy msgid "Insert Title Cell" msgstr "Vložit pole s nadpisem\tF9" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Vložit nové vstupní pole" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Vložit pole s novou kapitolou" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Vložit pole s novou podkapitolou" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Vložit nové textové pole" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Vložit pole s novým nadpisem" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Vložit zlom stránky" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Vložit obrázek" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Integrál/suma:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Integrovat" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Integrovat (Rischův algoritmus)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Integrovat výraz" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Integrovat výraz pomocí Rischova algoritmu" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Integrovat..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Přerušit" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Přerušit probíhající výpočet" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Chybné volání programu Maxima.\n" "\n" "Zadejte prosím znovu cestu k programu Maxima." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Inverzní Laplaceova transformace" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "Inverzní Laplaceova transformace..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italský" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Kurzíva" #: ../src/Config.cpp:249 #, fuzzy msgid "Japanese" msgstr "Panely nástrojů" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "" #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "Nejmenší společný násobek" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Jazyk používaný GUI programu wxMaxima." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Jazyk:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplaceova transformace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "Laplaceova transformace..." #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Nejmenší společný násobek..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Metoda nejmenších čtverců" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Metoda nejmenších čtverců..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Limita" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Limita..." #: ../src/wxMaximaFrame.cpp:1010 #, fuzzy msgid "Linear Regression..." msgstr "LIneární regrese" #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Seznam:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Načíst" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Načíst balíček\tCtrl-L" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Načíst soubor programu Maxima s použitím dávkového příkazu" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Načíst Maxima balíček" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Načíst styl ze souboru" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Dolní mez:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "&Použít na matici..." #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "Vytvořit seznam..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Vytvořit seznam" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Vytvořit seznam z výrazů" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Zavést substituci ve výrazu" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Použít na prvky" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Použít funkci na prvky seznamu" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Použít funkci na prvky matice" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Kontrola závorek v textovém vstupu" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Matematický font:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Matice" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Použít na matici" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Název matice:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Matice:" #: ../src/Config.cpp:98 #, fuzzy msgid "Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "Nápověda programu Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Vstup programu Maxima" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima počítá" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Maxima balíček (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Maxima balíček (*.mac)|*.mac|Lisp balíček (*.lisp)|*.lisp|Vše|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Proces Maxima ukončen." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Program Maxima:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Otázka programu Maxima" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima je spuštěna. Čekání na připojení..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima používá ':' pro přiřazení hodnot ('a : 3;') a ':=' pro definici " "funkcí ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3484 #, fuzzy msgid "Maxima version: " msgstr "" "\n" "Verze programu Maxima: " #: ../src/wxMaximaFrame.cpp:1008 #, fuzzy msgid "Mean Difference Test..." msgstr "Derivovat..." #: ../src/wxMaximaFrame.cpp:1007 #, fuzzy msgid "Mean Test..." msgstr "Vytvořit seznam..." #: ../src/wxMaximaFrame.cpp:1000 #, fuzzy msgid "Mean..." msgstr "Vytvořit seznam..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Průměr:" #: ../src/wxMaximaFrame.cpp:1001 #, fuzzy msgid "Median..." msgstr "Medián" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Spojit pole" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Metoda:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Modul" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Jméno:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 #, fuzzy msgid "New\tCtrl-N" msgstr "&Nový\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 #, fuzzy msgid "New document" msgstr "Otevřít dokument" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Nová hodnota:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Nová proměnná:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "" #: ../src/wxMaximaFrame.cpp:1009 #, fuzzy msgid "Normality Test..." msgstr "Test normality" #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "Nesprávná hodnota řádu matice!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "Nesprávný počet rovnic!" #: ../src/wxMaxima.cpp:3486 #, fuzzy msgid "Not connected." msgstr "" "\n" "Není připojeno." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "Stupeň polynomu v čitateli:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Počet rovnic:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Počty" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Původní hodnota:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Původní proměnná:" #: ../src/wxMaxima.cpp:3643 #, fuzzy msgid "One sample t-test" msgstr "Text příkladu" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Online tutoriály" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Otevřít" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Otevřít naposledy použité" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Otevřít dokument" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Otevřít nové okno" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Otevřít dokument" #: ../src/wxMaxima.cpp:3704 #, fuzzy msgid "Open matrix" msgstr "Otevřít matici" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Chyba při otevírání souboru" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Volby" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Volby:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Značky výstupů" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "P&adého aproximace..." #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "Obrázek PNG (*.png)|*.png|obrázek JPEG (*.jpg)|*.jpg|Windows bitmapa (*.bmp)|" "*.bmp|X pixmapa (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Padého aproximace" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Padého aproximace Taylorovy řady" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Zlom stránky" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "Panely nástrojů" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Graf zadaný parametricky" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Analýza výstupu" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "Parciální zlomky..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Parciální zlomky" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "Část dokumentu nebude otevřena korektně!" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Vložit" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "Vložit\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Vložit ze schránky" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Vložit text z clipboardu" #: ../src/wxMaximaFrame.cpp:1018 #, fuzzy msgid "Piechart..." msgstr "Koláčový graf" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Konfigurujte program wxMaxima pomocí 'Edit->Configure'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Aby změny byly provedeny, je nutné program wxMaxima restartovat!" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "&2D graf..." #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "&3D graf..." #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "&Formát grafu..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "2D graf" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "2D graf..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "2D graf..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "3D graf" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "3D graf..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "3D graf..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Formát grafu" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "2D graf" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "3D graf" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Graf do souboru:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Bod:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polský" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Polynom 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Polynom 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portugalský (Brazilský)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Postscriptový soubor (*.eps)|*.eps|Vše|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Přesnost" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Tisk" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Tisk dokumentu" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Součin" #: ../src/wxMaximaFrame.cpp:1023 #, fuzzy msgid "Read Matrix..." msgstr "Zadání matic&e..." #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Čtení výstupu programu Maxima" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Připraven na vstup" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Algebraický tvar" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Zjednodušit (trig.)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Zjednodušení trigonometrických výrazů" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "Vymazat všechny výsledky výpočtů" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Odstranit výsledky ze vstupních polí" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "Nahrazeno %d výskytů" #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Nahlásit chybu" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Restart programu Maxima" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Integrovat (Rischův algoritmus)..." #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Kořeny &polynomu" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Kořeny polynomu (bfloat)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Řádky:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Ruský" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Příklad 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Příklad 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Příklad:" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Uložit" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Uložit animaci..." #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Uložit jako" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Uložit jako...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Uložit obrázek..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Uložit výběr jako obrázek" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "Uložit výběr jako obrázek..." #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Uložit animaci do souboru" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "" #: ../src/wxMaxima.cpp:4432 #, fuzzy msgid "Save changes?" msgstr "Uložit obrázek..." #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Uložit dokument" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Uložit dokument jako" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Uložit nastavení panelů" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Uložit velikost/pozici oken mezi sezeními" #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Uložit graf do souboru" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Uložit výběr z dokumentu jako obrázkový soubor" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Uložit označené do souboru" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Uložit styl do souboru" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Uložit velikost/pozici okna wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Uložit velikost/pozici okna wxMaxima mezi sessions." #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "" #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Sekce" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Pole kapitoly" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Vybrat vše" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "Vybrat vše\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Výběr programu Maxima" #: ../src/wxMaxima.cpp:3740 #, fuzzy msgid "Select Subsample" msgstr "Vybrat vše" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Vybrat konstantu" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Vybrat vše" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Vybrat způsob zobrazení" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Výběrem části výstupu a použitím pravého tlačítka myši obrdržíte menu " "obsahující funkce vhodné pro práci s právě vybraným výrazem." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Výběr" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Řady" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Řady..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Spouštění serveru" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Nastavit &přesnost..." #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Nastavit zvětšení" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Nastavit přesnost bigfloat" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Nastavit fixní font pro textové příkazy." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Nastavit formát grafu" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Nastavit zvětšení na 100%" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Nastavit zvětšení na 120%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Nastavit zvětšení na 150%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Nastavit zvětšení na 200%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Nastavit zvětšení na 300%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Nastavit zvětšení na 80%" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "Nastavit hodnoty pro řešení ODR pomocí Laplaceovy transformace" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Nastavit výpočet modulo" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Zobrazit &definici..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Zobrazit &funkce" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Ukázat &tipy" #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Zobrazit &proměnné" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Zobrazit nápovědu programu Maxima" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "Ukázat vzor\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Zobrazit tip" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Zobrazit všechny příkazy podobné na:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Zobrazit příklad k příkazu:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Ukázat příklad použití" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Zobrazit podobné příkazy" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Zobrazit definované funkce" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Zobrazit definované proměnné" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Zobrazit definici funkcí" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Zobrazit dlouhé výrazy" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Zobrazovat dlouhé výrazy v dokumentu wxMaxima." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Zobrazit definici funkce:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Zjednodušit" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Zjednodušit vý&raz s odmocninami" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Zjednodušit (rac.)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Zjednodušit (trig.)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Zjednodušit výraz" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Zjednodušit výraz obsahující faktoriály" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Zjednodušit výraz s odmocninami" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Zjednodušit racionální výraz" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Zjednodušit sumu" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Zjednodušit trigonometrický výraz" #: ../data/tips.txt:22 #, fuzzy msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Počínaje verzí wxMaxima 0.8.2 můžete do dokumentu také vkládat obrázky. " "Zvolte nabídku 'Edit->Insert Image...' . Nezapomeňte, že v takovém případě " "musíte dokument uložit ve formátu 'wxMaxima XML document'." #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Řešení:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Řešit" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Řešit &algebraický systém..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Řešit &lineární systém..." #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Řešit &ODR..." #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Řešit (to_poly)..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Řešit ODR" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Řešit ODR pomocí LTR..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Řešit ODR..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Řesit algebraický systém" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Řesit systém algebraických rovnic" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Řešit okrajovou úlohu pro ODR druhého řádu" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Řešit rovnici/rovnice" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Řešit rovnici/rovnice pomocí to_poly_solve" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Řešit ODR 1. řádu s počáteční podmínkou" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Řešit ODR 2. řádu s počáteční podmínkou" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Řešit lineární systém" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Řešit systém lineárních rovnic" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Řešit ODR nejvýše 2. řádu" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Řešit ODR pomocí Laplaceovy transfromace" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Řešit..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Španělský" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Speciální" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Speciální konstanty" #: ../src/MathCtrl.cpp:664 #, fuzzy msgid "Start Animation" msgstr "Spustit animaci" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Spustit animaci" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Start programu Maxima selhal" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Spouštím program Maxima..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Start serveru selhal" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Spouštím server na portu %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Statistika" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "Statistika\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Zastavit animaci" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Řetězce" #: ../src/Config.cpp:99 msgid "Style" msgstr "Styl" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Styly" #: ../src/wxMaximaFrame.cpp:1028 #, fuzzy msgid "Subsample..." msgstr "Subst..." #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Podkapitola" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Pole podkapitoly" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "Subst..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Provést substituci" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Substituce..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Suma" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Taylorova řada:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Text" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Textové pole" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Pozadí textového pole" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Standardní port pro komunikaci mezi programy Maxima a wxMaxima." #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Na Internetu existuje mnoho materiálů o programech Maxima a wxMaxima. " "Navštivte http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials pro " "získání více informací o používání obou programů." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Chyba při vytváření XML!\n" "\n" "Nahlaste prosím tuto chybu." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Chyba pří exportu do formátu GIF\n" "\n" "Ujistěte se, že máte nainstalovaný program ImageMagick a wxMaxima je schopna " "najít program convert." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Počet dělicích bodů:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Násobit:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Tipy nejsou bohužel k dispozici!" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Název" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Pole nadpisu" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Pole s názvem, kapitolou a podkapitolou mohou být sbalena. Pro jejich " "sbalení nebo rozbalení klikněte na čtvereček vedle pole. Kliknutí s " "tlačítkem Shift sbalí/rozbalí také všechny podčásti." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "Přesnost &bigfloat" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "převést na &Float (plovoucí řádová čárka)" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "Float (plovoucí řádová čárka)" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Pro graf v polárních souřadnicích zvolte 'set polar' v Nastavení Plot2D. " "Můžete též zvolit 3D graf ve sférických nebo cylindrických souřadnicích." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Pro vložení závorky okolo výrazu tento výraz označte a stiskněte '(' nebo " "')', podle toho, kde chcete následně umístit kurzor." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Použijte dialog 'Edit->Configure' pro uložení velikosti a pozice okna " "programu wxMaxima mezi sezeními." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Pro okamžité používání programu Maxima začněte psát příkaz. Vstupní pole se " "objeví automaticky. Pro vyhodnocení příkazu použijte Shift-Enter." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "Do:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Přepnout příznak &algebraic" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Přepnout &numerický výstup" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Přepnou&t zobrazení času" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Přepnout příznak algebraic" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Zapnutí celoobrazovkového editačního režimu" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Přepnout numerický výstup" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "Panel nástrojů\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Transponovat matici" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "Tutoriál" #: ../src/wxMaxima.cpp:3658 #, fuzzy msgid "Two sample t-test" msgstr "Text příkladu" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Typ:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ukrajinský" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Podtržení" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "Zpět\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Zpět poslední změnu" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Horní mez:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Použít Gosperův algoritmus" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Použít centrovanou tečku jako symbol násobení" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Použít jsMath" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Hodnota:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Proměnné:" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Proměnná:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Proměnné" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Proměnné:" #: ../src/wxMaximaFrame.cpp:1002 #, fuzzy msgid "Variance..." msgstr "Rozptyl" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Varování" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Vítejte v programu wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Při aplikaci funkcejedné proměnné pomocí menu je výchozí přednastavený " "argument '%'. Pro aplikaci funkce na jiný argument musíte tento před volbou " "v menu označit." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Šířka:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Psát párové závorky v textových vstupech." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Poslední výsledek se označuje '%'. Výsledek libovolného jiného výpočtu se " "označuje '%on', kde n je pořadové číslo výpočtu." #: ../data/tips.txt:15 #, fuzzy msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Můžete vyhodnotit všechny funkce volbou Pole -> Vyhodnotit všechna pole v " "menu, nebo příslušnou klávesovou zkratkou. Pole budou vyhodnocena v pořadí, " "ve kterém vystupují v dokumentu." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Nápovědu k funkcím programu Maxima získáte výběrem požadované funkce nebo " "kliknutím na její jméno a následným stisknutím F1. Program wxMaxima " "prohledává index nápovědy pro výběr nebo pro slovo, na kterém je kurzor." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Výstup můžete skrýt kliknutím na trojúhelníček nalevo od pole. Tuto operaci " "můžete použít i u textových polí." #: ../data/tips.txt:5 #, fuzzy msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Pomocí menu 'Pole' můžete do dokumentu vložit různé druhy polí. Pouze " "'vstupní pole' jsou vyhodnocována programem Maxima. Ostatní pole slouží pro " "strukturování a komentování výpočtu." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Pomocí myši (tažením a pohybem) nebo pohybem vodorovného kurzoru (s klávesou " "Shift) můžete vybratvíce polí a pracovat s nimi. Toto je vhodné, pokud " "chcete vymazat nebo vyhodnotit více polí." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "" #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "" #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Zvětš&it\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "Zmenšit\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Zvětšit o 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Zmenšit o 10%" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Zvětšení nastaveno na" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ neuloženo ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ neuloženo* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antisymetrická" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "oboustranný" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "standardní nastavení" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonální" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "obecná" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "vestavěný" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "zleva" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "skryté řádky" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "logaritmické měřítko" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "matice[i,j]:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "ne" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "zprava" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "symetrická" #: ../src/wxMaxima.cpp:4403 #, fuzzy msgid "unsaved" msgstr "[ neuloženo ]" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "untitled" #: ../src/main.cpp:182 #, fuzzy, c-format msgid "untitled %d" msgstr "untitled" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s" #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Konfigurace programu wxMaxima" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima nemůže nalézt program Maxima!\n" "\n" "Prosím nakonfigurujte program wxMaxima pomocí 'Edit->Configure'.\n" "Poté proveďte restart pomocí 'Maxima->Restart Maxima'." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima nemůže najít soubory s nápovědou.\n" "\n" "Zkontrolujte si instalaci programu." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima nemůže najít soubory s tipy.\n" "\n" "Zkontrolujte si instalaci programu." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima nemůže spustit server.\n" "\n" "Ověřte síťové nastavení\n" "a zkuste to znovu!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "Dialog programu wxMaxima nastaví vstupní hodnoty, z nichž jedna je '%'. " "Pokud v dokumentu vyberete část textu, je místo toho použit tento výběr." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "wxMaxima dokument" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "wxMaxima dokument (*.wxm)|wxMaxima XML dokument (*.wxm)|*.wxmx|Dávkový " "soubor Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "wxMaxima dokument (*.wxm)|*.wxm" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "Chyba při načítání programu wxMaxima" #: ../src/wxMaxima.cpp:3367 #, fuzzy msgid "wxMaxima icon" msgstr "Nastavení programu wxMaxima" #: ../src/wxMaxima.cpp:3355 #, fuzzy msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "wxMaxima je GUI algebraického systému Maxima, založený na wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "wxMaxima je GUI algebraického systému Maxima, založený na wxWidgets." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "ano" #~ msgid "&Cell" #~ msgstr "&Pole" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Nové okno\tCtrl-N " #~ msgid "Close document?" #~ msgstr "Zavřít dokument?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Dokument neuložen \n" #~ "\n" #~ "Uzavřít tento dokument se ztrátou všech změn?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Dokument neuložen \n" #~ "\n" #~ "Ukončit program wxMaxima se ztrátou všech změn?" #~ msgid "Maxima options" #~ msgstr "Nastavení programu Maxima" #~ msgid "Mean" #~ msgstr "Průměr" #~ msgid "Quit?" #~ msgstr "Ukončit?" #~ msgid "wxMaxima options" #~ msgstr "Nastavení programu wxMaxima" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima je GUI pro\n" #~ "algebraický systém Maxima založený na wxWidgets." wxMaxima-13.04.2/locales/da.mo000644 000765 000024 00000125132 11710501376 016432 0ustar00andrejstaff000000 000000 D<\$p0&q0g0J1K1T1 f1r11 1 111 11 2!2 52B2 X2 b2o2222 2222 223 3&3:3V3 \3j3|333333 3334 4%454 ;4I4 Z4d4z44 4 4444 4 55!535Q5W5n546 7 7&757I7Y7t77'77178%8 +858;8T8\8c8l8p8 888 889 999+9(:=:P:c:r: y::;::": ;; &;2;#;;_;};%;1;#;#<;<@[<<<<<<8<A5=(w='=H=1>1C>u>>>>>>? ? ? &?4?(C?,l??? ? ?0?? ? @@@-@>@R@d@v@@@ @@ @@@ @A!A 2A =AKA]AoA AAA AA A A B B &B/0B`BhB.wB(BB BB(C 0C =C JC TC_CeCnCuCCC#C"C%C"D *D 7DED LDXDjD|DDDDD DD EEE'E9E(NEwE EEE&EEE EE)F>F]FzFF FF"FGGGGG2G;G JG WG$aG7G3GGG,H3H:HNH+]HH3H,H,H'&INI^I;dIIIII JJJ~J@0KqKKK K KKKL!L8L PL ]L kLuLL)L L LLQLMM]M{MMMM MMMMMMMN N*NAN\N qN~N N NNNNNN"O9O @OKOSO cOpOO?OOOP)PWIPPPP P PP P QQ.Q6Q 9Q DQRQ WQcQsQ Q QQQQ QQdQJR%]RRRRRR RR1R3)S ]S iSuSS S SS S S SSS ST T T !T/T#FT jTtTzTTTTT TTT UU*U?UTUZUbUgUoU UUU UU-UV-V"@V4cV VVVV VVW WW WWWW WX:XYXsXX XXX XX XY)YBYYYpYY+Y YYY Z Z(Z,x^xKxxxxxyyF2yNyy'y-yLz1kz1zzzz{;5{q{x{{{{){'{|| |,|);|e|n| |||||||"|}})}8}?}H}a} q}~}}} } } }}}}!~ &~0~ B~M~ \~ j~x~(~~!~~*~*B$Y ~  '%!Eg p~ ŀր' $>W^f ny' )<AZ"m5#Ƃ $(M$] Ãك -9=7w + +?2H/{)$Յ :PX_tfA> \ }ш"9 IW`q- ‰\>!M oy ϊ   2([x ̋"#: ^ ŒҌ<*F^)qy% + 6Ca{Ȏ ͎ ڎ   +=Nhd͏% ':IRc=4  % 0; C N Ydy  ő#ߑ )1Icu!!˒$-59AZi 5.@K ɔ ۔  ŕ)E!g ǖ ٖ!@_y%* ;I)b- Әߘ " / MZc |(ƙ//0`3Iњ# *6J[t ɛ ֛ & .99MQ: &ŝڝ@uY!^/%$9? HUd}%ʡ ҡ ܡ =CޣSiy  ɦҦڦ  )DJӧNqmߨ.2ȩ^=i pzvH]$'TPgn~?b@L}uhDs o*mBQZR6c- J[rMA<@%^;SM  \?qPL)K%#&%WDj\f<m sd_A[k&]{ 7 q4=eR"C1`.;5$'0)Iyg!V'wE0GT6jv8dYF1E5C*wNx.zB,:hxu@NUnO V?(S#lQp Y/2l+>, 1r|092*IcH5+:!2O99 ,8WJ!$U :G>( /~8&A-)7eyo >3`6F3K^"_Zt}<iDB3t74=/k#+C- aaX {;|4."f(X b << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:At valueBC2Bat files (*.bat)|*.bat|All|*Batch FileBoldBrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCancelCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyChinese traditionalChoose fontColumns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesCompute continued fraction of a valueCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formCopyCopy As ImageCopy LaTeXCopy as ImageCopy selectionCopy selection from document as an imageCopy selection from document in LaTeX formatCursorCutCut Ctrl-XCut selectionDecompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide numbers or polynomialsDocument Document backgroundE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFileFile not foundFile you tried to open does not exist.File:Find &Limit...Find Root...Find a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind eigenvalues of a matrixFind eigenvectors of a matrixFind real roots of a polynomialFind rootFixed font in text controlsFont used for display in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGenerate MatrixGenerate a matrix from a 2-dimensional arrayGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHighlight (dpart)Horizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInfo about Maxima buildInitial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsert ImageInsert Image...Insert a new input cellInsert a new section cellInsert a new text cellInsert a new title cellInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicLCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...LimitLimit...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMatrixMatrix mapMatrix:Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Method:ModulusName:New value:New variable:Not a valid matrix dimension!Not a valid number of equations!Num. deg:Number of equations:NumbersOKOld value:Old variable:OpenOpen RecentOpen a documentOpen a new windowOpen documentOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesParametric plotParsing outputPartial &Fractions...Partial fractionsPastePaste Ctrl-VPaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrintPrint documentProductReading Maxima outputReady for user inputRectformReduce (tr)Reduce trigonometric expressionRemove output from input cellsReport bugRestart MaximaRisch Integration...Roots of &PolynomialRows:RussianSaveSave AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save documentSave plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.Section cellSelect All Ctrl-ASelect Maxima programSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set bigfloat precisionSet fixed font in text controls.Set plot formatSetup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStop animationStringsStyleStylesSubst...SubstituteSubstitute...SumTaylor series:TellratText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.Ticks:Times:Tips not available, sorry!Title cellTo &BigfloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputTranspose a matrixType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationValue:Variable(s):Variable:VariablesVariables:WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.Zoom &In Alt-IZoom Ou&t Alt-O[ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftrightsymmetricuntitledwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.Project-Id-Version: da Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2009-06-08 20:39-0300 Last-Translator: Jens Thostrup Language-Team: danish Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Danish X-Poedit-Country: DENMARK << Udtrykket er for langt til at kunne vises! >> er gemt fra en nyere version af wxMaxima, så den indlæses måske ikke korrekt. Opdater venligst din wxMaxima. er gemt fra en nyere version af wxMaxima. Opdater venligst din wxMaxima.&Algebra&Anvend på liste...&Apropros...&Batchfil... Ctrl-BRand&værdiproblem...&Fejlrapportering&Infinitesimalregning&Kanonisk form&Karakteristisk polynomium...&Ryd hukommelse&Kombiner fakulteter&Kompleks omskrivning&KædebrøkK&opier Ctrl-C&Bestemt integration&Demoivre&Determinant&Differentier...&Rediger&Eliminer variabel...I&ndtast matrix...&Eksempel...&Udvid udtryk&Udvid trigonometrisk udtryk&Eksponentiel form&Eksporter...&Faktoriser udtryk&Filer&Bestem nulpunkt...&Opret matrix...Største &fælles divisor...&Hjælp&Integrer...&Afbryd Ctrl-.&Afbryd Ctrl-.&Inverter matrixInd&læs pakke... Ctrl-LA&fbild liste&Maxima&Modulus-beregning...&Ny Ctrl-N&Talformat&Numerisk integrationAnvend &nusum&Åbn Ctrl-OÅ&bn... Ctrl-O&Plot&Potensrækker&Udskriv... Ctrl-PAnvend &ratsubst&Sammentræk trigonometrisk udtryk&Genstart Maxima&Reelle rødder i polynomium&Gem Ctrl-S&OmskrivRe&ducer udtryk&Reducer fakulteter&Reducer trigonometrisk udtryk&Løs...&Plottype&Taylorrækker&Transponer matrix&Trigonometrisk omskrivning&pm3d(Anvend standard sprog)En 'vandret markør' blev introduceret i wxMaxima 0.8.0. Det ser ud som en vandret linje mellem celler. Den indikerer hvor en ny celle vil blive indsat, hvis du begynder at skrive, indsætter tekst eller udføre en kommando.Med wxMaxima 0.8.2 blev der introduceret et nyt dokumentformat, der ikke blot gemmer dine input, output og tekst bemærkninger, men også output fra dine beregninger. Vælg 'wxMaxima XML document' som filtype, når du gemmer dit dokument. Ra&ndbetingelser...&OmOm wxMaximaParentes for aktiv celleAd&jungeret matrixTilføj alge&braisk udtryk (tellrat)...Føj en mappe til søgestienFøj mappe til sti:Tilføj algebraisk udtryk med Maxima-kommandoen tellratFøj &til stiYderligere Maxima-parametre (f.eks. -l clisp).Yderligere parametre:Alle|*AnimationAnvendAnvend funktion på listeApropros2D-array:RandbetingelserBC2Batchfiler (*.bat)|*.bat|Alle|*BatchfilFedGennemse&VersionSom standard anvendes 'Shift-Enter' til at eksikvere kommandoer, mens 'Enter' bruges hvis der ønskes flere linjers input. Via 'Rediger->Indstillinger' og afkrydsning af boksen 'Enter til beregning' kan denne mulighed vælges.&Udskift variabel...&Indstillinger...Beregn &produktBeregn &sumBeregn seneste værdi som decimaltal 2Beregn seneste værdi som decimaltal 1Beregn modulo:Beregn produkterBeregn summerAnnullerCelleparentes2D-visningVælg algoritme til 2D-visning af matematisk outputUdskift variabelUdskift variabel i integral eller sumKarakteristisk polynomiumKinesisk (traditionel)Vælg skrifttypeSøjler:Kombiner fakulteter i et udtrykKommaseparerede y-koordinaterKommaseparerede x-koordinaterBeregn en størrelses kædebrøkBeregn en matrixs karakteristiske polynomiumBeregn en matrixs determinantBeregn største fælles divisorBeregn en matrixs inverseBeregn mindste fælles multiplum (anvend kommandoen load(functs) før brug)Konfigurationsfil (*.ini)|*.iniKonfigurationsadvarselwxMaxima indstillingerKonstantSammentræk logaritmerOmregn binomialkoefficienter, Beta- og Gamma-funktioner til fakulteterOmregn binomialkoefficienter, fakulteter og Beta-funktioner til Gamma-funktionOmregn komplekst udtryk til polær formOmregn komplekst udtryk til rektangulær formOmregn eksponentiel funktion med imaginært argument til trigonometrisk formOmregn logaritme af produkt til sum af logaritmerOmregn sum af logaritmer til logaritme af produktOmregn til &fakultetOmregn til &Gamma-funktionOmregn til &polær form&Omregn til rektangulær formOmregn trigonometrisk udtryk til kanonisk kvasilineær formKopierKopier som billedeKopier som LaTeXKopier som billedeKopier markeringKopier markering fra dokument som billedeKopier markering fra dokument som LaTeXMarkørKlip&Klip Ctrl-XKlip markeringOpløs rational funktion i partialbrøkerStandardStandardskrifttype:Standardport:SletSlet f&unktionSlet markering&Slet variabelSlet en funktionSlet en variabelSlet alle værdier fra hukommelsenSlet funktion(er):Slet variable:Nævners grad:Orden:Afledet:P&olynomiers division...Differentier...DifferentierDifferentier udtrykDifferentier...Fra:Diskret plotVis som Te&X2D-visningVis seneste resultat som TeXVis beregningstidDivisionDivision med tal eller polynomierDokument Dokument baggrund&Ligninger&Afslut Ctrl-QEgenv&ektorerEgen&værdierEliminerEliminer en variabel i et ligningssystemEngelskOpret matrix og indtast elementerIndtast udtryk:Indtast kommasepareret liste med variable.Anvend Enter til beregningIndtast matrixelementerAngiv ny nøjagtighed:Indtast stien til Maxima-programmet.Ligning %d:Ligning(er):Ligning:Ligninger:FejlFejl %dFejl!Evaluer &navneformerBeregn alle celler Ctrl-RBeregn celle(r)Beregn aktiv(e) eller valgt(e) celle(r)Beregn alle celler i dokumentetEvaluer alle navneformer i udtrykEksempelTeksteksempelAfslut wxMaximaUdvid til ledformUdvid trig.Udvid udtryk til ledformUdvid logaritmerUdvid et udtryk til ledformUdvid trigonometrisk udtryk til ledformEksporterHTML-eksport mislykkedes!TeX-eksport mislykkedes!UdtrykUdtryk:Udtryk:FaktoriserFaktoriser komplekst udtrykFaktoriser udtrykFaktoriser et udtrykFaktoriser et udtryk i Gaussiske heltalFakultet og &Gamma-funktionAlvorlig fejlFilFilen blev ikke fundetFilen findes ikke.Fil:Bestem &grænseværdi...Bestem nulpunkt...Bestem grænseværdi for et udtrykBestem et nulpunkt for et udtryk indenfor et intervalBestem alle rødder i et polynomiumBestem en matrixs egenværdierBestem en matrixs egenvektorerBestem et polynomiums reelle rødderBestem nulpunktFast tegnbredde i indtastningsfelterAnvendt skrifttype i dokumentet.SkrifttyperFormat:FranskFra:Fuld skærm Alt-EnterFunktionNavne på funktionerFunktion(er):Funktion:Faciliteter til reduktion af komplekse udtrykFaciliteter til reduktion af fakulteter og Gamma-funktionFaciliteter til reduktion af trigonometriske funktionerSFDOpret matrixOpret matrix ud fra et 2-dimensionalt arrayTysk&Imaginærdel&Rækkeudvikling...Bestem Laplace-transformation for et udtryk&RealdelBestem invers Laplace-transformation for et udtrykBestem Taylor- eller potensrække for et udtrykBestem imaginærdelen af komplekst udtrykBestem realdelen af komplekst udtrykGræske konstanterGitter:HTML-fil (*.html)|*.html|pdfLaTeX-fil (*.tex)|*.tex|Alle|*Højde:HjælpFremhævning (dpart)En vandret markør fungerer som en normal markør, men opererer på celler: tryk på op eller ned piletast for at flytte markørstregen. Holdes Shift nede mens pile tasterne benyttes markeres celle(r), ved tryk på backspace eller delete slettes de(n) markerede celle(r).UngarskIC1IC2Hvis din beregning tager for lang tid, kan du benytte 'Maxima->Afbryd' eller 'Maxima->Genstart Maxima'Billedfiler (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInformation om Maxima-versionBegyndelsesværdiproblem (&1)...Begyndelsesværdiproblem (&2)...Input-etiketterIndsæt billedeIndsæt billede...Indsæt en ny celleIndsæt en ny afsnitscelleIndsæt ny tekstcelleIndsæt en ny celle til overskriftIndsæt billedeIntegral/Sum:IntegrerIntegrer (Risch)Integrer udtrykIntegrer udtryk ved hjælp af Risch-algoritmeIntegrer...AfbrydAfbryd igangværende beregningUgyldig angivelse for Maxima-programmet. Indtast venligst stien til Maxima-programmet igen.Invers LaplaceIn&vers Laplace Transformation...ItalienskKursivMFMSprog for wxMaxima-brugerfladen.Sprog:LaplaceLaplace &transformation...Mindste fælles multiplum...GrænseværdiGrænseværdi...Liste:IndlæsIndlæs pakkeIndlæs en Maxima-fil ved hjælp af batch-kommandoIndlæs fil med Maxima-pakkeIndlæs typografi fra filNedre grænse:Afbild &matrixO&pret liste...Opret listeOpret liste ud fra udtrykUdfør substitution i udtrykAfbildning af listeAnvend funktion på listeelementerAnvend funktion på matrixelementerAutomatisk parring af parenteserMatrixAfbildning af matrixMatrix:Maxima &Hjælp F1Maxima-inputMaxima beregnerMaxima-pakke (*.mac)|*.macMaxima-pakke (*.mac)|*.mac|Lisp-pakke (*.lisp)|*.lisp|Alle|*Maxima-proces er afsluttet.Sti til Maxima-program:Maxima-spørgsmålMaxima er i gang. Vent på forbindelse...Maxima anvender ':' for at tildele værdier (f.eks. 'a : 3;') og ':=' for at definere funktioner (f.eks. 'f(x) := x^2;').Metode:ModulusNavn:Ny værdi:Ny variabel:Ugyldig dimension for matrix!Ugyldigt antal ligninger!Tællers grad:Antal ligninger:TalOKTidligere værdi:Tidligere variabel:ÅbnÅbn senesteÅbn dokumentÅbn nyt vindueÅbn dokumentÅbner filIndstillingerEgenskaber:Forældede cellerOutput-etiketterPadé-&approksimationPNG-billede (*.png)|*.png|JPEG-billede (*.jpg)|*.jpg|Windows-bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPadé-approksimationPadé-approksimation for TaylorrækkeParameterplotOutput fortolkesPartial&brøker...PartialbrøkerSæt ind&Sæt ind Ctrl-VIndsæt tekst fra UdklipsholderÆndrer indstillinger for wxMaxima i 'Rediger->Indstillinger'Genstart wxMaxima for at ændringer træder i kraft!&2D-plot...&3D-plot...Plot&format...2D-plot2D-plot...2D-plot...3D-plot3D-plot...3D-plot...PlotformatPlot i 2 dimensionerPlot i 3 dimensionerPlot til fil:Punkt:PolskPolynomium 1:Polynomium 2:Portugisisk (brasiliansk)Postscript-fil (*.eps)|*.eps|Alle|*NøjagtighedUdskrivUdskriv dokumentProduktMaxima-output behandlesKlar til input fra brugerRektangulær formSammentræk trig.Sammentræk trigonometrisk udtrykFjern visning af hidtidige outputInformation om fejlrapporteringGenstart MaximaRisch-integration...&PolynomiumsrødderRækker:RussiskGemGem somGe&m som... Shift-Ctrl-SGem billede...Gem markering som billedeGem markering som billede...Gem dokumentGem plot som filGem det markerede område i dokumentet i en billedfilGem markering i filGem typografi i filGem størrelse og position for wxMaxima-vindueGem størrelse og position for wxMaxima-vindue mellem sessioner.Afsnitscelle&Marker alt Ctrl-AVælg sti for Maxima-programVælg en konstantMarker altVælg algoritmeVed at markere en del af en outputlinje og 'højre-klikke' med musen åbnes en menu op med funktioner, der kan foretages på det markerede.MarkeringRækkerRækker...Server er startetVælg &nøjagtighedVælg nøjagtighed decimaltal 2Brug fast tegnbredde i indtastningsfelterVælg plot formatOpstil randbetingelser til løsning af ODL med Laplace-transformationOpsætning af modulus-beregningVis &definitioner...Vis &funktionerVis &tips...&Vis variableVis Maxima HjælpVis et tipVis alle kommandoer i stil med:Vis eksempel med kommandoen:Vis et eksempel med anvendelseVis alle kommandoer i stil medVis erklærede funktionerVis erklærede variableVis definition for en funktionVis lange udtrykVis lange udtryk i wxMaxima-dokument.Vis definition for funktionen:Reducer (ratsimp)Reducer (&radcan)Reducer (radcan)Reducer trig.Reducer udtryk (ratsimp)Reducer et udtryk indeholdende fakulteterReducer udtryk indeholdende radikaler/rødderReducer rationalt udtrykReducer sumReducer trigonometrisk udtrykLøsning:LøsLøs &algebraisk ligningssystem...Løs l&ineært ligningssystemLøs &ODL...Løs ODLLøs O&DL med Laplace...Løs ODL...Løs algebraisk ligningssystemLøs algebraisk ligningssystemLøs randværdiproblem for 2. ordens ODLLøs ligning(er)Løs begyndelsesværdiproblem for 1. ordens ODLLøs begyndelsesværdiproblem for 2. ordens ODLLøs lineært ligningssystem...Løs lineært ligningssystemLøs ordinær differentialligning af orden højst 2Løs ordinære differentialligninger ved hjælp af Laplace-transformationLøs...SpanskSpecialtegnSærlige konstanterAfspil animationMaxima-opstart slog fejlMaxima startes...Server-opstart slog fejlServer startes via port %dStop animationTekststrengeTypografiTypografierSubstituer...SubstituerSubstituer...SumTaylorrækker:TellratTekstcelleTekstcelle baggrundStandardport for kommunikation mellem Maxima og wxMaxima.Der findes mange kilder om Maxima og wxMaxima på internettet. Besøg http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials for mere information om brug af wxMaxima og Maxima.Der var fejl i den dannede XML-fil! Rapporter venligdt dette som en programfejl.Inddeling:Gange:Ingen tips er tilgængelige, beklager!Celle til overskriftAngiv som decimaltal &2 Ctrl-2Angiv som decimaltal 1For at lave et polærplot, vælg 'set polar; set zeroaxis;' under 'Egenskaber' i 2D-plot-menuen. Du kan også lave sfæriske og cylindriske plot i 3D.Du kan sætte parenteser om et udtryk ved at markere det og trykke '(' eller ')' afhænig af, hvor du gerne vil have markøren til at dukke op bagefter.For at gemme størrelse og position af wxMaxima vinduer fra gang til gang, benyt 'Rediger->Indstillinger' og marker ved 'Gem wxMaxima vindue størrelse/position' Start indtastning for at begynde at bruge wxMaxima. Et input celle burde dukke op. Tryk 'Shift-Enter' for at beregne.Til:Slå &algebraic-indikator til/fra&Vis eksakt/decimaltal Skjul/vis beregningstid Slå Maxima-indikatoren algebraic til eller fraSkift til fuldskærmsvisningSlå numerisk beregning til eller fraTransponer en matrixType:UkrainskUnderstregetFortryd Ctrl-ZFortryd seneste ændringØvre grænse:Anvend Gosper-algortimeAnvend prik som multiplikationssymbolVærdi:Variable:Variabel:VariableVariable:AdvarselVelkommen til wxMaximaNår der vælges en funktion med et enkelt input-argument fra en menu, er input-argument automatisk '%'. For at få funktionen til at virke på en anden værdi, skal input-argumentet vælges inden funktionen vælges fra menuen.Bredde:Anvend automatisk parring af parenteser i indtastningsfelter.Det seneste output kan tilgås gennem variablen '%'. Output fra tidligere kommandoer kan tilgås ved at anvende variable '%on', hvor n er output-nummeret.Man kan finde hjælp til en Maxima-funktion ved at markere eller klikke på funktionsnavnet og derpå trykke på F1. wxMaxima vil søge efter det markerede i Hjælp-indekset. Output fra en celle kan skjules ved at klikke i trekanten i cellens venstre side. Indholdet i tekstceller kan skjules på samme måde.Du kan markere og vælge flere celler af gangen enten ved at bruge musen - klik og træk mellem celler eller marker en enkelt celle ved at trække fra venstre mod højre - eller ved at bruge keyboardet - hold Shift nede og brug piletastern og den horisontale markør. Herefter kan du udføre beregning på de markerede celler på én gang.Zoom i&nd Alt-IZoom &ud Alt-O[ ikke gemt ][ ikke gemt* ]antisymmetriskbegge siderstandarddiagonalgenerelpå linje med tekstvenstrehøjresymmetriskunavngivetwxMaximawxMaxima %s Indstillinger for wxMaximawxMaxima kunne ikke finde Maxima! Ændrer wxMaxima indstilliger i 'Rediger->Indstillinger'. Start herefter Maxima i 'Maxima->Genstart Maxima'wxMaxima kunne ikke finde Hjælp-fil. Kontroller venligst installationen.wxMaxima kunne ikke finde filer med tips. Kontroller venligst installationen.wxMaxima kunne ikke starte serveren. Kontroller venligst at der er etableret netværksforbindelse og prøv igen!I wxMaxima-dialogboksenes felter er indsat standardværdier, hvoraf en er '%'. Hvis der er foretaget markering i dokumentet, anvendes denne markering i stedet for '%'.wxMaxima-dokumentwxMaxima-dokument (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima stødte på en fejl under indlæsning af wxMaxima er en grafisk brugerflade for computer algebra systemet MAXIMA baseret på wxWidgets.wxMaxima-13.04.2/locales/da.po000644 000765 000024 00000263111 11705765322 016444 0ustar00andrejstaff000000 000000 # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: da\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2009-06-08 20:39-0300\n" "Last-Translator: Jens Thostrup \n" "Language-Team: danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Danish\n" "X-Poedit-Country: DENMARK\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" #: ../src/wxMaxima.cpp:3437 #, fuzzy msgid "" "\n" "Lisp: " msgstr "Liste:" #: ../src/wxMaxima.cpp:3433 #, fuzzy msgid "" "\n" "Maxima version: " msgstr "Maxima-spørgsmål" #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "<< Udtrykket er for langt til at kunne vises! >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " er gemt fra en nyere version af wxMaxima, så den indlæses måske ikke " "korrekt. Opdater venligst din wxMaxima." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" " er gemt fra en nyere version af wxMaxima. Opdater venligst din wxMaxima." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "&Algebra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "&Anvend på liste..." #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&Apropros..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "&Batchfil...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Rand&værdiproblem..." #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "&Fejlrapportering" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "&Infinitesimalregning" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "&Kanonisk form" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "&Karakteristisk polynomium..." #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Ryd hukommelse" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "&Kombiner fakulteter" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "&Kompleks omskrivning" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "&Kædebrøk" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "K&opier\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "&Bestemt integration" # de Moivres formel !!! #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Determinant" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Differentier..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Rediger" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "&Eliminer variabel..." #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "I&ndtast matrix..." #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "&Eksempel..." # Ledfom? #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "&Udvid udtryk" # Ledfom? - for langt? #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "&Udvid trigonometrisk udtryk" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "&Eksponentiel form" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Eksporter..." #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "&Faktoriser udtryk" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Filer" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "&Bestem nulpunkt..." #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "&Opret matrix..." #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "Største &fælles divisor..." #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "&Hjælp" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Integrer..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "&Afbryd\tCtrl-." #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "&Afbryd\tCtrl-." #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "&Inverter matrix" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Ind&læs pakke...\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "A&fbild liste" #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "&Modulus-beregning..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Ny\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "&Talformat" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "&Numerisk integration" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "Anvend &nusum" # Jeg har valgt Å her. Det er det samme i word, og man må formode at man vælger den dankse oversættelse, hvis man har et dansk tastatur, og b- var optaget af Batchfil # TJA! I Word 2003 er ny b - måske fordi Å er et specialtegn i den store verden. #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Åbn\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "Å&bn...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Plot" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "&Potensrækker" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Udskriv...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "Anvend &ratsubst" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "&Sammentræk trigonometrisk udtryk" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Genstart Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "&Reelle rødder i polynomium" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Gem\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "&Omskriv" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "Re&ducer udtryk" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "&Reducer fakulteter" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "&Reducer trigonometrisk udtryk" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "&Løs..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "&Plottype" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "&Taylorrækker" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "&Transponer matrix" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "&Trigonometrisk omskrivning" # Skal vel ikke oversættes # JT: Tja, - det er noget med farveudfyldning, men der er ikke meget plads! #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Anvend standard sprog)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "" #: ../src/wxMaxima.cpp:3488 #, fuzzy msgid "
Lisp: " msgstr "Liste:" #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "En 'vandret markør' blev introduceret i wxMaxima 0.8.0. Det ser ud som en " "vandret linje mellem celler. Den indikerer hvor en ny celle vil blive " "indsat, hvis du begynder at skrive, indsætter tekst eller udføre en kommando." # bliver det ændret til 'wxMaxima XML dokument' #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Med wxMaxima 0.8.2 blev der introduceret et nyt dokumentformat, der ikke " "blot gemmer dine input, output og tekst bemærkninger, men også output fra " "dine beregninger. Vælg 'wxMaxima XML document' som filtype, når du gemmer " "dit dokument. " #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "Ra&ndbetingelser..." #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "&Om" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "Om wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Parentes for aktiv celle" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Ad&jungeret matrix" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Tilføj alge&braisk udtryk (tellrat)..." #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Føj en mappe til søgestien" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Føj mappe til sti:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Tilføj algebraisk udtryk med Maxima-kommandoen tellrat" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Føj &til sti" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Yderligere Maxima-parametre (f.eks. -l clisp)." #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Yderligere parametre:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Alle|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animation" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Anvend" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Anvend funktion på liste" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "Apropros" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "2D-array:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Randbetingelser" # Randværdi - Maxima #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Batchfiler (*.bat)|*.bat|Alle|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Batchfil" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Fed" #: ../src/wxMaximaFrame.cpp:1019 #, fuzzy msgid "Boxplot..." msgstr "Eksporter" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Gennemse" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "&Version" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Som standard anvendes 'Shift-Enter' til at eksikvere kommandoer, mens " "'Enter' bruges hvis der ønskes flere linjers input. Via 'Rediger-" ">Indstillinger' og afkrydsning af boksen 'Enter til beregning' kan denne " "mulighed vælges." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "&Udskift variabel..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "&Indstillinger..." #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "Beregn &produkt" #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Beregn &sum" # Det er lidt tungt med decimaltal 1 og 2 #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Beregn seneste værdi som decimaltal 2" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Beregn seneste værdi som decimaltal 1" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Beregn modulo:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Beregn produkter" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Beregn summer" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "" #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "" #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Annuller" #: ../src/wxMaximaFrame.cpp:962 #, fuzzy msgid "Canonical (tr)" msgstr "&Kanonisk form" #: ../src/Config.cpp:239 #, fuzzy msgid "Catalan" msgstr "Italiensk" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Celleparentes" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "2D-visning" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "Vælg algoritme til 2D-visning af matematisk output" #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Udskift variabel" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Udskift variabel i integral eller sum" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Karakteristisk polynomium" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "" #: ../src/wxMaximaFrame.cpp:658 #, fuzzy msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "" " er gemt fra en nyere version af wxMaxima. Opdater venligst din wxMaxima." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Kinesisk (traditionel)" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Vælg skrifttype" #: ../src/PlotFormatWiz.cpp:27 #, fuzzy msgid "Choose new plot format:" msgstr "Vælg nyt plot format" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "" #: ../src/wxMaximaFrame.cpp:197 #, fuzzy msgid "Close\tCtrl-W" msgstr "K&opier\tCtrl-C" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3686 #, fuzzy msgid "Col. names:" msgstr "Søjler:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Søjler:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Kombiner fakulteter i et udtryk" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Kommaseparerede y-koordinater" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Kommaseparerede x-koordinater" #: ../src/MathCtrl.cpp:738 #, fuzzy msgid "Comment Selection" msgstr "Klip markering" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Beregn en størrelses kædebrøk" #: ../src/wxMaximaFrame.cpp:451 #, fuzzy msgid "Compute the adjoint matrix" msgstr "Beregn den adjungerede matrix" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Beregn en matrixs karakteristiske polynomium" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Beregn en matrixs determinant" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Beregn største fælles divisor" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Beregn en matrixs inverse" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "" "Beregn mindste fælles multiplum (anvend kommandoen load(functs) før brug)" #: ../src/wxMaxima.cpp:3736 #, fuzzy msgid "Condition:" msgstr "Animation" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Konfigurationsfil (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Konfigurationsadvarsel" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "wxMaxima indstillinger" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Konstant" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "Sammentræk logaritmer" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Omregn binomialkoefficienter, Beta- og Gamma-funktioner til fakulteter" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "" "Omregn binomialkoefficienter, fakulteter og Beta-funktioner til Gamma-" "funktion" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Omregn komplekst udtryk til polær form" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Omregn komplekst udtryk til rektangulær form" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Omregn eksponentiel funktion med imaginært argument til trigonometrisk form" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Omregn logaritme af produkt til sum af logaritmer" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Omregn sum af logaritmer til logaritme af produkt" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Omregn til &fakultet" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Omregn til &Gamma-funktion" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Omregn til &polær form" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "&Omregn til rektangulær form" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Omregn trigonometrisk udtryk til kanonisk kvasilineær form" #: ../src/wxMaximaFrame.cpp:590 #, fuzzy msgid "Convert trigonometric functions to exponential form" msgstr "Omregn trigonometrisk funktion til eksponentiel form" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Kopier" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Kopier som billede" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Kopier som LaTeX" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Kopier som billede" #: ../src/wxMaximaFrame.cpp:235 #, fuzzy msgid "Copy as LaTeX" msgstr "Kopier som LaTeX" #: ../src/wxMaximaFrame.cpp:232 #, fuzzy msgid "Copy as Text\tCtrl-Shift-C" msgstr "Kopier celle(r)\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Kopier markering" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Kopier markering fra dokument som billede" #: ../src/wxMaximaFrame.cpp:233 #, fuzzy msgid "Copy selection from document as text" msgstr "Kopier markering fra dokument som billede" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Kopier markering fra dokument som LaTeX" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Markør" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Klip" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "&Klip\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Klip markering" #: ../src/Config.cpp:241 msgid "Czech" msgstr "" #: ../src/Config.cpp:242 #, fuzzy msgid "Danish" msgstr "Spansk" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 #, fuzzy msgid "Data Matrix:" msgstr "Matrix:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Opløs rational funktion i partialbrøker" #: ../src/Config.cpp:351 msgid "Default" msgstr "Standard" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Standardskrifttype:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Standardport:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Slet" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Slet f&unktion" #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Slet markering" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "&Slet variabel" #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Slet en funktion" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Slet en variabel" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Slet alle værdier fra hukommelsen" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Slet funktion(er):" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Slet variable:" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "Nævners grad:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Orden:" # kontekst? #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Afledet:" #: ../src/wxMaximaFrame.cpp:1003 #, fuzzy msgid "Deviation..." msgstr "Animation" #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "P&olynomiers division..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Differentier..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Differentier" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Differentier udtryk" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Differentier..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Fra:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Diskret plot" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Vis som Te&X" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "2D-visning" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Vis seneste resultat som TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Vis beregningstid" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Division" #: ../src/MathCtrl.cpp:740 #, fuzzy msgid "Divide Cell" msgstr "Division" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Division med tal eller polynomier" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Dokument " #: ../src/Config.cpp:368 msgid "Document background" msgstr "Dokument baggrund" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "&Ligninger" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "&Afslut\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Egenv&ektorer" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Egen&værdier" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Eliminer" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Eliminer en variabel i et ligningssystem" #: ../src/Config.cpp:243 msgid "English" msgstr "Engelsk" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 #, fuzzy msgid "Enter Data" msgstr "Indtast matrixelementer" #: ../src/wxMaximaFrame.cpp:1024 #, fuzzy msgid "Enter Matrix..." msgstr "I&ndtast matrix..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Opret matrix og indtast elementer" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Indtast udtryk:" # Indsæt ? #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Indtast kommasepareret liste med variable." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Anvend Enter til beregning" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Indtast matrixelementer" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Angiv ny nøjagtighed:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Indtast stien til Maxima-programmet." #: ../src/wxMaxima.cpp:3115 #, fuzzy msgid "Epsilon:" msgstr "Udtryk:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Ligning %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Ligning(er):" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Ligning:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Ligninger:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Fejl" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Fejl %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Fejl!" # Jeg ved ikke hvad man skal oversætte noun til? # JT: Navn(eord) - det vil u.a.o. kun være for "kendere"? #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Evaluer &navneformer" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Beregn alle celler\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "Beregn celle(r)" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Beregn aktiv(e) eller valgt(e) celle(r)" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Beregn alle celler i dokumentet" # Nouns in Verbs umwandeln und auswerten #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Evaluer alle navneformer i udtryk" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Eksempel" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Teksteksempel" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Afslut wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Udvid til ledform" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Udvid trig." #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Udvid udtryk til ledform" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Udvid logaritmer" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Udvid et udtryk til ledform" # brug af addtitionsformler? #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Udvid trigonometrisk udtryk til ledform" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "Eksporter" #: ../src/wxMaximaFrame.cpp:209 #, fuzzy msgid "Export document to a HTML or pdfLaTeX file" msgstr "Eksporter dokument til HTML eller LaTeX" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "HTML-eksport mislykkedes!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "TeX-eksport mislykkedes!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Udtryk" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Udtryk:" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Udtryk:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Faktoriser" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Faktoriser komplekst udtryk" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Faktoriser udtryk" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Faktoriser et udtryk" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Faktoriser et udtryk i Gaussiske heltal" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Fakultet og &Gamma-funktion" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Alvorlig fejl" #: ../src/GroupCell.cpp:1263 #, fuzzy, c-format msgid "Figure %d:" msgstr "&Indstillinger..." #: ../src/main.cpp:107 msgid "File" msgstr "Fil" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "Filen blev ikke fundet" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "Filen findes ikke." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Fil:" #: ../src/wxMaximaFrame.cpp:723 #, fuzzy msgid "Find" msgstr "Bestem nulpunkt" #: ../src/wxMaximaFrame.cpp:248 #, fuzzy msgid "Find\tCtrl-F" msgstr "Fortryd\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Bestem &grænseværdi..." #: ../src/wxMaximaFrame.cpp:480 #, fuzzy msgid "Find Minimum..." msgstr "Bestem &grænseværdi..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Bestem nulpunkt..." #: ../src/wxMaximaFrame.cpp:481 #, fuzzy msgid "Find a (unconstrained) minimum of an expression" msgstr "Bestem grænseværdi for et udtryk" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Bestem grænseværdi for et udtryk" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Bestem et nulpunkt for et udtryk indenfor et interval" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Bestem alle rødder i et polynomium" #: ../src/wxMaximaFrame.cpp:388 #, fuzzy msgid "Find all roots of a polynomial (bfloat)" msgstr "Bestem alle rødder i et polynomium" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Bestem en matrixs egenværdier" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Bestem en matrixs egenvektorer" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Bestem et polynomiums reelle rødder" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Bestem nulpunkt" #: ../src/wxMaximaFrame.cpp:794 #, fuzzy msgid "Find..." msgstr "Bestem nulpunkt..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Fast tegnbredde i indtastningsfelter" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Anvendt skrifttype i dokumentet." #: ../src/Config.cpp:131 #, fuzzy msgid "Font used for displaying math characters in document." msgstr "Anvendt skrifttype til græske symboler i dokumentet." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Skrifttyper" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Format:" #: ../src/Config.cpp:244 msgid "French" msgstr "Fransk" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "Fra:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "Fuld skærm\tAlt-Enter" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Funktion" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Navne på funktioner" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Funktion(er):" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Funktion:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Faciliteter til reduktion af komplekse udtryk" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Faciliteter til reduktion af fakulteter og Gamma-funktion" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Faciliteter til reduktion af trigonometriske funktioner" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "SFD" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "" #: ../src/wxMaximaFrame.cpp:133 #, fuzzy msgid "General Math" msgstr "Opret matrix" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Opret matrix" #: ../src/wxMaximaFrame.cpp:431 #, fuzzy msgid "Generate Matrix from Expression..." msgstr "&Opret matrix..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Opret matrix ud fra et 2-dimensionalt array" #: ../src/wxMaximaFrame.cpp:432 #, fuzzy msgid "Generate a matrix from a lambda expression" msgstr "Opret matrix ud fra et 2-dimensionalt array" #: ../src/Config.cpp:245 msgid "German" msgstr "Tysk" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "&Imaginærdel" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "&Rækkeudvikling..." #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Bestem Laplace-transformation for et udtryk" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "&Realdel" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Bestem invers Laplace-transformation for et udtryk" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Bestem Taylor- eller potensrække for et udtryk" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Bestem imaginærdelen af komplekst udtryk" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Bestem realdelen af komplekst udtryk" #: ../src/Config.cpp:246 msgid "Greek" msgstr "" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Græske konstanter" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Gitter:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "HTML-fil (*.html)|*.html|pdfLaTeX-fil (*.tex)|*.tex|Alle|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Højde:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Hjælp" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Fremhævning (dpart)" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "" #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "En vandret markør fungerer som en normal markør, men opererer på celler: " "tryk på op eller ned piletast for at flytte markørstregen. Holdes Shift nede " "mens pile tasterne benyttes markeres celle(r), ved tryk på backspace eller " "delete slettes de(n) markerede celle(r)." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Ungarsk" # Begyndelsesværdi - Maxima #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" # Begyndelsesværdi - Maxima #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Hvis din beregning tager for lang tid, kan du benytte 'Maxima->Afbryd' eller " "'Maxima->Genstart Maxima'" #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Billedfiler (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Information om Maxima-version" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Begyndelsesværdiproblem (&1)..." #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Begyndelsesværdiproblem (&2)..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Input-etiketter" #: ../src/wxMaximaFrame.cpp:143 #, fuzzy msgid "Insert" msgstr "Indsæt tekstcelle" #: ../src/wxMaximaFrame.cpp:302 #, fuzzy msgid "Insert &Section Cell\tCtrl-3" msgstr "Indsæt &afsnitscelle\tCtrl-F6 " #: ../src/wxMaximaFrame.cpp:298 #, fuzzy msgid "Insert &Text Cell\tCtrl-1" msgstr "Indsæt &tekstcelle\tF6" #: ../src/wxMaximaFrame.cpp:328 #, fuzzy msgid "Insert Cell\tAlt-Shift-C" msgstr "Indsæt celle(r)\tCtrl-Shift-V" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Indsæt billede" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "Indsæt billede..." #: ../src/wxMaximaFrame.cpp:296 #, fuzzy msgid "Insert Input &Cell" msgstr "Indsæt &input\tF7" #: ../src/wxMaximaFrame.cpp:306 #, fuzzy msgid "Insert Page Break" msgstr "Indsæt billede" #: ../src/wxMaximaFrame.cpp:304 #, fuzzy msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Indsæt &afsnitscelle\tCtrl-F6 " #: ../src/MathCtrl.cpp:724 #, fuzzy msgid "Insert Section Cell" msgstr "Indsæt &afsnitscelle\tCtrl-F6 " #: ../src/MathCtrl.cpp:725 #, fuzzy msgid "Insert Subsection Cell" msgstr "Indsæt &afsnitscelle\tCtrl-F6 " #: ../src/wxMaximaFrame.cpp:300 #, fuzzy msgid "Insert T&itle Cell\tCtrl-2" msgstr "Indsæt &tekstcelle\tF6" #: ../src/MathCtrl.cpp:722 #, fuzzy msgid "Insert Text Cell" msgstr "Indsæt &tekstcelle\tF6" #: ../src/MathCtrl.cpp:723 #, fuzzy msgid "Insert Title Cell" msgstr "Indsæt &tekstcelle\tF6" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Indsæt en ny celle" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Indsæt en ny afsnitscelle" #: ../src/wxMaximaFrame.cpp:305 #, fuzzy msgid "Insert a new subsection cell" msgstr "Indsæt en ny afsnitscelle" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Indsæt ny tekstcelle" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Indsæt en ny celle til overskrift" #: ../src/wxMaximaFrame.cpp:307 #, fuzzy msgid "Insert a page break" msgstr "Indsæt billede" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Indsæt billede" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Integral/Sum:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Integrer" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Integrer (Risch)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Integrer udtryk" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Integrer udtryk ved hjælp af Risch-algoritme" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Integrer..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Afbryd" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Afbryd igangværende beregning" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Ugyldig angivelse for Maxima-programmet.\n" "\n" "Indtast venligst stien til Maxima-programmet igen." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Invers Laplace" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "In&vers Laplace Transformation..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italiensk" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Kursiv" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "" #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "MFM" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Sprog for wxMaxima-brugerfladen." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Sprog:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "Laplace &transformation..." #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Mindste fælles multiplum..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "" #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Grænseværdi" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Grænseværdi..." #: ../src/wxMaximaFrame.cpp:1010 #, fuzzy msgid "Linear Regression..." msgstr "Integrer udtryk" #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Liste:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Indlæs" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Indlæs pakke" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Indlæs en Maxima-fil ved hjælp af batch-kommando" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Indlæs fil med Maxima-pakke" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Indlæs typografi fra fil" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Nedre grænse:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Afbild &matrix" #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "O&pret liste..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Opret liste" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Opret liste ud fra udtryk" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Udfør substitution i udtryk" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Afbildning af liste" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Anvend funktion på listeelementer" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Anvend funktion på matrixelementer" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Automatisk parring af parenteser" #: ../src/Config.cpp:346 #, fuzzy msgid "Math font:" msgstr "Standardskrifttype:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Matrix" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Afbildning af matrix" #: ../src/wxMaxima.cpp:3737 #, fuzzy msgid "Matrix name:" msgstr "Matrix:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Matrix:" #: ../src/Config.cpp:98 #, fuzzy msgid "Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "Maxima &Hjælp\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Maxima-input" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima beregner" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Maxima-pakke (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Maxima-pakke (*.mac)|*.mac|Lisp-pakke (*.lisp)|*.lisp|Alle|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Maxima-proces er afsluttet." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Sti til Maxima-program:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Maxima-spørgsmål" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima er i gang. Vent på forbindelse..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima anvender ':' for at tildele værdier (f.eks. 'a : 3;') og ':=' for at " "definere funktioner (f.eks. 'f(x) := x^2;')." #: ../src/wxMaxima.cpp:3484 #, fuzzy msgid "Maxima version: " msgstr "Maxima-spørgsmål" #: ../src/wxMaximaFrame.cpp:1008 #, fuzzy msgid "Mean Difference Test..." msgstr "Differentier..." #: ../src/wxMaximaFrame.cpp:1007 #, fuzzy msgid "Mean Test..." msgstr "O&pret liste..." #: ../src/wxMaximaFrame.cpp:1000 #, fuzzy msgid "Mean..." msgstr "Afbild liste..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "" #: ../src/wxMaximaFrame.cpp:1001 #, fuzzy msgid "Median..." msgstr "O&pret liste..." #: ../src/MathCtrl.cpp:684 #, fuzzy msgid "Merge Cells" msgstr "&Slet celle(r)" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Metode:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Modulus" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Navn:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 #, fuzzy msgid "New\tCtrl-N" msgstr "&Ny\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 #, fuzzy msgid "New document" msgstr "Åbn dokument" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Ny værdi:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Ny variabel:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "" #: ../src/wxMaximaFrame.cpp:1009 #, fuzzy msgid "Normality Test..." msgstr "O&pret liste..." #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "Ugyldig dimension for matrix!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "Ugyldigt antal ligninger!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "" #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "Tællers grad:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Antal ligninger:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Tal" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Tidligere værdi:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Tidligere variabel:" #: ../src/wxMaxima.cpp:3643 #, fuzzy msgid "One sample t-test" msgstr "Teksteksempel" #: ../src/wxMaximaFrame.cpp:650 #, fuzzy msgid "Online tutorials" msgstr "&Kombiner fakulteter" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Åbn" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Åbn seneste" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Åbn dokument" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Åbn nyt vindue" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Åbn dokument" #: ../src/wxMaxima.cpp:3704 #, fuzzy msgid "Open matrix" msgstr "Indtast matrixelementer" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Åbner fil" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Indstillinger" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Egenskaber:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Forældede celler" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Output-etiketter" # Skulle vi have ´ eller ej? #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Padé-&approksimation" #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "PNG-billede (*.png)|*.png|JPEG-billede (*.jpg)|*.jpg|Windows-bitmap (*.bmp)|" "*.bmp|X pixmap (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Padé-approksimation" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Padé-approksimation for Taylorrække" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "" # Parametrisk plot? #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Parameterplot" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Output fortolkes" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "Partial&brøker..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Partialbrøker" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Sæt ind" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "&Sæt ind\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 #, fuzzy msgid "Paste from clipboard" msgstr "Indsæt tekst fra Udklipsholder" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Indsæt tekst fra Udklipsholder" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Ændrer indstillinger for wxMaxima i 'Rediger->Indstillinger'" #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Genstart wxMaxima for at ændringer træder i kraft!" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "&2D-plot..." #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "&3D-plot..." #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "Plot&format..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "2D-plot" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "2D-plot..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "2D-plot..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "3D-plot" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "3D-plot..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "3D-plot..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Plotformat" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "Plot i 2 dimensioner" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "Plot i 3 dimensioner" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Plot til fil:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Punkt:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polsk" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Polynomium 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Polynomium 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portugisisk (brasiliansk)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Postscript-fil (*.eps)|*.eps|Alle|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Nøjagtighed" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Udskriv" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Udskriv dokument" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Produkt" #: ../src/wxMaximaFrame.cpp:1023 #, fuzzy msgid "Read Matrix..." msgstr "I&ndtast matrix..." #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Maxima-output behandles" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Klar til input fra bruger" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Rektangulær form" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Sammentræk trig." #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Sammentræk trigonometrisk udtryk" # Jeg mener kun den skjuler, for jeg kan bede om det i en senere input selvom jeg ikke kan se outputtet længere # JT: men hvordan kalder man dem mon frem igen? #: ../src/wxMaximaFrame.cpp:286 #, fuzzy msgid "Remove All Output" msgstr "Fjern alle output" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Fjern visning af hidtidige output" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "" #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Information om fejlrapportering" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Genstart Maxima" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Risch-integration..." #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "&Polynomiumsrødder" #: ../src/wxMaximaFrame.cpp:387 #, fuzzy msgid "Roots of Polynomial (bfloat)" msgstr "&Reelle rødder i polynomium" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Rækker:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Russisk" #: ../src/wxMaxima.cpp:3656 #, fuzzy msgid "Sample 1:" msgstr "Eksempel" #: ../src/wxMaxima.cpp:3656 #, fuzzy msgid "Sample 2:" msgstr "Eksempel" #: ../src/wxMaxima.cpp:3642 #, fuzzy msgid "Sample:" msgstr "Eksempel" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Gem" # Skulle vi have ´ eller ej? #: ../src/MathCtrl.cpp:663 #, fuzzy msgid "Save Animation..." msgstr "Padé-&approksimation" #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Gem som" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Ge&m som...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Gem billede..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Gem markering som billede" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "Gem markering som billede..." # Gem billedet i filen #: ../src/wxMaxima.cpp:3984 #, fuzzy msgid "Save animation to file" msgstr "Gem markering i fil" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "" #: ../src/wxMaxima.cpp:4432 #, fuzzy msgid "Save changes?" msgstr "Gem billede..." #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Gem dokument" #: ../src/wxMaximaFrame.cpp:203 #, fuzzy msgid "Save document as" msgstr "Gem dokument" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "" #: ../src/Config.cpp:125 #, fuzzy msgid "Save panes layout between sessions." msgstr "Gem størrelse og position for wxMaxima-vindue mellem sessioner." #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Gem plot som fil" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Gem det markerede område i dokumentet i en billedfil" # Gem billedet i filen #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Gem markering i fil" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Gem typografi i fil" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Gem størrelse og position for wxMaxima-vindue" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Gem størrelse og position for wxMaxima-vindue mellem sessioner." #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "" #: ../src/wxMaximaFrame.cpp:1054 #, fuzzy msgid "Section" msgstr "Markering" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Afsnitscelle" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 #, fuzzy msgid "Select All" msgstr "Marker alt" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "&Marker alt\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Vælg sti for Maxima-program" #: ../src/wxMaxima.cpp:3740 #, fuzzy msgid "Select Subsample" msgstr "Marker alt" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Vælg en konstant" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Marker alt" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Vælg algoritme" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Ved at markere en del af en outputlinje og 'højre-klikke' med musen åbnes en " "menu op med funktioner, der kan foretages på det markerede." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Markering" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Rækker" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Rækker..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Server er startet" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Vælg &nøjagtighed" #: ../src/wxMaximaFrame.cpp:271 #, fuzzy msgid "Set Zoom" msgstr "Vælg plot format" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Vælg nøjagtighed decimaltal 2" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Brug fast tegnbredde i indtastningsfelter" #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Vælg plot format" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "Opstil randbetingelser til løsning af ODL med Laplace-transformation" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Opsætning af modulus-beregning" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Vis &definitioner..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Vis &funktioner" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Vis &tips..." #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "&Vis variable" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Vis Maxima Hjælp" #: ../src/wxMaximaFrame.cpp:293 #, fuzzy msgid "Show Template\tCtrl-Shift-K" msgstr "Kopier celle(r)\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Vis et tip" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Vis alle kommandoer i stil med:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Vis eksempel med kommandoen:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Vis et eksempel med anvendelse" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Vis alle kommandoer i stil med" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Vis erklærede funktioner" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Vis erklærede variable" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Vis definition for en funktion" #: ../src/wxMaximaFrame.cpp:294 #, fuzzy msgid "Show function template" msgstr "Vis &funktioner" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Vis lange udtryk" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Vis lange udtryk i wxMaxima-dokument." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Vis definition for funktionen:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Reducer (ratsimp)" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Reducer (&radcan)" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Reducer (radcan)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Reducer trig." #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Reducer udtryk (ratsimp)" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Reducer et udtryk indeholdende fakulteter" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Reducer udtryk indeholdende radikaler/rødder" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Reducer rationalt udtryk" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Reducer sum" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Reducer trigonometrisk udtryk" #: ../data/tips.txt:22 #, fuzzy msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Fra og med wxMaxima 0.8.2 er det muligt at indsætte billeder i dit dokument. " "Benyt 'Rediger->Indsæt billede...'. Bemærk at du skal gemme dit dokument som " "'wxMaxima XML dokument' hvis du vil have dit billede gemt sammen med dit " "dokument." #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Løsning:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Løs" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Løs &algebraisk ligningssystem..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Løs l&ineært ligningssystem" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Løs &ODL..." #: ../src/wxMaximaFrame.cpp:380 #, fuzzy msgid "Solve (to_poly)..." msgstr "Løs..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Løs ODL" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Løs O&DL med Laplace..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Løs ODL..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Løs algebraisk ligningssystem" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Løs algebraisk ligningssystem" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Løs randværdiproblem for 2. ordens ODL" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Løs ligning(er)" #: ../src/wxMaximaFrame.cpp:381 #, fuzzy msgid "Solve equation(s) with to_poly_solver" msgstr "Løs ligning(er)" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Løs begyndelsesværdiproblem for 1. ordens ODL" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Løs begyndelsesværdiproblem for 2. ordens ODL" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Løs lineært ligningssystem..." #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Løs lineært ligningssystem" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Løs ordinær differentialligning af orden højst 2" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Løs ordinære differentialligninger ved hjælp af Laplace-transformation" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Løs..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Spansk" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Specialtegn" # Særlige? #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Særlige konstanter" #: ../src/MathCtrl.cpp:664 #, fuzzy msgid "Start Animation" msgstr "Afspil animation" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Afspil animation" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Maxima-opstart slog fejl" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Maxima startes..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Server-opstart slog fejl" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Server startes via port %d" #: ../src/wxMaximaFrame.cpp:123 #, fuzzy msgid "Statistics" msgstr "antisymmetrisk" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Stop animation" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Tekststrenge" #: ../src/Config.cpp:99 msgid "Style" msgstr "Typografi" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Typografier" #: ../src/wxMaximaFrame.cpp:1028 #, fuzzy msgid "Subsample..." msgstr "Substituer..." #: ../src/wxMaximaFrame.cpp:1053 #, fuzzy msgid "Subsection" msgstr "Markering" #: ../src/Config.cpp:364 #, fuzzy msgid "Subsection cell" msgstr "Afsnitscelle" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "Substituer..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Substituer" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Substituer..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Sum" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Taylorrækker:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 #, fuzzy msgid "Text" msgstr "Tekstcelle" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Tekstcelle" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Tekstcelle baggrund" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Standardport for kommunikation mellem Maxima og wxMaxima." #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Der findes mange kilder om Maxima og wxMaxima på internettet. Besøg http://" "wxmaxima.sourceforge.net/wiki/index.php/Tutorials for mere information om " "brug af wxMaxima og Maxima." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Der var fejl i den dannede XML-fil!\n" "\n" "Rapporter venligdt dette som en programfejl." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" # Det er bestemt et dårligt ord, men jeg kan ikke komme på noget bedre. #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Inddeling:" # Hvilken kontekst? #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Gange:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Ingen tips er tilgængelige, beklager!" #: ../src/wxMaximaFrame.cpp:1052 #, fuzzy msgid "Title" msgstr "Fil" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Celle til overskrift" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "Angiv som decimaltal &2\tCtrl-2" #: ../src/wxMaximaFrame.cpp:625 #, fuzzy msgid "To &Float" msgstr "Angiv som decimaltal 1" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "Angiv som decimaltal 1" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "For at lave et polærplot, vælg 'set polar; set zeroaxis;' under 'Egenskaber' " "i 2D-plot-menuen. Du kan også lave sfæriske og cylindriske plot i 3D." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Du kan sætte parenteser om et udtryk ved at markere det og trykke '(' eller " "')' afhænig af, hvor du gerne vil have markøren til at dukke op bagefter." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "For at gemme størrelse og position af wxMaxima vinduer fra gang til gang, " "benyt 'Rediger->Indstillinger' og marker ved 'Gem wxMaxima vindue størrelse/" "position' " #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Start indtastning for at begynde at bruge wxMaxima. Et input celle burde " "dukke op. Tryk 'Shift-Enter' for at beregne." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "Til:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Slå &algebraic-indikator til/fra" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "&Vis eksakt/decimaltal " #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Skjul/vis beregningstid " #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Slå Maxima-indikatoren algebraic til eller fra" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Skift til fuldskærmsvisning" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Slå numerisk beregning til eller fra" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Transponer en matrix" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "" #: ../src/wxMaxima.cpp:3658 #, fuzzy msgid "Two sample t-test" msgstr "Teksteksempel" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Type:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ukrainsk" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Understreget" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "Fortryd\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Fortryd seneste ændring" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Øvre grænse:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Anvend Gosper-algortime" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Anvend prik som multiplikationssymbol" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Værdi:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Variable:" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Variabel:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Variable" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Variable:" #: ../src/wxMaximaFrame.cpp:1002 #, fuzzy msgid "Variance..." msgstr "Variabel:" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Advarsel" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Velkommen til wxMaxima" # Det kan vist godt formuleres klarere... #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Når der vælges en funktion med et enkelt input-argument fra en menu, er " "input-argument automatisk '%'. For at få funktionen til at virke på en anden " "værdi, skal input-argumentet vælges inden funktionen vælges fra menuen." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Bredde:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Anvend automatisk parring af parenteser i indtastningsfelter." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Det seneste output kan tilgås gennem variablen '%'. Output fra tidligere " "kommandoer kan tilgås ved at anvende variable '%on', hvor n er output-" "nummeret." #: ../data/tips.txt:15 #, fuzzy msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Du kan beregne hele dit dokument ved at gå i 'Rediger->Celle->Beregn alle " "celler' eller via tilsvarende genvejstast (Ctrl-R). Cellerne vil blive " "beregnet i den rækkefølge de forekommer i." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Man kan finde hjælp til en Maxima-funktion ved at markere eller klikke på " "funktionsnavnet og derpå trykke på F1. wxMaxima vil søge efter det markerede " "i Hjælp-indekset. " #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Output fra en celle kan skjules ved at klikke i trekanten i cellens venstre " "side. Indholdet i tekstceller kan skjules på samme måde." #: ../data/tips.txt:5 #, fuzzy msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Du kan vælge mellem forskellige typer af 'celler' i wxMaxima via menuen " "'Rediger->Celle'. Bemærk at kun inputceller kan beregnes, mens de øvrige kan " "benyttes til kommentarer eller strukturering i dine beregninger." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Du kan markere og vælge flere celler af gangen enten ved at bruge musen - " "klik og træk mellem celler eller marker en enkelt celle ved at trække fra " "venstre mod højre - eller ved at bruge keyboardet - hold Shift nede og brug " "piletastern og den horisontale markør. Herefter kan du udføre beregning på " "de markerede celler på én gang." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "" #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "" #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Zoom i&nd\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "Zoom &ud\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ ikke gemt ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ ikke gemt* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antisymmetrisk" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "begge sider" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "standard" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonal" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "generel" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "på linje med tekst" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "venstre" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "" #: ../src/wxMaxima.cpp:2690 #, fuzzy msgid "matrix[i,j]:" msgstr "Matrix:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "højre" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "symmetrisk" #: ../src/wxMaxima.cpp:4403 #, fuzzy msgid "unsaved" msgstr "[ ikke gemt ]" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "unavngivet" #: ../src/main.cpp:182 #, fuzzy, c-format msgid "untitled %d" msgstr "unavngivet" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Indstillinger for wxMaxima" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima kunne ikke finde Maxima!\n" "\n" "Ændrer wxMaxima indstilliger i 'Rediger->Indstillinger'.\n" "Start herefter Maxima i 'Maxima->Genstart Maxima'" #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima kunne ikke finde Hjælp-fil.\n" "\n" "Kontroller venligst installationen." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima kunne ikke finde filer med tips.\n" "\n" "Kontroller venligst installationen." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima kunne ikke starte serveren.\n" "\n" "Kontroller venligst at der er etableret netværksforbindelse\n" "og prøv igen!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "I wxMaxima-dialogboksenes felter er indsat standardværdier, hvoraf en er " "'%'. Hvis der er foretaget markering i dokumentet, anvendes denne markering " "i stedet for '%'." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "wxMaxima-dokument" #: ../src/wxMaxima.cpp:1842 #, fuzzy msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "wxMaxima-dokument (*.wxm)|*.wxm|wxMaxima xml-dokument (*.wxmx)|*.wxmx|Maxima-" "batchfil (*.mac)|*.mac|Alle|*" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "wxMaxima-dokument (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima stødte på en fejl under indlæsning af " #: ../src/wxMaxima.cpp:3367 #, fuzzy msgid "wxMaxima icon" msgstr "wxMaxima-indstillinger" #: ../src/wxMaxima.cpp:3355 #, fuzzy msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima er en grafisk brugerflade for computer algebra systemet MAXIMA " "baseret på wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima er en grafisk brugerflade for computer algebra systemet MAXIMA " "baseret på wxWidgets." #: ../src/wxMaxima.cpp:3427 #, fuzzy msgid "yes" msgstr "Typografier" #, fuzzy #~ msgid "&Cell" #~ msgstr "Celle" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Nyt vindue\tCtrl-N" #~ msgid "Close document?" #~ msgstr "Skal dokumentet lukkes?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Dokumentet er ikke gemt!\n" #~ "\n" #~ "Luk nuværende dokument og mist alle ændringer?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Dokumentet er ikke gemt!\n" #~ "\n" #~ "Skal wxMaxima afsluttes og ændringerne gå tabt?" #~ msgid "Maxima options" #~ msgstr "Maxima-indstillinger" #~ msgid "Quit?" #~ msgstr "Skal der afsluttes?" #~ msgid "wxMaxima options" #~ msgstr "wxMaxima-indstillinger" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima er en grafisk brugerflade for computer \n" #~ "algebra systemet MAXIMA baseret på wxWidgets." #, fuzzy #~ msgid "<< Nothing to display >>" #~ msgstr "<< Udtrykket er for langt til at kunne vises! >>" #, fuzzy #~ msgid "Functions and macros" #~ msgstr "Navne på funktioner" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "" #~ "Kopier markering til Udklipsholder, når der er foretaget markering i " #~ "dokumentet." # Hvilken kontekst? #~ msgid "Copy to clipboard on select" #~ msgstr "Kopier markering til Udklipsholder" #~ msgid "Input" #~ msgstr "Input" #~ msgid "Save document as ..." #~ msgstr "Gem dokument som ..." #~ msgid "Show Maxima header" #~ msgstr "Vis Maxima-hoved" #~ msgid "Show initial header with Maxima system information." #~ msgstr "" #~ "Vis hoved med Maxima-systeminformation i begyndelsen af dokumentet." #~ msgid "Adjustment for the size of greek font." #~ msgstr "Justering af størrelsen for græsk skrifttype." #~ msgid "Adjustment:" #~ msgstr "Justering af størrelse:" #~ msgid "Basic" #~ msgstr "Basis" #~ msgid "Button panel:" #~ msgstr "Knappanel:" #~ msgid "Copy selected cell(s)" #~ msgstr "Kopier markerede celler" #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr "Klip celle(r)\tCtrl-Shift-X" #~ msgid "Cut selected cell(s)" #~ msgstr "Klip markerede celle(r)" #~ msgid "Decrease fontsize in document" #~ msgstr "Formindsk skriftstørrelse i dokument" #~ msgid "Delete selected cell(s)" #~ msgstr "Slet markerede celle(r)" #~ msgid "Delete selection" #~ msgstr "Klip markering" #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr "Anvendt skrifttype til visning af Unicode-tegn i dokumentet." #~ msgid "Full" #~ msgstr "Komplet" #~ msgid "Increase fontsize in document" #~ msgstr "Forøg skriftstørrelse i dokument" # input ELLER inputcelle # - se også andre! #~ msgid "Insert input cell" #~ msgstr "Indsæt input" # Eingabe einfügen # - hvilken kontekst? #~ msgid "Insert input group" #~ msgstr "Indsæt input" #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr "Indsæt celle til &overskrift\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "Skjult" #~ msgid "Paste cell(s) to document" #~ msgstr "Indsæt celle(r) i dokument" #~ msgid "Product..." #~ msgstr "Produkt..." #~ msgid "Sum..." #~ msgstr "Sum..." #~ msgid "To &Float\tCtrl-F" #~ msgstr "Angiv som decimaltal &1\tCtrl-1" #~ msgid "Unicode glyphs:" #~ msgstr "Unicode-tegn:" #~ msgid "Use greek font to display greek characters." #~ msgstr "Anvend græsk skrifttype ved visning af græske tegn." #~ msgid "Use greek font:" #~ msgstr "Anvend græsk skrifttype:" #~ msgid "untitled.wxm" #~ msgstr "unavngivet.wxm" wxMaxima-13.04.2/locales/de.mo000644 000765 000024 00000166206 11710501376 016445 0ustar00andrejstaff000000 000000 Dl0@)@@@@@&@gAJAAA AAB *B 6B@BPB nB|BBB BB B BBCC%C 6CBCUCkC {CCC CCCC CCDD$DP3,Q`Q eQ sQ~Q Q QQQ(Q$R,,R%YRRR R RRR R1RR0R&S .S ]*k]]]]+]]3],/^,\^'^^^^;^ ___+_:_ L_ V_c_k__ _`i`m`~q``@`7aHaQaia|aa aaaab b&b6bIb[bzbbbbbbbc1cHc`c tc c ccc)c c cdQdqddddd4ddd ee"e8eQecexe~eeee e*eee ff .f oDo Lo Vo`ohomooo ooooo p "p0pAp#Spwp-ppp"p4q 9qEqTq \q iqtqqqq qqq zrr rrrrr rrss)s:sKs\s:lssss sstt /t:t Xtyttttttu+$u Puquzu u uu,u'uv.v!?vav Wwawgww ww ww ww#x2(x[x%mx0x1xx y8+yAdyyyyyyyyz#z:z Uz`zwzzzz z zzz z zz zz{ { {{D0{u{B1|ut||||} }$} } }~ ~~`. 7Ncy ̀ڀ    $0AQ Yf-{ ΁ ؁ ΂,Ղ  fw)_U1߇'9H X d q ~ ɈЈ Ո    ( 1>UDىCbbŊle~.& :aHa =0N0Ɏ\ 6K]fwÐ ؐ !/ COi ~ّ $9BIZoȒВ )= FS fp"Ó ԓ2H Ye{ Ȕ ӔޔƖ˖((9 b:4ؗ % ,6?[cj1{Ƙ"՘ ,e?Ϛ)#%IXk#|) ʛԛ ܛ%8(JsZ0LUg y)$$ߝ;!Su1#Ğ&I. x! ҟܟ>P7-0H;0;l¡94AvТ(- V(w ȣ ݣ 229OX iw֤&. GT ] huȥ ۥ$!> ` jw.ŦΦ  $ 03<pyC6.M]*x  ɨ Ԩ  2+E!q& éΩ ߩ  F$'k 0)Ъ( # - 7 AOo7. #8OV]x! ٬(&#GJ!$ܭ,= O2Z8   '0 ? M0W?=ȯ !7T d4#ް3 @;J61, '>>F Ͳ ۲Q( z{Aµ˵ Ե  :HYsɶܶ&>Vf!w!&!9H Xd{* ˸ظjX"v  9 &BJ\ r | Ժ1E!Y){/0&@RY mz<ۼ. ?*Mx$5M` s  ˾ ׾ &5%\  ˿տ4K\r   bK$^ 1 ,6Gd AA  - >IX gr   %# IUpx#)* 7 @@K) 9#Uy   ?)Z"5.6e/B %7 ?L]u/ & ;1m"D@ #)4#^##,,P"} *!%>d*z %(N)j %;'4?\@ 81N# )#%M s}     (2 ERZ _i9Uq fs#| 4##$H>~k:?Rf({"" <F] f q$1 =W ] j t ~N0BIsj.("Wz  2?H Q [gm    Xegm.T1 __#@nmfmj < `t~F<J"GO+KTxgWb$,pbLg_sLE.B(Se! i|wFE6Zd:}$\W159_ ziGQ(p/K 5c>,@.OrxUc/Q\F3;2xu}R];wI<# Py *A ;{-X^)n)If,QX 7`c%]C?}"@iN[` HbDSVN-I{hlu3lkM=':7[z96M h4   %RV4~-3'PASL[4aevKkuZDy:0ED7+TkT"q#o/p!Xj$ A=1]_|UHrBvR?8nMH9agJ2oh012B6+P&vY8et lz^ rs*~sdYa|m&0qJW('N\UCqY.^)>Z*V#!yC8t%=fo&dw>j O?G5{ wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: de Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2007-07-23 12:53+0200 Last-Translator: Dieter Kaiser Language-Team: german Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Unicode Unterstützung: %s Lisp: Maxima Version: Nicht mit Maxima verbunden! Nicht verbunden. << Ausdruck zu lang, um angezeigt zu werden! >> wurde mit einer aktuelleren wxMaxima Version gespeichert. Die Datei wird möglicherweise nicht korrekt geladen. Bitte aktualisieren Sie wxMaxima. wurde mit einer aktuelleren wxMaxima Version gespeichert. Bitte aktualisieren Sie wxMaxima.&Algebra&Auf Liste anwenden ...&Apropos ...&Batch-Datei laden ... Ctrl-B&Randwertproblem ...Fehler &berichten&Rechnen&Kanonische Form&Charakteristisches Polynom ...&Speicher löschenFakultäten &kombinieren&Komplexe Ausdrücke&Kettenbruch&Kopieren Ctrl-C&Bestimmtes IntegralAls &Winkelfunktionen&Determinante&Differenzieren ...&BearbeitenVariable &eliminieren ...Matrix &eingeben ...B&eispiel ...Ausdruck &expandierenWinkelfunktionen &expandierenAls &ExpontialfunktionenE&xportieren ...Ausdruck &faktorisieren&DateiNumerische &Nullstelle ...Matrix erzeu&gen ...&GGT ...&Hilfe&Integrieren ...Unter&brechen Ctrl-.Unter&brechen Ctrl-GMatrix &invertierenPaket &laden ... Ctrl-LAuf Liste ab&bilden ...&MaximaSetze &Modulo ...&Neu Ctrl-N&Numerisch&Numerische Integration&Gosper&Öffnen Ctrl-O&Öffnen ... Ctrl-O&Plotten&PotenzreiheDrucken ... Ctrl-P&rationalWinkelfunktionen &reduzieren&Maxima neustartenreelle N&ullstellen eines PolynomsSpeichern Ctrl-S&VereinfachenAusdruck &vereinfachenFakultäten &vereinfachenWinkelfunktionen &vereinfachenGleichung lö&sen ...Be&sondere WerteTaylorreiheMatrix &transponieren&Winkelfunktionen vereinfachen&Farbe nach Höhe(Standardsprache verwenden)- Infinity
Lisp: Seit wxMaxima 0.8.0 steht ein horizontaler Cursor zur Verfügung, der zwischen den Zellen als eine horizontale Linie erscheint. Der horizontale Cursor zeigt an, wo z. B. die nächste neue Zelle eingefügt wird.Mit wxMaxima 0.8.2 wurde ein neues Format für Dokumente eingeführt. Dieses sichert nicht nur die Eingaben, sondern auch die Ergebnisse der Berechnungen. Wenn Sie Ihr Dokument speichern, können Sie dazu das Format 'wxMaxima XML Dokument auswählen.Rand&bedingung setzen ...InfoInformation über wxMaximaKlammern aktive ZelleAd&jungierte MatrixAlgebraische Gleichheit &hinzufügen ...Ein Verzeichnis zum Suchpfad hinzufügenVerzeichnis zum Pfad hinzufügenGebe Vereinfacher für rationale Ausdrücke eine GleichungZum &Pfad hinzufügen ...Zusätzliche Parameter für Maxima (z. B. -l clisp).Zusätzliche Parameter:Alle|*AnimationAnwendenFunktion auf Liste anwendenAproposArray:Bildmaterial vonFrage nach, wenn Dokumente nicht gespeichert sindRandwertRandwertproblemBalkendiagrammBatch-Dateien (*.bat)|*.bat|Alle|*Batch-Datei ladenFettKursdiagrammOrdner Anzeigen&Info über MaximaStandardmäßig wird mit 'Umschalt-Eingabe' eine Zelle ausgewertet. Wogegen 'Eingabe' die Eingabe mehrer Zeilen in einer Zelle erlaubt. Dieses Verhalten kann im Dialog 'Bearbeiten->Einstellungen' durch Markierung der Auswahl 'Eingabe wertet die Zelle aus' geändert werden. Die Funktion der beiden Befehle 'Umschalt-Eingabe' und 'Eingabe' wird ausgetauscht.Varia&ble ersetzen ...&Einstellungen ...&Produkt berechnen ...Su&mme berechnen ...Letztes Ergebnis als lange GleitkommazahlLetztes Ergebnis als GleitkommazahlRechne modulo:Produkte berechnenSummen berechnenKeine Verbindung mit dem Webserver.Kann Information zur Version nicht laden.AbbrechenTrigratKatalanischZe&llenKlammern ZelleFormat &2D AnzeigeWähle ein Format für die 2D AnzeigeVariable ersetzenVariable in Integral oder Summe ersetzenCharakteristisches PolynomPrüfe auf AktualisierungenPrüfen Sie bitte, ob Sie eine aktuelle Version von wxMaxima oder Maxima erhalten können.Chinesisch traditionellSchriftart wählenNeues Plot-Format eingeben:Klassen:Schließen Ctrl-WSchließe FensterSpaltennamen:Spalten:Fakultäten in einem Ausdruck kombinierenx-Koordinaten durch Kommata getrennty-Koordinaten durch Kommata getrenntAuswahl auskommentierenVervollständige Befehl Ctrl-KVervollständige BefehlKettenbruch eines Werts berechnenAdjungierte Matrix berechnenCharakteristisches Polynom einer Matrix berechnenDeterminante einer Matrix berechnenGrößten gemeinsamen Teiler berechnenInverse einer Matrix berechnenKleinste gemeinsames Vielfache berechnen (vorher load(functs) ausführen)Bedingung:Konfigurationsdatei (*.ini)|*.iniKonfigurationswarnungwxMaxima KonfigurierenKonstanteL&ogarithmen zusammenfassenErsetze Binomial-, Beta- und Gammafunktionen durch FakultätenErsetze Binomialfunktionen, Fakultäten und Betafunktionen durch GammafunktionenWandle komplexen Ausdruck in PolardarstellungWandle komplexen Ausdruck in StandarddarstellungExponentialfunktion mit imaginärem Argument in Winkelfunktion umwandelnProdukte von Logarithmen in Summe von Logarithmen umwandelnLogarithmen von Summen in Produkt von Logarithmen umwandelnIn &Fakultäten umwandelnIn &Gammafunktionen umwandeln&Polardarstellung&StandarddarstellungWandle trigonometrischen Ausdruck in eine kanonische FormErsetze Winkelfunktionen durch ExponentialfunktionenKopierenAls Bild kopierenLaTeX kopierenKopiere letzte Eingabe Ctrl-IAls Bild kopierenAls LaTeX kopierenAls Text kopieren Ctrl-Shift-CAuswahl kopierenAuswahl als Bild kopierenAuswahl des Dokumentes als Text kopierenAuswahl im LaTeX-Format kopierenNeue Zelle mit letzter Eingabe erzeugen.CursorAusschneidenAusschneiden Ctrl-xAuswahl ausschneidenTschechischDänischDatenmatrix:Datendatei (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDaten:PartialbruchzerlegungStandardStandardschrift:Standardport:LöschenF&unktion löschen ...Auswahl löschenV&ariable löschen ...Eine Funktion löschenEine Variable löschenAlle Symbole aus dem Speicher löschenLösche die Funktion(en):Lösche die Variable(n):Grad Nenner:Ordnung:Ableitung:Standardabw.Polynome di&vidieren ...Differenzieren ...DifferenzierenAusdruck differenzierenDifferenzieren ...Richtung:Diskreter PlotZeige Te&X FormatDarstellungmethodeZeige letztes Ergebnis in TeX FormatZeige Zeit für die Auswertung anDividiereZelle teilenDividiere Zahlen oder PolynomeWollen Sie Änderungen im Dokument speichern "DokumentHintergrundfarbe DokumentNicht speichern&GleichungenB&eenden Ctrl-QEigen&vektorenEigen&werteEliminierenEleminiere eine Variable aus einem GleichungssystemEnglischMatrix eingebenMatrix &eingeben ...Eine Matrix eingebenGeben Sie eine Gleichung zum Vereinfachen rationaler Ausdrücke an:Geben Sie die Variablen durch Beistriche getrennt ein.'Eingabe' wertet die Zelle ausMatrix eingebenNeue Genauigkeit eingeben:Geben Sie den Pfad zum Maxima Programm an.Epsilon:Gleichung %d:Gleichung(en):Gleichung:Gleichungen:FehlerFehler %dFehler!&Noun-Formen auswertenAlle Zellen neu auswerten Ctrl-RZelle(n) auswertenAktive oder ausgewählte Zelle(n) auswertenAlle Zellen im Dokument auswertenAlle Noun-Formen im Ausdruck auswertenBeispielMustertextwxMaxima beendenExpandierenTrigexpandAusdruck expandieren&Logarithmen expandierenEinen Ausdruck expandieren (Ausmultiplizieren und in Terme Aufspalten)Trigonometrische Ausdrücke expandierenExportierenExportiere Dokument als HTML oder pdfLaTex DateiExport als HTML Datei ist fehlgeschlagen!Export als TeX Datei ist fehlgeschlagen!Ausdruck:Ausdruck:Ausdruck:FaktorisierenAudruck faktorisieren (Komplex)Ausdruck faktorisierenEinen Ausdruck in ein Produkt von Ausdrücken umwandelnFaktorisiere einen Ausdruck in komplexe ZahlenFakultät und &GammaFataler FehlerFigure %d:&DateiDatei nicht gefundenDatei existiert nicht.Datei:SuchenSuchen und Ersetzen Ctrl-FGrenz&wert suchen ...Minimum suchen ...Nullstelle suchen ...Finde das Minimum eines AusdrucksGrenzwert eines Ausdrucks suchenNumerisch Lösung einer Gleichung suchenAlle Nullstellen eines Polynoms suchenAlle Nullstellen eines Polynoms mit langer Gleitkommagenauigkeit suchenSuchen und ErsetzenSuchen und ErsetzenEigenwerte einer Matrix berechnenEigenvektoren einer Matrix berechnenMinimum suchenFinde die reellen Nullstellen eines PolynomsNullstelle suchenSuchen ...Schriftart mit fester Breite in TexteingabefeldernSchriftart für ein Dokument.Schriftart für mathematische Zeichen in einem Dokument.SchriftartenFormat:Französischvon:Ganzer Bildschirm Alt-EnterFunktionFunktionsnamenFunktion(en):Funktion:Funktionen zum Vereinfachen komplexer AusdrückeFunktionen zum Vereinfachen von Fakultäten und GammafunktionenFunktionen zum Vereinfachen von trigonometrischen AusdrückenGGTGIF Bild (*.gif)|*.gifAllgemeine MathematikAllg. Mathematik Alt-Shift-MMatrix erzeugenMatrix aus Ausdruck erzeugen ...Eine Matrix aus einem 2-dimensionalen Array erzeugenMatrix aus lambda-Ausdruck erzeugenDeutsch&ImaginärteilReihen&entwicklung ...Die Laplacetransformation eines Ausdrucks bestimmen&RealteilDie inverse Laplacetransformation eines Ausdrucks bestimmenDie Taylor- oder Potenzreihe eines Ausdrucks bestimmenImaginärteil eines komplexen Ausdrucks bestimmenRealteil eines komplexen Ausdrucks bestimmenGriechischGriechische KonstantenGitter:HTML Datei (*.html)|*.html|pdfLaTex Datei (*.tex)|*.tex|Alle|*Höhe:HilfeAlle verbergen Alt-Shift--Alle Werkzeugleisten ausblendenHervorgehobenHistogrammHistogramm ...Historie der letzten EingabenHistorie Alt-Shift-HDer horizontale Cursor arbeitet wie ein normaler Cursor, der jedoch auf Zellen wirkt. Mit den Pfeilen abwärts und aufwärts wird der horizontale Cursur zwischen den Zellen bewegt. Wird dabei die Umschalt-Taste gehalten, werden die Zellen markiert. Mit der Entf-Taste oder Rücktaste wird die nächste oder vorhergehende Zelle gelöscht.UngarischAnfangswertproblem 1. GradesAnfangswertproblem 2. GradesWenn Ihre Berechnung zu lange braucht, ohne dass Sie ein Ergebnis erhalten, können Sie mit dem Menübefehl 'Maxima->Unterbrechen' oder 'Maxima->Maxima neustarten' die Berechnung abrechen.BildBild-Dateien (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmSpalten:InfinityInformation über Maxima VersionAnfangswert:Anfangswertproblem (&1) ...Anfangswertproblem (&2) ...EingabemarkenZellen EinfügenNeue &Kapitelzelle Ctrl-3Neue &Textzelle Ctrl-1Zellen einfügen Alt-Shift-CBild einfügenBild einfügen ...Neue &EingabezelleSeitenumbruch einfügenNeue &Unterkapitelzelle Ctrl-4Neue &KapitelzelleNeue &UnterkapitelzelleNeue T&itelzelle Ctrl-2Neue &TextzelleNeue T&itelzelleNeue Zelle für Eingabe einfügenNeue Zelle für Kapitel einfügenNeue Zelle für Unterkapitel einfügenNeue Zelle für Text einfügenNeue Zelle für Titel einfügenSeitenumbruch einfügenBild einfügenIntegral/Summe:IntegrierenIntegrieren nach RischAusdruck integrierenAusdruck mit Risch-Algorithmus integrierenIntegrieren ...UnterbrechenAuswertung abbrechenUngültige Angabe für das Maxima-Programm. Bitte geben Sie den Pfad für das Maxima-Programm erneut ein.Inverse LaplacetransformationInverse Laplacet&ransformation ...ItalienischKursivJapanischZeige Prozentzeichen für spezielle Symbole: %e, %i, usw.KGVVon wxMaxima verwendete Sprache.Sprache:LaplaceLaplace &Transformation ...KGV ...Least-Squares-FitLeast-Squares-Fit ...GrenzwertGrenzwert ...Lineare RegressionListe:LadenPaket ladenEine Maxima Batch-Datei ladenEin Maxima Paket ladenLade Layout aus einer Dateiuntere Schranke:Auf &Matrix abbilden ...&Liste erzeugen ...Eine Liste erzeugenListe aus einem Ausdruck erzeugenSubstitution in einem Ausdruck ausführenAuf Liste abbildenEine Funktion auf Elemente einer Liste anwendenEine Funktion auf Elemente einer Matrix anwendenAutomatisch passende Klammern erzeugenMath. Schriftart:MatrixAuf Matrix abbildenMatrix Name:MatrixMaximaMaxima &Hilfe F1Maxima EingabeMaxima ist beim RechnenMaxima Paket (*.mac)|*.macMaxima Paket (*.mac)|*.mac|Lisp Paket (*.lisp)|*.lisp|Alle|*Maxima wurde beendet.Maxima-Programm:Maxima FragenMaxima gestartet. Warte auf Verbindung ...Maxima verwendet den Operator ':', um Werte zu setzen, z. B. erhält die Variable 'a' den Wert 3 mit 'a : 3'. Der Operator ':=' definiert Funktionen, z. B. 'f(x) := x^2'.Maxima Version: Zweistichprobentest ...Mittelwerttest ...Mittelwerttest ...Mittelwert:MedianZellen verbindenMethode:ModuloName:NeuNeu Ctrl-NNeues Dokumentneuer Wert:Parameter:Nächster Befehl Alt-RunterKeine Übereinstimmung gefunden!Test NormalverteilungKeine gültige Dimension einer Matrix!Keine gültige Anzahl an Gleichungen!Nicht verbunden.Grad Zähler:Anzahl Gleichungen:ZahlenOKalter Wert:Variable:Einstichproben t-TestOnline TutorialsÖffnenZuletzt geöffnetÖffne eine Zelle, wenn Maxima eine Eingabe erwartetDokument öffnenNeues Fenster öffnenDokument öffnenMatrix ladenÖffne DateiOptionenOptionen:Ungültige ZellenAusgabemarkenP&ade-Approximation ...PNG Bild (*.png)|*.png|JPEG Bild (*.jpg)|*.jpg|Windows Bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade-ApproximationPade-Approximation einer TaylorreiheSeitenumbruchWerkzeugleistenParametrischer PlotAusgabe analysierenPartialbruch&zerlegung ...PartialbruchzerlegungTeile des Dokuments werden nicht korrekt geladen!EinfügenEinfügen Ctrl-VAus Zwischenablage einfügenAus Zwischenablage einfügenKreisdiagrammBitte konfigurieren Sie wxMaxima mit 'Bearbeiten->Einstellungen'.Bitte starten Sie wxMaxima neu, um die Änderungen zu aktivieren!Plot &2D ...Plot &3D ...Plot &Format ...2D Plotten2D Plotten ...2D Plotten ...3D Plotten3D Plotten ...3D Plotten ...Plot-FormatIn zwei Dimensionen plottenIn drei Dimensionen plottenPlot in Datei:Punkt:PolnischPolynom 1:Polynom 2:Portugiesisch (Brasilien)Postscript Datei (*.eps)|*.eps|Alle|*GenauigkeitVorheriger Befehl Alt-HochDruckenDokument druckenProduktMatrix laden ...Die Ausgabe von Maxima wird gelesenBereit für BenutzereingabeWiederhole nächsten Befehl der Historie.Wiederhole vorherigen Befehl der Historie.RectformTrigreduceVersucht den Grad von trigonometrischen Ausdrücken zu veringernLösche alle AusgabenLösche alle Ergebnisse der Eingabezellen%d Ersetzungen ausgeführt.Einen Maxima-Fehler berichtenMaxima wird neu gestartetIntegrieren (Ri&sch) ...Nullstellen eines &PolynomsNullstellen eines Polynoms (bfloat)Zeilen:RussischProbe 1:Probe 2:Probe:SpeichernSpeichere Animation ...Speichern alsSpeichern als ... Shift-Ctrl-SBild speichern ...Auswahl als Bild speichernAuswahl als Bild speichern ...Sichere Animation in DateiÄnderungen vor dem Schließen speichern?Änderungen speichern?Dokument speichernDokument speichern alsLayout der Werkzeugleisten sichernLayout der Werkzeugleisten zwischen Sitzungen sichernPlot in Datei speichernAuswahl des Dokumentes in Bild-Datei speichernAuswahl in eine Datei speichernSpeichere Layout in eine DateiOrt und Größe des wxMaxima Fensters speichernOrt und Größe des wxMaxima Fensters zwischen Sitzungen speichernStreudiagrammStreudiagramm ...KapitelKapitelzelleAlles auswählenAlles auswählen Ctrl-AMaxima-Programm auswählenWähle TeilstichprobeEine Konstante auswählen:Alles auswählenAlgorithmus zum Anzeigen von Formeln auswählenMarkieren Sie im Ausgabebereich der Zelle einen Bereich, dann erhalten mit einem Rechts-klick ein Kontextmenü, dass Funktionen zeigt, die auf die Auswahl angewendet werden können.AuswahlReihenReihen ...Server gestartet&Genauigkeit setzen ...VergrößerungLange Gleitkommagenauigkeit setzen ...In Eingabefeldern eine Schrift mit fester Breite verwenden.Das Plot-Format einstellenSetze Vergrößerung auf 100 %Setze Vergrößerung auf 120 %Setze Vergröperung auf 150 %Setze Vergrößerung auf 200 %Setze Vergrößerung auf 300 %Setze Vergrößerung auf 80 %Bestimme Randwerte für das Lösen von GDG mit LaplacetransformationDie aktuelle Restklasse angebenZeige &Definition ...Zeige &FunktionenZeige &Tipp ...Zeige &VariablenZeige die Hilfe von MaximaZeige Muster Ctrl-Shift-KZeige einen TippZeige alle Befehle, die ähnlich sind zu:Zeige ein Beispiel für den Befehl:Zeige ein AnwendungsbeispielZeige ähnliche BefehleZeige definierte FunktionenZeige definierte VariablenZeige die Definition einer FunktionZeige Muster der FunktionAuch sehr lange Ausdrücke anzeigenZeige lange Ausdrücke in wxMaxima Dokument.Zeige die Definition der Funktion:Vereinfachen&Wurzeln vereinfachenWurzelvereinf.TrigsimpAusdruck vereinfachenVereinfache einen Ausdruck mit FakultätenEinen Wurzelausdruck vereinfachenVereinfache einen rationalen AusdruckVereinfache die SummeAusdruck mit Winkelfunktionen vereinfachenSeit wxMaxima 0.8.2 können Sie auch Bilder in ein Dokument einfügen. Nutzen Sie dazu den Menübefehl 'Bearbeiten->Bild einfügen'. Beachten Sie, dass Sie das Dokument als 'wxMaxima XML Dokument' speichern müssen, wenn das Bild mit dem Dokument gesichert werden soll.Lösung:Gleichung lösenLöse &algebraisches System ...Löse &lineares System ...Löse Differentialgleichung ...Gleichung lösen (to_poly_solver) ...Löse DifferentialgleichungGDG mit Lapla&cetransformation lösen ...Löse GDG ...Löse algebraisches SystemAlgebraisches Gleichungssystem lösenRandwertproblem für gewöhnliche DGL zweiten Grades lösenGleichung(en) lösenGleichung(en) mit to_poly_solver lösenAnfangswertproblem einer gewöhnlichen DGL ersten Grades lösenAnfangswertproblem einer gewöhnlichen DGL zweiten Grades lösenLineares System lösenLineares Gleichungssystem lösenEine gewöhnliche DGL von höchstens zweitem Grad lösenGewöhnliche DGL mit Laplacetransformation lösenGleichung lösen ...SpanischBesondere WerteBesondere KonstantenStarte AnimationStarte AnimationStart von Maxima ist fehlgeschlagenMaxima wird gestartet ...Das Starten des Server ist fehlgeschlagenDer Server wird auf Port %d gestartetStatistikStatistik Alt-Shift-SStoppe AnimationZeichenfolgenStilSchriftstileTeilstichprobe ...UnterkapitelUnterkapitelzelleSubstituieren ...SubstituierenSubstituieren ...SummierenSystem InformationTaylorreihe:TellratTextTextzelleHintergrundfarbe TextzellePort für die Kommunikation zwischen Maxima und wxMaxima.Im Internet gibt es viele Quellen zu Maxima und wxMaxima. Besuchen Sie die Website http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials, um weitere Informationen zu erhalten.Die erstellte XML Datei ist fehlerhaft! Bitte berichten Sie dies als Programmfehler.Während des GIF Exports ist ein Fehler aufgetreten! Stellen Sie sicher, dass ImageMagick installiert ist und wxMaxima das Konvertierungsprogramm finden kann.Startpunkte:wie oft:Tipps sind leider nicht verfügbar!TitelTitelzelleTitel-, Kapitel- and Unterkapitelzellen können ausgeblendet werden, um den Inhalt zu verbergen. Mit einen Klick in das linke obere Quadrat der Zelle wird die Zelle ein- oder ausgeblendet. Wird beim Klicken die Umschalt-Taste gehalten, werden alle Ebenen unterhalb der Zelle ebenfalls ein- oder ausgeblendet.Als &lange GleitkommazahlLetztes Ergebnis als GleitkommazahlLetztes Ergebnis als GleitkommazahlUm in Polarkoordinaten zu plotten, können Sie im Eingabefeld 'Optionen' des Dialogs '2D Plotten' die Option 'set polar' auswählen. Entsprechend können Sie im Dialog '3D Plotten' zylindrische und sperische Koordinaten für den Plot auswählen.Sie können Klammern um einen Ausdruck einfügen, indem Sie diesen markieren und dann entweder '(' oder ')' drücken, je nach dem wo der Cursor nach der Eingabe stehen soll.Im Dialog 'Bearbeiten->Einstellungen' können Sie angeben, ob Ort und Größe des wxMaxima Fensters gespeichert werden sollen.Beginnen Sie die Arbeit mit wxMaxima einfach mit einer ersten Eingabe. Es erscheint dann automatisch die erste Eingabezelle. Mit dem Tastenbefehl 'Umschalt-Eingabe' wird Ihre Eingabe von Maxima ausgewertet.bis:&Algebraic ein/ausFlag &numer ein/aus&Zeitanzeige ein/ausSchalte das Flag algebraic ein oder aus.Ganzer Bildschirm ein-/ausschaltenNumerisches Berechnen ein/ausSymbolleiste Alt-Shift-TWerkzeugleiste IconsÜbersetzt vonEine Matrix transponierenTutorialsZweistichproben t-TestGestalt:UkrainischUnterstrichen&Rückgängig Ctrl-ZLetzte Änderung rückgängig machenUnicode UnterstützungAktualisierungobere Schranke:Verwende Gosper-AlgorithmusZentrierter Punkt als Zeichen für MultiplikationBenutze jsMath SchriftartWert:Variable(n):Variable:VariablenVariablen:VarianzWarnungWillkommen bei wxMaximaWerden Funktionen mit einem Argument von einem Menu ausgewählt, ist das Standardargument '%'. Wollen Sie die Funktion auf einen anderen Wert anwenden, können Sie diesen im Dokument markieren und dann den Menübefehl ausführen.Breite:Beim Öffnen einer Klammer wird automatisch eine schließende Klammer erzeugt.Geschrieben vonMaxima speichert die Ergebnisse aller Auswertungen ab. Das letzte Ergebnis wird mit der Variable '%' abgerufen. Auf vorhergehende Ergebnisse kann mit den Marken '%on' zurückgegriffen werden, wobei n die Nummer des Ergebnisse ist.Mit dem Menübefehl 'Bearbeiten->Zelle->Alle Zellen neu auswerten' oder dem entsprechenden Tastenkürzel können Sie das ganze Dokument neu berechnen. Die Zellen werden nacheinander in der Reihenfolge berechnet, wie sie im Dokument erscheinen.Sie erhalten Hilfe zu einer Maxima Funktion, indem Sie die Funktion im Dokument markieren oder doppel-klicken und dann F1 drücken. wxMaxima öffnet das Maxima Manual und sucht im Index den markierten Begriff.Durch einen Klick in das linke obere Dreieck einer Zelle, könnnen Sie den Ausgabebereich der Zelle ausblenden. Das funktioniert auch für Textzellen.Sie können verschiedene Zelltypen in ein wxMaxima Dokument einfügen. Diese Typen finden Sie im Menü unter 'Bearbeiten->Zelle'. Beachten Sie, dass nur Eingabezellen von Maxima ausgewertet werden. Die anderen Zelltypen dienen dazu, das wxMaxima Dokument zu strukturieren und mit Kommentaren zu versehen.Sie können mehrere Zellen mit der Maus oder der Tastur auswählen. Ziehen Sie dazu mit links geklickte Maus über die linken Zellklammern oder halten Sie 'Umschalt-Taste' fest und bewegen sich mit dem Cursor über die auszuwählenden Zellen. Dies ist nützlich, wenn Sie mehrere Zellen auf einmal löschen oder auswerten wollen.Sie nutzen Version %s. Die aktuelle Version ist %s- Wählen Sie OK, um die wxMaxima Homepage zu besuchen.Nicht gespeicherte Änderungen gehen verloren.Ihre wxMaxima Version ist aktuell.Ver&größern Alt-IVerk&leinern Alt-OZoom in Schritten von 10 %Zoom in Schritten von 10 %Vergrößerung gesetzt auf [ nicht gespeichert ][ nicht gespeichert* ]schiefsymmetrischbeide SeitenStandarddiagonalallgemeineingebettetlinksZeilen ausgeblendetLogarithmische SkalaMatrixneinrechtssymmetrischnicht gespeichertunbenanntunbenannt %dwxMaximawxMaxima %s wxMaxima KonfigurationwxMaxima konnte Maxima nicht finden! Konfigurieren Sie wxMaxima mit 'Bearbeiten->Einstellungen'. Danach starten Sie Maxima mit 'Maxima->Maxima neustarten'.wxMaxima konnte die Hilfedateien nicht finden. Bitte überprüfen Sie die Installation.wxMaxima konnte die Dateien mit den Hinweisen nicht finden. Bitte überprüfen Sie die Installation.wxMaxima konnte den Server nicht starten. Stellen Sie sicher, dass Sie Netzwerkunterstützung aktiviert haben und probieren Sie es erneut!Dialoge in wxMaxima haben oft Standardeinträge in den Eingabefeldern, wie zum Beispiel '%' für das letzte Ergebnis. Haben Sie im Dokument einen Bereich markiert, wird dieser als Standardwert in das Eingabefeld übernommen.wxMaxima DokumentwxMaxima Dokument (*.wxm)|*.wxm|wxMaxima XML Dokument (*.wxmx)|*.wxmx|Maxima Batch-Datei (*.mac)|*.mac|Alle|*wxMaxima Dokument (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima hat einen Fehler beim Laden festgestelltwxMaxima IconwxMaxima ist eine wxWidgets basierte Bedienoberfläche für das Computer Algebra System Maxima.wxMaxima ist eine wxWidgets basierte Bedienoberfläche für das Computer Algebra System Maxima.jawxMaxima-13.04.2/locales/de.po000644 000765 000024 00000263541 11705765322 016457 0ustar00andrejstaff000000 000000 # translation of de.po to german # This file was written by Harald Geyer in 2005. # This file is released to the public domain. # msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2007-07-23 12:53+0200\n" "Last-Translator: Dieter Kaiser \n" "Language-Team: german \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode Unterstützung: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Maxima Version: " #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Nicht mit Maxima verbunden!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "Nicht verbunden." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << Ausdruck zu lang, um angezeigt zu werden! >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " wurde mit einer aktuelleren wxMaxima Version gespeichert. Die Datei wird " "möglicherweise nicht korrekt geladen. Bitte aktualisieren Sie wxMaxima." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" " wurde mit einer aktuelleren wxMaxima Version gespeichert. Bitte " "aktualisieren Sie wxMaxima." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "&Algebra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "&Auf Liste anwenden ..." #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&Apropos ..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "&Batch-Datei laden ...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "&Randwertproblem ..." #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Fehler &berichten" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "&Rechnen" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "&Kanonische Form" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "&Charakteristisches Polynom ..." #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Speicher löschen" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "Fakultäten &kombinieren" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "&Komplexe Ausdrücke" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "&Kettenbruch" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "&Kopieren\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "&Bestimmtes Integral" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "Als &Winkelfunktionen" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Determinante" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Differenzieren ..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Bearbeiten" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "Variable &eliminieren ..." #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "Matrix &eingeben ..." #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "B&eispiel ..." #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "Ausdruck &expandieren" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "Winkelfunktionen &expandieren" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "Als &Expontialfunktionen" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "E&xportieren ..." #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "Ausdruck &faktorisieren" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Datei" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "Numerische &Nullstelle ..." #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "Matrix erzeu&gen ..." #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "&GGT ..." #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "&Hilfe" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Integrieren ..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "Unter&brechen\tCtrl-." #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "Unter&brechen\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "Matrix &invertieren" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Paket &laden ...\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "Auf Liste ab&bilden ..." #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Setze &Modulo ..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Neu\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "&Numerisch" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "&Numerische Integration" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Gosper" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Öffnen\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Öffnen ...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Plotten" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "&Potenzreihe" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "Drucken ...\tCtrl-P" # frei #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&rational" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "Winkelfunktionen &reduzieren" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Maxima neustarten" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "reelle N&ullstellen eines Polynoms" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "Speichern\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "&Vereinfachen" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "Ausdruck &vereinfachen" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "Fakultäten &vereinfachen" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "Winkelfunktionen &vereinfachen" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "Gleichung lö&sen ..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "Be&sondere Werte" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Taylorreihe" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "Matrix &transponieren" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "&Winkelfunktionen vereinfachen" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&Farbe nach Höhe" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Standardsprache verwenden)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- Infinity" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Seit wxMaxima 0.8.0 steht ein horizontaler Cursor zur Verfügung, der " "zwischen den Zellen als eine horizontale Linie erscheint. Der horizontale " "Cursor zeigt an, wo z. B. die nächste neue Zelle eingefügt wird." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Mit wxMaxima 0.8.2 wurde ein neues Format für Dokumente eingeführt. Dieses " "sichert nicht nur die Eingaben, sondern auch die Ergebnisse der " "Berechnungen. Wenn Sie Ihr Dokument speichern, können Sie dazu das Format " "'wxMaxima XML Dokument auswählen." #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "Rand&bedingung setzen ..." #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "Info" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "Information über wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Klammern aktive Zelle" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Ad&jungierte Matrix" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Algebraische Gleichheit &hinzufügen ..." #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Ein Verzeichnis zum Suchpfad hinzufügen" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Verzeichnis zum Pfad hinzufügen" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Gebe Vereinfacher für rationale Ausdrücke eine Gleichung" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Zum &Pfad hinzufügen ..." #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Zusätzliche Parameter für Maxima (z. B. -l clisp)." #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Zusätzliche Parameter:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Alle|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animation" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Anwenden" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Funktion auf Liste anwenden" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "Apropos" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Array:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "Bildmaterial von" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "Frage nach, wenn Dokumente nicht gespeichert sind" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Randwert" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "Randwertproblem" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "Balkendiagramm" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Batch-Dateien (*.bat)|*.bat|Alle|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Batch-Datei laden" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Fett" #: ../src/wxMaximaFrame.cpp:1019 msgid "Boxplot..." msgstr "Kursdiagramm" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Ordner Anzeigen" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "&Info über Maxima" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Standardmäßig wird mit 'Umschalt-Eingabe' eine Zelle ausgewertet. Wogegen " "'Eingabe' die Eingabe mehrer Zeilen in einer Zelle erlaubt. Dieses Verhalten " "kann im Dialog 'Bearbeiten->Einstellungen' durch Markierung der Auswahl " "'Eingabe wertet die Zelle aus' geändert werden. Die Funktion der beiden " "Befehle 'Umschalt-Eingabe' und 'Eingabe' wird ausgetauscht." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "Varia&ble ersetzen ..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "&Einstellungen ..." #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "&Produkt berechnen ..." #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Su&mme berechnen ..." #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Letztes Ergebnis als lange Gleitkommazahl" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Letztes Ergebnis als Gleitkommazahl" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Rechne modulo:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Produkte berechnen" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Summen berechnen" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "Keine Verbindung mit dem Webserver." #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "Kann Information zur Version nicht laden." #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Abbrechen" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "Trigrat" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Katalanisch" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "Ze&llen" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Klammern Zelle" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Format &2D Anzeige" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "Wähle ein Format für die 2D Anzeige" #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Variable ersetzen" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Variable in Integral oder Summe ersetzen" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Charakteristisches Polynom" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "Prüfe auf Aktualisierungen" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Prüfen Sie bitte, ob Sie eine aktuelle Version von wxMaxima " "oder Maxima erhalten können." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Chinesisch traditionell" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Schriftart wählen" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Neues Plot-Format eingeben:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "Klassen:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "Schließen\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Schließe Fenster" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Spaltennamen:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Spalten:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Fakultäten in einem Ausdruck kombinieren" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "x-Koordinaten durch Kommata getrennt" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "y-Koordinaten durch Kommata getrennt" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Auswahl auskommentieren" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "Vervollständige Befehl\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Vervollständige Befehl" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Kettenbruch eines Werts berechnen" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Adjungierte Matrix berechnen" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Charakteristisches Polynom einer Matrix berechnen" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Determinante einer Matrix berechnen" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Größten gemeinsamen Teiler berechnen" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Inverse einer Matrix berechnen" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Kleinste gemeinsames Vielfache berechnen (vorher load(functs) ausführen)" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Bedingung:" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Konfigurationsdatei (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Konfigurationswarnung" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "wxMaxima Konfigurieren" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Konstante" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "L&ogarithmen zusammenfassen" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Ersetze Binomial-, Beta- und Gammafunktionen durch Fakultäten" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Ersetze Binomialfunktionen, Fakultäten und Betafunktionen durch " "Gammafunktionen" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Wandle komplexen Ausdruck in Polardarstellung" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Wandle komplexen Ausdruck in Standarddarstellung" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Exponentialfunktion mit imaginärem Argument in Winkelfunktion umwandeln" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Produkte von Logarithmen in Summe von Logarithmen umwandeln" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Logarithmen von Summen in Produkt von Logarithmen umwandeln" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "In &Fakultäten umwandeln" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "In &Gammafunktionen umwandeln" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "&Polardarstellung" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "&Standarddarstellung" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Wandle trigonometrischen Ausdruck in eine kanonische Form" #: ../src/wxMaximaFrame.cpp:590 msgid "Convert trigonometric functions to exponential form" msgstr "Ersetze Winkelfunktionen durch Exponentialfunktionen" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Kopieren" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Als Bild kopieren" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "LaTeX kopieren" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "Kopiere letzte Eingabe\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Als Bild kopieren" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Als LaTeX kopieren" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Als Text kopieren\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Auswahl kopieren" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Auswahl als Bild kopieren" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Auswahl des Dokumentes als Text kopieren" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Auswahl im LaTeX-Format kopieren" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Neue Zelle mit letzter Eingabe erzeugen." #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Cursor" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Ausschneiden" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "Ausschneiden\tCtrl-x" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Auswahl ausschneiden" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Tschechisch" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Dänisch" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Datenmatrix:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Datendatei (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Daten:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Partialbruchzerlegung" #: ../src/Config.cpp:351 msgid "Default" msgstr "Standard" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Standardschrift:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Standardport:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Löschen" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "F&unktion löschen ..." #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Auswahl löschen" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "V&ariable löschen ..." #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Eine Funktion löschen" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Eine Variable löschen" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Alle Symbole aus dem Speicher löschen" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Lösche die Funktion(en):" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Lösche die Variable(n):" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "Grad Nenner:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Ordnung:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Ableitung:" #: ../src/wxMaximaFrame.cpp:1003 msgid "Deviation..." msgstr "Standardabw." #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Polynome di&vidieren ..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Differenzieren ..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Differenzieren" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Ausdruck differenzieren" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Differenzieren ..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Richtung:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Diskreter Plot" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Zeige Te&X Format" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Darstellungmethode" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Zeige letztes Ergebnis in TeX Format" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Zeige Zeit für die Auswertung an" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Dividiere" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Zelle teilen" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Dividiere Zahlen oder Polynome" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "Wollen Sie Änderungen im Dokument speichern \"" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Dokument" #: ../src/Config.cpp:368 msgid "Document background" msgstr "Hintergrundfarbe Dokument" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "Nicht speichern" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "&Gleichungen" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "B&eenden\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Eigen&vektoren" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Eigen&werte" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Eliminieren" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Eleminiere eine Variable aus einem Gleichungssystem" #: ../src/Config.cpp:243 msgid "English" msgstr "Englisch" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 msgid "Enter Data" msgstr "Matrix eingeben" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Matrix &eingeben ..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Eine Matrix eingeben" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Geben Sie eine Gleichung zum Vereinfachen rationaler Ausdrücke an:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Geben Sie die Variablen durch Beistriche getrennt ein." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "'Eingabe' wertet die Zelle aus" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Matrix eingeben" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Neue Genauigkeit eingeben:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Geben Sie den Pfad zum Maxima Programm an." #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Gleichung %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Gleichung(en):" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Gleichung:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Gleichungen:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Fehler" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Fehler %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Fehler!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "&Noun-Formen auswerten" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Alle Zellen neu auswerten\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "Zelle(n) auswerten" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Aktive oder ausgewählte Zelle(n) auswerten" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Alle Zellen im Dokument auswerten" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Alle Noun-Formen im Ausdruck auswerten" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Beispiel" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Mustertext" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "wxMaxima beenden" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Expandieren" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Trigexpand" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Ausdruck expandieren" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "&Logarithmen expandieren" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Einen Ausdruck expandieren (Ausmultiplizieren und in Terme Aufspalten)" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Trigonometrische Ausdrücke expandieren" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "Exportieren" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Exportiere Dokument als HTML oder pdfLaTex Datei" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "Export als HTML Datei ist fehlgeschlagen!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "Export als TeX Datei ist fehlgeschlagen!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Ausdruck:" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Ausdruck:" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Ausdruck:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Faktorisieren" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Audruck faktorisieren (Komplex)" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Ausdruck faktorisieren" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Einen Ausdruck in ein Produkt von Ausdrücken umwandeln" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Faktorisiere einen Ausdruck in komplexe Zahlen" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Fakultät und &Gamma" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Fataler Fehler" #: ../src/GroupCell.cpp:1263 msgid "Figure %d:" msgstr "Figure %d:" #: ../src/main.cpp:107 msgid "File" msgstr "&Datei" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "Datei nicht gefunden" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "Datei existiert nicht." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Datei:" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Suchen" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "Suchen und Ersetzen\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Grenz&wert suchen ..." #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Minimum suchen ..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Nullstelle suchen ..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Finde das Minimum eines Ausdrucks" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Grenzwert eines Ausdrucks suchen" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Numerisch Lösung einer Gleichung suchen" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Alle Nullstellen eines Polynoms suchen" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Alle Nullstellen eines Polynoms mit langer Gleitkommagenauigkeit suchen" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Suchen und Ersetzen" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Suchen und Ersetzen" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Eigenwerte einer Matrix berechnen" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Eigenvektoren einer Matrix berechnen" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Minimum suchen" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Finde die reellen Nullstellen eines Polynoms" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Nullstelle suchen" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Suchen ..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Schriftart mit fester Breite in Texteingabefeldern" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Schriftart für ein Dokument." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Schriftart für mathematische Zeichen in einem Dokument." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Schriftarten" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Format:" #: ../src/Config.cpp:244 msgid "French" msgstr "Französisch" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "von:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "Ganzer Bildschirm\tAlt-Enter" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Funktion" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Funktionsnamen" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Funktion(en):" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Funktion:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Funktionen zum Vereinfachen komplexer Ausdrücke" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Funktionen zum Vereinfachen von Fakultäten und Gammafunktionen" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Funktionen zum Vereinfachen von trigonometrischen Ausdrücken" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "GGT" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "GIF Bild (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Allgemeine Mathematik" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "Allg. Mathematik\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Matrix erzeugen" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "Matrix aus Ausdruck erzeugen ..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Eine Matrix aus einem 2-dimensionalen Array erzeugen" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Matrix aus lambda-Ausdruck erzeugen" #: ../src/Config.cpp:245 msgid "German" msgstr "Deutsch" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "&Imaginärteil" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Reihen&entwicklung ..." #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Die Laplacetransformation eines Ausdrucks bestimmen" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "&Realteil" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Die inverse Laplacetransformation eines Ausdrucks bestimmen" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Die Taylor- oder Potenzreihe eines Ausdrucks bestimmen" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Imaginärteil eines komplexen Ausdrucks bestimmen" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Realteil eines komplexen Ausdrucks bestimmen" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Griechisch" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Griechische Konstanten" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Gitter:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "HTML Datei (*.html)|*.html|pdfLaTex Datei (*.tex)|*.tex|Alle|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Höhe:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Hilfe" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "Alle verbergen\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Alle Werkzeugleisten ausblenden" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Hervorgehoben" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Histogramm" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Histogramm ..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Historie der letzten Eingaben" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "Historie\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "Der horizontale Cursor arbeitet wie ein normaler Cursor, der jedoch auf " "Zellen wirkt. Mit den Pfeilen abwärts und aufwärts wird der horizontale " "Cursur zwischen den Zellen bewegt. Wird dabei die Umschalt-Taste gehalten, " "werden die Zellen markiert. Mit der Entf-Taste oder Rücktaste wird die " "nächste oder vorhergehende Zelle gelöscht." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Ungarisch" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "Anfangswertproblem 1. Grades" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "Anfangswertproblem 2. Grades" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Wenn Ihre Berechnung zu lange braucht, ohne dass Sie ein Ergebnis erhalten, " "können Sie mit dem Menübefehl 'Maxima->Unterbrechen' oder 'Maxima->Maxima " "neustarten' die Berechnung abrechen." #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Bild" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Bild-Dateien (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "Spalten:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Infinity" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Information über Maxima Version" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Anfangswert:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Anfangswertproblem (&1) ..." #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Anfangswertproblem (&2) ..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Eingabemarken" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Zellen Einfügen" #: ../src/wxMaximaFrame.cpp:302 msgid "Insert &Section Cell\tCtrl-3" msgstr "Neue &Kapitelzelle\tCtrl-3" #: ../src/wxMaximaFrame.cpp:298 msgid "Insert &Text Cell\tCtrl-1" msgstr "Neue &Textzelle\tCtrl-1" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "Zellen einfügen\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Bild einfügen" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "Bild einfügen ..." #: ../src/wxMaximaFrame.cpp:296 msgid "Insert Input &Cell" msgstr "Neue &Eingabezelle" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Page Break" msgstr "Seitenumbruch einfügen" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Neue &Unterkapitelzelle\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Neue &Kapitelzelle" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Neue &Unterkapitelzelle" #: ../src/wxMaximaFrame.cpp:300 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Neue T&itelzelle\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Neue &Textzelle" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Neue T&itelzelle" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Neue Zelle für Eingabe einfügen" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Neue Zelle für Kapitel einfügen" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Neue Zelle für Unterkapitel einfügen" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Neue Zelle für Text einfügen" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Neue Zelle für Titel einfügen" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Seitenumbruch einfügen" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Bild einfügen" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Integral/Summe:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Integrieren" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Integrieren nach Risch" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Ausdruck integrieren" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Ausdruck mit Risch-Algorithmus integrieren" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Integrieren ..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Unterbrechen" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Auswertung abbrechen" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Ungültige Angabe für das Maxima-Programm.\n" "\n" "Bitte geben Sie den Pfad für das Maxima-Programm erneut ein." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Inverse Laplacetransformation" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "Inverse Laplacet&ransformation ..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italienisch" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Kursiv" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Japanisch" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Zeige Prozentzeichen für spezielle Symbole: %e, %i, usw." #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "KGV" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Von wxMaxima verwendete Sprache." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Sprache:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "Laplace &Transformation ..." #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "KGV ..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Least-Squares-Fit" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Least-Squares-Fit ..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Grenzwert" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Grenzwert ..." #: ../src/wxMaximaFrame.cpp:1010 msgid "Linear Regression..." msgstr "Lineare Regression" #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Liste:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Laden" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Paket laden" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Eine Maxima Batch-Datei laden" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Ein Maxima Paket laden" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Lade Layout aus einer Datei" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "untere Schranke:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Auf &Matrix abbilden ..." #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "&Liste erzeugen ..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Eine Liste erzeugen" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Liste aus einem Ausdruck erzeugen" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Substitution in einem Ausdruck ausführen" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Auf Liste abbilden" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Eine Funktion auf Elemente einer Liste anwenden" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Eine Funktion auf Elemente einer Matrix anwenden" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Automatisch passende Klammern erzeugen" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Math. Schriftart:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Matrix" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Auf Matrix abbilden" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Matrix Name:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Matrix" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "Maxima &Hilfe\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Maxima Eingabe" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima ist beim Rechnen" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Maxima Paket (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Maxima Paket (*.mac)|*.mac|Lisp Paket (*.lisp)|*.lisp|Alle|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Maxima wurde beendet." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Maxima-Programm:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Maxima Fragen" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima gestartet. Warte auf Verbindung ..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima verwendet den Operator ':', um Werte zu setzen, z. B. erhält die " "Variable 'a' den Wert 3 mit 'a : 3'. Der Operator ':=' definiert " "Funktionen, z. B. 'f(x) := x^2'." #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Maxima Version: " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "Zweistichprobentest ..." #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "Mittelwerttest ..." #: ../src/wxMaximaFrame.cpp:1000 msgid "Mean..." msgstr "Mittelwerttest ..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Mittelwert:" #: ../src/wxMaximaFrame.cpp:1001 msgid "Median..." msgstr "Median" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Zellen verbinden" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Methode:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Modulo" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Name:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "Neu" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "Neu\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 msgid "New document" msgstr "Neues Dokument" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "neuer Wert:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Parameter:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "Nächster Befehl\tAlt-Runter" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "Keine Übereinstimmung gefunden!" #: ../src/wxMaximaFrame.cpp:1009 msgid "Normality Test..." msgstr "Test Normalverteilung" #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "Keine gültige Dimension einer Matrix!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "Keine gültige Anzahl an Gleichungen!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "Nicht verbunden." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "Grad Zähler:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Anzahl Gleichungen:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Zahlen" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "alter Wert:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Variable:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "Einstichproben t-Test" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Online Tutorials" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Öffnen" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Zuletzt geöffnet" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "Öffne eine Zelle, wenn Maxima eine Eingabe erwartet" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Dokument öffnen" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Neues Fenster öffnen" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Dokument öffnen" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "Matrix laden" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Öffne Datei" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Optionen" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Optionen:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Ungültige Zellen" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Ausgabemarken" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "P&ade-Approximation ..." #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "PNG Bild (*.png)|*.png|JPEG Bild (*.jpg)|*.jpg|Windows Bitmap (*.bmp)|*.bmp|" "X pixmap (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Pade-Approximation" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Pade-Approximation einer Taylorreihe" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Seitenumbruch" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "Werkzeugleisten" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Parametrischer Plot" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Ausgabe analysieren" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "Partialbruch&zerlegung ..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Partialbruchzerlegung" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "Teile des Dokuments werden nicht korrekt geladen!" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Einfügen" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "Einfügen\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Aus Zwischenablage einfügen" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Aus Zwischenablage einfügen" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "Kreisdiagramm" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Bitte konfigurieren Sie wxMaxima mit 'Bearbeiten->Einstellungen'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Bitte starten Sie wxMaxima neu, um die Änderungen zu aktivieren!" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "Plot &2D ..." #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "Plot &3D ..." #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "Plot &Format ..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "2D Plotten" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "2D Plotten ..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "2D Plotten ..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "3D Plotten" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "3D Plotten ..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "3D Plotten ..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Plot-Format" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "In zwei Dimensionen plotten" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "In drei Dimensionen plotten" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Plot in Datei:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Punkt:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polnisch" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Polynom 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Polynom 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portugiesisch (Brasilien)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Postscript Datei (*.eps)|*.eps|Alle|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Genauigkeit" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "Vorheriger Befehl\tAlt-Hoch" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Drucken" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Dokument drucken" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Produkt" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "Matrix laden ..." #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Die Ausgabe von Maxima wird gelesen" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Bereit für Benutzereingabe" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "Wiederhole nächsten Befehl der Historie." #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "Wiederhole vorherigen Befehl der Historie." #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Rectform" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Trigreduce" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Versucht den Grad von trigonometrischen Ausdrücken zu veringern" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "Lösche alle Ausgaben" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Lösche alle Ergebnisse der Eingabezellen" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "%d Ersetzungen ausgeführt." #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Einen Maxima-Fehler berichten" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Maxima wird neu gestartet" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Integrieren (Ri&sch) ..." #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Nullstellen eines &Polynoms" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Nullstellen eines Polynoms (bfloat)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Zeilen:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Russisch" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Probe 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Probe 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Probe:" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Speichern" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Speichere Animation ..." #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Speichern als" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Speichern als ...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Bild speichern ..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Auswahl als Bild speichern" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "Auswahl als Bild speichern ..." #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Sichere Animation in Datei" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "Änderungen vor dem Schließen speichern?" #: ../src/wxMaxima.cpp:4432 msgid "Save changes?" msgstr "Änderungen speichern?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Dokument speichern" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Dokument speichern als" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Layout der Werkzeugleisten sichern" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Layout der Werkzeugleisten zwischen Sitzungen sichern" #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Plot in Datei speichern" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Auswahl des Dokumentes in Bild-Datei speichern" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Auswahl in eine Datei speichern" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Speichere Layout in eine Datei" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Ort und Größe des wxMaxima Fensters speichern" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Ort und Größe des wxMaxima Fensters zwischen Sitzungen speichern" #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "Streudiagramm" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "Streudiagramm ..." #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Kapitel" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Kapitelzelle" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Alles auswählen" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "Alles auswählen\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Maxima-Programm auswählen" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "Wähle Teilstichprobe" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Eine Konstante auswählen:" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Alles auswählen" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Algorithmus zum Anzeigen von Formeln auswählen" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Markieren Sie im Ausgabebereich der Zelle einen Bereich, dann erhalten mit " "einem Rechts-klick ein Kontextmenü, dass Funktionen zeigt, die auf die " "Auswahl angewendet werden können." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Auswahl" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Reihen" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Reihen ..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Server gestartet" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "&Genauigkeit setzen ..." #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Vergrößerung" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Lange Gleitkommagenauigkeit setzen ..." #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "In Eingabefeldern eine Schrift mit fester Breite verwenden." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Das Plot-Format einstellen" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Setze Vergrößerung auf 100 %" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Setze Vergrößerung auf 120 %" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Setze Vergröperung auf 150 %" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Setze Vergrößerung auf 200 %" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Setze Vergrößerung auf 300 %" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Setze Vergrößerung auf 80 %" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "Bestimme Randwerte für das Lösen von GDG mit Laplacetransformation" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Die aktuelle Restklasse angeben" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Zeige &Definition ..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Zeige &Funktionen" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Zeige &Tipp ..." #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Zeige &Variablen" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Zeige die Hilfe von Maxima" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "Zeige Muster\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Zeige einen Tipp" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Zeige alle Befehle, die ähnlich sind zu:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Zeige ein Beispiel für den Befehl:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Zeige ein Anwendungsbeispiel" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Zeige ähnliche Befehle" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Zeige definierte Funktionen" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Zeige definierte Variablen" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Zeige die Definition einer Funktion" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "Zeige Muster der Funktion" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Auch sehr lange Ausdrücke anzeigen" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Zeige lange Ausdrücke in wxMaxima Dokument." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Zeige die Definition der Funktion:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Vereinfachen" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "&Wurzeln vereinfachen" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Wurzelvereinf." #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Trigsimp" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Ausdruck vereinfachen" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Vereinfache einen Ausdruck mit Fakultäten" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Einen Wurzelausdruck vereinfachen" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Vereinfache einen rationalen Ausdruck" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Vereinfache die Summe" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Ausdruck mit Winkelfunktionen vereinfachen" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Seit wxMaxima 0.8.2 können Sie auch Bilder in ein Dokument einfügen. Nutzen " "Sie dazu den Menübefehl 'Bearbeiten->Bild einfügen'. Beachten Sie, dass Sie " "das Dokument als 'wxMaxima XML Dokument' speichern müssen, wenn das Bild mit " "dem Dokument gesichert werden soll." #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Lösung:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Gleichung lösen" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Löse &algebraisches System ..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Löse &lineares System ..." #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Löse Differentialgleichung ..." #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Gleichung lösen (to_poly_solver) ..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Löse Differentialgleichung" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "GDG mit Lapla&cetransformation lösen ..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Löse GDG ..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Löse algebraisches System" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Algebraisches Gleichungssystem lösen" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Randwertproblem für gewöhnliche DGL zweiten Grades lösen" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Gleichung(en) lösen" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Gleichung(en) mit to_poly_solver lösen" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Anfangswertproblem einer gewöhnlichen DGL ersten Grades lösen" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Anfangswertproblem einer gewöhnlichen DGL zweiten Grades lösen" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Lineares System lösen" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Lineares Gleichungssystem lösen" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Eine gewöhnliche DGL von höchstens zweitem Grad lösen" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Gewöhnliche DGL mit Laplacetransformation lösen" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Gleichung lösen ..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Spanisch" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Besondere Werte" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Besondere Konstanten" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Starte Animation" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Starte Animation" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Start von Maxima ist fehlgeschlagen" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Maxima wird gestartet ..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Das Starten des Server ist fehlgeschlagen" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Der Server wird auf Port %d gestartet" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Statistik" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "Statistik\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Stoppe Animation" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Zeichenfolgen" #: ../src/Config.cpp:99 msgid "Style" msgstr "Stil" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Schriftstile" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "Teilstichprobe ..." #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Unterkapitel" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Unterkapitelzelle" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "Substituieren ..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Substituieren" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Substituieren ..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Summieren" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "System Information" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Taylorreihe:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Text" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Textzelle" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Hintergrundfarbe Textzelle" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Port für die Kommunikation zwischen Maxima und wxMaxima." #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Im Internet gibt es viele Quellen zu Maxima und wxMaxima. Besuchen Sie die " "Website http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials, um weitere " "Informationen zu erhalten." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Die erstellte XML Datei ist fehlerhaft!\n" "\n" "Bitte berichten Sie dies als Programmfehler." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Während des GIF Exports ist ein Fehler aufgetreten!\n" "Stellen Sie sicher, dass ImageMagick installiert ist und wxMaxima das " "Konvertierungsprogramm finden kann." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Startpunkte:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "wie oft:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Tipps sind leider nicht verfügbar!" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Titel" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Titelzelle" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Titel-, Kapitel- and Unterkapitelzellen können ausgeblendet werden, um den " "Inhalt zu verbergen. Mit einen Klick in das linke obere Quadrat der Zelle " "wird die Zelle ein- oder ausgeblendet. Wird beim Klicken die Umschalt-Taste " "gehalten, werden alle Ebenen unterhalb der Zelle ebenfalls ein- oder " "ausgeblendet." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "Als &lange Gleitkommazahl" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "Letztes Ergebnis als Gleitkommazahl" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "Letztes Ergebnis als Gleitkommazahl" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Um in Polarkoordinaten zu plotten, können Sie im Eingabefeld 'Optionen' des " "Dialogs '2D Plotten' die Option 'set polar' auswählen. Entsprechend können " "Sie im Dialog '3D Plotten' zylindrische und sperische Koordinaten für den " "Plot auswählen." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Sie können Klammern um einen Ausdruck einfügen, indem Sie diesen markieren " "und dann entweder '(' oder ')' drücken, je nach dem wo der Cursor nach der " "Eingabe stehen soll." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Im Dialog 'Bearbeiten->Einstellungen' können Sie angeben, ob Ort und Größe " "des wxMaxima Fensters gespeichert werden sollen." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Beginnen Sie die Arbeit mit wxMaxima einfach mit einer ersten Eingabe. Es " "erscheint dann automatisch die erste Eingabezelle. Mit dem Tastenbefehl " "'Umschalt-Eingabe' wird Ihre Eingabe von Maxima ausgewertet." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "bis:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "&Algebraic ein/aus" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Flag &numer ein/aus" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "&Zeitanzeige ein/aus" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Schalte das Flag algebraic ein oder aus." #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Ganzer Bildschirm ein-/ausschalten" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Numerisches Berechnen ein/aus" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "Symbolleiste\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "Werkzeugleiste Icons" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Übersetzt von" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Eine Matrix transponieren" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "Tutorials" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "Zweistichproben t-Test" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Gestalt:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ukrainisch" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Unterstrichen" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "&Rückgängig\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Letzte Änderung rückgängig machen" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Unicode Unterstützung" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "Aktualisierung" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "obere Schranke:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Verwende Gosper-Algorithmus" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Zentrierter Punkt als Zeichen für Multiplikation" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Benutze jsMath Schriftart" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Wert:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Variable(n):" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Variable:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Variablen" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Variablen:" #: ../src/wxMaximaFrame.cpp:1002 msgid "Variance..." msgstr "Varianz" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Warnung" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Willkommen bei wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Werden Funktionen mit einem Argument von einem Menu ausgewählt, ist das " "Standardargument '%'. Wollen Sie die Funktion auf einen anderen Wert " "anwenden, können Sie diesen im Dokument markieren und dann den Menübefehl " "ausführen." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Breite:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Beim Öffnen einer Klammer wird automatisch eine schließende Klammer erzeugt." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Geschrieben von" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Maxima speichert die Ergebnisse aller Auswertungen ab. Das letzte Ergebnis " "wird mit der Variable '%' abgerufen. Auf vorhergehende Ergebnisse kann mit " "den Marken '%on' zurückgegriffen werden, wobei n die Nummer des Ergebnisse " "ist." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Mit dem Menübefehl 'Bearbeiten->Zelle->Alle Zellen neu auswerten' oder dem " "entsprechenden Tastenkürzel können Sie das ganze Dokument neu berechnen. Die " "Zellen werden nacheinander in der Reihenfolge berechnet, wie sie im Dokument " "erscheinen." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Sie erhalten Hilfe zu einer Maxima Funktion, indem Sie die Funktion im " "Dokument markieren oder doppel-klicken und dann F1 drücken. wxMaxima öffnet " "das Maxima Manual und sucht im Index den markierten Begriff." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Durch einen Klick in das linke obere Dreieck einer Zelle, könnnen Sie den " "Ausgabebereich der Zelle ausblenden. Das funktioniert auch für Textzellen." #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Sie können verschiedene Zelltypen in ein wxMaxima Dokument einfügen. Diese " "Typen finden Sie im Menü unter 'Bearbeiten->Zelle'. Beachten Sie, dass nur " "Eingabezellen von Maxima ausgewertet werden. Die anderen Zelltypen dienen " "dazu, das wxMaxima Dokument zu strukturieren und mit Kommentaren zu versehen." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Sie können mehrere Zellen mit der Maus oder der Tastur auswählen. Ziehen Sie " "dazu mit links geklickte Maus über die linken Zellklammern oder halten Sie " "'Umschalt-Taste' fest und bewegen sich mit dem Cursor über die " "auszuwählenden Zellen. Dies ist nützlich, wenn Sie mehrere Zellen auf einmal " "löschen oder auswerten wollen." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Sie nutzen Version %s. Die aktuelle Version ist %s-\n" "\n" "Wählen Sie OK, um die wxMaxima Homepage zu besuchen." #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "Nicht gespeicherte Änderungen gehen verloren." #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "Ihre wxMaxima Version ist aktuell." #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Ver&größern\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "Verk&leinern\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Zoom in Schritten von 10 %" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Zoom in Schritten von 10 %" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Vergrößerung gesetzt auf " #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ nicht gespeichert ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ nicht gespeichert* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "schiefsymmetrisch" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "beide Seiten" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "Standard" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonal" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "allgemein" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "eingebettet" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "links" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "Zeilen ausgeblendet" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "Logarithmische Skala" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "Matrix" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "nein" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "rechts" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "symmetrisch" #: ../src/wxMaxima.cpp:4403 msgid "unsaved" msgstr "nicht gespeichert" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "unbenannt" #: ../src/main.cpp:182 msgid "untitled %d" msgstr "unbenannt %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "wxMaxima Konfiguration" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima konnte Maxima nicht finden!\n" "\n" "Konfigurieren Sie wxMaxima mit 'Bearbeiten->Einstellungen'.\n" "Danach starten Sie Maxima mit 'Maxima->Maxima neustarten'." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima konnte die Hilfedateien nicht finden.\n" "\n" "Bitte überprüfen Sie die Installation." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima konnte die Dateien mit den Hinweisen nicht finden.\n" "\n" "Bitte überprüfen Sie die Installation." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima konnte den Server nicht starten.\n" "\n" "Stellen Sie sicher, dass Sie Netzwerkunterstützung\n" "aktiviert haben und probieren Sie es erneut!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "Dialoge in wxMaxima haben oft Standardeinträge in den Eingabefeldern, wie " "zum Beispiel '%' für das letzte Ergebnis. Haben Sie im Dokument einen " "Bereich markiert, wird dieser als Standardwert in das Eingabefeld übernommen." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "wxMaxima Dokument" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "wxMaxima Dokument (*.wxm)|*.wxm|wxMaxima XML Dokument (*.wxmx)|*.wxmx|Maxima " "Batch-Datei (*.mac)|*.mac|Alle|*" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "wxMaxima Dokument (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima hat einen Fehler beim Laden festgestellt" #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "wxMaxima Icon" #: ../src/wxMaxima.cpp:3355 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima ist eine wxWidgets basierte Bedienoberfläche für das Computer " "Algebra System Maxima." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima ist eine wxWidgets basierte Bedienoberfläche für das Computer " "Algebra System Maxima." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "ja" #~ msgid "&Cell" #~ msgstr "&Zelle" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Neues Fenster\tCtrl-N" #~ msgid "Close document?" #~ msgstr "Dokument schließen?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Dokument nicht gespeichert!\n" #~ "\n" #~ "Aktuelles Dokument schließen und alle Änderungen verlieren?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Dokument nicht gespeichert!\n" #~ "\n" #~ "wxMaxima beenden und alle Änderungen verlieren?" #~ msgid "Maxima options" #~ msgstr "Maxima Optionen" #~ msgid "Quit?" #~ msgstr "Beenden?" #~ msgid "wxMaxima options" #~ msgstr "wxMaxima Optionen" #~ msgid "Mean" #~ msgstr "Mittelwert" wxMaxima-13.04.2/locales/el.mo000644 000765 000024 00000217427 11710501376 016457 0ustar00andrejstaff000000 000000 |-<)<<<<=&=g?=J=== >>/> J> V>`>p> >>>> >> > ??(?.?E? V?b?u?? ??? ???? @@#@5@D@\@l@t@ @@@@ @@@ @@ A A!A1A MA ZAdAyAA AAAAAAA B B+BB CCCCDD1DPD'aDD1DDD DDDEE E+E4E8E VEaEfE mEyEiF }FFF+F(FGG+G":G]GdG sGG;GG"G H H2HQH eHqH zHH#HHHHI I%$IJI1eI#I#II@I @JKJeJ{JJJ8JAJ(&K'OKHwK1K1K$L;LMLcL>xLL L LL L L M&M(5M$^M,M%MMM M MMN N1NFN0LN}N N NNNNNNNO#O7O KOWO ^OjOO OOO O OOOO P?P FPRP pPzP P P P P P/PPQQ."Q(QQzQ QQ(QQ Q Q Q RRR"R)R>RXR#iR"R%RR R RR S SS0SESeS*lSSS SS SSSTT(-TVT lTxT}T&TTT TTT T/T&U)DUnU'UUUUU VV ?VIVQV"mV5VVVVVVVW W W$&W7KW3WWW WWW" X,,X*YXXXX+XX3X,Y,JY'wYYYY;YYYZZ(Z :Z DZQZYZmZ M[W[[[~_[[@[%\6\?\W\j\\ \\\ \\\]!]>]U]m] ] ] ]]])] ] ^^Q,^~^^^^^^^ ^^^_)_;_P_V___e_ j_*w___ __ _ _ `#`C`G`^`"w` `` ` ``` ```?a\awaa)aWab+b CbPb Vbbbjbrb xb bbb bb bbcc c &c4cFcWc \chcxc c c cccc ccdc[d%nd dddddd3de %e2eGe1ae3e e eee e f f f f +f7fLf afofvf }f ff#f fffff g g 5g$Vg{g ggggg ghh(h=hZh`h hh rh|hhhhh hhhh i!i2i#Dihi-ziii"i4i *j6jEj Mj Zjejwjjj jjj kkuk |kkkkk kkk ll+l<rb(; W'd] "6Ydt5ٹNE^M..!,P8}Cֻ2PBv  ѽݽ!%)OlCtľh9!ȿ-!>::yB2 &=[d2zdnkk?# C 2<%K/q "& P-c /$22&#Y})"571=i73.B&b)O5M8\@@_R 2@)H5r:=! * 6BQMo3+04$e!;2B0BsR! +!:\u$/!H2[%I'! B!Uw ;064+k" &+4R!(* ,Hfw&s_-|%> :[JyBB8}{|"#:Q*q*! ,4+a!295RoZ=BS;Q8$!]$( (8 HV.k)&7:=<x%*BtI;h7c/St%( $.C'r,KA+m |,$#*{:0## #/#S#w"4@"u'&&4.C,rZPAK7OMDc'6\5d#) X3N4+H< ;9-I%_8Kh#(<dhW6IeAo):#I&m&E@A] +%.DYy+ "*9(S|x 8 LOX Q9-9gW)  74C8x34CB^+4"-B$p 4 = R 4g Z /  ' 1 L ` u  (   s b    _&`DWj*+#=av!%-DS \"h 6Uym4]zRv>KjiV,*X 0cad[TRLV3Y(0M;&E?:W|` R*-(CbCK}Jfa3cT^O7;F_,'B \}Sk1@ @[q/u =S,D$I+gKE_ Z_Zw-NA H5CJ5o#Al]yOG~%yPYV@z dhI/a=M[o2.kU 4UPQ=Q>nx`y<" )L5c#YHi9xe\~wpZ&J.QS6j6O6&brk'%i^{?Gf8u-! .>7Xb%v"2{#;:s{je1G8Rg wU~zp!E"4+:m$NpnBnshl84^rx)Pughovd`$r\qf(? }*9]m7 A +qlI /s!0t<|MWB9N1m|F DT]3'eD< 2z)WXtHFLt wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAt valueBC2Bat files (*.bat)|*.bat|All|*Batch FileBoldBrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.CancelCanonical (tr)Cell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontClasses:Col. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDocument Document backgroundE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert Cell Alt-Shift-CInsert ImageInsert Image...Insert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseLCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean:Merge CellsMethod:ModulusName:New value:New variable:No matches found!Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricuntitledwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: Greek translation of wxMaxima GUI Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2010-06-04 19:46+0200 Last-Translator: aga Language-Team: uth Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Greek X-Poedit-Country: GREECE wxWidgets: %d.%d.%d υποστήριξη Unicode: %s Lisp: Έκδοση Maxima: Δεν υπάρχει σύνδεση με το Maxima! Δεν υπάρχει σύνδεση.<<Πολύ μεγάλη έκφραση για να εμφανιστεί!>>είχε αποθηκευθεί χρησιμοποιώντας μια νεότερη έκδοση του wxMaxima. Έτσι μπορεί να μην φορτωθεί σωστά.Παρακαλώ ενημερώστε το wxMaxima σας.είχε αποθηκευθεί χρησιμοποιώντας μια νεότερη έκδοση του wxMaxima. Παρακαλώ ενημερώστε το wxMaxima σας.ΆλγεβραΕφαρμογή σε λίστα...Σχετικά...Αρχείο Batch... Ctrl-BΠρόβλημα οριακών τιμών...Αναφορά σφάλματοςΜαθηματική ΑνάλυσηΚανονική μορφήΧαρακτηριστικό πολυώνυμο...Εκκαθάριση μνήμηςΣυνδυασμός παραγοντικώνΜιγαδική απλοποίησηΣυνεχή κλάσματαΑντιγραφή Ctrl-CΟρισμένη ολοκλήρωσηΜετατροπή σε τριγωνομετρικές συναρτήσεις (Demoivre)ΟρίζουσαΠαραγώγιση...ΕπεξεργασίαΑπαλοιφή μεταβλητής...Εισαγωγή πίνακα...Παράδειγμα...Ανάπτυξη έκφρασηςΑνάπτυξη τριγωνομετρικών παραστάσεωνΜετατροπή σε εκθετικές συναρτήσειςΕξαγωγή...Παραγοντοποίηση παράστασηςΑρχείοΕύρεση Ρίζας...Δημιουργία πίνακα...Μέγιστος Κοινός Διαιρέτης...ΒοήθειαΟλοκλήρωση...Διακοπή Ctrl-.Διακοπή Ctrl-GΑντιστροφος πίνακαςΦόρτωση πακέτου... Ctrl-LΕφαρμογή στα μέλη λίστας...MaximaΟρισμός του modulo (για rat, κτλ)...Νέο Ctrl-NΑριθμητικοί ΥπολογισμοίΑριθμητική ΟλοκλήρωσηΝusumΆνοιγμα Ctrl-OΆνοιγμα... Ctrl-OΓράφημαΔυναμοσειρέςΕκτύπωση... Ctrl-PΡητός(-ή)Αναγωγή τριγωνομετρικών παραστάσεωνΕπανεκκίνηση MaximaΡίζες πολυωνύμου (πραγματικές)Αποθήκευση Ctrl-SΑπλοποίησηΑπλοποίηση έκφρασηςΑπλοποίηση παραγοντικώνΑπλοποίηση τριγωνομετρικών παραστάσεωνΕπίλυση...ΕιδικόΣειρές TaylorΑνάστροφος πίνακαςΤριγωνομετρική απλοποίησηpm3d(Χρήση Προεπιλεγμένης Γλώσσας)- 'Απειρο
Lisp: Ένας οριζόντιος κέρσορας πρωτοεμφανίστηκε στο wxMaxima 0.8.0. Φαίνεται ως μία οριζόντια γραμμή μεταξύ των κελιών. Υποδεικνύει που θα εμφανιστεί ένα νέο κελί αν γράψετε ή επικολλήσετε κείμενο ή εκτελέσετε μια εντολή.Ένας νέος τύπος αρχείου πρωτοεμφανίστηκε στο wxMaxima 0.8.2 που αποθηκεύει όχι μόνο τις εντολές και το κείμενο των σχολίων, αλλά και τα αποτελέσματα των υπολογισμών. Όταν αποθηκεύετε το αρχείο, επέλεξτε τον τύπο 'wxMaxima XML document' .Ορισμός οριακών τιμών...Πληροφορίες για το wxMaximaΠληροφορίες για το wxMaximaΆγκιστρο ενεργού κελιούΠροσαρτημένος πίνακαςΕισαγωγή αλγεβρικής ισότητας...Προσθήκη καταλόγου στην διαδρομή αναζήτησηςΠροσθήκη καταλόγου στο μονοπάτι:Προσθήκη ισότητας στον απλοποιητή ρητών (παραστάσεων)Προσθήκη στο μονοπάτι...Επιπρόσθετοι παράμετροι για το maxima (π.χ. -l clisp)Επιπρόσθετοι παράμετροι:Όλα|*Εφέ ΚίνησηςΕφαρμογήΕφαρμογή συνάρτησης σε μία λίσταΣχετικάΠίνακας:Υπέυθυνος γραφικώνΟρισμός οριακών τιμώνBC2Αρχεία Bat (*.bat)|*.bat|All|*Αρχείο BatchΈντοναΠλοήγησηΠληροφορίες για το MaximaΕξ'ορισμού το Shift-Enter χρησιμοποιείται για την εκτέλεση εντολών, ενώ το Enter για την εισαγωγή πολλαπλών γραμμών. Αυτή η συμπεριφορά μπορεί να αλλάξει απο το μενού 'Επεξεργασία->Ρυθμίσεις' επιλέγοντας το 'Enter υπολογίζει τα κελιά'. Αυτό εναλλάσει τη λειτουργικότητα των δύο προαναφερθέντων εντολών του πληκτρολογίου.Αλλαγή μεταβλητής...ΡυθμίσειςΥπολογισμός γινομένου...Υπολογισμός αθροίσματος...Υπολογισμός της τιμής του τελευταίου αποτελέσματος με bigfloatΥπολογισμός της τιμής του τελευταίου αποτέλεσματος προσεγγιστικάΥπολογισμοί modulo ακέραιο:Υπολογισμός γινομένωνΥπολογισμος αθροισμάτωνΗ σύνδεση με τον web server δεν ήταν εφικτή.ΑκύρωσηΚανονική μορφή (τρ)Άγκιστρο κελιούΑλλαγή 2-Δ προβολής μαθηματικώνΑλλαγή του 2-Δ αλγορίθμου προβολής που χρησιμοποιείται για την απεικόνιση μαθηματικών αποτελεσμάτωνΑλλαγή μεταβλητήςΑλλαγή μεταβλητής στο ολοκλήρωμα ή στο άθροισμα Χαρακτηριστικό πολυώνυμοΈλεγχος για ενημερώσειςΈλεγχος ύπαρξης νεότερης έκδοσης του wxMaxima/MaximaΚινέζικα παραδοσιακάΕπιλογή γραμματοσειράςΤάξεις:Oνόματα στηλών:Στήλες:Συνδυασμός παραγοντικών σε μια παράστασηΣυντεταγμένες του x χωρισμένες με κόμμαΣυντεταγμένες του y χωρισμένες με κόμμαΕπιλογή ΣχολίωνΣυμπλήρωση Λέξης Ctrl-KΣυμπλήρωση λέξηςΥπολογισμός συνεχούς κλάσματος μιας τιμήςΥπολογισμός του προσαρτημένου πίνακαΥπολογισμός του χαρακτηριστικού πολυωνύμου ενός πίνακαΥπολογισμός ορίζουσας πίνακαΥπολογισμός μέγιστου κοινού διαιρέτηΥπολογισμός αντιστρόφου πίνακαΥπολογισμός του ελαχίστου κοινού πολλαπλασίου (εκτελέστε load(functs) πριν τη χρήση)Συνθήκη:Αρχείο Config (*.ini)|*.iniΠροειδοποίηση ρύθμισηςΡυθμίσεις του wxMaximaΣταθεράΣυστολή λογαρίθμωνΜετατροπή διωνυμικών,συναρτήσεων Βήτα και Γάμμα σε παραγοντικάΜετατροπή διωνύμων, παραγοντικών και Βήτα συναρτήσεων σε Γάμμα συνάρτησηΜετατροπή μιγαδικής παράστασης σε πολική μορφήΜετατροπή μιγαδικών παραστάσεων σε ορθογώνιες συντεταγμένεςΜετατροπή της εκθετικής συνάρτησης φανταστικής μεταβλητής σε τριγωνομετρική μορφήΜετατροπή λογαρίθμου γινομένου σε άθροισμα λογαρίθμωνΜετατροπή αθροίσματος λογαρίθμων σε λογάριθμο γινομένουΜετατροπή σε παραγοντικάΜετατροπή σε ΓάμμαΜετατροπή σε πολική μορφήΜετατροπή σε ορθογώνιες συντεταγμένεςΜετατροπή τριγωνομετρικής παράστασης σε κανονική ημιγραμμική μορφήΑντιγραφήΑντιγραφή ως εικόναΑντιγραφή LaTeXΑντιγραφή προηγούμενης εισαγωγής Ctrl-IΑντιγραφή ως εικόναΑντιγραφή ως LaTeXΑντιγραφή ως κείμενο Ctrl-Shift-CΑντιγραφή επιλογήςΑντιγραφή επιλογής από έγγραφο ως εικόναΑντιγραφή επιλογής από έγγραφο ως κείμενοΑντιγραφή επιλογής από έγγραφο σε μορφή LaTeX Δημιουργία κελιού με την τελευταία εισαγωγήΚέρσοραςΑποκοπήΑποκοπή Ctrl-XΑποκοπή επιλογήςΤσεχικάΔανικάΠίνακας Δεδομένων:Αρχείο δεδομένων (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtΔεδομένα:Ανάλυση ρητής συνάρτησης σε μερικά κλάσματαΠροεπιλεγμένοςΠροεπιλεγμένη γραμματοσειρά:Προεπιλεγμένη θύραΔιαγραφήΔιαγραφή συνάρτησης...Διαγραφή επιλογήςΔιαγραφή μεταβλητής...Διαγραφή μίας συνάρτησηςΔιαγραφή μίας μεταβλητήςΔιαγραφή όλων των τιμών από τη μνήμηΔιαγραφή συνάρτησης(-σεων)Διαγραφή μεταβλητής(-ών):Βαθμός Παρανομαστή:Βάθος:Παράγωγος:Διαίρεση πολυωνύμων...Παραγώγιση...ΠαραγώγισηΠαραγώγιση παράστασηςΠαραγώγιση...Κατεύθυνση:Διακριτή σχεδίαση.Εμφάνιση σε μορφή TeXΑλγόριθμος προβολής μαθηματικώνΕμφάνιση τελευταίου αποτελέσματος σε μορφή TeXΕμφάνιση του χρόνου που απαιτήθηκε για τον υπολογισμόΔιαίρεσηΔιαίρεση κελιούΔιαίρεση αριθμών ή πολυωνύμωνΈγγραφοΦόντο εγγράφουΕξισώσειςΈξοδος Ctrl-QΙδιοδιανύσματαΙδιοτιμέςΑπαλειφήΑπαλειφή μεταβλητής από σύστημα εξισώσεωνΑγγλικάΕισαγωγή πίνακα...Εισαγωγή πίνακαΕισαγωγή εξίσωσης για ρητή απλοποίηση:Εισαγωγή λίστας μεταβλητών χωρισμένες με κόμμαΤο Enter υπολογίζει τα κελιάΕισαγωγή πίνακαΕισαγωγή νέας τιμής ακρίβειας:Εισαγωγή της διαδρομής στο εκτελέσιμο αρχείο του maxima.Έψιλον:Εξίσωση %d:Εξίσωση(-εις):Εξίσωση:Εξισώσεις:ΣφάλμαΣφάλμα %dΣφάλμα!Υπολογισμός ονοματικών μορφώνΥπολογισμός όλων των κελιών Ctrl-RΥπολογισμός κελιού(-ιών)Υπολογισμός ενεργού(-ών) ή επιλεγμένου(-ων) κελιού(-ών)Υπολογισμός όλων των κελιών στο έγγραφοΥπολογισμός όλων των ονοματικών μορφών στην παράστασηΠαράδειγμαΠαράδειγμα κειμένουΈξοδος από το wxMaximaΑνάπτυξηΑνάπτυξη (τρ)Ανάπτυξη παράστασηςΑνάπτυξη λογαρίθμωνΑνάπτυξη μία παράστασηςΑνάπτυξη τριγωνομετρικής παράστασηςΕξαγωγήΕξαγωγή εγγράφου σε HTML ή pdfLaTeX αρχείοΗ εξαγωγή σε HTML απέτυχε!Η εξαγωγή σε TeX απέτυχεΠαράσταση:Παράσταση(-εις):Παράσταση:ΠαραγοντοποίησηΠαραγοντοποίηση παράστασης (Μιγαδική)Παραγοντοποίηση παράστασηςΠαραγοντοποίηση μιας παράστασηςΠαραγοντοποίηση παράστασης σε Γκαουσιανούς αριθμούςΠαραγοντικά και ΓάμμαΟλέθριο σφάλμαΑρχείοΤο αρχείο δεν βρέθηκεΤο αρχείο που προσπαθήσατε να ανοίξετε δεν υπάρχειΑρχείο:Εύρεση Εύρεση Ctrl-FΕύρεση ορίου...Εύρεση ελαχίστου...Εύρεση ρίζας...Εύρεση ενός (μη δεσμευμένου) ελαχίστου μιας παράστασηςΕύρεση ορίου μιας παράστασηςΕύρεση ρίζας μιας εξίσωσης σε ένα διάστημαΕύρεση όλων των ριζών ενός πολυωνύμουΕύρεση όλων των ριζών ενός πολυωνύμου(bfloat)Εύρεση και ΑντικατάστασηΕύρεση και αντικατάστασηΕύρεση ιδιοτιμών πίνακαΕύρεση ιδιοδιανυσμάτων πίνακαΕύρεση ελαχίστουΕύρεση πραγματικών ριζών πολυωνύμουΕύρεση ρίζαςΕύρεση...Σταθερή γραμματοσειρά στον έλεγχο κειμένουΓραμματοσειρά που χρησιμοποιείται για την εμφάνιση στο έγγραφο.Γραμματοσειρά που χρησιμοποιείται για την εμφάνιση των μαθηματικών χαρακτήρων στο έγγραφο.ΓραμματοσειρέςΜορφή:ΓαλλικάΑπό:Πλήρης οθόνη Alt-EnterΣυνάρτησηΟνόματα συναρτήσεωνΣυνάρτηση(-εις):Συνάρτηση:Συναρτήσεις για μιγαδική απλοποίησηΣυναρτήσεις για απλοποίηση παραγοντικών και Γάμμα συναρτήσεωνΣυναρτήσεις για απλοποίηση τριγωνομετρικών παραστάσεωνΜΚΔΕικόνα GIF (*.gif)|*.gifΓενικά ΜαθηματικάΓενικά Μαθηματικά Alt-Shift-MΔημιουργία πίνακαΔημιουργία πίνακα απο παράσταση...Δημιουργία πίνακα από 2-Δ πίνακαΔημιουργία πίνακα από παράσταση lambdaΓερμανικάΕξαγωγή φανταστικού μέρουςΥπολογισμός σειρών...Υπολογισμός μετασχηματισμού Laplace μιας παράστασηςΕξαγωγή πραγματικού μέρουςΥπολογισμός του αντίστροφου μετασχηματισμού Laplace μιας παράστασης"Υπολογισμός σειράς Taylor ή δυναμοσειράς μιας παράστασηςΥπολογισμός φανταστικού μέρους μιας μιγαδικής παράστασηςΥπολογισμός πραγματικού μέρους μιας μιγαδικής παράστασηςΕλληνικάΕλληνικές σταθερέςΠλέγμα:Αρχείο HTML (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Ύψος:ΒοήθειαΑπόκρυψη Όλων Alt-Shift--Απόκρυψη όλων των παλετώνΕπισήμανση (dpart)ΙστόγραμμαΙστόγραμμα...ΙστορικόΙστορικό Alt-Shift-HΟ οριζόντιος κέρσορας λειτουργεί σαν κανονικός κέρσορας,αλλά ενεργεί στα κελιά: (α) πίεστε το πάνω ή το κάτω βέλος για να τον μετακινήσετε, (β) κρατώντας πατημένο το Shift ενώ τον μετακινείτε, επιλέγει κελιά, και (γ) πιέζοντας το backspace ή το delete 2 φορές διαγράφει ένα κελί δίπλα του.ΟυγγρικάIC1IC2Αν ο υπολογισμός σας καθυστερεί πολύ, μπορείτε να δοκιμάσετε τις εντολές του μενού 'Maxima->Διακοπή' ή 'Maxima->Επανεκκίνηση Maxima'.ΕικόναΑρχεία εικόνας (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmΣυμπεριέλαβε τις στήλες:ΆπειροΠληροφορίες για το Maxima buildΑρχικές Εκτιμήσεις:Πρόβλημα αρχικών τιμών (&1)...Πρόβλημα αρχικών τιμών (&2)...Ετικέτες εισαγωγήςΠροσθήκηΠροσθήκη κελιού Alt-Shift-CΠροσθήκη εικόναςΠροσθήκη εικόνας...Προσθήκη νέου κελιού εντολώνΠροσθήκη νέου κελιού ενότηταςΠροσθήκη νέου κελιού υποενότηταςΠροσθήκη νέου κελιού κειμένουΠροσθήκη νέου κελιού τίτλουΠροσθήκη αλλαγής σελίδαςΠροσθήκη εικόναςΟλοκλήρωμα/Άθροισμα:ΟλοκλήρωσηΟλοκλήρωση (risch)Ολοκλήρωση παράστασηςΟλοκλήρωση παράστασης με τον αλγόριθμο Risch Ολοκλήρωση...ΔιακοπήΔιακοπή τρέχοντος υπολογισμούΜη έγκυρη είσοδος για πρόγραμμα maxima . Παρακαλώ δώστε ξανά την διαδρομη για το πρόγραμμα maxima .Αντίστροφος LaplaceΑντίστροφος μετασχηματισμός Laplace...ΙταλικάΠλάγια γραφήΙαπωνικάΕΚΠΓλώσσα που χρησιμοποιείται για το GUI του wxMaximaΓλώσσα:LaplaceΜετασχηματισμός Laplace...Ελάχιστο Κοινό Πολλαπλάσιο...Παρεμβολή ελαχίστων τετραγώνωνΠαρεμβολή ελαχίστων τετραγώνων...ΌριοΌριο...Λίστα:ΦόρτωσηΦόρτωση πακέτουΦόρτωση ένος αρχείου Maxima με την εντολή batch.Φόρτωση αρχείου πακέτου MaximaΦόρτωση στυλ από αρχείοΚάτω φράγμα:Εφαρμογή στα μέλη πίνακα...Δημιουργία λίστας...Δημιουργία λίσταςΔημιουργία λίστας από παράστασηΑντικατάσταση σε παράστασηΑπεικόνισηΕφαρμογή συνάρτησης στα μέλη λίσταςΕφαρμογή συνάρτησης στα μέλη πίνακαΑντιστοίχιση παρενθέσεων σε έλεγχο κειμένουΓραμματοσειρά Μath:ΠίνακαςΑπεικόνιση πίνακαΌνομα πίνακα:Πίνακας:Βοήθεια για το Maxima F1Είσοδος MaximaΤο Maxima κάνει υπολογισμούςΠακέτο Maxima (*.mac)|*.macΠακέτο Maxima(*.mac)|*.mac|πακέτο Lisp (*.lisp)|*.lisp|All|*Η διαδικασία Maxima τερμάτισε.Πρόγραμμα Maxima:Ερωτήσεις για το MaximaΤο Maxima ξεκίνησε. Περιμένει για σύνδεση...Το Maxima χρησιμοποιεί το ‘:’ για απόδοση τιμών σε μεταβλητές ('a : 3;') και το ‘:=’ για ορισμό συναρτήσεων ('f(x) := x^2;').Έκδοση Maxima Τεστ μέσης διαφοράς...Τεστ μέσης τιμής...Μέση τιμή:Συγχώνευση κελιώνΜέθοδος:ModulusΌνομα:Νέα τιμή:Νέα μεταβλητή:Καμμία αντιστοίχιση δεν βρέθηκεΜη έγκυρη διάσταση πίνακα!Μη έγκυρος αριθμός εξισώσεων!Δεν είστε συνδεδεμένοι.Βαθμός Αριθμητή:Αριθμός εξισώσεων:ΑριθμοίΕντάξειΠαλιά τιμή:Παλιά μεταβλητή:t-τεστ ενός δείγματοςOnline διδακτικές παρουσιάσειςΆνοιγμαΆνοιγμα πρόσφατουΆνοιγμα ενός εγγράφουΆνοιγμα νέου παραθύρουΆνοιγμα εγγράφουΆνοιγμα πίνακαΆνοιγμα αρχείουΕπιλογέςΕπιλογές:Μη ενημερωμένα κελιάΕτικέτες εξόδουΠροσέγγιση Pade...Εικόνα PNG (*.png)|*.png| εικόνα JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmΠροσέγγιση Pade...Προσέγγιση Pade σειράς TaylorΑλλαγή σελίδαςΠαλέτεςΠαραμετρικό γράφημαΣυντακτική ανάλυση αποτελέσματοςΜερικά κλάσματα...Μερικά κλάσματαΜέρη του εγγράφου δεν θα φορτωθούν σωστάΕπικόλλησηΕπικόλληση Ctrl-VΕπικόλληση κειμένου από το πρόχειροΕπικόλληση κειμένου από το πρόχειροΠαρακαλώ ρυθμίστε το wxMaxima μεσα απο το μενου 'Επεξεργασία->Ρυθμίσεις'.Παρακαλώ κάντε επανεκκίνηση του wxMaxima για να ενεργοποιηθούν οι αλλαγές!2-Δ γράφημα...3-Δ γράφημα...Μορφή γραφήματος...2-Δ γράφημα2-Δ γράφημα...2-Δ γράφημα...3-Δ γράφημα3-Δ γράφημα...3-Δ γράφημα...Μορφή γραφήματοςΓράφημα σε 2 διαστάσειςΓράφημα σε 3 διαστάσειςΓράφημα σε αρχείο:Σημείο:ΠολωνικάΠολυώνυμο 1:Πολυώνυμο 2:Πορτογαλλικά(Βραζιλίας)Αρχείο Postscript (*.eps)|*.eps|All|*ΑκρίβειαΕκτύπωσηΕκτύπωση εγγράφουΓινόμενοAνάγνωση πίνακα...Διάβασμα αποτελέσματος MaximaΈτοιμο για είσοδο από το χρήστηΕπανάκληση επόμενης εντολής από το ιστορικό Επανάκληση προηγούμενης εντολής από το ιστορικό Καρτεσιανή μορφήΑναγωγή (τρ)Αναγωγή τριγωνομετρικής παράστασηςΑφαίρεση όλων των αποτελεσμάτωνΑφαίρεση αποτελεσμάτων από τα κελιά εντολώνΑντικατεστημένες %d εμφανίσειςΑναφορά σφάλματοςΕπανεκίνηση του MaximaΟλοκλήρωση Risch...Ρίζες πολυωνύμουΡίζες πολυωνύμου (bfloat)Γραμμές:ΡωσικάΔείγμα 1:Δείγμα 2:Δείγμα:ΑποθήκευσηΑποθήκευση εφε κίνησης ...Αποθήκευση ωςΑποθήκευση ως... Shift-Ctrl-SΑποθήκευση εικόνας...Αποθήκευση επιλογής σε εικόναΑποθήκευση επιλογής σε εικόνα...Αποθήκευση εφε κίνησης σε αρχείοΑποθήκευση εγγράφουΑποθήκευση εγγράφου ωςΑποθήκευση της διάταξης των παλετώνΑποθήκευση μεγέθους/θέσης παραθύρου του wxMaxima μεταξύ συνεδριών.Αποθήκευση γραφήματος σε αρχείοΑποθήκευση επιλογής από το έγγραφο σε ένα αρχείο εικόναςΑποθήκευση επιλογής σε αρχείοΑποθήκευση στυλ σε αρχείοΑποθήκευση μεγέθους/θέσης παραθύρου του wxMaximaΑποθήκευση μεγέθους/θέσης παραθύρου του wxMaxima μεταξύ συνεδριών.Διάγραμμα διασποράςΔιάγραμμα διασποράς...ΕνότηταΚελί ενότηταςΕπιλογή όλωνΕπιλογή Όλων Ctrl-AΕπιλογή προγράμματος MaximaΕπιλογή υποδείγματοςΕπιλογή μιας μεταβλητήςΕπιλογή όλωνΕπιλογή αλγορίθμου προβολής μαθηματικώνΕπιλέγοντας ένα μέρος του αποτελέσματος και κάνοντας δεξί κλίκ πάνω στην επιλογή προκύπτει ένα μενού με κατάλληλες συναρτήσεις οι οποίες μπορούν να εφαρμοστούν στην επιλογή.ΕπιλογήΣειρέςΣειρές...Ο εξυπηρετητής ξεκίνησεΟρισμός ακρίβειας...Ορισμός ΜεγέθυνσηςΟρισμός ακρίβειας bigfloatΟρισμός σταθερού μεγέθους γραμματοσειράς στους ελέγχους κειμένου.Ορισμός μορφής γραφήματοςΟρισμός ζουμ στο 100%Ορισμός ζουμ στο 120%Ορισμός ζουμ στο 150%Ορισμός ζουμ στο 200%Ορισμός ζουμ στο 300%Ορισμός ζουμ στο 80%Ορισμός τιμών με την atvalues για την επίλυση ΣΔΕ με το μετασχηματισμό LaplaceΕγκατάσταση υπολογισμών moduloΕμφάνιση ορισμού...Εμφάνιση συναρτήσεωνΕμφάνιση συμβουλών...Εμφάνιση μεταβλητώνΕμφάνιση βοήθειας για το MaximaΕμφάνιση προτύπου Ctrl-Shift-KΕμφάνιση μιας συμβουλήςΕμφάνιση ολων των εντολών που είναι παρόμοιες με:Εμφάνιση ενός παραδείγματος για την εντολή:Εμφάνιση ενός παραδείγματος χρήσηςΕμφάνιση εντολών παρόμοιες μεΕμφάνιση των συναρτήσεων που έχουν οριστείΕμφάνιση των μεταβλητών που έχουν οριστείΕμφάνιση του ορισμού μίας συνάρτησηςΕμφάνιση συναρτήσεωνΕμφάνιση μεγάλων παραστάσεωνΕμφάνιση μεγάλων παραστάσεων στο έγγραφο του wxMaximaΕμφάνιση ορισμού συνάρτησης:ΑπλοποίησηΑπλοποίηση ριζικώνΑπλοποίηση (ρ)Απλοποίηση (τρ)Απλοποίηση παράστασηςΑπλοποίηση παράστασης που περιέχει παραγοντικάΑπλοποίηση παράστασης που περιέχει ριζικάΑπλοποίηση ρητής παράστασηςΑπλοποίηση αθροίσματοςΑπλοποίηση τριγωνομετρικής παράστασηςΛύση:ΕπίλυσηΕπίλυση αλγεβρικού συστήματος...Επίλυση γραμμικού συστήματος...Επίλυση ΣΔΕ...Επίλυση (to_poly)...Επίλυση ΣΔΕΕπίλυση ΣΔΕ με Laplace...Επίλυση ΣΔΕ...Επίλυση αλγεβρικού συστήματοςΕπίλυση αλγεβρικού συστήματος εξισώσεωνΕπίλυση προβλήματος οριακών τιμών για δευτεροβάθμια ΣΔΕΕπίλυση εξίσωσης(-εων)Επίλυση εξίσωσης(-εων) με to_poly_solverΕπίλυση προβλήματος αρχικών τιμών για πρωτοβάθμια ΣΔΕΕπίλυση προβλήματος αρχικών τιμών για δευτεροβάθμια ΣΔΕΕπίλυση γραμμικού συστήματοςΕπίλυση γραμμικού συστήματος εξισώσεωνΕπίλυση συνήθους διαφορικής εξίσωσης μέγιστου βαθμού 2Επίλυση συνήθους διαφορικής εξίσωσης με μετασχηματισμό LaplaceΕπίλυση...ΙσπανικάΕιδικόςΕιδικές μεταβλητέςΕκκίνηση εφέ κίνησηςΕκκίνηση εφέ κίνησηςΗ εκκίνηση της διεργασίας Maxima απέτυχεΕκκίνηση Maxima...Η εκκίνηση του εξυπηρετητή απέτυχεΕκκίνηση του εξυπηρετητή στη θύρα %dΣτατιστικήΣτατιστική Alt-Shift-SΔιακοπή του εφέ κίνησηςΣυμβολοσειρέςΣτυλΣτυλΥποδείγμα...ΥποενότηταΚελί υποενότηταςΑντικατάσταση...ΑντικατάστασηΑντικατάσταση...ΆθροισμαΠληροφορίες συστήματοςΣειρές Taylor:TellratΚείμενοΚελί κειμένουΦόντο κελιού κειμένουΗ προεπιλεγμένη θύρα που χρησιμοποιείται για την επικοινωνία μεταξύ του Maxima και του wxMaximaΥπάρχουν πολλές πηγές πληροφοριών σχετικά με το Maxima και το wxMaxima στο Διαδίκτυο. Επισκεφτείτε τη διεύθυνση http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials για να βρείτε περισσότερες πληροφορίες για τη χρήση των Maxima και wxMaxima.Υπήρξε σφάλμα στο δημιουργημένο XML! Παρακαλώ αναφέρετε αυτό το σφάλμα.Εμφανίσθηκε σφάλμα κατα την εξαγωγή του αρχέιου GIF! Βεβαιωθείτε οτι υπάρχει εγκατεστημένο το ImageMagick και πως το wxMaxima μπορεί να βρει το πρόγραμμα μετατροπής.Σημάνσεις:Φορές:Οι συμβουλές δεν ειναι διαθέσιμες, συγνώμη!ΤίτλοςΚελί τίτλουΟ τίτλος, η ενότητα και η υποενότητα των κελιών μπορούν να αναδιπλωθούν και να αποκρύψουν τα περιεχόμενά τους. Για την δίπλωση ή ξεδίπλωση, καντε κλικ στο τετραγωνάκι που βρίσκεται δίπλα απο το κελί. Επιπλέον αν κανετε shift-κλικ, ολα τα υποεπίπεδα του κελιού επίσης θα διπλωθούν/ξεδιπλωθούν.Σε μεγάλο αριθμό κινητής υποδιαστολής (bigfloat)Σε αριθμό κινητής υποδιαστολήςΣε αριθμό κινητής υποδιαστολήςΓια να σχεδιάσετε σε πολικές συντεταγμένες, επιλέξτε 'set polar' στην καταχώρηση Επιλογές στον διάλογο του Plot2d. Μπορείτε επίσης να σχεδιάσετε σε σφαιρικές και κυλινδρικές συντεταγμένες σε 3-Δ.Για να βάλετε παρενθέσεις γύρω από μια παράσταση, επιλέξτε την και πατήστε ‘(’ ή ‘)’ ανάλογα με το που θέλετε να εμφανιστεί ο κέρσορας μετά.Για να αποθηκεύσετε το μέγεθος και τη θέση από τα παράθυρα του wxMaxima μεταξύ διαφορετικών συνεδριών, χρησιμοποιήστε το διάλογο 'Επεξεργασία->Ρυθμίσεις'Για να ξεκινήσετε να χρησιμοποιείτε το wxMaxima άμεσα, γράψτε την εντολή που θέλετε. Ένα κελί εντολών θα εμφανιστεί. Μετά πατήστε Shift-Enter για να εκτελεσθεί η εντολή σας.Μέχρι:Εναλλαγή αλγεβρικής σημαίαςΕναλλαγή μορφής αποτελεσμάτωνΕναλλαγή εμφάνισης της ώραςΕναλλαγή αλγεβρικής σημαίαςΕναλλαγή επεξεργασίας πλήρης οθόνηςΕναλλαγή αριθμητικού αποτελέσματοςΓραμμή εργαλείων Alt-Shift-TΕικονίδια γραμμής εργαλείωνΜεταφρασμένο απόΑναστροφή πίνακαΔιδακτικές παρουσιάσειςt-τεστ δυο δειγμάτωνΤύπος:ΟυκρανικάΥπογραμμισμένοςΑναίρεση Ctrl-ZΑναίρεση τελευταίας αλλαγήςΥποστήριξη UnicodeΑναβάθμισηΆνω φράγμα:Χρήση του αλγορίθμου του GosperΧρήση κεντραρισμένης τελείας για πολλαπλασιασμόΧρήση γραμματοσειράς jsMath Τιμή:Μεταβλητή(-ές):Μεταβλητή:ΜεταβλητέςΜεταβλητές:ΠροειδοποίησηΚαλωσορίσατε στο wxMaximaΌταν εφαρμόζετε συναρτήσεις με ένα όρισμα από καταλόγους επιλογής, το προεπιλεγμένο όρισμα είναι το '%'.Για να εφαρμόσετε τη συνάρτηση σε κάποια άλλη τιμή, επιλέξτε την στο κείμενο προτού να εκτελέσετε μία εντολή από τον κατάλογο.Πλάτος:Εγγραφή ζεύγους παρενθέσεων στους ελέγχους κειμένου.Γραμμένο απόΜπορείτε να έχετε πρόσβαση στο τελευταίο αποτέσμα χρησιμοποιώντας τη μεταβλητή ‘%’. Μπορείτε να έχετε πρόσβαση σε αποτελέσματα προηγούμενων εντολών χρησιμοποιώντας τις μεταβλητές ‘%on’ όπου n είναι ο αριθμός της αποτελέσματος.Μπορείτε να ζητήσετε βοήθεια για μια συνάρτηση του Maxima αν την επιλέξετε ή κάνετε κλικ πάνω στο όνομά της και στη συνέχεια πατήσετε F1. Το wxMaxima θα ψάξει το ευρετήριο της βοήθειας για την επιλεγμένη λέξη ή για τη λέξη που είναι κατω από τον κέρσορα.Μπορείτε να κρύψετε το μέρος των αποτελεσμάτων των κελιών κάνοντας κλικ στο τρίγωνο στα αριστερά των κελιών. Ανάλογο ισχύει επίσης και για τα κελιά κειμένου.Μπορείτε να επιλέξετε πολλαπλά κελιά είτε με το ποντίκι – κάνοντας κλικ και σέρνωντας το ποντίκι από ανάμεσα στα κελιά ή από το άγκιστρο στα αριστερά του κελιού - είτε με το πληκτρολόγιο - κρατώντας πατημένο το Shift ενώ μετακινείτε τον οριζόντιο κέρσορα - και μετά να εκτελέσετε κάτι στην επιλογή. Αυτό είναι χρήσιμο αν θέλετε να διαγράψετε ή να υπολογίσετε πολλαπλά κελιά.Έχετε την έκδοση %s. Η νεότερη έκδοση είναι η %s . Επιλέξτε ΟΚ ώστε να μεταβείτε στην ιστοσελίδα του wxMaxima.Η έκδοση του wxMaxima που διαθέτετε ειναι η πιο πρόσφατη.ΜεγένθυσηΣμίκρυνσηΜεγέθυνση κατά 10%Σμίκρυνση κατά 10%Ορισμός ζουμ σε[ δεν έχει αποθηκευθεί ][ δεν έχει αποθηκευθεί* ]αντισυμμετρικόςαπό τις δύο πλευρέςπροεπιλογήδιαγώνιοςγενικόςinlineαπό αριστεράκρυμμένες γραμμέςλογαριθμική κλίμακαΠίνακας[i,j]:όχιαπό δεξιάσυμμετρικόςανώνυμοwxMaximawxMaxima %sΡυθμίσεις του wxMaximaΤο wxMaxima δεν μπόρεσε να βρει το Maxima! Παρακαλώ ρυθμίστε το wxMaxima από το 'Επεξεργασία->Ρυθμίσεις'. Μετά επανεκινήστε το Maxima με το 'Maxima->Επανεκκίνηση Maxima'.Το wxMaxima δεν μπόρεσε να βρει τα αρχεία βοήθειας. Παρακαλώ ελέγξτε την εγκατάστασή σας.Το wxMaxima δεν μπόρεσεί να βρει τα αρχεία συμβουλών. Παρακαλώ ελέγξτε την εγκατάστασή σας.Το wxMaxima δεν μπόρεσε να ξεκινήσει τον εξυπηρετητή. Παρακαλώ ελέγξτε αν έχετε ενεργοποιημένη την υποστήριξη δικτύου και προσπαθήστε ξανά!Οι διάλογοι του wxMaxima καθορίζουν προεπιλεγμένες τιμές σε καταχωρημένες γραμμές εντολών μία από τις οποίες είναι το '%'. Αν έχετε κάνει μια επιλογή στο έγγραφό σας, η επιλογή αυτή θα χρησιμοποιηθεί στη θέση του '%'.έγγραφο wxMaximaέγγραφο wxMaxima (*.wxm)|*.wxm|έγγραφο wxMaxima xml (*.wxmx)|*.wxmx|αρχείο Maxima batch (*.mac)|*.macέγγραφο wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxΤο wxMaxima αντιμετώπισε ένα πρόβλημα κατά την φόρτωσηΕικοίδιο wxMaximaΤο wxMaxima είναι μια γραφική διεπαφή χρήστη για το σύστημα υπολογιστικής άλγεβρας Maxima βασισμένη στα wxWidgets.Το wxMaxima είναι μια γραφική διεπαφή χρήστη για το σύστημα υπολογιστικής άλγεβρας Maxima βασισμένη στα wxWidgets.ΝαιwxMaxima-13.04.2/locales/el.po000644 000765 000024 00000340572 11705765322 016467 0ustar00andrejstaff000000 000000 # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: Greek translation of wxMaxima GUI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2010-06-04 19:46+0200\n" "Last-Translator: aga \n" "Language-Team: uth \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Greek\n" "X-Poedit-Country: GREECE\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "υποστήριξη Unicode: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Έκδοση Maxima:" #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Δεν υπάρχει σύνδεση με το Maxima!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "Δεν υπάρχει σύνδεση." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "<<Πολύ μεγάλη έκφραση για να εμφανιστεί!>>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" "είχε αποθηκευθεί χρησιμοποιώντας μια νεότερη έκδοση του wxMaxima. Έτσι " "μπορεί να μην φορτωθεί σωστά.Παρακαλώ ενημερώστε το wxMaxima σας." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" "είχε αποθηκευθεί χρησιμοποιώντας μια νεότερη έκδοση του wxMaxima. Παρακαλώ " "ενημερώστε το wxMaxima σας." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "Άλγεβρα" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "Εφαρμογή σε λίστα..." #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "Σχετικά..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "Αρχείο Batch...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Πρόβλημα οριακών τιμών..." #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Αναφορά σφάλματος" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "Μαθηματική Ανάλυση" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "Κανονική μορφή" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "Χαρακτηριστικό πολυώνυμο..." #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "Εκκαθάριση μνήμης" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "Συνδυασμός παραγοντικών" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "Μιγαδική απλοποίηση" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "Συνεχή κλάσματα" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "Αντιγραφή\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Ορισμένη ολοκλήρωση" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "Μετατροπή σε τριγωνομετρικές συναρτήσεις (Demoivre)" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "Ορίζουσα" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "Παραγώγιση..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "Επεξεργασία" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "Απαλοιφή μεταβλητής..." #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "Εισαγωγή πίνακα..." #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "Παράδειγμα..." #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "Ανάπτυξη έκφρασης" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "Ανάπτυξη τριγωνομετρικών παραστάσεων" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "Μετατροπή σε εκθετικές συναρτήσεις" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "Εξαγωγή..." #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "Παραγοντοποίηση παράστασης" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "Αρχείο" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "Εύρεση Ρίζας..." #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "Δημιουργία πίνακα..." #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "Μέγιστος Κοινός Διαιρέτης..." #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "Βοήθεια" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "Ολοκλήρωση..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "Διακοπή\tCtrl-." #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "Διακοπή\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "Αντιστροφος πίνακας" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Φόρτωση πακέτου...\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "Εφαρμογή στα μέλη λίστας..." #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Ορισμός του modulo (για rat, κτλ)..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "Νέο\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "Αριθμητικοί Υπολογισμοί" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Αριθμητική Ολοκλήρωση" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "Νusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "Άνοιγμα\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "Άνοιγμα...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "Γράφημα" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Δυναμοσειρές" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "Εκτύπωση...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "Ρητός(-ή)" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "Αναγωγή τριγωνομετρικών παραστάσεων" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "Επανεκκίνηση Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "Ρίζες πολυωνύμου (πραγματικές)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "Αποθήκευση\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "Απλοποίηση" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "Απλοποίηση έκφρασης" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "Απλοποίηση παραγοντικών" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "Απλοποίηση τριγωνομετρικών παραστάσεων" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "Επίλυση..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "Ειδικό" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Σειρές Taylor" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "Ανάστροφος πίνακας" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "Τριγωνομετρική απλοποίηση" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "pm3d" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Χρήση Προεπιλεγμένης Γλώσσας)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- 'Απειρο" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Ένας οριζόντιος κέρσορας πρωτοεμφανίστηκε στο wxMaxima 0.8.0. Φαίνεται ως " "μία οριζόντια γραμμή μεταξύ των κελιών. Υποδεικνύει που θα εμφανιστεί ένα " "νέο κελί αν γράψετε ή επικολλήσετε κείμενο ή εκτελέσετε μια εντολή." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Ένας νέος τύπος αρχείου πρωτοεμφανίστηκε στο wxMaxima 0.8.2 που αποθηκεύει " "όχι μόνο τις εντολές και το κείμενο των σχολίων, αλλά και τα αποτελέσματα " "των υπολογισμών. Όταν αποθηκεύετε το αρχείο, επέλεξτε τον τύπο 'wxMaxima XML " "document' ." #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "Ορισμός οριακών τιμών..." #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "Πληροφορίες για το wxMaxima" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "Πληροφορίες για το wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Άγκιστρο ενεργού κελιού" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Προσαρτημένος πίνακας" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Εισαγωγή αλγεβρικής ισότητας..." #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Προσθήκη καταλόγου στην διαδρομή αναζήτησης" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Προσθήκη καταλόγου στο μονοπάτι:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Προσθήκη ισότητας στον απλοποιητή ρητών (παραστάσεων)" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Προσθήκη στο μονοπάτι..." #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Επιπρόσθετοι παράμετροι για το maxima (π.χ. -l clisp)" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Επιπρόσθετοι παράμετροι:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Όλα|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Εφέ Κίνησης" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Εφαρμογή" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Εφαρμογή συνάρτησης σε μία λίστα" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "Σχετικά" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Πίνακας:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "Υπέυθυνος γραφικών" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Ορισμός οριακών τιμών" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 #, fuzzy msgid "Barsplot..." msgstr "Διάγραμμα ράβδων" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Αρχεία Bat (*.bat)|*.bat|All|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Αρχείο Batch" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Έντονα" #: ../src/wxMaximaFrame.cpp:1019 #, fuzzy msgid "Boxplot..." msgstr "Θηκόγραμμα" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Πλοήγηση" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "Πληροφορίες για το Maxima" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Εξ'ορισμού το Shift-Enter χρησιμοποιείται για την εκτέλεση εντολών, ενώ το " "Enter για την εισαγωγή πολλαπλών γραμμών. Αυτή η συμπεριφορά μπορεί να " "αλλάξει απο το μενού 'Επεξεργασία->Ρυθμίσεις' επιλέγοντας το 'Enter " "υπολογίζει τα κελιά'. Αυτό εναλλάσει τη λειτουργικότητα των δύο " "προαναφερθέντων εντολών του πληκτρολογίου." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "Αλλαγή μεταβλητής..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "Ρυθμίσεις" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "Υπολογισμός γινομένου..." #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Υπολογισμός αθροίσματος..." #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Υπολογισμός της τιμής του τελευταίου αποτελέσματος με bigfloat" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Υπολογισμός της τιμής του τελευταίου αποτέλεσματος προσεγγιστικά" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Υπολογισμοί modulo ακέραιο:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Υπολογισμός γινομένων" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Υπολογισμος αθροισμάτων" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "Η σύνδεση με τον web server δεν ήταν εφικτή." #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "" #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Ακύρωση" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "Κανονική μορφή (τρ)" #: ../src/Config.cpp:239 #, fuzzy msgid "Catalan" msgstr "Ιταλικά" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Άγκιστρο κελιού" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Αλλαγή 2-Δ προβολής μαθηματικών" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "" "Αλλαγή του 2-Δ αλγορίθμου προβολής που χρησιμοποιείται για την απεικόνιση " "μαθηματικών αποτελεσμάτων" #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Αλλαγή μεταβλητής" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Αλλαγή μεταβλητής στο ολοκλήρωμα ή στο άθροισμα " #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Χαρακτηριστικό πολυώνυμο" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "Έλεγχος για ενημερώσεις" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Έλεγχος ύπαρξης νεότερης έκδοσης του wxMaxima/Maxima" #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Κινέζικα παραδοσιακά" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Επιλογή γραμματοσειράς" #: ../src/PlotFormatWiz.cpp:27 #, fuzzy msgid "Choose new plot format:" msgstr "Εισαγωγή νέου τύπου σχεδίασης:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "Τάξεις:" #: ../src/wxMaximaFrame.cpp:197 #, fuzzy msgid "Close\tCtrl-W" msgstr "Αντιγραφή\tCtrl-C" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Oνόματα στηλών:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Στήλες:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Συνδυασμός παραγοντικών σε μια παράσταση" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Συντεταγμένες του x χωρισμένες με κόμμα" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Συντεταγμένες του y χωρισμένες με κόμμα" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Επιλογή Σχολίων" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "Συμπλήρωση Λέξης\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Συμπλήρωση λέξης" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Υπολογισμός συνεχούς κλάσματος μιας τιμής" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Υπολογισμός του προσαρτημένου πίνακα" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Υπολογισμός του χαρακτηριστικού πολυωνύμου ενός πίνακα" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Υπολογισμός ορίζουσας πίνακα" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Υπολογισμός μέγιστου κοινού διαιρέτη" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Υπολογισμός αντιστρόφου πίνακα" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "" "Υπολογισμός του ελαχίστου κοινού πολλαπλασίου (εκτελέστε load(functs) πριν " "τη χρήση)" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Συνθήκη:" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Αρχείο Config (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Προειδοποίηση ρύθμισης" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "Ρυθμίσεις του wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Σταθερά" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "Συστολή λογαρίθμων" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Μετατροπή διωνυμικών,συναρτήσεων Βήτα και Γάμμα σε παραγοντικά" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "" "Μετατροπή διωνύμων, παραγοντικών και Βήτα συναρτήσεων σε Γάμμα συνάρτηση" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Μετατροπή μιγαδικής παράστασης σε πολική μορφή" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Μετατροπή μιγαδικών παραστάσεων σε ορθογώνιες συντεταγμένες" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Μετατροπή της εκθετικής συνάρτησης φανταστικής μεταβλητής σε τριγωνομετρική " "μορφή" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Μετατροπή λογαρίθμου γινομένου σε άθροισμα λογαρίθμων" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Μετατροπή αθροίσματος λογαρίθμων σε λογάριθμο γινομένου" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Μετατροπή σε παραγοντικά" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Μετατροπή σε Γάμμα" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Μετατροπή σε πολική μορφή" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "Μετατροπή σε ορθογώνιες συντεταγμένες" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Μετατροπή τριγωνομετρικής παράστασης σε κανονική ημιγραμμική μορφή" #: ../src/wxMaximaFrame.cpp:590 #, fuzzy msgid "Convert trigonometric functions to exponential form" msgstr "Μετατροπή τριγωνομετρικών συναρτήσεων σε εκθετική μορφή" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Αντιγραφή" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Αντιγραφή ως εικόνα" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Αντιγραφή LaTeX" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "Αντιγραφή προηγούμενης εισαγωγής\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Αντιγραφή ως εικόνα" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Αντιγραφή ως LaTeX" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Αντιγραφή ως κείμενο\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Αντιγραφή επιλογής" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Αντιγραφή επιλογής από έγγραφο ως εικόνα" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Αντιγραφή επιλογής από έγγραφο ως κείμενο" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Αντιγραφή επιλογής από έγγραφο σε μορφή LaTeX " #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Δημιουργία κελιού με την τελευταία εισαγωγή" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Κέρσορας" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Αποκοπή" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "Αποκοπή\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Αποκοπή επιλογής" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Τσεχικά" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Δανικά" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Πίνακας Δεδομένων:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Αρχείο δεδομένων (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Δεδομένα:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Ανάλυση ρητής συνάρτησης σε μερικά κλάσματα" #: ../src/Config.cpp:351 msgid "Default" msgstr "Προεπιλεγμένος" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Προεπιλεγμένη γραμματοσειρά:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Προεπιλεγμένη θύρα" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Διαγραφή" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Διαγραφή συνάρτησης..." #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Διαγραφή επιλογής" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "Διαγραφή μεταβλητής..." #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Διαγραφή μίας συνάρτησης" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Διαγραφή μίας μεταβλητής" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Διαγραφή όλων των τιμών από τη μνήμη" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Διαγραφή συνάρτησης(-σεων)" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Διαγραφή μεταβλητής(-ών):" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "Βαθμός Παρανομαστή:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Βάθος:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Παράγωγος:" #: ../src/wxMaximaFrame.cpp:1003 #, fuzzy msgid "Deviation..." msgstr "Απόκλιση" #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Διαίρεση πολυωνύμων..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Παραγώγιση..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Παραγώγιση" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Παραγώγιση παράστασης" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Παραγώγιση..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Κατεύθυνση:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Διακριτή σχεδίαση." #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Εμφάνιση σε μορφή TeX" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Αλγόριθμος προβολής μαθηματικών" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Εμφάνιση τελευταίου αποτελέσματος σε μορφή TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Εμφάνιση του χρόνου που απαιτήθηκε για τον υπολογισμό" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Διαίρεση" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Διαίρεση κελιού" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Διαίρεση αριθμών ή πολυωνύμων" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Έγγραφο" #: ../src/Config.cpp:368 msgid "Document background" msgstr "Φόντο εγγράφου" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "Εξισώσεις" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "Έξοδος\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Ιδιοδιανύσματα" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Ιδιοτιμές" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Απαλειφή" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Απαλειφή μεταβλητής από σύστημα εξισώσεων" #: ../src/Config.cpp:243 msgid "English" msgstr "Αγγλικά" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 #, fuzzy msgid "Enter Data" msgstr "Εισαγωγή πίνακα" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Εισαγωγή πίνακα..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Εισαγωγή πίνακα" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Εισαγωγή εξίσωσης για ρητή απλοποίηση:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Εισαγωγή λίστας μεταβλητών χωρισμένες με κόμμα" #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Το Enter υπολογίζει τα κελιά" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Εισαγωγή πίνακα" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Εισαγωγή νέας τιμής ακρίβειας:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Εισαγωγή της διαδρομής στο εκτελέσιμο αρχείο του maxima." #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Έψιλον:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Εξίσωση %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Εξίσωση(-εις):" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Εξίσωση:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Εξισώσεις:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Σφάλμα" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Σφάλμα %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Σφάλμα!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Υπολογισμός ονοματικών μορφών" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Υπολογισμός όλων των κελιών\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "Υπολογισμός κελιού(-ιών)" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Υπολογισμός ενεργού(-ών) ή επιλεγμένου(-ων) κελιού(-ών)" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Υπολογισμός όλων των κελιών στο έγγραφο" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Υπολογισμός όλων των ονοματικών μορφών στην παράσταση" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Παράδειγμα" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Παράδειγμα κειμένου" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Έξοδος από το wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Ανάπτυξη" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Ανάπτυξη (τρ)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Ανάπτυξη παράστασης" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Ανάπτυξη λογαρίθμων" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Ανάπτυξη μία παράστασης" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Ανάπτυξη τριγωνομετρικής παράστασης" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "Εξαγωγή" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Εξαγωγή εγγράφου σε HTML ή pdfLaTeX αρχείο" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "Η εξαγωγή σε HTML απέτυχε!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "Η εξαγωγή σε TeX απέτυχε" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Παράσταση:" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Παράσταση(-εις):" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Παράσταση:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Παραγοντοποίηση" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Παραγοντοποίηση παράστασης (Μιγαδική)" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Παραγοντοποίηση παράστασης" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Παραγοντοποίηση μιας παράστασης" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Παραγοντοποίηση παράστασης σε Γκαουσιανούς αριθμούς" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Παραγοντικά και Γάμμα" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Ολέθριο σφάλμα" #: ../src/GroupCell.cpp:1263 #, fuzzy, c-format msgid "Figure %d:" msgstr "Σχέδιο" #: ../src/main.cpp:107 msgid "File" msgstr "Αρχείο" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "Το αρχείο δεν βρέθηκε" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "Το αρχείο που προσπαθήσατε να ανοίξετε δεν υπάρχει" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Αρχείο:" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Εύρεση " #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "Εύρεση \tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Εύρεση ορίου..." #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Εύρεση ελαχίστου..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Εύρεση ρίζας..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Εύρεση ενός (μη δεσμευμένου) ελαχίστου μιας παράστασης" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Εύρεση ορίου μιας παράστασης" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Εύρεση ρίζας μιας εξίσωσης σε ένα διάστημα" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Εύρεση όλων των ριζών ενός πολυωνύμου" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Εύρεση όλων των ριζών ενός πολυωνύμου(bfloat)" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Εύρεση και Αντικατάσταση" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Εύρεση και αντικατάσταση" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Εύρεση ιδιοτιμών πίνακα" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Εύρεση ιδιοδιανυσμάτων πίνακα" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Εύρεση ελαχίστου" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Εύρεση πραγματικών ριζών πολυωνύμου" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Εύρεση ρίζας" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Εύρεση..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Σταθερή γραμματοσειρά στον έλεγχο κειμένου" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Γραμματοσειρά που χρησιμοποιείται για την εμφάνιση στο έγγραφο." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "" "Γραμματοσειρά που χρησιμοποιείται για την εμφάνιση των μαθηματικών " "χαρακτήρων στο έγγραφο." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Γραμματοσειρές" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Μορφή:" #: ../src/Config.cpp:244 msgid "French" msgstr "Γαλλικά" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "Από:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "Πλήρης οθόνη\tAlt-Enter" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Συνάρτηση" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Ονόματα συναρτήσεων" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Συνάρτηση(-εις):" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Συνάρτηση:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Συναρτήσεις για μιγαδική απλοποίηση" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Συναρτήσεις για απλοποίηση παραγοντικών και Γάμμα συναρτήσεων" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Συναρτήσεις για απλοποίηση τριγωνομετρικών παραστάσεων" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "ΜΚΔ" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "Εικόνα GIF (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Γενικά Μαθηματικά" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "Γενικά Μαθηματικά\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Δημιουργία πίνακα" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "Δημιουργία πίνακα απο παράσταση..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Δημιουργία πίνακα από 2-Δ πίνακα" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Δημιουργία πίνακα από παράσταση lambda" #: ../src/Config.cpp:245 msgid "German" msgstr "Γερμανικά" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "Εξαγωγή φανταστικού μέρους" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Υπολογισμός σειρών..." #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Υπολογισμός μετασχηματισμού Laplace μιας παράστασης" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "Εξαγωγή πραγματικού μέρους" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Υπολογισμός του αντίστροφου μετασχηματισμού Laplace μιας παράστασης\"" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Υπολογισμός σειράς Taylor ή δυναμοσειράς μιας παράστασης" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Υπολογισμός φανταστικού μέρους μιας μιγαδικής παράστασης" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Υπολογισμός πραγματικού μέρους μιας μιγαδικής παράστασης" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Ελληνικά" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Ελληνικές σταθερές" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Πλέγμα:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Αρχείο HTML (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Ύψος:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Βοήθεια" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "Απόκρυψη Όλων\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Απόκρυψη όλων των παλετών" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Επισήμανση (dpart)" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Ιστόγραμμα" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Ιστόγραμμα..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Ιστορικό" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "Ιστορικό\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "Ο οριζόντιος κέρσορας λειτουργεί σαν κανονικός κέρσορας,αλλά ενεργεί στα " "κελιά: (α) πίεστε το πάνω ή το κάτω βέλος για να τον μετακινήσετε, (β) " "κρατώντας πατημένο το Shift ενώ τον μετακινείτε, επιλέγει κελιά, και (γ) " "πιέζοντας το backspace ή το delete 2 φορές διαγράφει ένα κελί δίπλα του." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Ουγγρικά" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Αν ο υπολογισμός σας καθυστερεί πολύ, μπορείτε να δοκιμάσετε τις εντολές του " "μενού 'Maxima->Διακοπή' ή 'Maxima->Επανεκκίνηση Maxima'." #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Εικόνα" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Αρχεία εικόνας (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "Συμπεριέλαβε τις στήλες:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Άπειρο" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Πληροφορίες για το Maxima build" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Αρχικές Εκτιμήσεις:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Πρόβλημα αρχικών τιμών (&1)..." #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Πρόβλημα αρχικών τιμών (&2)..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Ετικέτες εισαγωγής" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Προσθήκη" #: ../src/wxMaximaFrame.cpp:302 #, fuzzy msgid "Insert &Section Cell\tCtrl-3" msgstr "Προσθήκη κελιού &ενότητας\tF8" #: ../src/wxMaximaFrame.cpp:298 #, fuzzy msgid "Insert &Text Cell\tCtrl-1" msgstr "Προσθήκη κελιού &κειμένου\tF6" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "Προσθήκη κελιού\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Προσθήκη εικόνας" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "Προσθήκη εικόνας..." #: ../src/wxMaximaFrame.cpp:296 #, fuzzy msgid "Insert Input &Cell" msgstr "Προσθήκη κελιού εντολών" #: ../src/wxMaximaFrame.cpp:306 #, fuzzy msgid "Insert Page Break" msgstr "Προσθήκη Page Break\tF10" #: ../src/wxMaximaFrame.cpp:304 #, fuzzy msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Προσθήκη κελιού υποενότητας" #: ../src/MathCtrl.cpp:724 #, fuzzy msgid "Insert Section Cell" msgstr "Προσθήκη κελιού &ενότητας\tF8" #: ../src/MathCtrl.cpp:725 #, fuzzy msgid "Insert Subsection Cell" msgstr "Προσθήκη κελιού υποενότητας" #: ../src/wxMaximaFrame.cpp:300 #, fuzzy msgid "Insert T&itle Cell\tCtrl-2" msgstr "Προσθήκη κελιού τίτλου" #: ../src/MathCtrl.cpp:722 #, fuzzy msgid "Insert Text Cell" msgstr "Προσθήκη κελιού &κειμένου\tF6" #: ../src/MathCtrl.cpp:723 #, fuzzy msgid "Insert Title Cell" msgstr "Προσθήκη κελιού τίτλου" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Προσθήκη νέου κελιού εντολών" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Προσθήκη νέου κελιού ενότητας" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Προσθήκη νέου κελιού υποενότητας" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Προσθήκη νέου κελιού κειμένου" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Προσθήκη νέου κελιού τίτλου" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Προσθήκη αλλαγής σελίδας" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Προσθήκη εικόνας" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Ολοκλήρωμα/Άθροισμα:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Ολοκλήρωση" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Ολοκλήρωση (risch)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Ολοκλήρωση παράστασης" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Ολοκλήρωση παράστασης με τον αλγόριθμο Risch " #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Ολοκλήρωση..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Διακοπή" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Διακοπή τρέχοντος υπολογισμού" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Μη έγκυρη είσοδος για πρόγραμμα maxima .\n" " \n" "Παρακαλώ δώστε ξανά την διαδρομη για το πρόγραμμα maxima ." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Αντίστροφος Laplace" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "Αντίστροφος μετασχηματισμός Laplace..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "Ιταλικά" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Πλάγια γραφή" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Ιαπωνικά" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "" #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "ΕΚΠ" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Γλώσσα που χρησιμοποιείται για το GUI του wxMaxima" #: ../src/Config.cpp:235 msgid "Language:" msgstr "Γλώσσα:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "Μετασχηματισμός Laplace..." #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Ελάχιστο Κοινό Πολλαπλάσιο..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Παρεμβολή ελαχίστων τετραγώνων" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Παρεμβολή ελαχίστων τετραγώνων..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Όριο" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Όριο..." #: ../src/wxMaximaFrame.cpp:1010 #, fuzzy msgid "Linear Regression..." msgstr "Γραμμική παλινδρόμηση" #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Λίστα:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Φόρτωση" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Φόρτωση πακέτου" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Φόρτωση ένος αρχείου Maxima με την εντολή batch." #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Φόρτωση αρχείου πακέτου Maxima" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Φόρτωση στυλ από αρχείο" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Κάτω φράγμα:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Εφαρμογή στα μέλη πίνακα..." #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "Δημιουργία λίστας..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Δημιουργία λίστας" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Δημιουργία λίστας από παράσταση" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Αντικατάσταση σε παράσταση" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Απεικόνιση" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Εφαρμογή συνάρτησης στα μέλη λίστας" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Εφαρμογή συνάρτησης στα μέλη πίνακα" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Αντιστοίχιση παρενθέσεων σε έλεγχο κειμένου" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Γραμματοσειρά Μath:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Πίνακας" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Απεικόνιση πίνακα" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Όνομα πίνακα:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Πίνακας:" #: ../src/Config.cpp:98 #, fuzzy msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "Βοήθεια για το Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Είσοδος Maxima" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Το Maxima κάνει υπολογισμούς" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Πακέτο Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Πακέτο Maxima(*.mac)|*.mac|πακέτο Lisp (*.lisp)|*.lisp|All|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Η διαδικασία Maxima τερμάτισε." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Πρόγραμμα Maxima:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Ερωτήσεις για το Maxima" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Το Maxima ξεκίνησε. Περιμένει για σύνδεση..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Το Maxima χρησιμοποιεί το ‘:’ για απόδοση τιμών σε μεταβλητές ('a : 3;') και " "το ‘:=’ για ορισμό συναρτήσεων ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Έκδοση Maxima " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "Τεστ μέσης διαφοράς..." #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "Τεστ μέσης τιμής..." #: ../src/wxMaximaFrame.cpp:1000 #, fuzzy msgid "Mean..." msgstr "Απεικόνιση..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Μέση τιμή:" #: ../src/wxMaximaFrame.cpp:1001 #, fuzzy msgid "Median..." msgstr "Διάμεση τιμή" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Συγχώνευση κελιών" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Μέθοδος:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Modulus" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Όνομα:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 #, fuzzy msgid "New\tCtrl-N" msgstr "Νέο\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 #, fuzzy msgid "New document" msgstr "Άνοιγμα εγγράφου" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Νέα τιμή:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Νέα μεταβλητή:" #: ../src/wxMaximaFrame.cpp:313 #, fuzzy msgid "Next Command\tAlt-Down" msgstr "Επόμενη εντολή\tAlt-Down" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "Καμμία αντιστοίχιση δεν βρέθηκε" #: ../src/wxMaximaFrame.cpp:1009 #, fuzzy msgid "Normality Test..." msgstr "Τεστ κανονικότητας" #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "Μη έγκυρη διάσταση πίνακα!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "Μη έγκυρος αριθμός εξισώσεων!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "Δεν είστε συνδεδεμένοι." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "Βαθμός Αριθμητή:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Αριθμός εξισώσεων:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Αριθμοί" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "Εντάξει" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Παλιά τιμή:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Παλιά μεταβλητή:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "t-τεστ ενός δείγματος" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Online διδακτικές παρουσιάσεις" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Άνοιγμα" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Άνοιγμα πρόσφατου" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Άνοιγμα ενός εγγράφου" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Άνοιγμα νέου παραθύρου" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Άνοιγμα εγγράφου" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "Άνοιγμα πίνακα" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Άνοιγμα αρχείου" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Επιλογές" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Επιλογές:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Μη ενημερωμένα κελιά" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Ετικέτες εξόδου" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Προσέγγιση Pade..." #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "Εικόνα PNG (*.png)|*.png| εικόνα JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Προσέγγιση Pade..." #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Προσέγγιση Pade σειράς Taylor" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Αλλαγή σελίδας" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "Παλέτες" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Παραμετρικό γράφημα" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Συντακτική ανάλυση αποτελέσματος" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "Μερικά κλάσματα..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Μερικά κλάσματα" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "Μέρη του εγγράφου δεν θα φορτωθούν σωστά" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Επικόλληση" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "Επικόλληση\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Επικόλληση κειμένου από το πρόχειρο" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Επικόλληση κειμένου από το πρόχειρο" #: ../src/wxMaximaFrame.cpp:1018 #, fuzzy msgid "Piechart..." msgstr "Κυκλικό διάγραμμα (πίτας)" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "" "Παρακαλώ ρυθμίστε το wxMaxima μεσα απο το μενου 'Επεξεργασία->Ρυθμίσεις'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "" "Παρακαλώ κάντε επανεκκίνηση του wxMaxima για να ενεργοποιηθούν οι αλλαγές!" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "2-Δ γράφημα..." #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "3-Δ γράφημα..." #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "Μορφή γραφήματος..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "2-Δ γράφημα" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "2-Δ γράφημα..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "2-Δ γράφημα..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "3-Δ γράφημα" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "3-Δ γράφημα..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "3-Δ γράφημα..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Μορφή γραφήματος" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "Γράφημα σε 2 διαστάσεις" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "Γράφημα σε 3 διαστάσεις" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Γράφημα σε αρχείο:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Σημείο:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Πολωνικά" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Πολυώνυμο 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Πολυώνυμο 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Πορτογαλλικά(Βραζιλίας)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Αρχείο Postscript (*.eps)|*.eps|All|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Ακρίβεια" #: ../src/wxMaximaFrame.cpp:311 #, fuzzy msgid "Previous Command\tAlt-Up" msgstr "Προηγούμενη εντολή\tAlt-Up" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Εκτύπωση" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Εκτύπωση εγγράφου" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Γινόμενο" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "Aνάγνωση πίνακα..." #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Διάβασμα αποτελέσματος Maxima" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Έτοιμο για είσοδο από το χρήστη" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "Επανάκληση επόμενης εντολής από το ιστορικό " #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "Επανάκληση προηγούμενης εντολής από το ιστορικό " #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Καρτεσιανή μορφή" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Αναγωγή (τρ)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Αναγωγή τριγωνομετρικής παράστασης" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "Αφαίρεση όλων των αποτελεσμάτων" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Αφαίρεση αποτελεσμάτων από τα κελιά εντολών" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "Αντικατεστημένες %d εμφανίσεις" #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Αναφορά σφάλματος" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Επανεκίνηση του Maxima" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Ολοκλήρωση Risch..." #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Ρίζες πολυωνύμου" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Ρίζες πολυωνύμου (bfloat)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Γραμμές:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Ρωσικά" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Δείγμα 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Δείγμα 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Δείγμα:" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Αποθήκευση" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Αποθήκευση εφε κίνησης ..." #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Αποθήκευση ως" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Αποθήκευση ως...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Αποθήκευση εικόνας..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Αποθήκευση επιλογής σε εικόνα" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "Αποθήκευση επιλογής σε εικόνα..." #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Αποθήκευση εφε κίνησης σε αρχείο" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "" #: ../src/wxMaxima.cpp:4432 #, fuzzy msgid "Save changes?" msgstr "Αποθήκευση εικόνας..." #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Αποθήκευση εγγράφου" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Αποθήκευση εγγράφου ως" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Αποθήκευση της διάταξης των παλετών" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Αποθήκευση μεγέθους/θέσης παραθύρου του wxMaxima μεταξύ συνεδριών." #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Αποθήκευση γραφήματος σε αρχείο" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Αποθήκευση επιλογής από το έγγραφο σε ένα αρχείο εικόνας" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Αποθήκευση επιλογής σε αρχείο" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Αποθήκευση στυλ σε αρχείο" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Αποθήκευση μεγέθους/θέσης παραθύρου του wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Αποθήκευση μεγέθους/θέσης παραθύρου του wxMaxima μεταξύ συνεδριών." #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "Διάγραμμα διασποράς" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "Διάγραμμα διασποράς..." #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Ενότητα" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Κελί ενότητας" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Επιλογή όλων" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "Επιλογή Όλων\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Επιλογή προγράμματος Maxima" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "Επιλογή υποδείγματος" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Επιλογή μιας μεταβλητής" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Επιλογή όλων" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Επιλογή αλγορίθμου προβολής μαθηματικών" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Επιλέγοντας ένα μέρος του αποτελέσματος και κάνοντας δεξί κλίκ πάνω στην " "επιλογή προκύπτει ένα μενού με κατάλληλες συναρτήσεις οι οποίες μπορούν να " "εφαρμοστούν στην επιλογή." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Επιλογή" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Σειρές" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Σειρές..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Ο εξυπηρετητής ξεκίνησε" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Ορισμός ακρίβειας..." #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Ορισμός Μεγέθυνσης" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Ορισμός ακρίβειας bigfloat" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Ορισμός σταθερού μεγέθους γραμματοσειράς στους ελέγχους κειμένου." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Ορισμός μορφής γραφήματος" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Ορισμός ζουμ στο 100%" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Ορισμός ζουμ στο 120%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Ορισμός ζουμ στο 150%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Ορισμός ζουμ στο 200%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Ορισμός ζουμ στο 300%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Ορισμός ζουμ στο 80%" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" "Ορισμός τιμών με την atvalues για την επίλυση ΣΔΕ με το μετασχηματισμό " "Laplace" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Εγκατάσταση υπολογισμών modulo" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Εμφάνιση ορισμού..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Εμφάνιση συναρτήσεων" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Εμφάνιση συμβουλών..." #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Εμφάνιση μεταβλητών" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Εμφάνιση βοήθειας για το Maxima" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "Εμφάνιση προτύπου\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Εμφάνιση μιας συμβουλής" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Εμφάνιση ολων των εντολών που είναι παρόμοιες με:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Εμφάνιση ενός παραδείγματος για την εντολή:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Εμφάνιση ενός παραδείγματος χρήσης" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Εμφάνιση εντολών παρόμοιες με" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Εμφάνιση των συναρτήσεων που έχουν οριστεί" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Εμφάνιση των μεταβλητών που έχουν οριστεί" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Εμφάνιση του ορισμού μίας συνάρτησης" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "Εμφάνιση συναρτήσεων" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Εμφάνιση μεγάλων παραστάσεων" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Εμφάνιση μεγάλων παραστάσεων στο έγγραφο του wxMaxima" #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Εμφάνιση ορισμού συνάρτησης:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Απλοποίηση" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Απλοποίηση ριζικών" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Απλοποίηση (ρ)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Απλοποίηση (τρ)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Απλοποίηση παράστασης" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Απλοποίηση παράστασης που περιέχει παραγοντικά" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Απλοποίηση παράστασης που περιέχει ριζικά" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Απλοποίηση ρητής παράστασης" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Απλοποίηση αθροίσματος" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Απλοποίηση τριγωνομετρικής παράστασης" #: ../data/tips.txt:22 #, fuzzy msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Από την έκδοση 0.8.2 του wxMaxima και μετά μπορεί να εισαχθεί μια εικόνα στα " "έγγραφά. Χρησιμοποίηστε την εντολή του μενού 'Επεξεργασία->Προσθήκη " "εικόνας...’. Σημείωστε πως πρέπει να αποθηκεύετε το έγγραφο σε μορφή " "'wxMaxima XML document' αν θέλετε να αποθηκευθεί η εικόνα μαζί με το έγγραφο." #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Λύση:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Επίλυση" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Επίλυση αλγεβρικού συστήματος..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Επίλυση γραμμικού συστήματος..." #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Επίλυση ΣΔΕ..." #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Επίλυση (to_poly)..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Επίλυση ΣΔΕ" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Επίλυση ΣΔΕ με Laplace..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Επίλυση ΣΔΕ..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Επίλυση αλγεβρικού συστήματος" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Επίλυση αλγεβρικού συστήματος εξισώσεων" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Επίλυση προβλήματος οριακών τιμών για δευτεροβάθμια ΣΔΕ" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Επίλυση εξίσωσης(-εων)" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Επίλυση εξίσωσης(-εων) με to_poly_solver" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Επίλυση προβλήματος αρχικών τιμών για πρωτοβάθμια ΣΔΕ" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Επίλυση προβλήματος αρχικών τιμών για δευτεροβάθμια ΣΔΕ" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Επίλυση γραμμικού συστήματος" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Επίλυση γραμμικού συστήματος εξισώσεων" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Επίλυση συνήθους διαφορικής εξίσωσης μέγιστου βαθμού 2" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Επίλυση συνήθους διαφορικής εξίσωσης με μετασχηματισμό Laplace" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Επίλυση..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Ισπανικά" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Ειδικός" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Ειδικές μεταβλητές" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Εκκίνηση εφέ κίνησης" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Εκκίνηση εφέ κίνησης" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Η εκκίνηση της διεργασίας Maxima απέτυχε" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Εκκίνηση Maxima..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Η εκκίνηση του εξυπηρετητή απέτυχε" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Εκκίνηση του εξυπηρετητή στη θύρα %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Στατιστική" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "Στατιστική\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Διακοπή του εφέ κίνησης" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Συμβολοσειρές" #: ../src/Config.cpp:99 msgid "Style" msgstr "Στυλ" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Στυλ" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "Υποδείγμα..." #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Υποενότητα" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Κελί υποενότητας" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "Αντικατάσταση..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Αντικατάσταση" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Αντικατάσταση..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Άθροισμα" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "Πληροφορίες συστήματος" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Σειρές Taylor:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Κείμενο" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Κελί κειμένου" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Φόντο κελιού κειμένου" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "" "Η προεπιλεγμένη θύρα που χρησιμοποιείται για την επικοινωνία μεταξύ του " "Maxima και του wxMaxima" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Υπάρχουν πολλές πηγές πληροφοριών σχετικά με το Maxima και το wxMaxima στο " "Διαδίκτυο. Επισκεφτείτε τη διεύθυνση http://wxmaxima.sourceforge.net/wiki/" "index.php/Tutorials για να βρείτε περισσότερες πληροφορίες για τη χρήση των " "Maxima και wxMaxima." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Υπήρξε σφάλμα στο δημιουργημένο XML! Παρακαλώ αναφέρετε αυτό το σφάλμα." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Εμφανίσθηκε σφάλμα κατα την εξαγωγή του αρχέιου GIF!\n" "\n" "Βεβαιωθείτε οτι υπάρχει εγκατεστημένο το ImageMagick και πως το wxMaxima " "μπορεί να βρει το πρόγραμμα μετατροπής." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Σημάνσεις:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Φορές:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Οι συμβουλές δεν ειναι διαθέσιμες, συγνώμη!" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Τίτλος" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Κελί τίτλου" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Ο τίτλος, η ενότητα και η υποενότητα των κελιών μπορούν να αναδιπλωθούν και " "να αποκρύψουν τα περιεχόμενά τους. Για την δίπλωση ή ξεδίπλωση, καντε κλικ " "στο τετραγωνάκι που βρίσκεται δίπλα απο το κελί. Επιπλέον αν κανετε shift-" "κλικ, ολα τα υποεπίπεδα του κελιού επίσης θα διπλωθούν/ξεδιπλωθούν." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "Σε μεγάλο αριθμό κινητής υποδιαστολής (bigfloat)" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "Σε αριθμό κινητής υποδιαστολής" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "Σε αριθμό κινητής υποδιαστολής" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Για να σχεδιάσετε σε πολικές συντεταγμένες, επιλέξτε 'set polar' στην " "καταχώρηση Επιλογές στον διάλογο του Plot2d. Μπορείτε επίσης να σχεδιάσετε " "σε σφαιρικές και κυλινδρικές συντεταγμένες σε 3-Δ." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Για να βάλετε παρενθέσεις γύρω από μια παράσταση, επιλέξτε την και πατήστε " "‘(’ ή ‘)’ ανάλογα με το που θέλετε να εμφανιστεί ο κέρσορας μετά." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Για να αποθηκεύσετε το μέγεθος και τη θέση από τα παράθυρα του wxMaxima " "μεταξύ διαφορετικών συνεδριών, χρησιμοποιήστε το διάλογο 'Επεξεργασία-" ">Ρυθμίσεις'" #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Για να ξεκινήσετε να χρησιμοποιείτε το wxMaxima άμεσα, γράψτε την εντολή που " "θέλετε. Ένα κελί εντολών θα εμφανιστεί. Μετά πατήστε Shift-Enter για να " "εκτελεσθεί η εντολή σας." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "Μέχρι:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Εναλλαγή αλγεβρικής σημαίας" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Εναλλαγή μορφής αποτελεσμάτων" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Εναλλαγή εμφάνισης της ώρας" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Εναλλαγή αλγεβρικής σημαίας" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Εναλλαγή επεξεργασίας πλήρης οθόνης" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Εναλλαγή αριθμητικού αποτελέσματος" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "Γραμμή εργαλείων\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "Εικονίδια γραμμής εργαλείων" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Μεταφρασμένο από" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Αναστροφή πίνακα" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "Διδακτικές παρουσιάσεις" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "t-τεστ δυο δειγμάτων" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Τύπος:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ουκρανικά" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Υπογραμμισμένος" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "Αναίρεση\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Αναίρεση τελευταίας αλλαγής" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Υποστήριξη Unicode" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "Αναβάθμιση" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Άνω φράγμα:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Χρήση του αλγορίθμου του Gosper" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Χρήση κεντραρισμένης τελείας για πολλαπλασιασμό" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Χρήση γραμματοσειράς jsMath " #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Τιμή:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Μεταβλητή(-ές):" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Μεταβλητή:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Μεταβλητές" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Μεταβλητές:" #: ../src/wxMaximaFrame.cpp:1002 #, fuzzy msgid "Variance..." msgstr "Διακύμανση" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Προειδοποίηση" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Καλωσορίσατε στο wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Όταν εφαρμόζετε συναρτήσεις με ένα όρισμα από καταλόγους επιλογής, το " "προεπιλεγμένο όρισμα είναι το '%'.Για να εφαρμόσετε τη συνάρτηση σε κάποια " "άλλη τιμή, επιλέξτε την στο κείμενο προτού να εκτελέσετε μία εντολή από τον " "κατάλογο." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Πλάτος:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Εγγραφή ζεύγους παρενθέσεων στους ελέγχους κειμένου." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Γραμμένο από" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Μπορείτε να έχετε πρόσβαση στο τελευταίο αποτέσμα χρησιμοποιώντας τη " "μεταβλητή ‘%’. Μπορείτε να έχετε πρόσβαση σε αποτελέσματα προηγούμενων " "εντολών χρησιμοποιώντας τις μεταβλητές ‘%on’ όπου n είναι ο αριθμός της " "αποτελέσματος." #: ../data/tips.txt:15 #, fuzzy msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Μπορείτε να υπολογήσετε όλο το έγγραφό σας χρησιμοποιώντας την ενολή του " "μενού 'Επεξεργασία->Κελί->Υπολογισμός όλων των κελιών' ή την αντίστοιχη " "συντόμευση. Τα κελιά θα υπολογισθούν με τη σειρά με την οποία εμφανίζονται " "μέσα στο έγγραφο." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Μπορείτε να ζητήσετε βοήθεια για μια συνάρτηση του Maxima αν την επιλέξετε ή " "κάνετε κλικ πάνω στο όνομά της και στη συνέχεια πατήσετε F1. Το wxMaxima θα " "ψάξει το ευρετήριο της βοήθειας για την επιλεγμένη λέξη ή για τη λέξη που " "είναι κατω από τον κέρσορα." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Μπορείτε να κρύψετε το μέρος των αποτελεσμάτων των κελιών κάνοντας κλικ στο " "τρίγωνο στα αριστερά των κελιών. Ανάλογο ισχύει επίσης και για τα κελιά " "κειμένου." #: ../data/tips.txt:5 #, fuzzy msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Μπορείτε να εισάγετε διαφορετικά είδη κελιών σε έγγραφο του wxMaxima " "χρησιμοποιώντας το υπομενού 'Επεξεργασία->Κελί'. Σημειώστε ότι μόνο τα κελιά " "'εντολών' μπορούν να υπολογισθούν, ενώ τα άλλα χρησιμοποιούνται για " "σχολιασμό του εγγράφου ή για να σας βοηθήσουν στην δομή των λογισμών σας." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Μπορείτε να επιλέξετε πολλαπλά κελιά είτε με το ποντίκι – κάνοντας κλικ και " "σέρνωντας το ποντίκι από ανάμεσα στα κελιά ή από το άγκιστρο στα αριστερά " "του κελιού - είτε με το πληκτρολόγιο - κρατώντας πατημένο το Shift ενώ " "μετακινείτε τον οριζόντιο κέρσορα - και μετά να εκτελέσετε κάτι στην " "επιλογή. Αυτό είναι χρήσιμο αν θέλετε να διαγράψετε ή να υπολογίσετε " "πολλαπλά κελιά." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Έχετε την έκδοση %s. Η νεότερη έκδοση είναι η %s . \n" "\n" "Επιλέξτε ΟΚ ώστε να μεταβείτε στην ιστοσελίδα του wxMaxima." #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "" #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "Η έκδοση του wxMaxima που διαθέτετε ειναι η πιο πρόσφατη." #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Μεγένθυση" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "Σμίκρυνση" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Μεγέθυνση κατά 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Σμίκρυνση κατά 10%" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Ορισμός ζουμ σε" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ δεν έχει αποθηκευθεί ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ δεν έχει αποθηκευθεί* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "αντισυμμετρικός" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "από τις δύο πλευρές" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "προεπιλογή" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "διαγώνιος" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "γενικός" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "inline" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "από αριστερά" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "κρυμμένες γραμμές" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "λογαριθμική κλίμακα" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "Πίνακας[i,j]:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "όχι" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "από δεξιά" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "συμμετρικός" #: ../src/wxMaxima.cpp:4403 #, fuzzy msgid "unsaved" msgstr "[ δεν έχει αποθηκευθεί ]" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "ανώνυμο" #: ../src/main.cpp:182 #, fuzzy, c-format msgid "untitled %d" msgstr "ανώνυμο" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s" #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Ρυθμίσεις του wxMaxima" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "Το wxMaxima δεν μπόρεσε να βρει το Maxima!\n" "\n" "Παρακαλώ ρυθμίστε το wxMaxima από το 'Επεξεργασία->Ρυθμίσεις'. \n" "Μετά επανεκινήστε το Maxima με το 'Maxima->Επανεκκίνηση Maxima'." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "Το wxMaxima δεν μπόρεσε να βρει τα αρχεία βοήθειας.\n" "\n" "Παρακαλώ ελέγξτε την εγκατάστασή σας." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "Το wxMaxima δεν μπόρεσεί να βρει τα αρχεία συμβουλών.\n" "\n" " Παρακαλώ ελέγξτε την εγκατάστασή σας." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "Το wxMaxima δεν μπόρεσε να ξεκινήσει τον εξυπηρετητή.\n" "\n" " Παρακαλώ ελέγξτε αν έχετε ενεργοποιημένη την υποστήριξη δικτύου και " "προσπαθήστε ξανά!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "Οι διάλογοι του wxMaxima καθορίζουν προεπιλεγμένες τιμές σε καταχωρημένες " "γραμμές εντολών μία από τις οποίες είναι το '%'. Αν έχετε κάνει μια επιλογή " "στο έγγραφό σας, η επιλογή αυτή θα χρησιμοποιηθεί στη θέση του '%'." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "έγγραφο wxMaxima" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "έγγραφο wxMaxima (*.wxm)|*.wxm|έγγραφο wxMaxima xml (*.wxmx)|*.wxmx|αρχείο " "Maxima batch (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "έγγραφο wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "Το wxMaxima αντιμετώπισε ένα πρόβλημα κατά την φόρτωση" #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "Εικοίδιο wxMaxima" #: ../src/wxMaxima.cpp:3355 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "Το wxMaxima είναι μια γραφική διεπαφή χρήστη για το σύστημα υπολογιστικής " "άλγεβρας Maxima βασισμένη στα wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "Το wxMaxima είναι μια γραφική διεπαφή χρήστη για το σύστημα υπολογιστικής " "άλγεβρας Maxima βασισμένη στα wxWidgets." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "Ναι" #~ msgid "&Cell" #~ msgstr "Κελί" #~ msgid "&New Window\tCtrl-N" #~ msgstr "Νέο Παράθυρο\tCtrl-N" #~ msgid "Close document?" #~ msgstr "Κλείσιμο αρχείου;" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Το έγγραφο δεν αποθηκεύτηκε! Κλείσιμο του παρόντος εγγράφου και απώλεια " #~ "όλων των αλλαγών;" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Το έγγραφο δεν αποθηκεύτηκε! Έξοδος από το wxMaxima και απώλεια όλων των " #~ "αλλαγών;" #~ msgid "Maxima options" #~ msgstr "Επιλογές του Maxima" #~ msgid "Mean" #~ msgstr "Μέση τιμή " #~ msgid "Quit?" #~ msgstr "Έξοδος;" #~ msgid "wxMaxima options" #~ msgstr "Επιλογές wxMaxima" #~ msgid "Adjustment for the size of greek font." #~ msgstr "Προσαρμογή για το μέγεθος της ελληνικής γραμματοσειράς." #~ msgid "Adjustment:" #~ msgstr "Προσαρμογή:" #~ msgid "Basic" #~ msgstr "Βασικός(ή)" #~ msgid "Button panel:" #~ msgstr "Πίνακας Κουμπιών:" #~ msgid "Copy selected cell(s)" #~ msgstr "Αντιγραφή επιλεγμένων κελιών" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "Αντιγραφή επιλογής στο πρόχειρο όταν η επιλογή γίνεται στο έγγραφο." #~ msgid "Copy to clipboard on select" #~ msgstr "Αντιγραφή στο πρόχειρο αφού επιλεγεί" #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr "Αποκοπή κελιού(-ών)\tCtrl-Shift-X" #~ msgid "Cut selected cell(s)" #~ msgstr "Αποκοπή επιλεγμένων κελιών" #~ msgid "Decrease fontsize in document" #~ msgstr "Ελάττωση μεγέθους γραμματοσειράς στο έγγραφο" #~ msgid "Delete selected cell(s)" #~ msgstr "Διαγραφή επιλεγμένου(-ων) κελιού(-ών)" #~ msgid "Delete selection" #~ msgstr "Διαγραφή επιλογής" #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr "" #~ "Γραμματοσειρά που χρησιμοποιείται για την εμφάνιση Unicode γλυφών στο " #~ "έγγραφο" #~ msgid "Full" #~ msgstr "Πλήρης" #~ msgid "Increase fontsize in document" #~ msgstr "Αύξηση μεγέθους γραμματοσειράς στο έγγραφο" #~ msgid "Input" #~ msgstr "Είσοδος" #~ msgid "Insert input group" #~ msgstr "Προσθήκη ομάδας εντολών" #~ msgid "New &Section Cell\tCtrl-F6" #~ msgstr "Νέα ενότητα\tCtrl-F6" #~ msgid "New Input &Cell\tF7" #~ msgstr "Νέο κελί εντολών \tF7" #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr "Νέο κελί τίτλου\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "Κλειστό" #~ msgid "Paste cell(s) to document" #~ msgstr "Επικόλληση κελιού(-ών) σε έγγραφο" #~ msgid "Product..." #~ msgstr "Γινόμενο..." #~ msgid "Save document as ..." #~ msgstr "Αποθήκευση εγγράφου ως..." #~ msgid "Select file to open" #~ msgstr "Επιλογή αρχείου προς άνοιγμα" #~ msgid "Show Maxima header" #~ msgstr "Εμφάνιση κεφαλίδας του Maxima" #~ msgid "Show initial header with Maxima system information." #~ msgstr "" #~ "Εμφάνιση της αρχικής κεφαλίδας με τις πληροφορίες για το σύστημα Maxima" #~ msgid "Sum..." #~ msgstr "Άθροισμα..." #~ msgid "To &Float\tCtrl-F" #~ msgstr "Σε αριθμό κινητής υποδιαστολής\tCtrl-F" #~ msgid "Use greek font to display greek characters." #~ msgstr "" #~ "Χρήση ελληνικής γραμματοσειράς για την εμφάνιση των ελληνικών χαρακτήρων." #~ msgid "Use greek font:" #~ msgstr "Χρήση ελληνικής γραμματοσειράς:" #~ msgid "" #~ "You can use Maxima's tex(%) command to print the last expression in TeX " #~ "form. Then you can copy it to text editor to include it in you paper." #~ msgstr "" #~ "Μπορείτε να χρησιμοποιήσετε τις εντολές TeX(%) του Maxima για να τυπώσετε " #~ "την τελευταία παράσταση σε μορφή TeX. Έπειτα μπορείτε να την αντιγράψετε " #~ "στον κειμενογράφο και να την συμπεριλάβετε στο έγγραφό σας." #~ msgid "untitled.wxm" #~ msgstr "ανώνυμο.wxm" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "Το wxMaxima είναι μια γραφική διεπαφή χρήστη για το \n" #~ "σύστημα υπολογιστικής άλγεβρας Maxima βασισμένη στα wxWidgets." #~ msgid "wxMaxima session (*.wxm)|*.wxm" #~ msgstr "Συνεδρία wxMaxima (*.wxm)|*.wxm" wxMaxima-13.04.2/locales/es.mo000644 000765 000024 00000164056 11710501376 016465 0ustar00andrejstaff000000 000000 Dl0@)@@@@@&@gAJAAA AAB *B 6B@BPB nB|BBB BB B BBCC%C 6CBCUCkC {CCC CCCC CCDD$DP3,Q`Q eQ sQ~Q Q QQQ(Q$R,,R%YRRR R RRR R1RR0R&S .S ]*k]]]]+]]3],/^,\^'^^^^;^ ___+_:_ L_ V_c_k__ _`i`m`~q``@`7aHaQaia|aa aaaab b&b6bIb[bzbbbbbbbc1cHc`c tc c ccc)c c cdQdqddddd4ddd ee"e8eQecexe~eeee e*eee ff .f oDo Lo Vo`ohomooo ooooo p "p0pAp#Spwp-ppp"p4q 9qEqTq \q iqtqqqq qqq zrr rrrrr rrss)s:sKs\s:lssss sstt /t:t Xtyttttttu+$u Puquzu u uu,u'uv.v!?vav Wwawgww ww ww ww#x2(x[x%mx0x1xx y8+yAdyyyyyyyyz#z:z Uz`zwzzzz z zzz z zz zz{ { {{D0{u{B1|ut||||} }$} } }~ ~~`. 7Ncy ̀ڀ    $0AQ Yf-{ ΁ ؁ ΂,Ղ  fw)_U1߇'9H X d q ~ ɈЈ Ո    ( 1>UDىCbbŊle~.& :aHa 6)Gqy:[   %; NYjƐڐ !)<OXm ё  2CZrz  Ȓ֒  $<Nn ~ ؓ .4 Q \g4 -;Ngw)*Ֆ5Ib ju} ." /AI[c% Ǚڙ,%<Na$p"КٚS[#l6ě %AIX g u&""ɜ '$L2f&"!F L'W  :ӞD+S0N888qBԠ8PW jwݡ+00L-}Ȣڢ8138l{ӣ* 7L ` k x Ť ͤ٤(;X `n2 ɥ ϥ ڥ 1 RZk}76˦1(Nw ȧ &&<4cè ̨ڨ# ?,I v © ҩ ީ/.^ s ƪΪժ6%Q3w*1֫*.+Y+¬ Ѭ)ݬB%hpyƭϭ*ح77;sw#ˮ&ڮ94;px5ٯ=F,7s1ݰ CHPWq !ʱ~|G˳ݳ,*Ih}ôߴ")Lhε-DUet}'ʶ Ӷ߶gf v?3*2:Sm˸Ҹٸ02O^w.(ǹ!57m̺ۺAUr*r4I cou|   ̼ټ " -+@)l Ľͽս#)0Ar Ǿ оھf~-ÿԿݿ.,[ ao!,4 $ 2@ V c p }   !.(F o z $0 /;k |&*):N'g  ,J)h/(= f6C1FOar. )1)&[V67'N#v&8V7q& 3*1^*  1 JX ly );"%8;^<';LS!("J mz   $5=CR@jRf ES%Zn=X_r&""! DR gs  4 BZa p z < ,~W}r*H)s   )8A I S]m   LSm*Ogb/-(w:w*@nmfmj < `t~F<J"GO+KTxgWb$,pbLg_sLE.B(Se! i|wFE6Zd:}$\W159_ ziGQ(p/K 5c>,@.OrxUc/Q\F3;2xu}R];wI<# Py *A ;{-X^)n)If,QX 7`c%]C?}"@iN[` HbDSVN-I{hlu3lkM=':7[z96M h4   %RV4~-3'PASL[4aevKkuZDy:0ED7+TkT"q#o/p!Xj$ A=1]_|UHrBvR?8nMH9agJ2oh012B6+P&vY8et lz^ rs*~sdYa|m&0qJW('N\UCqY.^)>Z*V#!yC8t%=fo&dw>j O?G5{ wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: es Report-Msgid-Bugs-To: POT-Creation-Date: 2011-10-29 04:38+0200 PO-Revision-Date: 2007-08-02 17:05+0200 Last-Translator: Mario Rodriguez Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Soporte unicode: %s Lisp: Versión de Maxima: ¡No conectado a Maxima! No conectado. << ¡Expresión excesivamente larga para ser mostrada! >> fue guardado con una versión más actualizada de wxMaxima, por lo que es posible que no se cargue correctamente. Por favor, actualice wxMaxima. fue guardado con una versión más actualizada de wxMaxima. Por favor, actualice wxMaxima.Álge&bra&Aplicar a lista&A propósitoArchivo por &lotes Ctrl-BPro&blema de contornoInformar de e&rrorA&nálisisForma &canónicaPolinomio &característico&Limpiar memoria&Combinar factorialesSimplificación &complejaFracción contin&ua&Copiar Ctrl-CIntegración &definida&Demoivre&Determinante&Derivar&EditarEliminar &variable&Introducir matriz&Ejemplo&Expandir expresiónExpandir &trigonometríaExpo&nencializar&Exportar&Factorizar expresión&ArchivoC&alcular raíz&Generar matrizMá&ximo común divisorA&yuda&Integrar&Interrumpir Ctrl-G&Interrumpir Ctrl-GIn&vertir matrizCargar &paquete Ctrl-LDistribui&r sobre lista&MaximaCálculo del &módulo&Nuevo Ctrl-NN&uméricoIntegración &numérica&Nusum&Abrir Ctrl-O&Abrir... Ctrl-O&GráficosSerie de &potencias&Imprimir... Ctrl-P&RacionalR&educir trigonometría&Reiniciar MaximaRaíces reales de un polino&mio&Guardar Ctrl-S&Simplificar&Simplificar expresión&Simplificar factoriales&Simplificar trigonometría&ResolverEspecialSerie de Taylor&Trasponer matrizSimplificación &trigonométrica&pm3D(Usar idioma predeterminado)- Infinito
Lisp: Se ha introducido en wxMaxima 0.8.0 un 'cursor horizontal'. Su aspecto es el de una línea horizontal entre celdas, indicando dónde aparecerá una nueva celda al escribir o copiar una nueva instrucción.Se ha introducido en wxMaxima 0.8.2 un nuevo formato de documento que no sólo guarda las instrucciones y comentarios del usuario, sino también los resultados. Cuando se guarde el documento, seleccione 'Documento xml wxMaxima' &Condición inicialA&cerca de...Acerca de wxMaximaCorchete de celda activaMatriz ad&juntaAñadir &igualdad algebraicaAñadir directorio a la ruta de búsquedaAñadir dir a la ruta:Añadir igualdad al simplificador racionalAña&dir a la rutaParámetros adicionales para Maxima (p. ej. -l clisp)Parámetros adicionales:Todos|*AnimaciónAplicarAplicar función a listaA propósitoArray:Arte porPreguntar para guardar documentos no tituladosCondición inicialBC2Diagrama de barrasArchivos bat (*.bat)|*.bat|Todos|*Archivo por lotesNegritaDiagrama de cajasNavegar&Información de compilaciónPor defecto, Shift-Enter se utiliza para evaluar instrucciones, mientras Retorno se utiliza para introducir líneas múltiples. Este comportamiento se puede cambiar en 'Editar->Preferencias' seleccionando 'Tecla retorno evalúa celdas', con lo que se intercambiarán los roles de estas teclas.C&ambiar variable&Preferencias&Calcular productoCalcular su&maFormato real grande de la última expresiónFormato real de la última expresiónCalcular módulo:Calcular productosCalcular sumasNo se puede acceder al servidor web.No se puede descargar la versión.CancelarCanónico (tr)CatalánCe&ldaCorchete de celdaCambiar pantalla &2DCambiar el algoritmo empleado para mostrar la salida matemática en la pantalla 2D.Cambiar variableCambiar variable en integral o sumaPolinomio característicoComprueba actualizacionesComprueba si existe nueva versión de wxMaxima/Maxima.Chino tradicionalElegir fuenteElegir un nuevo formato de gráficos:Clases:&Cerrar Ctrl-WCerrar ventanaNombres col.:Columnas:Combinar factoriales en una expresiónCoordenadas x separadas por comas.Coordenadas y separadas por comas.Comentar selección&Autocompletar Ctrl-KAutocompletarCalcular fracción continua de un valorCalcula la matriz adjuntaCalcula el polinomio característico de una matrizCalcular el determinante de una matrizCalcular el máximo común divisorCalcular la inversa de una matrizCalcular el mínimo común múltiplo (cargar(funciones) antes de usar)CondiciónFichero de configuración (*.ini)|*.iniAdvertencia sobre configuraciónConfigurar wxMaximaConstanteC&ontraer logaritmosConvertir binomiales, funciones beta y gamma a factorialesConvertir binomiales, funciones factoriales y beta a función gammaConvertir expresión compleja a forma polarConvertir expresión compleja a forma cartesianaConvertir función exponencial de argumento imaginario a forma trigonométricaConvertir logaritmo de un producto en suma de logaritmosConvertir suma de logaritmos en logaritmo de un productoConvertir a &factorialesConvertir a &gammaConvertir a forma &polarConvertir a forma &cartesianaConvertir expresión trigonométrica a forma canónica casi linealConvertir funciones trigonométricas a forma exponencialCopiarCopiar como imagenCopiar LaTeX&Copiar entrada anterior Ctrl-ICopiar como imagenCopiar como &LaTeXCopiar como &texto Ctrl-Shift-CCopiar selecciónCopiar selección del documento como imagenCopiar selección del documento en formato textoCopiar selección del documento en formato LaTeXCrear una nueva celda con la entrada anteriorCursorCortarCo&rtar Ctrl-XCortar selecciónChecoDanésMatriz de datos:Archivo de datos (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDatos:Descomponer función racional en fracciones simplesPredeterminadoFuente predeterminada:Puerto predeterminado:BorrarBorrar f&unciónBorrar selecciónBorrar v&ariableBorrar una funciónBorrar una variableEliminar todas las variables de la memoriaBorrar función(es):Borrar variable(s):denom deg:profundidad:Derivada:DesviaciónDi&vidir polinomiosDerivarDerivarDerivar expresiónDerivarDirección:Gráfico discretoMostrar formato Te&XMostrar algoritmoMostrar último resultado en formato TeXMostrar tiempo de ejecuciónDividirDividir celdaDividir números o polinomios¿Quiere guardar los cambios hechos al documento "DocumentoFondoNo guardarE&cuaciones&Salir Ctrl-QVectores &propiosVa&lores propiosEliminarEliminar una variable de un sistema de ecuacionesInglésIntroducir datosIntroducir matrizIntroducir una matrizIntroducir una ecuación para simplificación racional:Introducir una lista de variables separadas por comas.Tecla retorno evalúa celdasIntroducir matrizIntroducir nueva precisión:Introducir la ruta al ejecutable Maxima.Epsilon:Ecuación %d:Ecuación:Ecuación:Ecuaciones:ErrorError %d¡Error!Evaluar formas &nominalesEvaluar t&odas las celdas Ctrl-RE&valuar celda(s)Evaluar celdas activas o seleccionadasEvaluar todas las celdas del documentoEvaluar todas las formas nominales en una expresiónEjemploTexto de ejemploSalir de wxMaximaExpandirExpandir (tr)Expandir expresiónEx&pandir logaritmosExpandir una expresiónExpandir expresión trigonométrica&ExportarExportar documento a archivo HTML o pdfLaTeX¡Falló la exportación a HTML!¡Falló la exportación a TeX!ExpresiónExpresión(es):Expresión:FactorizarFactorizar comple&joFactorizar expresiónFactorizar una expresiónFactorizar una expresión en números gausianosFactoriales y &gammaError fatalFigura %d:ArchivoArchivo no encontradoEl archivo a abrir no existe.ArchivoBuscar&Buscar Ctrl-FCalcular &límiteCalcular mínim&oCalcular raíz...Calcular mínimo (sin restricciones) de una expresiónCalcular el límite de una expresiónCalcular una raíz de una ecuación en un intervaloCalcular todas las raíces de un polinomioCalcular todas las raíces reales de un polinomioBuscar y sustituirBuscar y sustituirCalcular los valores propios de una matrizCalcular los vectores propios de una matrizCalcular mínimoCalcular las raíces reales de un polinomioCalcular raízCalcular...Fuente proporcional en controles de textoFuente usada en el documento.Fuente usada para mostrar caracteres matemáticos en el documento.FuentesFormato:FrancésDesde:P&antalla completa Alt-RetornoFunciónNombres de funcionesFunciónFunciónFunciones para la simplificación complejaFunciones para simplificar factoriales y función gammaFunciones para simplificar expresiones trigonométricasMCDImagen GIF (*.gif)|*.gifMatemáticas generales&Matemáticas generales Alt-Shift-MGenerar matriz&Generar matriz a partir de expresiónGenerar una matriz a partir de una tabla de 2 dimensionesGenerar una matriz a partir de una expresión lambdaAlemánCalcular parte &imaginariaCalcular &serieCalcular la transformada de Laplace de una expresiónCalcular parte &realCalcular la transformada inversa de Laplace de una expresiónCalcular el desarrollo de Taylor o serie de potencias de la expresiónCalcular la parte imaginaria de una expresión complejaCalcular la parte real de una expresión complejaGriegoConstantes griegasCuadrícula:Archivo HTML (*.html)|*.html|Archivo pdfLaTeX (*.tex)|*.tex|Todos|*Altura:A&yuda&Ocultar todo Alt-Shift--Ocultar todos los panelesResaltadoHistogramaHistogramaHistoria&Historia Alt-Shift-HEl cursor horizontal funciona como un cursor normal, pero opera con celdas: pulsar cursores arriba y abajo para moverlo; manteniendo pulsada la tecla 'Mayúscula'mientras se realiza el movimiento se seleccionan celdas, pulsando 'Retroceso' o 'Espacio' dos veces borrará la celda contigua.HúngaroIC1IC2Si un cálculo dura mucho tiempo, se puede parar seleccionando 'Maxima->Interrumpir' o 'Maxima->Reiniciar Maxima' en el menú.ImagenArchivos gráficos (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmIncluir columnas:InfinitoInformación sobre la compilación de MaximaEstimadores iniciales:Problema de valor inicial (&1)Problema de valor inicial (&2)Introducir etiquetasInsertarNueva celda de &sección Ctrl-3Nueva celda de te&xto Ctrl-1In&sertar celda Alt-Shift-CInsertar imagenI&nsertar imagenNueva celda de &entradaSalto de páginaNueva celda de s&ubsección Ctrl-4Nueva celda de &sección F8Nueva celda de subsecciónNueva celda de &título Ctrl-2Nueva celda de textoNueva celda de títuloNueva celda de entradaNueva celda de secciónNueva celda de subsecciónNueva celda de textoNueva celda de títuloSalto de páginaInsertar imagenIntegral/suma:IntegrarIntegrar (risch)Integrar expresiónIntegrar expresión con algoritmo RischIntegrarInterrumpirInterrumpir el cálculo actualEntrada no válida para el programa Maxima. Por favor, introduzca de nuevo la ruta al programa Maxima.Laplace inversaTrans&formada inversa de LaplaceItalianoItálicaJaponésMantener signo porcentual en símbolos especiales: %e, %i, etc.MCMIdioma usado en la interfaz de usuario de wxMaxima.Idioma:Laplace&Transformada de LaplaceMí&nimo común múltiploAjuste por mínimos cuadradosAjuste por mínimos cuadradosLímiteLímiteRegresión linealLista:CargarCargar paqueteCargar un archivo Maxima usando el comando batchCargar un paquete MaximaLeer estilo desde un archivoCota inferior:Distribuir sobre &matrizConstruir &listaConstruir listaConstruir una lista a partir de una expresiónHacer una sustitución en una expresiónAplicarAplicar función a una listaAplicar una función a una matrizHacer coincidir paréntesis en los controles de textoFuente matemática:MatrizAplicar matrizNombre de matriz:Matriz:MaximaA&yuda de Maxima F1Entrada MaximaMaxima está calculandoPaquete de Maxima (*.mac)|*.macPaquete Maxima (*.mac)|*.mac|Paquete Lisp (*.lisp)|*.lisp|Todos|*Proceso de Maxima terminado.Programa Maxima:Opciones de MaximaMaxima iniciado. Esperando la conexión...Maxima utiliza ':' para asignar un valor a una variable ('a : 3;') y ':=' para definir funciones ('f(x) := x^2;').Versión de Maxima: Test diferencia de mediasTest mediasMediaMedia:MedianaUnir celdasMétodo:MóduloNombreNuevo&Nuevo Ctrl-NNuevo documentoNuevo valor:Nueva variable:Siguiente instrucción Alt-Abajo¡No se encontraron coincidencias!Test de normalidad¡La dimensión de la matriz no es válida!¡El número de ecuaciones es incorrecto!No conectado.num deg:Número de ecuaciones:NúmerosAceptarValor antiguo:Variable antigua:Test t para una muestraTutoriales en líneaAbrirAbrir sesión &recienteAbrir una celda cuando Maxima espera una entradaAbrir un documentoAbrir nueva ventanaAbrir documentoAbrir matrizAbriendo archivoOpcionesOpciones:Celdas obsoletasEtiquetas de salidaAproximación de &PadéImagen PNG (*.png)|*.png|Imagen JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*.mbp|pixmap X (*.xpm)|*.xpmAproximación de PadéAproximación de Padé de una serie de TaylorSalto de página&PanelesGráfico paramétricoAnalizando salidaFraccion&es simplesFracciones simples¡Lectura del documento parcialmente correcta!PegarPe&gar Ctrl-VPegar desde el portapapelesPegar texto desde el portapapelesDiagrama de sectoresConfigure wxMaxima con 'Editar->Configurar'.Reinicie wxMaxima para que los cambios tengan efectoGráficos &2DGráficos &3D&Formato de gráficosGráficos 2DGráficos 2DGráficos 2DGráficos 3DGráficos 3DGráficos 3DFormato de los gráficosGráfico en 2 dimensionesGráfico en 3 dimensionesGráfico al archivo:Punto:PolacoPolinomio 1:Polinomio 2:Portugués (Brasileño)Archivo postscript (*.eps)|*.eps|Todos|*PrecisiónInstrucción anterior Alt-ArribaImprimirImprimir documentoProductoLeer matrizLeyendo salida de MaximaPreparado para la entrada de usuarioLlamar a la siguiente instrucción del historialLlamar a la instrucción anterior del historialForma cartesianaReducir (tr)Simplificar expresión trigonométrica&Borrar todos los resultadosBorrar resultados de las celdas de entradaReemplazadas %d coincidencias.Informar de errorReiniciar maximaIntegración &RischRaíces de un &polinomioRaíces reales &grandes de un polinomioFilas:RusoEjemplo 1:Ejemplo 2:Muestra:GuardarGuardar animaciónGuardar comoGuardar &como Shift-Ctrl-SGuardar imagen...Guardar selección en imagenG&uardar selección en imagenGuardar animación en fichero¿Se guardan los cambios antes de cerrar?¿Guardar cambios?Guardar documentoGuardar documento comoGuardar disposición de panelesGuardar disposición de paneles entre sesiones.Guardar gráfico en un archivoCopiar selección del documento a imagenGuardar selección en un archivoGuardar estilo en archivoGuardar el tamaño/posición de la ventana de wxMaximaGuardar tamaño/posición de la ventana de wxMaxima entre sesiones.Diagrama dispersiónDiagrama dispersiónSecciónCelda de secciónSeleccionar todo&Seleccionar todo Ctrl-ASeleccionar el programa MaximaSeleccionar submuestraSeleccionar una constanteSeleccionar todoSeleccionar el algoritmo de salida matemáticaSeleccionando una parte del resultado y pulsando el botón derecho emergerá un menú con funciones que se podrán aplicar sobre la selección.SelecciónSerieSerieServidor iniciadoEstablecer &precisiónEstablecer au&mentoEstablecer la precisión en coma flotanteEstablecer fuente fija en los controles de texto.Establecer el formato de los gráficosEstablecer ampliación a 100%Establecer ampliación a 120%Establecer ampliación a 150%Establecer ampliación a 200%Establecer ampliación a 300%Establecer disminución a 80%Establecer condiciones iniciales para resolver EDO mediante la transformada de LaplaceConfigurar cálculo de móduloMostrar &definiciónMostrar &funcionesMostrar &sugerenciasMostrar &variablesMostrar la ayuda de Maxima&Mostrar plantilla Ctrl-Shift-KMostrar una sugerenciaMostrar todos los comandos similares a:Mostrar un ejemplo para el comando:Mostrar un ejemplo de usoMostrar comandos similares aMostrar las funciones definidasMostrar las variables definidasMostrar la definición de una funciónMostrar plantilla de funciónMostrar expresiones largasMostrar expresiones largas en el documento de wxMaxima.Mostrar la definición de la función:SimplificarSimplificar &radicalesSimplificar (r)Simplificar(tr)Simplificar expresiónSimplificar una expresión que contiene factorialesSimplificar una expresión que contiene radicalesSimplificar expresión racionalSimplificar la sumaSimplificar una expresión trigonométricaDesde wxMaxima 0.8.2 se pueden insertar imágenes en los documentos. Seleccione 'Celda->Insertar imagen' en el menú. Téngase en cuenta que debe guardar el documento en formato 'Documento xml wxMaxima' si quiere que se almacene la imagen junto con el resto del documento.Solución:ResolverReso&lver sistema algebraicoResolver &sistema linealResolver &EDORes&olver (to_poly)Resolver EDOResolver E&DO con LaplaceResolver EDOResolver sistema algebraicoResolver sistema algebraico de ecuacionesResolver problema de contorno para una EDO de segundo ordenResolver ecuación(s)Resolver ecuación con to_poly_solverResolver problema de valor inicial para EDO de primer ordenResolver problema de valor inicial para EDO de segundo ordenResolver sistema linealResolver sistema de ecuaciones linealesResolver ecuación diferencial ordinaria de orden máximo 2Resolver ecuaciones diferenciales ordinarias con la transformada de LaplaceResolverEspañolEspecialConstantes especialesComenzar animaciónComenzar animaciónFalló el inicio de MaximaIniciando maxima...El inicio del servidor ha falladoIniciando servidor en el puerto %dEstadística&Estadística Alt-Shift-SPara animaciónCadenasEstiloEstilosSubmuestraSubsecciónCelda de subsecciónS&ustituirSustituirSustituirSumaInformación del sistemaSerie de Taylor:TellratTextoCelda de textoFondo de celda de textoPuerto predeterminado para comunicación entre Maxima y wxMaximaHay muchos recursos sobre Maxima y wxMaxima en internet. Visítese http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials para más información sobre cómo utilizar wxMaxima y Maxima.Ha habido un error en el XML generado! Por favor, informe de ésto como un error.¡Hubo un error durante la exportación a GIF! Asegúrese que ImageMagick está instalado y que wxMaxima tiene acceso al programa convert.Graduaciones:Veces:Sugerencia no disponible, lo sentimosTítuloCelda de títuloLas celdas de título, sección y subsección se pueden plegar para ocultar sus contenidos. Tanto para plegarlas como para desplegarlas hágase clic en el cuadrado contiguo a la celda. Si al mismo tiempo se pulsa 'Mayúsculas', todas los subniveles serán plegados/desplegados.A real grande (&bigfloat)A &realA realPara representar en coordenadas polares, seleccionar 'set polar' en la entrada de Opciones del cuadro de diálogo de Plot2D. También se puede representar en coordenadas esféricas y cilíndricas en 3D.Para colocar paréntesis alrededor de una expresión, selecciónese ésta y presiónese '(' o ')', dependiendo de dónde quiere que se coloque el cursor.Para guardar el tamaño y la posición de la ventana de wxMaxima entre sesiones, utilice 'Editar->Configurar'.Para comenzar a utilizar wxMaxima de inmediato, comience tecleando una instrucción. Aparecerá una celda de entrada. Pulse 'Mayúsculas-Retorno' para iniciar el cálculo.Hasta:Conmutar álge&braConmutar salida &numéricaConmutar pantalla de &tiempoConmutar álge&braConmutar edición de pantalla completaConmutar salida numérica&Barra de herramientas Alt-Shift-TIconos de la barra de herramientasTraducido porTrasponer una matriz&TutorialesTest t de dos muestrasTipo:UcranianoSubrayadoD&eshacer Ctrl-ZDeshacer último cambioSoporte UnicodeActualizarCota superior:Usar algoritmo GosperUsar punto centrado como operador de multiplicaciónUtilizar fuentes jsMathValor:Incógnita(s):Variable:VariablesVariables:VarianzaAvisoBienvenido a wxMaximaCuando se aplican funciones con un argumento del menú, el argumento predeterminado es '%'. Para aplicar la función a otro valor, selecciónelo en el documento antes de ejecutar la instrucción del menú.Ancho:Escribir paréntesis coincidentes en los controles de texto.Escrito porSe puede acceder a la última salida usando la variable '%' . Se puede acceder a la salida de los comandos previos usando las variables '%on' donde n es el número de la salida.Puede evaluar el documento completo seleccionando 'Celda-> Evaluar todas las celdas' en el menú. Las celdas se evaluarán en el orden en que aparecen en el documento.Se puede obtener información sobre una función de Maxima resaltando o haciendo clic sobre su nombre y pulsando F1. wxMaxima buscará la ayuda correspondiente a la palabra bajo el cursor.Se puede ocultar la parte del resultado de una celda haciendo clic sobre el triángulo a su izquierda. Esto también es aplicable a celdas de texto.Se pueden incluir diferentes tipos de celdas en un documento de wxMaxima seleccionando el menú 'Celda'. Téngase en cuenta que sólo se pueden evaluar celdas de entrada, mientras que el resto se utilizan para comentarios y estructuración del documento.Se pueden seleccionar varias celdas, bien con el ratón, haciendo clic y arrastrando entre celdas o corchetes de celdas, bien con el teclado, manteniendo pulsada la tecla de Mayúsculas mientras se mueve el cursor horizontal, para luego operar sobre la selección. Esto será útil cuando se quieran borrar o evaluar varias celdas a un tiempo.Tiene instalada la versión %s. La versión actual es %s. Selecciónese OK para acceder a la página de wxMaxima.Se perderán los cambios si no se guardan.La versión de wxMaxima está actualizadaAmpl&iar Alt-I&Disminuir Alt-ODisminuir 10%Ampliar 10%Establecer ampliación a [no guardado][no guardado*]antisimétricaambos ladospredeterminadodiagonalgeneralen líneaizquierdalíneas ocultasescala logarítmicamatriz[i,j]:noderechasimétricano guardadosin nombresin título %dwxMaximawxMaxima %s Configuración de wxMaximawxMaxima no pudo encontrar Maxima! Configure wxMaxima con 'Editar->Configurar. A continuación inicie Maxima con 'Maxima->Reiniciar maxima'.wxMaxima no pudo encontrar los archivos de ayuda. Compruebe su instalación.wxMaxima no pudo encontrar los archivos de sugerencias. Compruebe su instalación.wxMaxima no pudo iniciar el servidor. Verifique si dispone el soporte de red activado e inténtelo de nuevo!En los cuadros de diálogo de wxMaxima aparecen entradas predeterminadas, una de las cuales es '%'. Si ha hecho una selección en el documento, ésta será utilizada en lugar de '%'.Documento wxMaximaDocumento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|Archivo de Maxima (*.mac)|*.macDocumento wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encontró un error durante la carga Icono de wxMaximawxMaxima es una interface gráfica de usuario para el Sistema de Álgebra Simbólica (CAS) Maxima, basado en wxWidgets.wxMaxima es una interface gráfica de usuario para el Sistema de Álgebra Simbólica (CAS) Maxima, basado en wxWidgets.síwxMaxima-13.04.2/locales/es.po000644 000765 000024 00000325714 11705765322 016477 0ustar00andrejstaff000000 000000 # translation of es.po to # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Eulogio Serradilla , 2005. # Antonio Ullan , 2005, 2006, 2007. # Mario Rodriguez , 2009-2011 msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-10-29 04:38+0200\n" "PO-Revision-Date: 2007-08-02 17:05+0200\n" "Last-Translator: Mario Rodriguez \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Soporte unicode: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Versión de Maxima: " #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "¡No conectado a Maxima!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "No conectado." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << ¡Expresión excesivamente larga para ser mostrada! >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " fue guardado con una versión más actualizada de wxMaxima, por lo que es " "posible que no se cargue correctamente. Por favor, actualice wxMaxima." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" " fue guardado con una versión más actualizada de wxMaxima. Por favor, " "actualice wxMaxima." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "Álge&bra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "&Aplicar a lista" #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&A propósito" #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "Archivo por &lotes\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Pro&blema de contorno" #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Informar de e&rror" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "A&nálisis" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "Forma &canónica" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "Polinomio &característico" #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Limpiar memoria" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "&Combinar factoriales" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "Simplificación &compleja" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "Fracción contin&ua" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "&Copiar\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Integración &definida" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Determinante" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Derivar" #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Editar" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "Eliminar &variable" #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "&Introducir matriz" #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "&Ejemplo" #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "&Expandir expresión" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "Expandir &trigonometría" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "Expo&nencializar" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Exportar" #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "&Factorizar expresión" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Archivo" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "C&alcular raíz" #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "&Generar matriz" #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "Má&ximo común divisor" #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "A&yuda" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Integrar" #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "&Interrumpir\tCtrl-G" #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "&Interrumpir\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "In&vertir matriz" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Cargar &paquete\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "Distribui&r sobre lista" #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Cálculo del &módulo" #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Nuevo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "N&umérico" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Integración &numérica" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Nusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Abrir\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Abrir...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Gráficos" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Serie de &potencias" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Imprimir...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Racional" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "R&educir trigonometría" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Reiniciar Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "Raíces reales de un polino&mio" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Guardar\tCtrl-S" #: ../src/wxMaximaFrame.cpp:609 ../src/SumWiz.cpp:42 msgid "&Simplify" msgstr "&Simplificar" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "&Simplificar expresión" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "&Simplificar factoriales" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "&Simplificar trigonometría" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "&Resolver" #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "Especial" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Serie de Taylor" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "&Trasponer matriz" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "Simplificación &trigonométrica" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3D" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Usar idioma predeterminado)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- Infinito" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Se ha introducido en wxMaxima 0.8.0 un 'cursor horizontal'. Su aspecto es el " "de una línea horizontal entre celdas, indicando dónde aparecerá una nueva " "celda al escribir o copiar una nueva instrucción." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Se ha introducido en wxMaxima 0.8.2 un nuevo formato de documento que no " "sólo guarda las instrucciones y comentarios del usuario, sino también los " "resultados. Cuando se guarde el documento, seleccione 'Documento xml " "wxMaxima' " #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "&Condición inicial" #: ../src/wxMaxima.cpp:3490 ../src/wxMaximaFrame.cpp:665 msgid "About" msgstr "A&cerca de..." #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "Acerca de wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Corchete de celda activa" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Matriz ad&junta" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Añadir &igualdad algebraica" #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Añadir directorio a la ruta de búsqueda" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Añadir dir a la ruta:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Añadir igualdad al simplificador racional" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Aña&dir a la ruta" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Parámetros adicionales para Maxima (p. ej. -l clisp)" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Parámetros adicionales:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Todos|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animación" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Aplicar" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Aplicar función a lista" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "A propósito" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Array:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "Arte por" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "Preguntar para guardar documentos no titulados" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Condición inicial" #: ../src/wxMaxima.cpp:2464 ../src/BC2Wiz.cpp:57 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "Diagrama de barras" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Archivos bat (*.bat)|*.bat|Todos|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Archivo por lotes" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Negrita" #: ../src/wxMaximaFrame.cpp:1019 msgid "Boxplot..." msgstr "Diagrama de cajas" #: ../src/Plot3dWiz.cpp:124 ../src/Plot2dWiz.cpp:122 msgid "Browse" msgstr "Navegar" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "&Información de compilación" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Por defecto, Shift-Enter se utiliza para evaluar instrucciones, mientras " "Retorno se utiliza para introducir líneas múltiples. Este comportamiento se " "puede cambiar en 'Editar->Preferencias' seleccionando 'Tecla retorno evalúa " "celdas', con lo que se intercambiarán los roles de estas teclas." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "C&ambiar variable" #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "&Preferencias" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "&Calcular producto" #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Calcular su&ma" #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Formato real grande de la última expresión" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Formato real de la última expresión" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Calcular módulo:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Calcular productos" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Calcular sumas" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "No se puede acceder al servidor web." #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "No se puede descargar la versión." #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 #: ../src/Gen2Wiz.cpp:42 ../src/Gen2Wiz.cpp:44 ../src/wxMaxima.cpp:4419 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Gen1Wiz.cpp:34 ../src/Gen1Wiz.cpp:36 #: ../src/Plot3dWiz.cpp:103 ../src/Plot3dWiz.cpp:105 ../src/Gen4Wiz.cpp:55 #: ../src/Gen4Wiz.cpp:57 ../src/Plot2dWiz.cpp:101 ../src/Plot2dWiz.cpp:103 #: ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 ../src/Plot2dWiz.cpp:656 #: ../src/Plot2dWiz.cpp:658 ../src/LimitWiz.cpp:51 ../src/LimitWiz.cpp:53 #: ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 ../src/SubstituteWiz.cpp:40 #: ../src/SubstituteWiz.cpp:42 ../src/BC2Wiz.cpp:44 ../src/BC2Wiz.cpp:46 #: ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 msgid "Cancel" msgstr "Cancelar" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "Canónico (tr)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Catalán" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "Ce&lda" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Corchete de celda" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Cambiar pantalla &2D" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "" "Cambiar el algoritmo empleado para mostrar la salida matemática en la " "pantalla 2D." #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Cambiar variable" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Cambiar variable en integral o suma" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Polinomio característico" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "Comprueba actualizaciones" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Comprueba si existe nueva versión de wxMaxima/Maxima." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Chino tradicional" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Elegir fuente" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Elegir un nuevo formato de gráficos:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "Clases:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "&Cerrar\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Cerrar ventana" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Nombres col.:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Columnas:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Combinar factoriales en una expresión" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Coordenadas x separadas por comas." #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Coordenadas y separadas por comas." #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Comentar selección" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "&Autocompletar\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Autocompletar" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Calcular fracción continua de un valor" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Calcula la matriz adjunta" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Calcula el polinomio característico de una matriz" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Calcular el determinante de una matriz" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Calcular el máximo común divisor" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Calcular la inversa de una matriz" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Calcular el mínimo común múltiplo (cargar(funciones) antes de usar)" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Condición" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Fichero de configuración (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Advertencia sobre configuración" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "Configurar wxMaxima" #: ../src/SeriesWiz.cpp:109 ../src/LimitWiz.cpp:135 #: ../src/IntegrateWiz.cpp:219 ../src/IntegrateWiz.cpp:238 msgid "Constant" msgstr "Constante" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "C&ontraer logaritmos" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Convertir binomiales, funciones beta y gamma a factoriales" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Convertir binomiales, funciones factoriales y beta a función gamma" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Convertir expresión compleja a forma polar" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Convertir expresión compleja a forma cartesiana" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Convertir función exponencial de argumento imaginario a forma trigonométrica" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Convertir logaritmo de un producto en suma de logaritmos" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Convertir suma de logaritmos en logaritmo de un producto" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Convertir a &factoriales" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Convertir a &gamma" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Convertir a forma &polar" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "Convertir a forma &cartesiana" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Convertir expresión trigonométrica a forma canónica casi lineal" #: ../src/wxMaximaFrame.cpp:590 msgid "Convert trigonometric functions to exponential form" msgstr "Convertir funciones trigonométricas a forma exponencial" #: ../src/wxMaximaFrame.cpp:716 ../src/wxMaximaFrame.cpp:785 #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 msgid "Copy" msgstr "Copiar" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Copiar como imagen" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Copiar LaTeX" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "&Copiar entrada anterior\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Copiar como imagen" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Copiar como &LaTeX" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Copiar como &texto\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Copiar selección" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Copiar selección del documento como imagen" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Copiar selección del documento en formato texto" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Copiar selección del documento en formato LaTeX" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Crear una nueva celda con la entrada anterior" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Cursor" #: ../src/wxMaximaFrame.cpp:713 ../src/wxMaximaFrame.cpp:781 #: ../src/MathCtrl.cpp:731 msgid "Cut" msgstr "Cortar" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "Co&rtar\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Cortar selección" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Checo" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Danés" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Matriz de datos:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Archivo de datos (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Datos:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Descomponer función racional en fracciones simples" #: ../src/Config.cpp:351 msgid "Default" msgstr "Predeterminado" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Fuente predeterminada:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Puerto predeterminado:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Borrar" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Borrar f&unción" #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Borrar selección" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "Borrar v&ariable" #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Borrar una función" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Borrar una variable" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Eliminar todas las variables de la memoria" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Borrar función(es):" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Borrar variable(s):" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "denom deg:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "profundidad:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Derivada:" #: ../src/wxMaximaFrame.cpp:1003 msgid "Deviation..." msgstr "Desviación" #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Di&vidir polinomios" #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Derivar" #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Derivar" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Derivar expresión" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Derivar" #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Dirección:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Gráfico discreto" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Mostrar formato Te&X" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Mostrar algoritmo" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Mostrar último resultado en formato TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Mostrar tiempo de ejecución" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Dividir" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Dividir celda" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Dividir números o polinomios" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "¿Quiere guardar los cambios hechos al documento \"" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Documento" #: ../src/Config.cpp:368 msgid "Document background" msgstr "Fondo" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "No guardar" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "E&cuaciones" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "&Salir\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Vectores &propios" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Va&lores propios" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Eliminar" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Eliminar una variable de un sistema de ecuaciones" #: ../src/Config.cpp:243 msgid "English" msgstr "Inglés" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 msgid "Enter Data" msgstr "Introducir datos" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Introducir matriz" #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Introducir una matriz" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Introducir una ecuación para simplificación racional:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Introducir una lista de variables separadas por comas." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Tecla retorno evalúa celdas" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Introducir matriz" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Introducir nueva precisión:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Introducir la ruta al ejecutable Maxima." #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Ecuación %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Ecuación:" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Ecuación:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Ecuaciones:" #: ../src/wxMaxima.cpp:393 ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 #: ../src/wxMaxima.cpp:1043 ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 #: ../src/wxMaxima.cpp:1499 ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 #: ../src/wxMaxima.cpp:4322 ../src/wxMaxima.cpp:4367 ../src/ImgCell.cpp:101 #: ../src/Config.cpp:488 msgid "Error" msgstr "Error" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Error %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "¡Error!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Evaluar formas &nominales" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Evaluar t&odas las celdas\tCtrl-R" #: ../src/wxMaximaFrame.cpp:282 ../src/MathCtrl.cpp:681 msgid "Evaluate Cell(s)" msgstr "E&valuar celda(s)" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Evaluar celdas activas o seleccionadas" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Evaluar todas las celdas del documento" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Evaluar todas las formas nominales en una expresión" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Ejemplo" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Texto de ejemplo" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Salir de wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Expandir" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Expandir (tr)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Expandir expresión" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Ex&pandir logaritmos" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Expandir una expresión" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Expandir expresión trigonométrica" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "&Exportar" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Exportar documento a archivo HTML o pdfLaTeX" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "¡Falló la exportación a HTML!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "¡Falló la exportación a TeX!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Expresión" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Expresión(es):" #: ../src/SeriesWiz.cpp:32 ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 #: ../src/wxMaxima.cpp:2981 ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 #: ../src/wxMaxima.cpp:3042 ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 #: ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3901 ../src/LimitWiz.cpp:26 #: ../src/SumWiz.cpp:30 ../src/SubstituteWiz.cpp:27 ../src/IntegrateWiz.cpp:36 msgid "Expression:" msgstr "Expresión:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Factorizar" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Factorizar comple&jo" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Factorizar expresión" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Factorizar una expresión" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Factorizar una expresión en números gausianos" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Factoriales y &gamma" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Error fatal" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "Figura %d:" #: ../src/main.cpp:107 msgid "File" msgstr "Archivo" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "Archivo no encontrado" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "El archivo a abrir no existe." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Archivo" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Buscar" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "&Buscar\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Calcular &límite" #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Calcular mínim&o" #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Calcular raíz..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Calcular mínimo (sin restricciones) de una expresión" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Calcular el límite de una expresión" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Calcular una raíz de una ecuación en un intervalo" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Calcular todas las raíces de un polinomio" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Calcular todas las raíces reales de un polinomio" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Buscar y sustituir" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Buscar y sustituir" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Calcular los valores propios de una matriz" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Calcular los vectores propios de una matriz" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Calcular mínimo" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Calcular las raíces reales de un polinomio" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Calcular raíz" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Calcular..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Fuente proporcional en controles de texto" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Fuente usada en el documento." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Fuente usada para mostrar caracteres matemáticos en el documento." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Fuentes" #: ../src/Plot3dWiz.cpp:69 ../src/Plot2dWiz.cpp:70 msgid "Format:" msgstr "Formato:" #: ../src/Config.cpp:244 msgid "French" msgstr "Francés" #: ../src/wxMaxima.cpp:2726 ../src/wxMaxima.cpp:3147 ../src/Plot3dWiz.cpp:46 #: ../src/Plot3dWiz.cpp:55 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 msgid "From:" msgstr "Desde:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "P&antalla completa\tAlt-Retorno" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Función" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Nombres de funciones" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Función" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Función" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Funciones para la simplificación compleja" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Funciones para simplificar factoriales y función gamma" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Funciones para simplificar expresiones trigonométricas" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "MCD" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "Imagen GIF (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Matemáticas generales" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "&Matemáticas generales\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Generar matriz" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "&Generar matriz a partir de expresión" #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Generar una matriz a partir de una tabla de 2 dimensiones" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Generar una matriz a partir de una expresión lambda" #: ../src/Config.cpp:245 msgid "German" msgstr "Alemán" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "Calcular parte &imaginaria" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Calcular &serie" #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Calcular la transformada de Laplace de una expresión" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "Calcular parte &real" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Calcular la transformada inversa de Laplace de una expresión" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Calcular el desarrollo de Taylor o serie de potencias de la expresión" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Calcular la parte imaginaria de una expresión compleja" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Calcular la parte real de una expresión compleja" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Griego" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Constantes griegas" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Cuadrícula:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Archivo HTML (*.html)|*.html|Archivo pdfLaTeX (*.tex)|*.tex|Todos|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Altura:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "A&yuda" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "&Ocultar todo\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Ocultar todos los paneles" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Resaltado" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Histograma" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Histograma" #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Historia" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "&Historia\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "El cursor horizontal funciona como un cursor normal, pero opera con celdas: " "pulsar cursores arriba y abajo para moverlo; manteniendo pulsada la tecla " "'Mayúscula'mientras se realiza el movimiento se seleccionan celdas, pulsando " "'Retroceso' o 'Espacio' dos veces borrará la celda contigua." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Húngaro" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Si un cálculo dura mucho tiempo, se puede parar seleccionando 'Maxima-" ">Interrumpir' o 'Maxima->Reiniciar Maxima' en el menú." #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Imagen" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Archivos gráficos (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "Incluir columnas:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Infinito" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Información sobre la compilación de Maxima" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Estimadores iniciales:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Problema de valor inicial (&1)" #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Problema de valor inicial (&2)" #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Introducir etiquetas" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Insertar" #: ../src/wxMaximaFrame.cpp:302 msgid "Insert &Section Cell\tCtrl-3" msgstr "Nueva celda de &sección\tCtrl-3" #: ../src/wxMaximaFrame.cpp:298 msgid "Insert &Text Cell\tCtrl-1" msgstr "Nueva celda de te&xto\tCtrl-1" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "In&sertar celda\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Insertar imagen" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "I&nsertar imagen" #: ../src/wxMaximaFrame.cpp:296 msgid "Insert Input &Cell" msgstr "Nueva celda de &entrada" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Page Break" msgstr "Salto de página" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Nueva celda de s&ubsección\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Nueva celda de &sección\tF8" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Nueva celda de subsección" #: ../src/wxMaximaFrame.cpp:300 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Nueva celda de &título\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Nueva celda de texto" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Nueva celda de título" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Nueva celda de entrada" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Nueva celda de sección" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Nueva celda de subsección" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Nueva celda de texto" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Nueva celda de título" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Salto de página" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Insertar imagen" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Integral/suma:" #: ../src/wxMaxima.cpp:3012 ../src/wxMaxima.cpp:3888 #: ../src/IntegrateWiz.cpp:72 msgid "Integrate" msgstr "Integrar" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Integrar (risch)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Integrar expresión" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Integrar expresión con algoritmo Risch" #: ../src/wxMaximaFrame.cpp:969 ../src/MathCtrl.cpp:709 msgid "Integrate..." msgstr "Integrar" #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Interrumpir" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Interrumpir el cálculo actual" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Entrada no válida para el programa Maxima.\n" "\n" "Por favor, introduzca de nuevo la ruta al programa Maxima." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Laplace inversa" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "Trans&formada inversa de Laplace" #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italiano" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Itálica" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Japonés" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Mantener signo porcentual en símbolos especiales: %e, %i, etc." #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "MCM" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Idioma usado en la interfaz de usuario de wxMaxima." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Idioma:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "&Transformada de Laplace" #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Mí&nimo común múltiplo" #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Ajuste por mínimos cuadrados" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Ajuste por mínimos cuadrados" #: ../src/wxMaxima.cpp:3099 ../src/LimitWiz.cpp:66 msgid "Limit" msgstr "Límite" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Límite" #: ../src/wxMaximaFrame.cpp:1010 msgid "Linear Regression..." msgstr "Regresión lineal" #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Lista:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Cargar" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Cargar paquete" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Cargar un archivo Maxima usando el comando batch" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Cargar un paquete Maxima" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Leer estilo desde un archivo" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Cota inferior:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Distribuir sobre &matriz" #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "Construir &lista" #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Construir lista" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Construir una lista a partir de una expresión" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Hacer una sustitución en una expresión" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Aplicar" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Aplicar función a una lista" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Aplicar una función a una matriz" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Hacer coincidir paréntesis en los controles de texto" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Fuente matemática:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Matriz" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Aplicar matriz" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Nombre de matriz:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Matriz:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "A&yuda de Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Entrada Maxima" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima está calculando" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Paquete de Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Paquete Maxima (*.mac)|*.mac|Paquete Lisp (*.lisp)|*.lisp|Todos|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Proceso de Maxima terminado." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Programa Maxima:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Opciones de Maxima" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima iniciado. Esperando la conexión..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima utiliza ':' para asignar un valor a una variable ('a : 3;') y ':=' " "para definir funciones ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Versión de Maxima: " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "Test diferencia de medias" #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "Test medias" #: ../src/wxMaximaFrame.cpp:1000 msgid "Mean..." msgstr "Media" #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Media:" #: ../src/wxMaximaFrame.cpp:1001 msgid "Median..." msgstr "Mediana" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Unir celdas" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Método:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Módulo" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Nombre" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "Nuevo" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "&Nuevo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 msgid "New document" msgstr "Nuevo documento" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Nuevo valor:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Nueva variable:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "Siguiente instrucción\tAlt-Abajo" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "¡No se encontraron coincidencias!" #: ../src/wxMaximaFrame.cpp:1009 msgid "Normality Test..." msgstr "Test de normalidad" #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "¡La dimensión de la matriz no es válida!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "¡El número de ecuaciones es incorrecto!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "No conectado." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "num deg:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Número de ecuaciones:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Números" #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 #: ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 ../src/Gen3Wiz.cpp:48 #: ../src/Gen3Wiz.cpp:52 ../src/PlotFormatWiz.cpp:40 #: ../src/PlotFormatWiz.cpp:44 ../src/Gen1Wiz.cpp:33 ../src/Gen1Wiz.cpp:37 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 ../src/Gen4Wiz.cpp:54 #: ../src/Gen4Wiz.cpp:58 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/LimitWiz.cpp:50 ../src/LimitWiz.cpp:54 #: ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 ../src/SubstituteWiz.cpp:39 #: ../src/SubstituteWiz.cpp:43 ../src/BC2Wiz.cpp:43 ../src/BC2Wiz.cpp:47 #: ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 msgid "OK" msgstr "Aceptar" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Valor antiguo:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Variable antigua:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "Test t para una muestra" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Tutoriales en línea" #: ../src/wxMaxima.cpp:1926 ../src/wxMaximaFrame.cpp:697 #: ../src/wxMaximaFrame.cpp:761 ../src/Config.cpp:306 ../src/main.cpp:202 msgid "Open" msgstr "Abrir" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Abrir sesión &reciente" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "Abrir una celda cuando Maxima espera una entrada" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Abrir un documento" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Abrir nueva ventana" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Abrir documento" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "Abrir matriz" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Abriendo archivo" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Opciones" #: ../src/Plot3dWiz.cpp:80 ../src/Plot2dWiz.cpp:81 msgid "Options:" msgstr "Opciones:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Celdas obsoletas" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Etiquetas de salida" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Aproximación de &Padé" #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "Imagen PNG (*.png)|*.png|Imagen JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*." "mbp|pixmap X (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Aproximación de Padé" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Aproximación de Padé de una serie de Taylor" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Salto de página" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "&Paneles" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Gráfico paramétrico" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Analizando salida" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "Fraccion&es simples" #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Fracciones simples" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "¡Lectura del documento parcialmente correcta!" #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 msgid "Paste" msgstr "Pegar" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "Pe&gar\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Pegar desde el portapapeles" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Pegar texto desde el portapapeles" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "Diagrama de sectores" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Configure wxMaxima con 'Editar->Configurar'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Reinicie wxMaxima para que los cambios tengan efecto" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "Gráficos &2D" #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "Gráficos &3D" #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "&Formato de gráficos" #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "Gráficos 2D" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "Gráficos 2D" #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "Gráficos 2D" #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "Gráficos 3D" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "Gráficos 3D" #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "Gráficos 3D" #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Formato de los gráficos" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "Gráfico en 2 dimensiones" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "Gráfico en 3 dimensiones" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Gráfico al archivo:" #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 #: ../src/BC2Wiz.cpp:35 msgid "Point:" msgstr "Punto:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polaco" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Polinomio 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Polinomio 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portugués (Brasileño)" #: ../src/Plot3dWiz.cpp:461 ../src/Plot2dWiz.cpp:515 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Archivo postscript (*.eps)|*.eps|Todos|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Precisión" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "Instrucción anterior\tAlt-Arriba" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Imprimir" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Imprimir documento" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Producto" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "Leer matriz" #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Leyendo salida de Maxima" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Preparado para la entrada de usuario" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "Llamar a la siguiente instrucción del historial" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "Llamar a la instrucción anterior del historial" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Forma cartesiana" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Reducir (tr)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Simplificar expresión trigonométrica" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "&Borrar todos los resultados" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Borrar resultados de las celdas de entrada" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "Reemplazadas %d coincidencias." #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Informar de error" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Reiniciar maxima" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Integración &Risch" #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Raíces de un &polinomio" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Raíces reales &grandes de un polinomio" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Filas:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Ruso" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Ejemplo 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Ejemplo 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Muestra:" #: ../src/wxMaxima.cpp:4419 ../src/wxMaximaFrame.cpp:700 #: ../src/wxMaximaFrame.cpp:765 ../src/Config.cpp:387 msgid "Save" msgstr "Guardar" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Guardar animación" #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Guardar como" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Guardar &como\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Guardar imagen..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Guardar selección en imagen" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "G&uardar selección en imagen" #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Guardar animación en fichero" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "¿Se guardan los cambios antes de cerrar?" #: ../src/wxMaxima.cpp:4432 msgid "Save changes?" msgstr "¿Guardar cambios?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Guardar documento" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Guardar documento como" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Guardar disposición de paneles" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Guardar disposición de paneles entre sesiones." #: ../src/Plot3dWiz.cpp:459 ../src/Plot2dWiz.cpp:513 msgid "Save plot to file" msgstr "Guardar gráfico en un archivo" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Copiar selección del documento a imagen" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Guardar selección en un archivo" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Guardar estilo en archivo" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Guardar el tamaño/posición de la ventana de wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Guardar tamaño/posición de la ventana de wxMaxima entre sesiones." #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "Diagrama dispersión" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "Diagrama dispersión" #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Sección" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Celda de sección" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Seleccionar todo" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "&Seleccionar todo\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Seleccionar el programa Maxima" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "Seleccionar submuestra" #: ../src/SeriesWiz.cpp:108 ../src/LimitWiz.cpp:134 #: ../src/IntegrateWiz.cpp:218 ../src/IntegrateWiz.cpp:237 msgid "Select a constant" msgstr "Seleccionar una constante" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Seleccionar todo" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Seleccionar el algoritmo de salida matemática" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Seleccionando una parte del resultado y pulsando el botón derecho emergerá " "un menú con funciones que se podrán aplicar sobre la selección." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Selección" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Serie" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Serie" #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Servidor iniciado" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Establecer &precisión" #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Establecer au&mento" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Establecer la precisión en coma flotante" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Establecer fuente fija en los controles de texto." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Establecer el formato de los gráficos" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Establecer ampliación a 100%" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Establecer ampliación a 120%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Establecer ampliación a 150%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Establecer ampliación a 200%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Establecer ampliación a 300%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Establecer disminución a 80%" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" "Establecer condiciones iniciales para resolver EDO mediante la transformada " "de Laplace" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Configurar cálculo de módulo" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Mostrar &definición" #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Mostrar &funciones" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Mostrar &sugerencias" #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Mostrar &variables" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Mostrar la ayuda de Maxima" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "&Mostrar plantilla\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Mostrar una sugerencia" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Mostrar todos los comandos similares a:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Mostrar un ejemplo para el comando:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Mostrar un ejemplo de uso" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Mostrar comandos similares a" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Mostrar las funciones definidas" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Mostrar las variables definidas" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Mostrar la definición de una función" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "Mostrar plantilla de función" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Mostrar expresiones largas" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Mostrar expresiones largas en el documento de wxMaxima." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Mostrar la definición de la función:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Simplificar" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Simplificar &radicales" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Simplificar (r)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Simplificar(tr)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Simplificar expresión" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Simplificar una expresión que contiene factoriales" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Simplificar una expresión que contiene radicales" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Simplificar expresión racional" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Simplificar la suma" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Simplificar una expresión trigonométrica" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Desde wxMaxima 0.8.2 se pueden insertar imágenes en los documentos. " "Seleccione 'Celda->Insertar imagen' en el menú. Téngase en cuenta que debe " "guardar el documento en formato 'Documento xml wxMaxima' si quiere que se " "almacene la imagen junto con el resto del documento." #: ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 ../src/BC2Wiz.cpp:26 msgid "Solution:" msgstr "Solución:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Resolver" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Reso&lver sistema algebraico" #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Resolver &sistema lineal" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Resolver &EDO" #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Res&olver (to_poly)" #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Resolver EDO" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Resolver E&DO con Laplace" #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Resolver EDO" #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Resolver sistema algebraico" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Resolver sistema algebraico de ecuaciones" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Resolver problema de contorno para una EDO de segundo orden" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Resolver ecuación(s)" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Resolver ecuación con to_poly_solver" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Resolver problema de valor inicial para EDO de primer orden" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Resolver problema de valor inicial para EDO de segundo orden" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Resolver sistema lineal" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Resolver sistema de ecuaciones lineales" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Resolver ecuación diferencial ordinaria de orden máximo 2" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "" "Resolver ecuaciones diferenciales ordinarias con la transformada de Laplace" #: ../src/wxMaximaFrame.cpp:966 ../src/MathCtrl.cpp:701 msgid "Solve..." msgstr "Resolver" #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Español" #: ../src/SeriesWiz.cpp:41 ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 msgid "Special" msgstr "Especial" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Constantes especiales" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Comenzar animación" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Comenzar animación" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Falló el inicio de Maxima" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Iniciando maxima..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "El inicio del servidor ha fallado" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Iniciando servidor en el puerto %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Estadística" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "&Estadística\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Para animación" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Cadenas" #: ../src/Config.cpp:99 msgid "Style" msgstr "Estilo" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Estilos" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "Submuestra" #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Subsección" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Celda de subsección" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "S&ustituir" #: ../src/wxMaxima.cpp:2330 ../src/wxMaxima.cpp:3926 #: ../src/SubstituteWiz.cpp:53 msgid "Substitute" msgstr "Sustituir" #: ../src/wxMaximaFrame.cpp:596 ../src/MathCtrl.cpp:707 msgid "Substitute..." msgstr "Sustituir" #: ../src/wxMaxima.cpp:3133 ../src/SumWiz.cpp:61 msgid "Sum" msgstr "Suma" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "Información del sistema" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Serie de Taylor:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Texto" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Celda de texto" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Fondo de celda de texto" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Puerto predeterminado para comunicación entre Maxima y wxMaxima" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Hay muchos recursos sobre Maxima y wxMaxima en internet. Visítese http://" "wxmaxima.sourceforge.net/wiki/index.php/Tutorials para más información sobre " "cómo utilizar wxMaxima y Maxima." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Ha habido un error en el XML generado!\n" "\n" "Por favor, informe de ésto como un error." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "¡Hubo un error durante la exportación a GIF!\n" "\n" "Asegúrese que ImageMagick está instalado y que wxMaxima tiene acceso al " "programa convert." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Graduaciones:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Veces:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Sugerencia no disponible, lo sentimos" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Título" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Celda de título" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Las celdas de título, sección y subsección se pueden plegar para ocultar sus " "contenidos. Tanto para plegarlas como para desplegarlas hágase clic en el " "cuadrado contiguo a la celda. Si al mismo tiempo se pulsa 'Mayúsculas', " "todas los subniveles serán plegados/desplegados." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "A real grande (&bigfloat)" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "A &real" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "A real" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Para representar en coordenadas polares, seleccionar 'set polar' en la " "entrada de Opciones del cuadro de diálogo de Plot2D. También se puede " "representar en coordenadas esféricas y cilíndricas en 3D." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Para colocar paréntesis alrededor de una expresión, selecciónese ésta y " "presiónese '(' o ')', dependiendo de dónde quiere que se coloque el cursor." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Para guardar el tamaño y la posición de la ventana de wxMaxima entre " "sesiones, utilice 'Editar->Configurar'." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Para comenzar a utilizar wxMaxima de inmediato, comience tecleando una " "instrucción. Aparecerá una celda de entrada. Pulse 'Mayúsculas-Retorno' para " "iniciar el cálculo." #: ../src/wxMaxima.cpp:2726 ../src/wxMaxima.cpp:3148 ../src/Plot3dWiz.cpp:49 #: ../src/Plot3dWiz.cpp:58 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 msgid "To:" msgstr "Hasta:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Conmutar álge&bra" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Conmutar salida &numérica" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Conmutar pantalla de &tiempo" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Conmutar álge&bra" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Conmutar edición de pantalla completa" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Conmutar salida numérica" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "&Barra de herramientas\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "Iconos de la barra de herramientas" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Traducido por" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Trasponer una matriz" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "&Tutoriales" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "Test t de dos muestras" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Tipo:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ucraniano" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Subrayado" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "D&eshacer\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Deshacer último cambio" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Soporte Unicode" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "Actualizar" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Cota superior:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Usar algoritmo Gosper" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Usar punto centrado como operador de multiplicación" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Utilizar fuentes jsMath" #: ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 msgid "Value:" msgstr "Valor:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Incógnita(s):" #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 ../src/Plot2dWiz.cpp:46 #: ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 ../src/LimitWiz.cpp:29 #: ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 msgid "Variable:" msgstr "Variable:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Variables" #: ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 ../src/wxMaxima.cpp:3687 #: ../src/SystemWiz.cpp:72 msgid "Variables:" msgstr "Variables:" #: ../src/wxMaximaFrame.cpp:1002 msgid "Variance..." msgstr "Varianza" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Aviso" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Bienvenido a wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Cuando se aplican funciones con un argumento del menú, el argumento " "predeterminado es '%'. Para aplicar la función a otro valor, selecciónelo en " "el documento antes de ejecutar la instrucción del menú." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Ancho:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Escribir paréntesis coincidentes en los controles de texto." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Escrito por" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Se puede acceder a la última salida usando la variable '%' . Se puede " "acceder a la salida de los comandos previos usando las variables '%on' donde " "n es el número de la salida." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Puede evaluar el documento completo seleccionando 'Celda-> Evaluar todas las " "celdas' en el menú. Las celdas se evaluarán en el orden en que aparecen en " "el documento." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Se puede obtener información sobre una función de Maxima resaltando o " "haciendo clic sobre su nombre y pulsando F1. wxMaxima buscará la ayuda " "correspondiente a la palabra bajo el cursor." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Se puede ocultar la parte del resultado de una celda haciendo clic sobre el " "triángulo a su izquierda. Esto también es aplicable a celdas de texto." #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Se pueden incluir diferentes tipos de celdas en un documento de wxMaxima " "seleccionando el menú 'Celda'. Téngase en cuenta que sólo se pueden evaluar " "celdas de entrada, mientras que el resto se utilizan para comentarios y " "estructuración del documento." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Se pueden seleccionar varias celdas, bien con el ratón, haciendo clic y " "arrastrando entre celdas o corchetes de celdas, bien con el teclado, " "manteniendo pulsada la tecla de Mayúsculas mientras se mueve el cursor " "horizontal, para luego operar sobre la selección. Esto será útil cuando se " "quieran borrar o evaluar varias celdas a un tiempo." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Tiene instalada la versión %s. La versión actual es %s.\n" "\n" "Selecciónese OK para acceder a la página de wxMaxima." #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "Se perderán los cambios si no se guardan." #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "La versión de wxMaxima está actualizada" #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Ampl&iar\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "&Disminuir\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Disminuir 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Ampliar 10%" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Establecer ampliación a " #: ../src/wxMaxima.cpp:4211 ../src/wxMaximaFrame.cpp:93 msgid "[ unsaved ]" msgstr "[no guardado]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[no guardado*]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antisimétrica" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "ambos lados" #: ../src/Plot3dWiz.cpp:72 ../src/Plot3dWiz.cpp:388 ../src/Plot2dWiz.cpp:73 #: ../src/Plot2dWiz.cpp:398 msgid "default" msgstr "predeterminado" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonal" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "general" #: ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 ../src/Plot3dWiz.cpp:388 #: ../src/Plot3dWiz.cpp:419 ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 #: ../src/Plot2dWiz.cpp:398 ../src/Plot2dWiz.cpp:431 msgid "inline" msgstr "en línea" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "izquierda" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "líneas ocultas" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "escala logarítmica" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "matriz[i,j]:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "no" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "derecha" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "simétrica" #: ../src/wxMaxima.cpp:4403 msgid "unsaved" msgstr "no guardado" #: ../src/wxMaxima.cpp:1835 ../src/wxMaxima.cpp:1948 #: ../src/wxMaximaFrame.cpp:95 msgid "untitled" msgstr "sin nombre" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "sin título %d" #: ../src/wxMaxima.cpp:3440 ../src/main.cpp:167 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaxima.cpp:4211 ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 #: ../src/wxMaxima.cpp:4225 ../src/wxMaximaFrame.cpp:93 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Configuración de wxMaxima" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima no pudo encontrar Maxima!\n" "\n" "Configure wxMaxima con 'Editar->Configurar.\n" "A continuación inicie Maxima con 'Maxima->Reiniciar maxima'." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima no pudo encontrar los archivos de ayuda.\n" "Compruebe su instalación." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima no pudo encontrar los archivos de sugerencias.\n" "\n" "Compruebe su instalación." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima no pudo iniciar el servidor.\n" "\n" "Verifique si dispone el soporte de red\n" "activado e inténtelo de nuevo!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "En los cuadros de diálogo de wxMaxima aparecen entradas predeterminadas, una " "de las cuales es '%'. Si ha hecho una selección en el documento, ésta será " "utilizada en lugar de '%'." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "Documento wxMaxima" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "Documento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|" "Archivo de Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1928 ../src/main.cpp:204 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "Documento wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima encontró un error durante la carga " #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "Icono de wxMaxima" #: ../src/wxMaxima.cpp:3355 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima es una interface gráfica de usuario para el Sistema de Álgebra " "Simbólica (CAS) Maxima, basado en wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima es una interface gráfica de usuario para el Sistema de Álgebra " "Simbólica (CAS) Maxima, basado en wxWidgets." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "sí" #~ msgid "&Cell" #~ msgstr "Ce&lda" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Nueva ventana\tCtrl-N" #~ msgid "Close document?" #~ msgstr "¿Cerrar documento?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "¡Documento no guardado!\n" #~ "\n" #~ "¿Cerrar el documento actual y perder todos los cambios?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "¡Documento no guardado!\n" #~ "\n" #~ "¿Abandonar wxMaxima y perder todos los cambios?" #~ msgid "Maxima options" #~ msgstr "Opciones de Maxima" #~ msgid "Quit?" #~ msgstr "¿Salir?" #~ msgid "wxMaxima options" #~ msgstr "Opciones de wxMaxima" #~ msgid "Mean" #~ msgstr "Media" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima es una interface gráfica de usuario para \n" #~ "el Sistema de Cálculo Simbólico Maxima, basado en wxWidgets." #~ msgid "<< Nothing to display >>" #~ msgstr "<< Nada que mostrar >>" #~ msgid "Functions and macros" #~ msgstr "Funciones y macros" #~ msgid "Inspector" #~ msgstr "Inspector" #~ msgid "Inspector\tAlt-Shift-I" #~ msgstr "&Inspector\tAlt-Shift-I" #~ msgid "Labels" #~ msgstr "Etiquetas" #~ msgid "Autocomplete" #~ msgstr "Autocompletar" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "Copiar selección al portapapeles cuando se hace en el documento." #~ msgid "Copy to clipboard on select" #~ msgstr "Copiar la selección al portapapeles" #~ msgid "Input" #~ msgstr "Entrada" #~ msgid "Save document as ..." #~ msgstr "Guardar documento como" #~ msgid "Show Maxima header" #~ msgstr "Mostrar el encabezamiento de Maxima" #~ msgid "Show initial header with Maxima system information." #~ msgstr "Mostrar encabezamiento inicial con información de Maxima." #~ msgid "Adjustment for the size of greek font." #~ msgstr "Ajuste para el tamaño de la fuente griega" #~ msgid "Adjustment:" #~ msgstr "Ajuste:" #~ msgid "Basic" #~ msgstr "Básico" #~ msgid "Button panel:" #~ msgstr "Panel de botones:" #~ msgid "Copy selected cell(s)" #~ msgstr "Copiar celda(s) seleccionada(s)" #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr "Cortar Celda(s)\tCtrl-Shift-X" #~ msgid "Decrease fontsize in document" #~ msgstr "Disminuir el tamaño de la fuente en el documento" #~ msgid "Delete selected cell(s)" #~ msgstr "Borrar celda(s) seleccionada(s)" #~ msgid "Delete selection" #~ msgstr "Borrar selección" #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr "Fuente usada para mostrar glifos unicode en el documento." #~ msgid "Full" #~ msgstr "Completo" #~ msgid "Increase fontsize in document" #~ msgstr "Aumentar el tamaño de fuente del documento." #~ msgid "Insert input cell" #~ msgstr "Insertar celda de entrada" #~ msgid "Insert input group" #~ msgstr "Insertar grupo de entrada" #~ msgid "Insert text" #~ msgstr "Insertar texto" #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr "Celda de nuevo t&ítulo\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "Desactivado" #~ msgid "Paste cell(s) to document" #~ msgstr "Pegar celda(s) al documento" #~ msgid "Product..." #~ msgstr "Producto" #~ msgid "Select file to open" #~ msgstr "Seleccionar archivo para abrir" #~ msgid "Sum..." #~ msgstr "Suma" #~ msgid "To &Float\tCtrl-F" #~ msgstr "A real \tCtrl-F" #~ msgid "Use greek font to display greek characters." #~ msgstr "Usar fuente griega para mostrar caracteres griegos." #~ msgid "Use greek font:" #~ msgstr "Usar fuente griega:" #~ msgid "untitled.wxm" #~ msgstr "sinnombre.wxm" #~ msgid "wxMaxima session (*.wxm)|*.wxm" #~ msgstr "Sesión de wxMaxima (*.wxm)|*.wxm" #~ msgid "aquamarine" #~ msgstr "aguamarina" #~ msgid "black" #~ msgstr "negro" #~ msgid "blue" #~ msgstr "azul" #~ msgid "blue violet" #~ msgstr "azul violeta" #~ msgid "brown" #~ msgstr "marrón" #~ msgid "cadet blue" #~ msgstr "azul cadete" #~ msgid "coral" #~ msgstr "coral" #~ msgid "cornflower blue" #~ msgstr "azulina" #~ msgid "cyan" #~ msgstr "cyan" #~ msgid "dark green" #~ msgstr "verde oscuro" #~ msgid "dark grey" #~ msgstr "gris oscuro" #~ msgid "dark olive green" #~ msgstr "verde oliva oscuro" #~ msgid "dark orchid" #~ msgstr "orquídea oscuro" #~ msgid "dark slate blue" #~ msgstr "azul pizarra oscuro" #~ msgid "dark slate grey" #~ msgstr "gris pizarra oscuro" #~ msgid "dark turquoise" #~ msgstr "turquesa oscuro" #~ msgid "dim grey" #~ msgstr "gris débil" #~ msgid "firebrick" #~ msgstr "teja" #~ msgid "forest green" #~ msgstr "verde bosque" #~ msgid "gold" #~ msgstr "oro" #~ msgid "goldenrod" #~ msgstr "barra de oro" #~ msgid "green yellow" #~ msgstr "verde amarillo" #~ msgid "grey" #~ msgstr "gris" #~ msgid "khaki" #~ msgstr "caqui" #~ msgid "light blue" #~ msgstr "azul claro" #~ msgid "light grey" #~ msgstr "gris claro" #~ msgid "light steel blue" #~ msgstr "azul acero claro" #~ msgid "lime green" #~ msgstr "verde lima" #~ msgid "maroon" #~ msgstr "granate" #~ msgid "medium aquamarine" #~ msgstr "aguamarina medio" #~ msgid "medium blue" #~ msgstr "azul medio" #~ msgid "medium forrest green" #~ msgstr "verde bosque medio" #~ msgid "medium goldenrod" #~ msgstr "barra de oro media" #~ msgid "medium orchid" #~ msgstr "orquídea medio" #~ msgid "medium sea green" #~ msgstr "verde mar medio" #~ msgid "medium slate blue" #~ msgstr "azul pizarra medio" #~ msgid "medium spring green" #~ msgstr "verde primavera medio" #~ msgid "medium turquoise" #~ msgstr "turquesa medio" #~ msgid "medium violet red" #~ msgstr "rojo violeta medio" #~ msgid "midnight blue" #~ msgstr "azul medianoche" #~ msgid "navy" #~ msgstr "marina" #~ msgid "orange" #~ msgstr "naranja" #~ msgid "orange red" #~ msgstr "rojo anaranjado" #~ msgid "orchid" #~ msgstr "orquídea" #~ msgid "pale green" #~ msgstr "verde pálido" #~ msgid "pink" #~ msgstr "rosa" #~ msgid "plum" #~ msgstr "ciruela" #~ msgid "purple" #~ msgstr "morado" #~ msgid "red" #~ msgstr "rojo" #~ msgid "salmon" #~ msgstr "salmón" #~ msgid "sea green" #~ msgstr "verde mar" #~ msgid "sienna" #~ msgstr "siena" #~ msgid "sky blue" #~ msgstr "azul cielo" #~ msgid "spring green" #~ msgstr "verde primavera" #~ msgid "steel blue" #~ msgstr "azul acero" #~ msgid "tan" #~ msgstr "tan" #~ msgid "thistle" #~ msgstr "cardo" #~ msgid "turquoise" #~ msgstr "turquesa" #~ msgid "violet" #~ msgstr "violeta" #~ msgid "wheat" #~ msgstr "trigo" #~ msgid "white" #~ msgstr "blanco" #~ msgid "yellow" #~ msgstr "amarillo" #~ msgid "yellow green" #~ msgstr "verde amarillo" #~ msgid " << Unfold >>" #~ msgstr " << Desplegar >>" #~ msgid "Background" #~ msgstr "Fondo" #~ msgid "Copy cells" #~ msgstr "Copiar celdas" #~ msgid "Cut selection from document" #~ msgstr "Cortar selección del documento" #~ msgid "Evaluate cell\tShift-Enter" #~ msgstr "Evaluar celda\tShift-Enter" #~ msgid "Export to HTML file" #~ msgstr "Exportar a un archivo HTML" #~ msgid "Hidden groups" #~ msgstr "Grupos ocultos" #~ msgid "Integrate ..." #~ msgstr "Integrar" #~ msgid "Main prompts" #~ msgstr "Indicadores principales" #~ msgid "Open session from a file" #~ msgstr "Abrir sesión desde un archivo" #~ msgid "Other prompts" #~ msgstr "Otros indicadores" #~ msgid "Save session" #~ msgstr "Guardar sesión" #~ msgid "Save session to a file" #~ msgstr "Guardar sesión en un archivo" #~ msgid "Save to file" #~ msgstr "Guardar en un archivo" #~ msgid "Select package to load" #~ msgstr "Seleccionar paquete para cargar" #~ msgid "Substitute ..." #~ msgstr "Sustituir" #~ msgid "wxMaxima session" #~ msgstr "Sesión de wxMaxima" #~ msgid "&Copy" #~ msgstr "&Copiar" #~ msgid "&Describe\tCtrl-H" #~ msgstr "&Describir\tCtrl-H" #~ msgid "&Edit input\tCtrl-E" #~ msgstr "E&ditar entrada\tCtrl-E" #~ msgid "&Input\tF7" #~ msgstr "&Entrada\tF7" #~ msgid "&Monitor file" #~ msgstr "&Monitorizar archivo" #~ msgid "&Re-evaluate input\tCtrl-R" #~ msgstr "&Re-calcular entrada\tCtrl-R" #~ msgid "&Read file" #~ msgstr "Leer &archivo" #~ msgid "&Text\tF6" #~ msgstr "&Texto\tF6" #~ msgid "" #~ "All|*|Maxima package (*.mac)|*.mac|Demo file (*.dem)|*.dem|Lisp file (*." #~ "lisp)|*.lisp" #~ msgstr "" #~ "Todos|*|Paquete maxima(*.mac)|*.mac|Archivo demo (*.dem)|*.dem|Archivo " #~ "lisp (*.lisp)|*.lisp" #~ msgid "Autoload a file when it is updated" #~ msgstr "Autocargar un archivo cuando sea actualizado" #~ msgid "C&lear screen" #~ msgstr "&Limpiar pantalla" #~ msgid "Copy input" #~ msgstr "Copiar entrada" #~ msgid "Copy input from console" #~ msgstr "Copiar entrada desde documento" #~ msgid "Copy selection from console to input line" #~ msgstr "Copiar selección de la consola a la línea de entrada" #~ msgid "Copy to input" #~ msgstr "Copiar a la entrada" #~ msgid "Delete selected input/output group" #~ msgstr "Borrar grupo de entrada/salida seleccionado" #~ msgid "Delete the contents of console." #~ msgstr "Borrar los contenidos de la consola." #~ msgid "Describe" #~ msgstr "Describir" #~ msgid "Edit input" #~ msgstr "Editar entrada" #~ msgid "Edit selected input" #~ msgstr "Editar la entrada seleccionada" #~ msgid "Edit text" #~ msgstr "Editar texto" #~ msgid "Enter command" #~ msgstr "Introducir comando" #~ msgid "Go to input\tCtrl-Shift-D" #~ msgstr "Ir a\tCtrl-Shift-D" #~ msgid "Go to input\tF4" #~ msgstr "Ir a la entrada\tF4" #~ msgid "Go to output window\tF3" #~ msgstr "Ir a la ventana de salida\tF3" #~ msgid "I&nsert" #~ msgstr "I&nsertar" #~ msgid "INPUT:" #~ msgstr "ENTRADA:" #~ msgid "" #~ "If you want to input more than one line at a time, use the 'Multiline " #~ "input' button at the right of the input line." #~ msgstr "" #~ "Si desea introducir más de una línea a la vez, utilice el botón \"Entrada " #~ "multilínea\" a la derecha de la línea de entrada." #~ msgid "Insert new input before selected input" #~ msgstr "Insertar nueva entrada antes de la entrada seleccionada" #~ msgid "Insert section before selected input" #~ msgstr "Insertar sección antes de la entrada seleccionada" #~ msgid "Insert text before selected input" #~ msgstr "Insertar texto antes de la entrada seleccionada" #~ msgid "Insert title before selected input" #~ msgstr "Insertar título antes de la entrada seleccionada" #~ msgid "" #~ "Instead of typing a long pathname of a file to input line, you can select " #~ "that file using 'File->Select file'." #~ msgstr "" #~ "En lugar de introducir una ruta larga para un archivo, puede seleccionar " #~ "ese archivo utilizando 'Archivo->Seleccionar archivo'." #~ msgid "Multiline input" #~ msgstr "Entrada multilínea" #~ msgid "Open multiline input dialog" #~ msgstr "Abrir diálogo de entrada multilínea" #~ msgid "Paste input" #~ msgstr "Pegar entrada" #~ msgid "Paste input to console" #~ msgstr "Pegar entrada a la consola" #~ msgid "Re-evaluate all\tCtrl-Shift-R" #~ msgstr "&Re-calcular todo\tCtrl-Shift-R" #~ msgid "Re-evaluate all input" #~ msgstr "Re-calcular todas las entradas" #~ msgid "Re-evaluate input" #~ msgstr "Re-calcular entrada" #~ msgid "Read file from command line" #~ msgstr "Leer archivo desde línea de comandos" #~ msgid "Select &file" #~ msgstr "Seleccionar &archivo" #~ msgid "Select a file" #~ msgstr "Seleccionar un archivo" #~ msgid "Select a file (copy filename to input line)" #~ msgstr "" #~ "Seleccionar un archivo (copiar el nombre del fichero en la línea de " #~ "entrada)" #~ msgid "Select last input\tCtrl-D" #~ msgstr "Seleccionar la última entrada\tCtrl-D" #~ msgid "Select last input\tF2" #~ msgstr "Seleccionar la última entrada\tF2" #~ msgid "Select last input in the colsole!" #~ msgstr "¡Seleccionar la última entrada en la consola!" #~ msgid "Select last input in the console!" #~ msgstr "¡Seleccionar la última entrada en la consola!" #~ msgid "Selection to input\tCtrl-Shift-E" #~ msgstr "Selección a entrada\tCtrl-Shift-E" #~ msgid "Selection to input\tF5" #~ msgstr "Selección a entrada\tF5" #~ msgid "Set focus to the input line" #~ msgstr "Poner el foco en la línea de entrada" #~ msgid "Set focus to the output window" #~ msgstr "Poner el foco en la ventana de salida" #~ msgid "Show the description of a command" #~ msgstr "Mostrar la descripción de un comando" #~ msgid "Show the description of command/variable:" #~ msgstr "Mostrar la descripción de un comando/variable:" #~ msgid "" #~ "To enter a matrix A, type 'A : ' to input line and select 'Algebra->Enter " #~ "matrix' from menus." #~ msgstr "" #~ "Para introducir una matriz A, escriba 'A:' en la línea de entrada y " #~ "seleccionar 'Algebra->Introducir matriz' del menú" #~ msgid "" #~ "To put parenthesis around an expression you previously typed into the " #~ "input line, select the expression with mouse and then type '('." #~ msgstr "" #~ "Para poner paréntesis a una expresión previamente escrita en la línea de " #~ "entrada, seleccionar la expresión con el ratón y entonces escribir '('." #~ msgid "" #~ "To repeat a long command you previously entered in the input line, type " #~ "in the first few letters to the input line and then pres tab key." #~ msgstr "" #~ "Para repetir un comando largo previamente introducido, escribir las " #~ "primeras letras del mismo en la línea de entrada y pulsar la tecla " #~ "tabulador." #~ msgid "" #~ "You can delete output/input group if you select the input label and " #~ "choose 'Edit->Delete selection' from menus." #~ msgstr "" #~ "Se puede eliminar grupo entrada/salida si se selecciona la etiqueta de " #~ "entrada y se elige 'Editar->Eliminar selección' de los menús." #~ msgid "" #~ "You can hide the output by clicking on the output label. Clicking on the " #~ "input label hides input and output. Clicking on the label again, shows " #~ "hidden expressions." #~ msgstr "" #~ "Se puede ocultar la salida haciendo clic en la etiqueta de salida. " #~ "Haciendo clic otra vez en la etiqueta, se muestran las expresiones " #~ "ocultas." #~ msgid "" #~ "You can load a file into maxima by dragging it from a file browser to the " #~ "console window." #~ msgstr "" #~ "Se puede cargar un archivo en maxima arrastrándolo del explorador de " #~ "archivos a la ventana de la consola." #~ msgid "" #~ "You can load files into maxima if you drop them on the console window. " #~ "You can select a custom function for loading your file. If your custom " #~ "function is 'A:read_matrix(%file%, csv)', then %file% will be replaced " #~ "with the filename of your file." #~ msgstr "" #~ "Se pueden cargar archivos en maxima si se arrastran desde la ventana de " #~ "la consola. Se puede seleccionar una función personalizada para cargar el " #~ "archivo. Si la función personalizada es 'A:read_matrix(%file%, csv)', " #~ "entonces %file% será reemplazado con el nombre del archivo." #~ msgid "" #~ "You can select the output of maxima in wxMaxima console with mouse and " #~ "copy it to the clipboard with 'Edit->copy'." #~ msgstr "" #~ "Se puede seleccionar la salida de maxima en la consola de wxMaxima con el " #~ "ratón y copiándolo al portapapeles con 'Editar->Copiar.'" #~ msgid "" #~ "You can use the maxima tex command to print the expression in TeX form. " #~ "Then you can copy it to text editor to include it in you paper." #~ msgstr "" #~ "Se puede usar el comando tex de maxima para mostrar la expresión en " #~ "formato TeX. Luego se puede copiar a un editor de texto para incluirlo en " #~ "su documento." #~ msgid "" #~ "wxMaxima has nice plot dialogs. If you want to modify previous plot " #~ "commands, access them using command history and then push the plot button." #~ msgstr "" #~ "wxMaxima tiene buenos cuadros de diálogo. Si se quiere modificar los " #~ "comandos gráficos anteriores, se puede acceder usando la historia de " #~ "comandos y a continuación pulsando el botón de gráficos." #~ msgid "" #~ "wxMaxima's input line has command history available using up and down " #~ "keys and command completion based on previous input available using the " #~ "tab key." #~ msgstr "" #~ "La línea de entrada de wxMaxima tiene un histórico disponible usando las " #~ "teclas de dirección arriba y abajo, y un autocompletado de comandos " #~ "basado en la entrada anterior disponible, usando la tecla tabulador." #~ msgid "Apply function:" #~ msgstr "Aplicar función:" #~ msgid "At point:" #~ msgstr "En el punto:" #~ msgid "Char poly of:" #~ msgstr "Polinomio característico de:" #~ msgid "Comment out" #~ msgstr "Comentar" #~ msgid "Copy &text" #~ msgstr "Copiar &texto" #~ msgid "Copy selection from console (including linebreaks)" #~ msgstr "Copiar selección de la consola (saltos de línea incluidos)" #~ msgid "From array:" #~ msgstr "De la tabla:" #~ msgid "From equations:" #~ msgstr "De las ecuaciones:" #~ msgid "Integrate:" #~ msgstr "Integrar:" #~ msgid "Limit of:" #~ msgstr "Límite de:" #~ msgid "Map function:" #~ msgstr "Aplicar la función:" #~ msgid "Product:" #~ msgstr "Producto:" #~ msgid "Solve &numerically ..." #~ msgstr "Resolver &numéricamente" #~ msgid "Solve equation(s):" #~ msgstr "Resolver ecuación(es):" #~ msgid "Solve equation:" #~ msgstr "Resolver ecuación:" #~ msgid "Solve numerically" #~ msgstr "Resolver numéricamente" #~ msgid "Solve numerically ..." #~ msgstr "Resolver numéricamente" #~ msgid "Substitute:" #~ msgstr "Sustituir:" #~ msgid "Substitution" #~ msgstr "Sustitución" #~ msgid "Sum of:" #~ msgstr "Suma de:" #~ msgid "Uncomment" #~ msgstr "Descomentar" #~ msgid "Unfold" #~ msgstr "Desplegar" #~ msgid "Unfold all folded groups" #~ msgstr "Desplegar todos los grupos" #~ msgid "Use &Taylor series" #~ msgstr "Usar serie de &Taylor" #~ msgid "around:" #~ msgstr "entorno a:" #~ msgid "by variable:" #~ msgstr "para la variable:" #~ msgid "change var:" #~ msgstr "cambiar var:" #~ msgid "eliminate variables:" #~ msgstr "eliminar las variables:" #~ msgid "equation:" #~ msgstr "ecuación:" #~ msgid "for function(s):" #~ msgstr "para la(s) función(es):" #~ msgid "for variable(s):" #~ msgstr "para la(s) variable(s):" #~ msgid "from expression:" #~ msgstr "de la expresión:" #~ msgid "function:" #~ msgstr "función:" #~ msgid "goes to:" #~ msgstr "tiende a:" #~ msgid "in variable:" #~ msgstr "respecto la variable:" #~ msgid "in:" #~ msgstr "en:" #~ msgid "the value is:" #~ msgstr "el valor es:" #~ msgid "variable" #~ msgstr "variable" #~ msgid "variable:" #~ msgstr "variable:" #~ msgid "when variable:" #~ msgstr "cuando la variable:" #~ msgid "with:" #~ msgstr "con:" #~ msgid "" #~ "wxMaxima is a wxWidgets interface for the\n" #~ "computer algebra system MAXIMA.\n" #~ "\n" #~ "Version: %s.\n" #~ "License: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgstr "" #~ "wxMaxima es una interfaz wxWidgets para el\n" #~ "sistema de cálculo simbólico MAXIMA.\n" #~ "\n" #~ "Versión: %s.\n" #~ "Licencia: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgid "wxMaxima session (*.wxm)|*.wxm|Maxima batch file (*mac)|*.mac|All|*" #~ msgstr "" #~ "Sesión wxMaxima (*.wxm)|*.wxm|Archivo por lotes de Maxima (*mac)|*.mac|" #~ "Todos|*" #~ msgid "Maxima session (*.wxm)|*.wxm" #~ msgstr "Sesión de Maxima (*.wxm)|*.wxm" wxMaxima-13.04.2/locales/fr.mo000644 000765 000024 00000143024 11710501376 016455 0ustar00andrejstaff000000 000000 *H8)I8s8{8&888 888 9 9"92989 V9d9x99 99 9 9999 : :*:=:S: c:n:: :::: :::: ;$;4;<; T;`;i;; ;;; ;; ;;;; < "<,<A<V< n<x<<<<<<< =====>><>'M>u>1>>> >>>>? ??? 7?B?G? N?Z?J@ ^@i@@+@(@@@ AA "A/A;BA~A"A AA2AB B B-B#6BZBxBBB B%B1B##C#GCkC@CCCCDD8,DAeD(D'DHD1AE1sEEEEE>E38FlF qF FF F FFF(F$G,8G%eGGG G GG0GG G G HH&H7HKH]HoHHH HH HHH HII +I 6IDIVIhI IIII I I I J J J/*JZJbJ.qJ(JJ JJK(K AK NK [K eKpKvKKKKK#K"K% L3L ;L HLVL ]LiL{LLLL*LLM 'M2M AMMMTMcMuM(MM M MMM&MN!N &N2N ANNN)lNNNNNNO 2OX PX ^XhXXXXX"XX Y YYY *Y7YMY?jYYYY)YWZhZyZZZ Z Z ZZZ Z [['[/[ 2[ =[K[\[ a[m[}[ [[[ [[d[8\%K\ q\{\\\\\\ \\\ ]1]3H] |] ]]] ] ]] ] ] ]]^ ^$^+^ 2^ @^N^#e^ ^^^^^^ ^$^#_ ,_8_X_j_ __________ ` `8`S`j` ` ```#``-`*aAa"Ta4wa aaa a aaa bb 4b>b EbOb^bpbyb bbbbbbcc:&cac{cc cccc cc d3dLded|dddd+d e+e4e Ge Tebe,ve'eee!ef gg!gnBnYnpnnnnnn nn o o o$o5oEo MoZo-oooo o o o oooo,p 1ptMt ]t it vt t t t tttttt ttt ttu uu u-uDDuCubu0veBv.v vavGwAKw)xxx-xy y &y0yJydyvyyyyyyyyz z 5z ?z LzYzbz}zzzz z zz{ {'{@{_{ d{r{{{{{{{| |'|>|E|`|{||| |'|| |} .}:}U}*r} }}}}}}~$~'<\m, / =\x  " ȀՀ ـ #8?x ,͂1,AWksC/.G3c ̄-ք  %F]{*2%& 7MX&͆ ?H^26ڇU@g@4JT?߉! /FVt///3LT[j~7 ȋ܋ 4I(^ Č Ќ܌ ,8KZk&ƍ#ύ *:K\1e87-#Q#d- Տ  !%=c!x)!Đ -Gb)| +ܑ  * 6AYs- Ғ 1 9CL\s"3(  )6*`) ʔ0֔&.7 @Mdm &<:5 :G`8tȖߖ:E@+'ڗA9BG_ x #˙ԙؙ{ܙXD^"ƚ! <]|&ܛ%#'I,q%%Ĝ$->2V #͝GJ,O|ɞ Оڞ 3!U&qȟߟ+ <"F$i=̠Ԡ 7CU+֡y|͢!=F[cfvϣ &dA;  4IZa p /<,;J c m w Ҧ  ,&? fp /ҧ0 3 ?&Ls$ƨب  %:'Ks''.F"cQ%ت;(:%c9Pë$7?Sew- ͬ׬ެ +@Eŭ׭Q ^qͮ+%D j"ͯ$ 3;S& ڰ40H%y)ݱ #!)<f6j *ͳ92 Q9[)AݴMmvƵ# ? LXltz   ƶӶIeM3 %ҸuPƺ|ջ!FZu    12d   ѽ=۽ #`f8m%  "0?N ^ is{   NNJdnb!FL<X"S._>M)pCddyWUR`hK6IH j&~i2G;g$jAJ`uXN|/*9C #qED z?17a'U?A608hik ly`}4F 'S\@^M gW},=Oo"K~(b(fQ.0c@Q-  $#L _{&rIH=qstyY ,FR* HX5jN=wr{W#+2{7k"<zf8OVYdx-O%]E]ftt5%r?oZln9:[;,LD clC|aRb ehP Zp~av1eq3-KspmV:v3iDJ\ewBz^Gcg/8IP@%BT[ um_79S!+!)P n&<xv(41V TT.563U2'\Q>u)$EMok ;]AYmZ|:^n}+x04NJ*BG/s[w>b wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: << Expression too long to display! >>&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Cell&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:At valueBC2Bat files (*.bat)|*.bat|All|*Batch FileBoldBrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCancelCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontClose Ctrl-WColumns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionDanishDecompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide numbers or polynomialsDocument backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new plot format:Enter new precision:Enter the path to the Maxima executable.Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Root...Find a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate a matrix from a 2-dimensional arrayGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInfo about Maxima buildInitial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell F8Insert &Text Cell F6Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &Cell F5Insert Page Break F10Insert S&ubsection Cell F7Insert T&itle Cell F9Insert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInverse LaplaceInverse Laplace T&ransform...ItalianItalicKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMatrixMatrix mapMatrix:MaximaMaxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Method:ModulusName:New Ctrl-NNew value:New variable:Next Command Alt-DownNot a valid matrix dimension!Not a valid number of equations!Num. deg:Number of equations:NumbersOKOld value:Old variable:Online tutorialsOpenOpen RecentOpen a documentOpen a new windowOpen documentOptionsOptions:Output labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsPastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReport bugRestart MaximaRisch Integration...Roots of &PolynomialRows:RussianSaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect a constantSelect allSelect math display algorithmSelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsectionSubsection cellSubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.Ticks:Times:Tips not available, sorry!TitleTitle cellTo &BigfloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TTranspose a matrixTutorialsType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:WarningWelcome to wxMaximaWidth:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddennorightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima iconwxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: fr Report-Msgid-Bugs-To: POT-Creation-Date: 2011-01-04 12:30+0100 PO-Revision-Date: 2011-11-27 21:10+0100 Last-Translator: Jean-Luc JOULIN Language-Team: francais MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Support unicode: %s Lisp: Version de Maxima: << Expression trop longue pour l'affichage >>&Algbre&Appliquer une liste ...&A proposTraiter un fichier CTRL-BPro&blme aux limites ...Rapport de &bogue&CalculsForme &canoniqueCellulePolynme &caractristique ...Effa&cer la mmoire&Combiner les factoriellesSimplification &complexeFraction &continue&Copier Ctrl-CIntgration &dfinie&Demoivre&Dterminant&Driver ...&Edition&liminer une variable ...&Entrer une matrice ...&ExempleDv&elopper une expressionDv&elopper trigonomtrique&Exposant&Exporter&Factoriser une expression&FichierTrouver une &solution ...&Gnrer une matrice ...Plus &grand diviseur commun...Aide&Intgrer ...&Interrompre Ctrl-G&Interrompre Ctrl-G&Inverser la matriceCharger un paquetage Ctrl-LAppliquer une liste ...&MaximaCalcul &modulaire ...&Nouvelle session Ctrl-N&NumriqueIntgration &numrique&Nusum&Ouvrir une session Ctrl-O&Ouvrir une session Ctrl-OTrac de courbesSries entiresIm&primer Ctrl-P&Rationnel&Rduire une expression trigonomtrique&Redmarrer Maxima&Racines d'un polynme (relles)&Sauver la session Ctrl-S&Simplifier&Simplifier une expression&Simplifier des factorielles&Simplifier une expression trigonomtrique&Rsoudre ...&SpcialSrie de Taylor :&Transposer une matriceSimplification &trigonomtrique&pm3d(Utiliser la langue par dfaut)Un nouveau format de document a t introduit dans wxMaxima 0.8.2 qui permet de sauver les entres et les textes mais galement les sorties de vos calculs. En sauvegardant vtre document, choisissez le format "Document xml wx Maxima"A la valeur ...A proposA propos de wxMaximaParenthse de la cellule activeMatrice associeAjouter une egalit algbri&queAjouter un rpertoire au chemin de rechercheAjouter le rpertoire au chemin:Ajouter une galit au simplificateur rationnelAjouter au &cheminParamtres supplmentaires pour maxima (par exemple -l clisp)Paramtres supplmentaires:Tous|*AnimationAppliquerAppliquer une fonction une listeA proposTableau:A la valeur:BC2Fichies bat (*.bat)|*.bat|All|*Traiter un fichier maximaGrasParcourirInformation &de compilationPar dfaut Shift+Entre est utilis pour valuer les commandes, tandis que Entre est utilis pour sauter une ligne. Ce comportement peut tre chang dans le menu " Edition->Configurer" en activant "Evaluation des cellules avec la touche Entre". Cette option permute le rle de ces deux combinaisons de touches.C&hanger la variable ...C&onfigurerCalculer le &produit ...Calculer la som&me ...Valeur approche (bigfloat) d'une expressionCalculer une valeur approche du dernier rsultatCalculer le module :Calculer les produitsCalculer les sommesAnnulerParenthse de la celluleBasculer en affichage &2dModifier l'algorithme d'affichage 2d utilis pour les mathmatiquesChanger la variableChange la variable dans l'intgrale ou la sommePolynme caractristiqueRechercher des mises jourVrifier si une nouvelle version de wxMaxima xisteChinois traditionnelChoisir la policeFermer Ctrl-WColonnes:Combiner les factorielles dans une expressionListe x spare par des virgulesListe y spare par des virgulesCommenter la slectionComplter l'expression Ctrl-KComplter le motCalculer la fraction continue d'une valeurCalculer le polynme caractristique d'une matriceCalculer le dterminant d'une matriceCalculer le plus grand diviseur communCalculer l'inverse d'une matriceCalculer le plus petit multiple commun (faire load(functs) avant utilisation)Fichier de configuration (*.ini)|*.iniAlerte de configurationConfigurer wxMaximaConstanteRassembler les logarithmesConvertir combinaisons, fonctions beta et gamma en factoriellesConvertir combinaisons, factorielles et fonctions beta en fonction gammaConvertir une expression complexe en forme polaireConvertir une expression complexe en forme cartsienneConvertir une fonction exponentielle d'argument imaginaire sous forme trigonomtriqueConvertir le logarithme d'un produit en une somme de logarithmesConvertir une somme de logarithmes en un logarithme d'un produitConvertir en &factoriellesConvertir en &gammaConvertir en forme &polaireConvertir en forme ca&rtsienneConvertir une expression trigonomtrique en forme quasi linaire canoniqueConvertir les fonctions trigonomtriques en forme exponentielleCopierCopier comme une imageCopier en LaTexCopier l'entre prcdente Ctrl-ICopier comme une imageCopier en LaTex&Copier en texte Ctrl-Shift-CCopier la slectionCopier la slection du document au format imageCopier la slection du document au format texteCopier la slection du document au format LaTeXCrer une nouvelle cellule avec l'entre prcdenteCurseurCouper&Couper Ctrl-XCouper la slectionDanoisDcomposer une fonction rationnelle en lments simplesPar dfautPolice par dfaut :Port par dfaut :EffacerEffacer la fonctionEffacer la slectionEffacer la v&ariableEffacer une fonctionEffacer une variableEffacer toutes les valeurs de la memoireEffacer la (les) fonction(s):Effacer la (les) variables(s):denom deg :profondeur:la drive est:Di&vision de polynmes ...DriverDriverDriver l'expressionDriver ...selon la directionGraphe discretAfficher en Te&XAfficher l'algorithmeAfficher la dernire expression en TeXAfficher le temps d'excutionDivisionDivision de nombres ou de polynmesArrire-plan du documentNe pas sauvegarderE&quations&Quitter Ctrl-QVecteurs propres&Valeurs propresEliminerEliminer une variable dans un systme d'quationsAnglaisEntrer une matriceEntrer une quation pour la simplification rationnelle :Entrer une liste de variables spares par des virgulesEvaluation des cellules avec la touche EntreEntrer une matriceEntrer un nouveau format de trac :Entrer la nouvelle prcision :Entrez le chemin vers l'excutable de Maxima:Equation %d :Equation(s):Equation:Equation(s):ErreurErreur %dErreur !Evaluer les formes &nommes&Rvaluer toutes les cellules Ctrl-RRvaluer la celluleRvaluer la cellule slectionneRvaluer toutes les cellules du documentEvaluer toutes les formes nommesExempleTexte exemple ...Quitter wxMaximaDvelopperDvelopper. (tr)Dvelopper une expressionDvelopper des logarithmesDvelopper une expressionDvelopper une expression trigonomtrique&ExporterExporter le document en HTML ou en pdfLatexEchec de l'export en HTMLEchec de l'export en teX!ExpressionExpression(s):Expression:FactoriserFactorisation &complexeFactoriser une expressionFactoriser une expressionFactoriser une expression en nombre gaussiensFactorielles et &gammaErreur fataleFigure %d:&FichierFichier non trouvLe fichier que vous tentez d'ouvrir n'existe pas.&Fichier:ChercherChercher Ctrl-OTrouver la &limite ...Trouver une racine ...Trouver la limite d'une expressionTrouver une racine d'un polynme dans un intervalleTrouver toutes les racines d'un polynmeChercher et remplacerChercher et remplacerTrouver les valeurs propres d'une matriceTrouver les vecteurs propres d'une matriceTrouver les racines relles d'un polynmeTrouver une solutionChercher...Police chasse fixe dans les contrles de textePolice d'affichage du documentPolicesFormat :Franais partir de:Plein cran Alt-EntreFonctionNoms des fonctionsFonction(s):FonctionFonctions pour simplification complexeFonctions pour simplifier les factorielles et fonction gammaFonctions pour simplifier les expressions trigonomtriquesPGCDMath gnralMath gnral Alt-Shift-MGnrer une matriceGnrer une matrice partir d'un tableau 2 dimensionsAllemandPartie imaginaireObtenir une &srie ...Transforme de LaplaceP&artie relleObtenir la transforme inverse de Laplace d'une expressionObtenir le dveloppement en srie entire ou en srie limit (Taylor)Partie imaginaire d'une expression complexePartie relle d'une expression complexeConstantes grecquesGrille :Fichier HTML (*.html)|*.html|fichier pdfLaTeX (*.tex)|*.tex|All|*hauteur:AideCacher tout Alt-Shift--Cacher tous les panneauxSurbrillanceHistoriqueHistorique Alt-Shift-HLe curseur horizontal fonctionne comme un curseur normal, mais fonctionne sur les cellules: Les touches haut et bas permettent de le dplacer, maintenir Shift pendant le dplacement slectionne les cellules, appuyer sur backspace ou delete deux fois permet d'effacer la cellule slectionne.HongroisIC1IC2Si vtre calcul met trop de temps tre valuer, vous pouvez essayer "Maxima->Interrompre" puis "Maxima->Redmarrer MaximaImageFichiers images (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInfos sur la compilation de maximaCondition initiale (&1) ...Condition initiale (&2) ...tiquettes d'entreInsrerInsrer une cellule de section F8Insrer une cellule de texte F6&Coller la cellule Alt-Shift-CInsrer une imageInsrer une imageInsrer une cellule d'entre F5Insrer un saut de page F10Insrer une cellule de sous-section F7Insrer une cellule de titre F9Insrer une nouvelle cellule d'entreInsrer une nouvelle cellule de sectionInsrer une nouvelle cellule de sous-sectionInsrer une nouvelle cellule de texteInsrer une nouvelle cellule de titreInsrer un saut de pageInsrer une imageIntgrale/sommeIntgrerIntgrer (risch)Intgrer une expressionIntgrer une expression avec l'algorithme de RischIntgrerInterrompreInterrompre le calcul en coursInverse Laplace&Transforme inverse de Laplace ...ItalienItaliqueConserver le signe pourcentage avec les symboles spciaux: %e, %i, etc.PPCMLangue utilise pour l'interface de wxMaximaLangue :Laplace&Transforme de Laplace ...Plus petit multiple commun ...LimiteLimite...Rgression linaire... la liste:ChargerCharger un paquetage Ctrl-LOuvrir un fichier maxima en utilisant batch commandCharger un paquetage maximaCharger un style partir d'un fichierborne infrieure :A&ppliquer une matrice ...Gnrer une &liste ...Gnrer une listeGnrer une liste partir d'une expressionSubstituer dans une expressionAppliquerAppliquer une fonction une listeAppliquer une fonction une matriceFaire correspondre les parenthses dans les entres de texte.MatriceAppliquer une matriceMatrice&MaximaAide Maxima F1Entre maximaMaxima est en train de calculerpackage Maxima (*.mac)|*.mac|Paquetage maxima (*.mac)|*.mac|Paquetage Lisp (*.lisp)|*.lisp|All|*Maxima s'est arrt.Programme Maxima :Questions sur maximaMaxima dmarr. Attente de la connection...Maxima utilise ':' pour affecter une valeur une variable ('a : 3;') et ':=' pour dfinir une fonction ('f(x) := x^2;').Version de Maxima:mthode:ModuleNom:&Nouvelle session Ctrl-NNouvelle valeurnouvelle variable :Commande suivante Alt-DownDimension de matrice incorrecte !Nombre d'quations incorrect !num deg:Nombre d'quations :NombresOKAncienne valeurancienne variable:Tutoriels en ligneOuvrirOuvrir un fichier rcentOuvrir un documentOuvrir une nouvelle fentreOuvrir un documentOptionsOptions :tiquettes de sortiesApproximation de &Pad ...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmApproximation de PadApproximation de Pad d'un dveloppement en srie de TaylorSaut de pagePanneauxCourbe paramtreAnalyse du rsultatElments simples ...Elments simplesColler&Coller Ctrl-VColler le texte du presse-papierColler le texte du presse-papierCamembert...Configurer wxMaxima avec 'Edition->Configurer'.Redmarrer wxMaxima pour que les changements prennent effet.Courbe &2d ...Courbe &3d ...&Format de la courbe ...Courbe 2DCourbe 2DCourbe 2d ...Courbe 3DCourbe 3DCourbe 3d ...Format de la courbeCourbe en 2 dimensionsCourbe en 3 dimensionsTracer dans un fichier :Point:PolonaisPolynme 1 :Polynme 2 :Portugais (Brsil)Fichier postscript (*.eps)|*.eps|All|*PrcisionCommande prcdente Alt-UpImprimerImprimer le documentProduitPrt pour une entre utilisateurRappeler la commande suivante dans l'historiqueRappeler la commande prcdent dans l'historiqueForme cart.Rduire (tr)Rduire une expression trigonomtriqueSupprimer tous les rsultatsSupprimer les rsultats des cellulesRapport de bogueRedmarrer MaximaIntgration de Risch ...Racines d'un &polynmeColonnes :RusseEnregistrerSauver animation ...Enregistrer sous&Sauver la session sous... Shift-Ctrl-SEnregistrer l'imageSauver la slection en imageSauver la slection en imageEnregistrer l'animation dans un fichierSauver les changements avant de fermer?Sauvegarder les changements?Sauvegarder le documentSauvegarder le document sousSauver la disposition des panneauxEnregistrer la taille/position de la fentre de wxMaxima d'une session l'autre.Enregistrer le trac dans un fichier Sauvegarder la slection du document dans un fichier image Enregistrer la slection dans un fichierEnregistrer le style dans un fichier Enregistrer la taille/position de la fentre de wxMaxima Enregistrer la taille/position de la fentre de wxMaxima d'une session l'autreNuage de pointsNuage de points...SectionCelllule de sectionTout slectionnerTout slectionnerChoisir une constanteTout slectionnerChoisir l'algorithme d'affichage mathmatiqueSlectionSriesSriesServeur dmarrRgler la &prcision ...Fixer zoomRgler la prcision de la virgule flottanteSlectionner une police chasse fixe dans les entres de texte.Rgler le format de courbeFixer zoom 100%Fixer zoom 120%Fixer zoom 150%Fixer zoom 200%Fixer zoom 300%Fixer zoom 80%Choisir ' la valeur' pour la rsolution d'une ODE avec la transforme de LaplaceCalculer le moduleMontrer les &dfinitionsMontrer les &fonctionsMontrer les as&tucesMontrer les &variablesMontrer l'aide de MaximaMontrer le modle Ctrl-Shift-KMontrer une astuceMontrer toutes les commandes similaires :Montrer un exemple pour la commande :Montrer un exemple d'utilisationMontrer les commandes similaires Montrer les fonctions dfiniesMontrer les variables dclaresMontrer la dfinition d'une fonctionMontrer le modle de la fonctionMontrer les expressions longuesMontrer les expressions longues dans la console de wxMaximaMontrer la dfinition de la fonction :SimplifierSimplifier des &radicauxSimplifier (r)Simplifier (tr)Simplifier une expressionSimplifier une expression contenant des factoriellesSimplifier une expression contenant des radicauxSimplifier une expression rationnelleSimplifier la sommeSimplifier une expression trigonomtriqueDepuis wxMaxima 0.8.2 vous pouvez aussi insrer des images dans vos documents. Utilisez le menu "Cellule->Insrer une image". Notez que si vous voulez que les images soient sauvegardes dans vos documents, vous devez utiliser le format "Document xml wxMaxima".Solution:RsoudreRsoudre un systme &algbrique ...Rsoudre un systme &linaire ...Rsoudre &une quation diffrentielle ...ODERsoudre une quation diffrentielle avec Lapla&ce ...Rsoudre ODERsoudre un systme algbriqueRsoudre un systme algbrique d'quationsRsoudre un problme aux limites pour ODE du second degrRsoudre une (des) quation(s)Rsoudre Rsoudre une ODE du seconde degr avec condition initialeRsoudre un systme &linaireRsoudre un systme d'quations linairesRsoudre une quation diffrentielle ordinaire de degr 2 maximumRsoudre une quation diffrentielle ordinaire avec la transforme de LaplaceRsoudreEspagnolSpcialConstantes spcialesDmarrer l'animationDmarrer l'animationLe dmarrage de Maxima a chouDmarrage de Maxima...Echec du dmarrage du serveurDmarrage du serveur sur le port %dStatistiquesStatistiqueArrter l'animationChainesStyleStylessous-sectionCelllule de sous-sectionSubstituerSubstituer...SommeInfo systmeSries de Taylor :TellratTexteCellule de texteArrire-plan du texteLe port par dfaut utilis pour la communication entre Maxima et wxMaximaIl y a beaucoup de ressources sur Maxima et wxMaxima sur internet. Visitez http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials pour obtenir plus d'information sur l'utilisation de wxMaxima et Maxima.Il y a eu une erreur en gnrant le XML! Merci de faire un rapport de bogue.Graduations :fois:Les astuces ne sont pas disponibles !TitreCellule de titreValeur approche (bfloat)En valeur approchePour tracer en coordonnes polaire, choisir 'set polar' dans le menu Opions de la bote de dialogue Courbe 2D. Vous pouvez aussi tracer en coordonnes sphriques ou cylindriques en 3DPour mettre des parenthses autour d'une expression, slectionnez la et pressez "(" ou ")" selon l'endroit ou vous voulez voir rapparatre le curseur.Pour sauver la taille et la position de la fentre de wxMaxima d'une session l'autre, utilisez 'Maxima->Configure'.Pour commencer utiliser wxMaxima rapidement, commencez taper vtre commande. Une cellule d'entre devrait apparatre. Pressez alors sur Shift-Entre pour valuer vtre commande.jusqu':Basculer le mode &algbriqueBasculer l'affichage numriqueAffichage du &tempsBasculer le mode algbriqueBasculer en plein cran d'ditionBasculer l'affichage numrique entre valeur exacte et valeur approcheBarre d'outils Alt-Shift-TTransposer une matriceTutorielsType :UkrainienSoulign&Annuler Ctrl-ZAnnuler la dernire modificationSupport unicodeMettre jourborne suprieure :Utiliser l'algorithme de GosperUtiliser le point pour dsigner la multiplicationUtiliser les fontes jsMathVariable:Variables :Variable:VariablesVariables :AlerteBienvenue wxMaximalargeur :Faire correspondre les parenthses dans les entres de texte.Ecrit parLa variable '%' reprsente le dernier rsultat obtenu. Les rsultats prcdents s'obtiennent en utilisant les variables '%on' o n est le numro du rsultat.Vous pouvez valuer un document entier en utilisant le menu "Cellule->Rvaluer toutes les cellules" ou le raccourci associ. Les cellules seront values dans l'ordre dans lequel elles apparaissent dans le document.Vous pouvez obtenir de l'aide sur une fonction de Maxima en slectionnant ou cliquant sur le nom de la fonction et en pressant F1. wxMaxima cherchera dans l'aide le nom de la fonction slectionne.Vous pouvez cacher la zone de sortie des cellules d'entres en cliquant dans le triangle sur le cot gauche des cellules. Cela fonctionne galement sur les cellules de texte.Vous pouvez insrer diffrents types de "cellules" dans un document wxMaxima en utilisant le menu "Cellule".Notez que seules les cellules d'entre peuvent tre values alors que les autres sont utilises pour commenter et structurer vos calculs.Vous avez la version %s. La dernire version est %s. Appuyez sur OK pour visiter le site de wxMaxima.Les changements seront perdus si vous ne sauvegardez pasVtre version de wxMaxima est jour.Zoom avant Alt-IZoom arrire Alt-OZoom avant de 10%Zoom arrire de 10%Zoom fix [ non sauv ][ non sauv* ]antisymtriquedes deux cts:par dfautdiagonalegnralen lignegaucheLignes cachesNondroitesymtriquenon sauvsans nomsans nom %dwxMaximawxMaxima %swxMaxima configurationwxMaxima n'a pas pu trouver les fichiers d'aide. Vrifiez votre installation.wxMaxima n'a pas pu trouver les fichiers d'aide. Vrifiez votre installation.wxMaxima n'a pas pu dmarrer le serveur. Verifier si vous disposez du support rseau et ressayez !wxMaxima documentDocument wxMaxima (*.wxm)|*.wxm|Document xml wxMaxima (*.wxmx)|*.wxmx|Fichier de commande Maxima (*.mac)|*.macsession wxMaxima (*.wxm)|*.wxmIcne wxMaximawxMaxima est une interface graphique pour le logiciel de calcul formel MAXIMA base sur wxWidgets.OuiwxMaxima-13.04.2/locales/fr.po000644 000765 000024 00000326525 11705765322 016500 0ustar00andrejstaff000000 000000 # translation of fr.po to francais # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Eric , 2004. # msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-04 12:30+0100\n" "PO-Revision-Date: 2011-11-27 21:10+0100\n" "Last-Translator: Jean-Luc JOULIN \n" "Language-Team: francais \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3386 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Support unicode: %s" #: ../src/wxMaxima.cpp:3399 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3395 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Version de Maxima: " #: ../src/wxMaxima.cpp:4033 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" #: ../src/wxMaxima.cpp:3397 msgid "" "\n" "Not connected." msgstr "" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "<< Expression trop longue pour l'affichage >>" #: ../src/wxMaxima.cpp:1066 msgid " was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima." msgstr "" #: ../src/wxMaxima.cpp:1058 msgid " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" #: ../src/wxMaximaFrame.cpp:459 msgid "&Algebra" msgstr "&Algbre" #: ../src/wxMaximaFrame.cpp:453 msgid "&Apply to List..." msgstr "&Appliquer une liste ..." #: ../src/wxMaximaFrame.cpp:639 msgid "&Apropos..." msgstr "&A propos" #: ../src/wxMaximaFrame.cpp:202 msgid "&Batch File...\tCtrl-B" msgstr "Traiter un fichier\tCTRL-B" #: ../src/wxMaximaFrame.cpp:410 msgid "&Boundary Value Problem..." msgstr "Pro&blme aux limites ..." #: ../src/wxMaximaFrame.cpp:650 msgid "&Bug Report" msgstr "Rapport de &bogue" #: ../src/wxMaximaFrame.cpp:511 msgid "&Calculus" msgstr "&Calculs" #: ../src/wxMaximaFrame.cpp:562 msgid "&Canonical Form" msgstr "Forme &canonique" #: ../src/wxMaximaFrame.cpp:312 msgid "&Cell" msgstr "Cellule" #: ../src/wxMaximaFrame.cpp:435 msgid "&Characteristic Polynomial..." msgstr "Polynme &caractristique ..." #: ../src/wxMaximaFrame.cpp:343 msgid "&Clear Memory" msgstr "Effa&cer la mmoire" #: ../src/wxMaximaFrame.cpp:545 msgid "&Combine Factorials" msgstr "&Combiner les factorielles" #: ../src/wxMaximaFrame.cpp:588 msgid "&Complex Simplification" msgstr "Simplification &complexe" #: ../src/wxMaximaFrame.cpp:508 msgid "&Continued Fraction" msgstr "Fraction &continue" #: ../src/wxMaximaFrame.cpp:226 msgid "&Copy\tCtrl-C" msgstr "&Copier\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Intgration &dfinie" #: ../src/wxMaximaFrame.cpp:582 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:438 msgid "&Determinant" msgstr "&Dterminant" #: ../src/wxMaximaFrame.cpp:471 msgid "&Differentiate..." msgstr "&Driver ..." #: ../src/wxMaximaFrame.cpp:274 msgid "&Edit" msgstr "&Edition" #: ../src/wxMaximaFrame.cpp:395 msgid "&Eliminate Variable..." msgstr "&liminer une variable ..." #: ../src/wxMaximaFrame.cpp:430 msgid "&Enter Matrix..." msgstr "&Entrer une matrice ..." #: ../src/wxMaximaFrame.cpp:636 msgid "&Example..." msgstr "&Exemple" #: ../src/wxMaximaFrame.cpp:525 msgid "&Expand Expression" msgstr "Dv&elopper une expression" #: ../src/wxMaximaFrame.cpp:559 msgid "&Expand Trigonometric" msgstr "Dv&elopper trigonomtrique" #: ../src/wxMaximaFrame.cpp:585 msgid "&Exponentialize" msgstr "&Exposant" #: ../src/wxMaximaFrame.cpp:204 msgid "&Export..." msgstr "&Exporter" #: ../src/wxMaximaFrame.cpp:520 msgid "&Factor Expression" msgstr "&Factoriser une expression" #: ../src/wxMaximaFrame.cpp:215 msgid "&File" msgstr "&Fichier" #: ../src/wxMaximaFrame.cpp:378 msgid "&Find Root..." msgstr "Trouver une &solution ..." #: ../src/wxMaximaFrame.cpp:424 msgid "&Generate Matrix..." msgstr "&Gnrer une matrice ..." #: ../src/wxMaximaFrame.cpp:495 msgid "&Greatest Common Divisor..." msgstr "Plus &grand diviseur commun..." #: ../src/wxMaximaFrame.cpp:666 msgid "&Help" msgstr "Aide" #: ../src/wxMaximaFrame.cpp:463 msgid "&Integrate..." msgstr "&Intgrer ..." #: ../src/wxMaximaFrame.cpp:334 msgid "&Interrupt\tCtrl-." msgstr "&Interrompre\tCtrl-G" #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-G" msgstr "&Interrompre\tCtrl-G" #: ../src/wxMaximaFrame.cpp:432 msgid "&Invert Matrix" msgstr "&Inverser la matrice" #: ../src/wxMaximaFrame.cpp:200 msgid "&Load Package...\tCtrl-L" msgstr "Charger un paquetage\tCtrl-L" #: ../src/wxMaximaFrame.cpp:455 msgid "&Map to List..." msgstr "Appliquer une liste ..." #: ../src/wxMaximaFrame.cpp:370 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:603 msgid "&Modulus Computation..." msgstr "Calcul &modulaire ..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Nouvelle session\tCtrl-N" #: ../src/wxMaximaFrame.cpp:630 msgid "&Numeric" msgstr "&Numrique" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Intgration &numrique" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Nusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Ouvrir une session\tCtrl-O" #: ../src/wxMaximaFrame.cpp:187 msgid "&Open...\tCtrl-O" msgstr "&Ouvrir une session\tCtrl-O" #: ../src/wxMaximaFrame.cpp:615 msgid "&Plot" msgstr "Trac de courbes" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Sries entires" #: ../src/wxMaximaFrame.cpp:208 msgid "&Print...\tCtrl-P" msgstr "Im&primer\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Rationnel" #: ../src/wxMaximaFrame.cpp:556 msgid "&Reduce Trigonometric" msgstr "&Rduire une expression trigonomtrique" #: ../src/wxMaximaFrame.cpp:342 msgid "&Restart Maxima" msgstr "&Redmarrer Maxima" #: ../src/wxMaximaFrame.cpp:386 msgid "&Roots of Polynomial (Real)" msgstr "&Racines d'un polynme (relles)" #: ../src/wxMaximaFrame.cpp:196 msgid "&Save\tCtrl-S" msgstr "&Sauver la session\tCtrl-S" #: ../src/SumWiz.cpp:42 #: ../src/wxMaximaFrame.cpp:605 msgid "&Simplify" msgstr "&Simplifier" #: ../src/wxMaximaFrame.cpp:515 msgid "&Simplify Expression" msgstr "&Simplifier une expression" #: ../src/wxMaximaFrame.cpp:542 msgid "&Simplify Factorials" msgstr "&Simplifier des factorielles" #: ../src/wxMaximaFrame.cpp:553 msgid "&Simplify Trigonometric" msgstr "&Simplifier une expression trigonomtrique" #: ../src/wxMaximaFrame.cpp:374 msgid "&Solve..." msgstr "&Rsoudre ..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "&Spcial" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Srie de Taylor :" #: ../src/wxMaximaFrame.cpp:448 msgid "&Transpose Matrix" msgstr "&Transposer une matrice" #: ../src/wxMaximaFrame.cpp:565 msgid "&Trigonometric Simplification" msgstr "Simplification &trigonomtrique" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:234 msgid "(Use default language)" msgstr "(Utiliser la langue par dfaut)" #: ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 #: ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 #: ../src/LimitWiz.cpp:133 #: ../src/LimitWiz.cpp:144 msgid "- Infinity" msgstr "" #: ../src/wxMaxima.cpp:3446 #, fuzzy msgid "
Lisp: " msgstr " la liste:" #: ../data/tips.txt:11 msgid "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command." msgstr "" #: ../data/tips.txt:6 msgid "A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format." msgstr "Un nouveau format de document a t introduit dans wxMaxima 0.8.2 qui permet de sauver les entres et les textes mais galement les sorties de vos calculs. En sauvegardant vtre document, choisissez le format \"Document xml wx Maxima\"" #: ../src/wxMaximaFrame.cpp:417 msgid "A&t Value..." msgstr "A la valeur ..." #: ../src/wxMaxima.cpp:3448 #: ../src/wxMaximaFrame.cpp:661 msgid "About" msgstr "A propos" #: ../src/wxMaximaFrame.cpp:663 #: ../src/wxMaximaFrame.cpp:665 msgid "About wxMaxima" msgstr "A propos de wxMaxima" #: ../src/Config.cpp:362 msgid "Active cell bracket" msgstr "Parenthse de la cellule active" #: ../src/wxMaximaFrame.cpp:446 msgid "Ad&joint Matrix" msgstr "Matrice associe" #: ../src/wxMaximaFrame.cpp:600 msgid "Add Algebraic E&quality..." msgstr "Ajouter une egalit algbri&que" #: ../src/wxMaximaFrame.cpp:346 msgid "Add a directory to search path" msgstr "Ajouter un rpertoire au chemin de recherche" #: ../src/wxMaxima.cpp:2264 msgid "Add dir to path:" msgstr "Ajouter le rpertoire au chemin:" #: ../src/wxMaximaFrame.cpp:601 msgid "Add equality to the rational simplifier" msgstr "Ajouter une galit au simplificateur rationnel" #: ../src/wxMaximaFrame.cpp:345 msgid "Add to &Path..." msgstr "Ajouter au &chemin" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Paramtres supplmentaires pour maxima (par exemple -l clisp)" #: ../src/Config.cpp:299 msgid "Additional parameters:" msgstr "Paramtres supplmentaires:" #: ../src/Config.cpp:469 msgid "All|*" msgstr "Tous|*" #: ../src/wxMaximaFrame.cpp:790 msgid "Animation" msgstr "Animation" #: ../src/wxMaxima.cpp:2717 msgid "Apply" msgstr "Appliquer" #: ../src/wxMaximaFrame.cpp:454 msgid "Apply function to a list" msgstr "Appliquer une fonction une liste" #: ../src/wxMaxima.cpp:3478 msgid "Apropos" msgstr "A propos" #: ../src/wxMaxima.cpp:2643 msgid "Array:" msgstr "Tableau:" #: ../src/wxMaxima.cpp:3328 msgid "Artwork by" msgstr "" #: ../src/wxMaxima.cpp:2529 msgid "At value" msgstr "A la valeur:" #: ../src/BC2Wiz.cpp:57 #: ../src/wxMaxima.cpp:2436 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1003 msgid "Barsplot..." msgstr "" #: ../src/Config.cpp:464 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Fichies bat (*.bat)|*.bat|All|*" #: ../src/wxMaxima.cpp:1967 msgid "Batch File" msgstr "Traiter un fichier maxima" #: ../src/Config.cpp:374 msgid "Bold" msgstr "Gras" #: ../src/wxMaximaFrame.cpp:1005 #, fuzzy msgid "Boxplot..." msgstr "&Exporter" #: ../src/Plot2dWiz.cpp:122 #: ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Parcourir" #: ../src/wxMaximaFrame.cpp:648 msgid "Build &Info" msgstr "Information &de compilation" #: ../data/tips.txt:2 msgid "By default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands." msgstr "Par dfaut Shift+Entre est utilis pour valuer les commandes, tandis que Entre est utilis pour sauter une ligne. Ce comportement peut tre chang dans le menu \" Edition->Configurer\" en activant \"Evaluation des cellules avec la touche Entre\". Cette option permute le rle de ces deux combinaisons de touches." #: ../src/wxMaximaFrame.cpp:468 msgid "C&hange Variable..." msgstr "C&hanger la variable ..." #: ../src/wxMaximaFrame.cpp:272 msgid "C&onfigure" msgstr "C&onfigurer" #: ../src/wxMaximaFrame.cpp:487 msgid "Calculate &Product..." msgstr "Calculer le &produit ..." #: ../src/wxMaximaFrame.cpp:485 msgid "Calculate Su&m..." msgstr "Calculer la som&me ..." #: ../src/wxMaximaFrame.cpp:625 msgid "Calculate bigfloat value of the last result" msgstr "Valeur approche (bigfloat) d'une expression" #: ../src/wxMaximaFrame.cpp:622 msgid "Calculate float value of the last result" msgstr "Calculer une valeur approche du dernier rsultat" #: ../src/wxMaxima.cpp:2850 msgid "Calculate modulus:" msgstr "Calculer le module :" #: ../src/wxMaximaFrame.cpp:488 msgid "Calculate products" msgstr "Calculer les produits" #: ../src/wxMaximaFrame.cpp:486 msgid "Calculate sums" msgstr "Calculer les sommes" #: ../src/wxMaxima.cpp:4273 #: ../src/wxMaxima.cpp:4318 msgid "Can not connect to the web server." msgstr "" #: ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 #: ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 #: ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 #: ../src/Gen3Wiz.cpp:49 #: ../src/Gen3Wiz.cpp:51 #: ../src/Gen4Wiz.cpp:55 #: ../src/Gen4Wiz.cpp:57 #: ../src/IntegrateWiz.cpp:59 #: ../src/IntegrateWiz.cpp:61 #: ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 #: ../src/MatWiz.cpp:39 #: ../src/MatWiz.cpp:41 #: ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 #: ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 #: ../src/Plot2dWiz.cpp:561 #: ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 #: ../src/Plot2dWiz.cpp:658 #: ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 #: ../src/SeriesWiz.cpp:48 #: ../src/SeriesWiz.cpp:50 #: ../src/SubstituteWiz.cpp:40 #: ../src/SubstituteWiz.cpp:42 #: ../src/SumWiz.cpp:47 #: ../src/SumWiz.cpp:49 #: ../src/SystemWiz.cpp:37 #: ../src/SystemWiz.cpp:39 #: ../src/wxMaxima.cpp:4364 msgid "Cancel" msgstr "Annuler" #: ../src/wxMaximaFrame.cpp:948 #, fuzzy msgid "Canonical (tr)" msgstr "Forme &canonique" #: ../src/Config.cpp:235 #, fuzzy msgid "Catalan" msgstr "Italien" #: ../src/Config.cpp:361 msgid "Cell bracket" msgstr "Parenthse de la cellule" #: ../src/wxMaximaFrame.cpp:365 msgid "Change &2d Display" msgstr "Basculer en affichage &2d" #: ../src/wxMaximaFrame.cpp:366 msgid "Change the 2d display algorithm used to display math output" msgstr "Modifier l'algorithme d'affichage 2d utilis pour les mathmatiques" #: ../src/wxMaxima.cpp:2874 msgid "Change variable" msgstr "Changer la variable" #: ../src/wxMaximaFrame.cpp:469 msgid "Change variable in integral or sum" msgstr "Change la variable dans l'intgrale ou la somme" #: ../src/wxMaxima.cpp:2630 msgid "Char poly" msgstr "Polynme caractristique" #: ../src/wxMaximaFrame.cpp:653 msgid "Check for Updates" msgstr "Rechercher des mises jour" #: ../src/wxMaximaFrame.cpp:654 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Vrifier si une nouvelle version de wxMaxima xiste" #: ../src/Config.cpp:236 msgid "Chinese traditional" msgstr "Chinois traditionnel" #: ../src/Config.cpp:337 #: ../src/Config.cpp:339 #: ../src/Config.cpp:368 msgid "Choose font" msgstr "Choisir la police" #: ../src/wxMaxima.cpp:3522 #: ../src/wxMaxima.cpp:3536 msgid "Classes:" msgstr "" #: ../src/wxMaximaFrame.cpp:193 msgid "Close\tCtrl-W" msgstr "Fermer\tCtrl-W" #: ../src/wxMaximaFrame.cpp:194 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3644 #, fuzzy msgid "Col. names:" msgstr "Colonnes:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Colonnes:" #: ../src/wxMaximaFrame.cpp:546 msgid "Combine factorials in an expression" msgstr "Combiner les factorielles dans une expression" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Liste x spare par des virgules" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Liste y spare par des virgules" #: ../src/MathCtrl.cpp:731 msgid "Comment Selection" msgstr "Commenter la slection" #: ../src/wxMaximaFrame.cpp:287 msgid "Complete Word\tCtrl-K" msgstr "Complter l'expression\tCtrl-K" #: ../src/wxMaximaFrame.cpp:288 msgid "Complete word" msgstr "Complter le mot" #: ../src/wxMaximaFrame.cpp:509 msgid "Compute continued fraction of a value" msgstr "Calculer la fraction continue d'une valeur" #: ../src/wxMaximaFrame.cpp:447 #, fuzzy msgid "Compute the adjoint matrix" msgstr "Calculer la matrice associe" #: ../src/wxMaximaFrame.cpp:436 msgid "Compute the characteristic polynomial of a matrix" msgstr "Calculer le polynme caractristique d'une matrice" #: ../src/wxMaximaFrame.cpp:439 msgid "Compute the determinant of a matrix" msgstr "Calculer le dterminant d'une matrice" #: ../src/wxMaximaFrame.cpp:496 msgid "Compute the greatest common divisor" msgstr "Calculer le plus grand diviseur commun" #: ../src/wxMaximaFrame.cpp:433 msgid "Compute the inverse of a matrix" msgstr "Calculer l'inverse d'une matrice" #: ../src/wxMaximaFrame.cpp:499 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Calculer le plus petit multiple commun (faire load(functs) avant utilisation)" #: ../src/wxMaxima.cpp:3694 #, fuzzy msgid "Condition:" msgstr "Animation" #: ../src/Config.cpp:1054 #: ../src/Config.cpp:1062 msgid "Config file (*.ini)|*.ini" msgstr "Fichier de configuration (*.ini)|*.ini" #: ../src/Config.cpp:923 msgid "Configuration warning" msgstr "Alerte de configuration" #: ../src/wxMaximaFrame.cpp:273 #: ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:765 msgid "Configure wxMaxima" msgstr "Configurer wxMaxima" #: ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 #: ../src/LimitWiz.cpp:135 #: ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Constante" #: ../src/wxMaximaFrame.cpp:530 msgid "Contract Logarithms" msgstr "Rassembler les logarithmes" #: ../src/wxMaximaFrame.cpp:537 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Convertir combinaisons, fonctions beta et gamma en factorielles" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Convertir combinaisons, factorielles et fonctions beta en fonction gamma" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert complex expression to polar form" msgstr "Convertir une expression complexe en forme polaire" #: ../src/wxMaximaFrame.cpp:571 msgid "Convert complex expression to rect form" msgstr "Convertir une expression complexe en forme cartsienne" #: ../src/wxMaximaFrame.cpp:583 msgid "Convert exponential function of imaginary argument to trigonometric form" msgstr "Convertir une fonction exponentielle d'argument imaginaire sous forme trigonomtrique" #: ../src/wxMaximaFrame.cpp:528 msgid "Convert logarithm of product to sum of logarithms" msgstr "Convertir le logarithme d'un produit en une somme de logarithmes" #: ../src/wxMaximaFrame.cpp:531 msgid "Convert sum of logarithms to logarithm of product" msgstr "Convertir une somme de logarithmes en un logarithme d'un produit" #: ../src/wxMaximaFrame.cpp:536 msgid "Convert to &Factorials" msgstr "Convertir en &factorielles" #: ../src/wxMaximaFrame.cpp:539 msgid "Convert to &Gamma" msgstr "Convertir en &gamma" #: ../src/wxMaximaFrame.cpp:573 msgid "Convert to &Polarform" msgstr "Convertir en forme &polaire" #: ../src/wxMaximaFrame.cpp:570 msgid "Convert to &Rectform" msgstr "Convertir en forme ca&rtsienne" #: ../src/wxMaximaFrame.cpp:563 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Convertir une expression trigonomtrique en forme quasi linaire canonique" #: ../src/wxMaximaFrame.cpp:586 msgid "Convert trigonometric functions to exponential form" msgstr "Convertir les fonctions trigonomtriques en forme exponentielle" #: ../src/MathCtrl.cpp:658 #: ../src/MathCtrl.cpp:671 #: ../src/MathCtrl.cpp:687 #: ../src/MathCtrl.cpp:725 #: ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:771 msgid "Copy" msgstr "Copier" #: ../src/MathCtrl.cpp:673 #: ../src/MathCtrl.cpp:689 msgid "Copy As Image" msgstr "Copier comme une image" #: ../src/MathCtrl.cpp:672 #: ../src/MathCtrl.cpp:688 msgid "Copy LaTeX" msgstr "Copier en LaTex" #: ../src/wxMaximaFrame.cpp:285 msgid "Copy Previous Input\tCtrl-I" msgstr "Copier l'entre prcdente\tCtrl-I" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as Image" msgstr "Copier comme une image" #: ../src/wxMaximaFrame.cpp:231 msgid "Copy as LaTeX" msgstr "Copier en LaTex" #: ../src/wxMaximaFrame.cpp:228 msgid "Copy as Text\tCtrl-Shift-C" msgstr "&Copier en texte\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:227 #: ../src/wxMaximaFrame.cpp:709 #: ../src/wxMaximaFrame.cpp:774 msgid "Copy selection" msgstr "Copier la slection" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document as an image" msgstr "Copier la slection du document au format image" #: ../src/wxMaximaFrame.cpp:229 msgid "Copy selection from document as text" msgstr "Copier la slection du document au format texte" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy selection from document in LaTeX format" msgstr "Copier la slection du document au format LaTeX" #: ../src/wxMaximaFrame.cpp:286 msgid "Create a new cell with previous input" msgstr "Crer une nouvelle cellule avec l'entre prcdente" #: ../src/Config.cpp:363 msgid "Cursor" msgstr "Curseur" #: ../src/MathCtrl.cpp:724 #: ../src/wxMaximaFrame.cpp:704 #: ../src/wxMaximaFrame.cpp:767 msgid "Cut" msgstr "Couper" #: ../src/wxMaximaFrame.cpp:223 msgid "Cut\tCtrl-X" msgstr "&Couper\tCtrl-X" #: ../src/wxMaximaFrame.cpp:224 #: ../src/wxMaximaFrame.cpp:706 #: ../src/wxMaximaFrame.cpp:770 msgid "Cut selection" msgstr "Couper la slection" #: ../src/Config.cpp:237 msgid "Czech" msgstr "" #: ../src/Config.cpp:238 msgid "Danish" msgstr "Danois" #: ../src/wxMaxima.cpp:3637 #: ../src/wxMaxima.cpp:3644 #: ../src/wxMaxima.cpp:3694 #, fuzzy msgid "Data Matrix:" msgstr "Matrice" #: ../src/wxMaxima.cpp:3664 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "" #: ../src/wxMaxima.cpp:3522 #: ../src/wxMaxima.cpp:3536 #: ../src/wxMaxima.cpp:3550 #: ../src/wxMaxima.cpp:3557 #: ../src/wxMaxima.cpp:3564 #: ../src/wxMaxima.cpp:3572 #: ../src/wxMaxima.cpp:3579 #: ../src/wxMaxima.cpp:3586 #: ../src/wxMaxima.cpp:3593 #: ../src/wxMaxima.cpp:3629 msgid "Data:" msgstr "" #: ../src/wxMaximaFrame.cpp:506 msgid "Decompose rational function to partial fractions" msgstr "Dcomposer une fonction rationnelle en lments simples" #: ../src/Config.cpp:343 msgid "Default" msgstr "Par dfaut" #: ../src/Config.cpp:336 msgid "Default font:" msgstr "Police par dfaut :" #: ../src/Config.cpp:253 msgid "Default port:" msgstr "Port par dfaut :" #: ../src/wxMaxima.cpp:2282 #: ../src/wxMaxima.cpp:2291 msgid "Delete" msgstr "Effacer" #: ../src/wxMaximaFrame.cpp:356 msgid "Delete F&unction..." msgstr "Effacer la fonction" #: ../src/MathCtrl.cpp:676 #: ../src/MathCtrl.cpp:692 msgid "Delete Selection" msgstr "Effacer la slection" #: ../src/wxMaximaFrame.cpp:358 msgid "Delete V&ariable..." msgstr "Effacer la v&ariable" #: ../src/wxMaximaFrame.cpp:357 msgid "Delete a function" msgstr "Effacer une fonction" #: ../src/wxMaximaFrame.cpp:359 msgid "Delete a variable" msgstr "Effacer une variable" #: ../src/wxMaximaFrame.cpp:344 msgid "Delete all values from memory" msgstr "Effacer toutes les valeurs de la memoire" #: ../src/wxMaxima.cpp:2291 msgid "Delete function(s):" msgstr "Effacer la (les) fonction(s):" #: ../src/wxMaxima.cpp:2282 msgid "Delete variable(s):" msgstr "Effacer la (les) variables(s):" #: ../src/wxMaxima.cpp:2890 msgid "Denom. deg:" msgstr "denom deg :" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "profondeur:" #: ../src/wxMaxima.cpp:2420 msgid "Derivative:" msgstr "la drive est:" #: ../src/wxMaximaFrame.cpp:989 #, fuzzy msgid "Deviation..." msgstr "Animation" #: ../src/wxMaximaFrame.cpp:502 msgid "Di&vide Polynomials..." msgstr "Di&vision de polynmes ..." #: ../src/wxMaximaFrame.cpp:954 msgid "Diff..." msgstr "Driver" #: ../src/wxMaxima.cpp:3033 #: ../src/wxMaxima.cpp:3861 msgid "Differentiate" msgstr "Driver" #: ../src/wxMaximaFrame.cpp:472 msgid "Differentiate expression" msgstr "Driver l'expression" #: ../src/MathCtrl.cpp:708 msgid "Differentiate..." msgstr "Driver ..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "selon la direction" #: ../src/Plot2dWiz.cpp:448 #: ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Graphe discret" #: ../src/wxMaximaFrame.cpp:368 msgid "Display Te&X Form" msgstr "Afficher en Te&X" #: ../src/wxMaxima.cpp:2231 msgid "Display algorithm" msgstr "Afficher l'algorithme" #: ../src/wxMaximaFrame.cpp:369 msgid "Display last result in TeX form" msgstr "Afficher la dernire expression en TeX" #: ../src/wxMaximaFrame.cpp:363 msgid "Display time used for evaluation" msgstr "Afficher le temps d'excution" #: ../src/wxMaxima.cpp:2940 msgid "Divide" msgstr "Division" #: ../src/MathCtrl.cpp:733 #, fuzzy msgid "Divide Cell" msgstr "Division" #: ../src/wxMaximaFrame.cpp:503 msgid "Divide numbers or polynomials" msgstr "Division de nombres ou de polynmes" #: ../src/wxMaxima.cpp:4359 #: ../src/wxMaxima.cpp:4371 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1057 #: ../src/wxMaxima.cpp:1065 #, fuzzy msgid "Document " msgstr "Arrire-plan du document" #: ../src/Config.cpp:360 msgid "Document background" msgstr "Arrire-plan du document" #: ../src/wxMaxima.cpp:4364 msgid "Don't save" msgstr "Ne pas sauvegarder" #: ../src/wxMaximaFrame.cpp:420 msgid "E&quations" msgstr "E&quations" #: ../src/wxMaximaFrame.cpp:213 msgid "E&xit\tCtrl-Q" msgstr "&Quitter\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:443 msgid "Eige&nvectors" msgstr "Vecteurs propres" #: ../src/wxMaximaFrame.cpp:441 msgid "Eigen&values" msgstr "&Valeurs propres" #: ../src/wxMaxima.cpp:2451 msgid "Eliminate" msgstr "Eliminer" #: ../src/wxMaximaFrame.cpp:396 msgid "Eliminate a variable from a system of equations" msgstr "Eliminer une variable dans un systme d'quations" #: ../src/Config.cpp:239 msgid "English" msgstr "Anglais" #: ../src/wxMaxima.cpp:3550 #: ../src/wxMaxima.cpp:3557 #: ../src/wxMaxima.cpp:3564 #: ../src/wxMaxima.cpp:3572 #: ../src/wxMaxima.cpp:3579 #: ../src/wxMaxima.cpp:3586 #: ../src/wxMaxima.cpp:3593 #: ../src/wxMaxima.cpp:3629 #: ../src/wxMaxima.cpp:3637 #, fuzzy msgid "Enter Data" msgstr "Entrer une matrice" #: ../src/wxMaximaFrame.cpp:1010 #, fuzzy msgid "Enter Matrix..." msgstr "&Entrer une matrice ..." #: ../src/wxMaximaFrame.cpp:431 msgid "Enter a matrix" msgstr "Entrer une matrice" #: ../src/wxMaxima.cpp:2841 msgid "Enter an equation for rational simplification:" msgstr "Entrer une quation pour la simplification rationnelle :" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Entrer une liste de variables spares par des virgules" #: ../src/Config.cpp:263 msgid "Enter evaluates cells" msgstr "Evaluation des cellules avec la touche Entre" #: ../src/wxMaxima.cpp:2613 msgid "Enter matrix" msgstr "Entrer une matrice" #: ../src/wxMaxima.cpp:3175 msgid "Enter new plot format:" msgstr "Entrer un nouveau format de trac :" #: ../src/wxMaxima.cpp:3208 msgid "Enter new precision:" msgstr "Entrer la nouvelle prcision :" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Entrez le chemin vers l'excutable de Maxima:" #: ../src/wxMaxima.cpp:3087 #, fuzzy msgid "Epsilon:" msgstr "Expression:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Equation %d :" #: ../src/wxMaxima.cpp:2339 #: ../src/wxMaxima.cpp:2353 #: ../src/wxMaxima.cpp:2512 #: ../src/wxMaxima.cpp:3814 msgid "Equation(s):" msgstr "Equation(s):" #: ../src/wxMaxima.cpp:2369 #: ../src/wxMaxima.cpp:2388 #: ../src/wxMaxima.cpp:2872 #: ../src/wxMaxima.cpp:3645 #: ../src/wxMaxima.cpp:3828 msgid "Equation:" msgstr "Equation:" #: ../src/wxMaxima.cpp:2449 msgid "Equations:" msgstr "Equation(s):" #: ../src/Config.cpp:478 #: ../src/ImgCell.cpp:101 #: ../src/wxMaxima.cpp:391 #: ../src/wxMaxima.cpp:955 #: ../src/wxMaxima.cpp:966 #: ../src/wxMaxima.cpp:1025 #: ../src/wxMaxima.cpp:1037 #: ../src/wxMaxima.cpp:1059 #: ../src/wxMaxima.cpp:1481 #: ../src/wxMaxima.cpp:1577 #: ../src/wxMaxima.cpp:4033 #: ../src/wxMaxima.cpp:4273 #: ../src/wxMaxima.cpp:4318 msgid "Error" msgstr "Erreur" #: ../src/SlideShowCell.cpp:72 #: ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Erreur %d" #: ../src/wxMaxima.cpp:1942 #: ../src/wxMaxima.cpp:1947 #: ../src/wxMaxima.cpp:2472 #: ../src/wxMaxima.cpp:2496 #: ../src/wxMaxima.cpp:2607 msgid "Error!" msgstr "Erreur !" #: ../src/wxMaximaFrame.cpp:595 msgid "Evaluate &Noun Forms" msgstr "Evaluer les formes &nommes" #: ../src/wxMaximaFrame.cpp:280 msgid "Evaluate All Cells\tCtrl-R" msgstr "&Rvaluer toutes les cellules\tCtrl-R" #: ../src/MathCtrl.cpp:679 #: ../src/wxMaximaFrame.cpp:278 msgid "Evaluate Cell(s)" msgstr "Rvaluer la cellule" #: ../src/wxMaximaFrame.cpp:279 msgid "Evaluate active or selected cell(s)" msgstr "Rvaluer la cellule slectionne" #: ../src/wxMaximaFrame.cpp:281 msgid "Evaluate all cells in the document" msgstr "Rvaluer toutes les cellules du document" #: ../src/wxMaximaFrame.cpp:596 msgid "Evaluate all noun forms in expression" msgstr "Evaluer toutes les formes nommes" #: ../src/wxMaxima.cpp:3465 msgid "Example" msgstr "Exemple" #: ../src/Config.cpp:1008 #: ../src/Config.cpp:1100 msgid "Example text" msgstr "Texte exemple ..." #: ../src/wxMaximaFrame.cpp:214 msgid "Exit wxMaxima" msgstr "Quitter wxMaxima" #: ../src/wxMaximaFrame.cpp:945 msgid "Expand" msgstr "Dvelopper" #: ../src/wxMaximaFrame.cpp:950 msgid "Expand (tr)" msgstr "Dvelopper. (tr)" #: ../src/MathCtrl.cpp:704 msgid "Expand Expression" msgstr "Dvelopper une expression" #: ../src/wxMaximaFrame.cpp:527 msgid "Expand Logarithms" msgstr "Dvelopper des logarithmes" #: ../src/wxMaximaFrame.cpp:526 msgid "Expand an expression" msgstr "Dvelopper une expression" #: ../src/wxMaximaFrame.cpp:560 msgid "Expand trigonometric expression" msgstr "Dvelopper une expression trigonomtrique" #: ../src/wxMaxima.cpp:1928 msgid "Export" msgstr "&Exporter" #: ../src/wxMaximaFrame.cpp:205 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Exporter le document en HTML ou en pdfLatex" #: ../src/wxMaxima.cpp:1947 msgid "Exporting to HTML failed!" msgstr "Echec de l'export en HTML" #: ../src/wxMaxima.cpp:1942 msgid "Exporting to TeX failed!" msgstr "Echec de l'export en teX!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Expression" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Expression(s):" #: ../src/IntegrateWiz.cpp:36 #: ../src/LimitWiz.cpp:26 #: ../src/SeriesWiz.cpp:32 #: ../src/SubstituteWiz.cpp:27 #: ../src/SumWiz.cpp:30 #: ../src/wxMaxima.cpp:2527 #: ../src/wxMaxima.cpp:2697 #: ../src/wxMaxima.cpp:2953 #: ../src/wxMaxima.cpp:2968 #: ../src/wxMaxima.cpp:2997 #: ../src/wxMaxima.cpp:3014 #: ../src/wxMaxima.cpp:3031 #: ../src/wxMaxima.cpp:3084 #: ../src/wxMaxima.cpp:3119 #: ../src/wxMaxima.cpp:3859 msgid "Expression:" msgstr "Expression:" #: ../src/wxMaximaFrame.cpp:944 msgid "Factor" msgstr "Factoriser" #: ../src/wxMaximaFrame.cpp:522 msgid "Factor Complex" msgstr "Factorisation &complexe" #: ../src/MathCtrl.cpp:703 msgid "Factor Expression" msgstr "Factoriser une expression" #: ../src/wxMaximaFrame.cpp:521 msgid "Factor an expression" msgstr "Factoriser une expression" #: ../src/wxMaximaFrame.cpp:523 msgid "Factor an expression in Gaussian numbers" msgstr "Factoriser une expression en nombre gaussiens" #: ../src/wxMaximaFrame.cpp:548 msgid "Factorials and &Gamma" msgstr "Factorielles et &gamma" #: ../src/wxMaxima.cpp:253 msgid "Fatal error" msgstr "Erreur fatale" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "Figure %d:" #: ../src/main.cpp:107 msgid "File" msgstr "&Fichier" #: ../src/wxMaxima.cpp:3982 msgid "File not found" msgstr "Fichier non trouv" #: ../src/wxMaxima.cpp:3982 msgid "File you tried to open does not exist." msgstr "Le fichier que vous tentez d'ouvrir n'existe pas." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "&Fichier:" #: ../src/wxMaximaFrame.cpp:714 msgid "Find" msgstr "Chercher" #: ../src/wxMaximaFrame.cpp:244 msgid "Find\tCtrl-F" msgstr "Chercher\tCtrl-O" #: ../src/wxMaximaFrame.cpp:473 msgid "Find &Limit..." msgstr "Trouver la &limite ..." #: ../src/wxMaximaFrame.cpp:476 #, fuzzy msgid "Find Minimum..." msgstr "Trouver la &limite ..." #: ../src/MathCtrl.cpp:700 msgid "Find Root..." msgstr "Trouver une racine ..." #: ../src/wxMaximaFrame.cpp:477 #, fuzzy msgid "Find a (unconstrained) minimum of an expression" msgstr "Trouver la limite d'une expression" #: ../src/wxMaximaFrame.cpp:474 msgid "Find a limit of an expression" msgstr "Trouver la limite d'une expression" #: ../src/wxMaximaFrame.cpp:379 msgid "Find a root of an equation on an interval" msgstr "Trouver une racine d'un polynme dans un intervalle" #: ../src/wxMaximaFrame.cpp:381 msgid "Find all roots of a polynomial" msgstr "Trouver toutes les racines d'un polynme" #: ../src/wxMaximaFrame.cpp:384 #, fuzzy msgid "Find all roots of a polynomial (bfloat)" msgstr "Trouver toutes les racines d'un polynme" #: ../src/wxMaxima.cpp:2146 msgid "Find and Replace" msgstr "Chercher et remplacer" #: ../src/wxMaximaFrame.cpp:244 #: ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:783 msgid "Find and replace" msgstr "Chercher et remplacer" #: ../src/wxMaximaFrame.cpp:442 msgid "Find eigenvalues of a matrix" msgstr "Trouver les valeurs propres d'une matrice" #: ../src/wxMaximaFrame.cpp:444 msgid "Find eigenvectors of a matrix" msgstr "Trouver les vecteurs propres d'une matrice" #: ../src/wxMaxima.cpp:3089 msgid "Find minimum" msgstr "" #: ../src/wxMaximaFrame.cpp:387 msgid "Find real roots of a polynomial" msgstr "Trouver les racines relles d'un polynme" #: ../src/wxMaxima.cpp:2372 #: ../src/wxMaxima.cpp:3831 msgid "Find root" msgstr "Trouver une solution" #: ../src/wxMaximaFrame.cpp:780 msgid "Find..." msgstr "Chercher..." #: ../src/Config.cpp:259 msgid "Fixed font in text controls" msgstr "Police chasse fixe dans les contrles de texte" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Police d'affichage du document" #: ../src/Config.cpp:131 #, fuzzy msgid "Font used for displaying math characters in document." msgstr "Police d'affichage du document pour les caractres grecs" #: ../src/Config.cpp:322 msgid "Fonts" msgstr "Polices" #: ../src/Plot2dWiz.cpp:70 #: ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Format :" #: ../src/Config.cpp:240 msgid "French" msgstr "Franais" #: ../src/IntegrateWiz.cpp:43 #: ../src/Plot2dWiz.cpp:49 #: ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 #: ../src/Plot3dWiz.cpp:46 #: ../src/Plot3dWiz.cpp:55 #: ../src/SumWiz.cpp:36 #: ../src/wxMaxima.cpp:2698 #: ../src/wxMaxima.cpp:3119 msgid "From:" msgstr " partir de:" #: ../src/wxMaximaFrame.cpp:268 msgid "Full Screen\tAlt-Enter" msgstr "Plein cran\tAlt-Entre" #: ../src/wxMaxima.cpp:2253 msgid "Function" msgstr "Fonction" #: ../src/Config.cpp:346 msgid "Function names" msgstr "Noms des fonctions" #: ../src/wxMaxima.cpp:2512 msgid "Function(s):" msgstr "Fonction(s):" #: ../src/wxMaxima.cpp:2388 #: ../src/wxMaxima.cpp:2579 #: ../src/wxMaxima.cpp:2682 #: ../src/wxMaxima.cpp:2715 msgid "Function:" msgstr "Fonction" #: ../src/wxMaximaFrame.cpp:590 msgid "Functions for complex simplification" msgstr "Fonctions pour simplification complexe" #: ../src/wxMaximaFrame.cpp:550 msgid "Functions for simplifying factorials and gamma function" msgstr "Fonctions pour simplifier les factorielles et fonction gamma" #: ../src/wxMaximaFrame.cpp:567 msgid "Functions for simplifying trigonometric expressions" msgstr "Fonctions pour simplifier les expressions trigonomtriques" #: ../src/wxMaxima.cpp:2925 msgid "GCD" msgstr "PGCD" #: ../src/wxMaxima.cpp:3944 msgid "GIF image (*.gif)|*.gif" msgstr "" #: ../src/wxMaximaFrame.cpp:132 msgid "General Math" msgstr "Math gnral" #: ../src/wxMaximaFrame.cpp:321 msgid "General Math\tAlt-Shift-M" msgstr "Math gnral\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2645 #: ../src/wxMaxima.cpp:2664 msgid "Generate Matrix" msgstr "Gnrer une matrice" #: ../src/wxMaximaFrame.cpp:427 #, fuzzy msgid "Generate Matrix from Expression..." msgstr "&Gnrer une matrice ..." #: ../src/wxMaximaFrame.cpp:425 msgid "Generate a matrix from a 2-dimensional array" msgstr "Gnrer une matrice partir d'un tableau 2 dimensions" #: ../src/wxMaximaFrame.cpp:428 #, fuzzy msgid "Generate a matrix from a lambda expression" msgstr "Gnrer une matrice partir d'un tableau 2 dimensions" #: ../src/Config.cpp:241 msgid "German" msgstr "Allemand" #: ../src/wxMaximaFrame.cpp:579 msgid "Get &Imaginary Part" msgstr "Partie imaginaire" #: ../src/wxMaximaFrame.cpp:479 msgid "Get &Series..." msgstr "Obtenir une &srie ..." #: ../src/wxMaximaFrame.cpp:490 msgid "Get Laplace transformation of an expression" msgstr "Transforme de Laplace" #: ../src/wxMaximaFrame.cpp:576 msgid "Get Real P&art" msgstr "P&artie relle" #: ../src/wxMaximaFrame.cpp:493 msgid "Get inverse Laplace transformation of an expression" msgstr "Obtenir la transforme inverse de Laplace d'une expression" #: ../src/wxMaximaFrame.cpp:480 msgid "Get the Taylor or power series of expression" msgstr "Obtenir le dveloppement en srie entire ou en srie limit (Taylor)" #: ../src/wxMaximaFrame.cpp:580 msgid "Get the imaginary part of complex expression" msgstr "Partie imaginaire d'une expression complexe" #: ../src/wxMaximaFrame.cpp:577 msgid "Get the real part of complex expression" msgstr "Partie relle d'une expression complexe" #: ../src/Config.cpp:242 #, fuzzy msgid "Greek" msgstr "Police greque" #: ../src/Config.cpp:348 msgid "Greek constants" msgstr "Constantes grecques" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Grille :" #: ../src/wxMaxima.cpp:1930 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Fichier HTML (*.html)|*.html|fichier pdfLaTeX (*.tex)|*.tex|All|*" #: ../src/wxMaxima.cpp:2643 #: ../src/wxMaxima.cpp:2662 msgid "Height:" msgstr "hauteur:" #: ../src/wxMaximaFrame.cpp:733 #: ../src/wxMaximaFrame.cpp:801 msgid "Help" msgstr "Aide" #: ../src/wxMaximaFrame.cpp:319 msgid "Hide All\tAlt-Shift--" msgstr "Cacher tout\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:319 msgid "Hide all panes" msgstr "Cacher tous les panneaux" #: ../src/Config.cpp:354 msgid "Highlight (dpart)" msgstr "Surbrillance" #: ../src/wxMaxima.cpp:3523 msgid "Histogram" msgstr "" #: ../src/wxMaximaFrame.cpp:1001 msgid "Histogram..." msgstr "" #: ../src/wxMaximaFrame.cpp:113 msgid "History" msgstr "Historique" #: ../src/wxMaximaFrame.cpp:323 msgid "History\tAlt-Shift-H" msgstr "Historique\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "Horizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it." msgstr "Le curseur horizontal fonctionne comme un curseur normal, mais fonctionne sur les cellules: Les touches haut et bas permettent de le dplacer, maintenir Shift pendant le dplacement slectionne les cellules, appuyer sur backspace ou delete deux fois permet d'effacer la cellule slectionne." #: ../src/Config.cpp:243 msgid "Hungarian" msgstr "Hongrois" #: ../src/wxMaxima.cpp:2406 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2422 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "Si vtre calcul met trop de temps tre valuer, vous pouvez essayer \"Maxima->Interrompre\" puis \"Maxima->Redmarrer Maxima" #: ../src/wxMaximaFrame.cpp:1041 msgid "Image" msgstr "Image" #: ../src/wxMaxima.cpp:4131 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Fichiers images (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3695 msgid "Include columns:" msgstr "" #: ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 #: ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 #: ../src/LimitWiz.cpp:132 #: ../src/LimitWiz.cpp:142 msgid "Infinity" msgstr "" #: ../src/wxMaximaFrame.cpp:649 msgid "Info about Maxima build" msgstr "Infos sur la compilation de maxima" #: ../src/wxMaxima.cpp:3086 msgid "Initial Estimates:" msgstr "" #: ../src/wxMaximaFrame.cpp:404 msgid "Initial Value Problem (&1)..." msgstr "Condition initiale (&1) ..." #: ../src/wxMaximaFrame.cpp:407 msgid "Initial Value Problem (&2)..." msgstr "Condition initiale (&2) ..." #: ../src/Config.cpp:351 msgid "Input labels" msgstr "tiquettes d'entre" #: ../src/wxMaximaFrame.cpp:142 msgid "Insert" msgstr "Insrer" #: ../src/wxMaximaFrame.cpp:298 msgid "Insert &Section Cell\tF8" msgstr "Insrer une cellule de section\tF8" #: ../src/wxMaximaFrame.cpp:294 msgid "Insert &Text Cell\tF6" msgstr "Insrer une cellule de texte \tF6" #: ../src/wxMaximaFrame.cpp:324 msgid "Insert Cell\tAlt-Shift-C" msgstr "&Coller la cellule\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4129 msgid "Insert Image" msgstr "Insrer une image" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert Image..." msgstr "Insrer une image" #: ../src/wxMaximaFrame.cpp:292 msgid "Insert Input &Cell\tF5" msgstr "Insrer une cellule d'entre\tF5" #: ../src/wxMaximaFrame.cpp:302 msgid "Insert Page Break\tF10" msgstr "Insrer un saut de page\tF10" #: ../src/wxMaximaFrame.cpp:296 msgid "Insert S&ubsection Cell\tF7" msgstr "Insrer une cellule de sous-section\tF7" #: ../src/wxMaximaFrame.cpp:300 msgid "Insert T&itle Cell\tF9" msgstr "Insrer une cellule de titre\tF9" #: ../src/wxMaximaFrame.cpp:293 msgid "Insert a new input cell" msgstr "Insrer une nouvelle cellule d'entre" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new section cell" msgstr "Insrer une nouvelle cellule de section" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new subsection cell" msgstr "Insrer une nouvelle cellule de sous-section" #: ../src/wxMaximaFrame.cpp:295 msgid "Insert a new text cell" msgstr "Insrer une nouvelle cellule de texte" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Insrer une nouvelle cellule de titre" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a page break" msgstr "Insrer un saut de page" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert image" msgstr "Insrer une image" #: ../src/wxMaxima.cpp:2871 msgid "Integral/Sum:" msgstr "Intgrale/somme" #: ../src/IntegrateWiz.cpp:72 #: ../src/wxMaxima.cpp:2984 #: ../src/wxMaxima.cpp:3846 msgid "Integrate" msgstr "Intgrer" #: ../src/wxMaxima.cpp:2970 msgid "Integrate (risch)" msgstr "Intgrer (risch)" #: ../src/wxMaximaFrame.cpp:464 msgid "Integrate expression" msgstr "Intgrer une expression" #: ../src/wxMaximaFrame.cpp:466 msgid "Integrate expression with Risch algorithm" msgstr "Intgrer une expression avec l'algorithme de Risch" #: ../src/MathCtrl.cpp:707 #: ../src/wxMaximaFrame.cpp:955 msgid "Integrate..." msgstr "Intgrer" #: ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:785 msgid "Interrupt" msgstr "Interrompre" #: ../src/wxMaximaFrame.cpp:335 #: ../src/wxMaximaFrame.cpp:339 #: ../src/wxMaximaFrame.cpp:720 #: ../src/wxMaximaFrame.cpp:788 msgid "Interrupt current computation" msgstr "Interrompre le calcul en cours" #: ../src/Config.cpp:477 #, fuzzy msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Entre invalide pour le programme maxima.\n" "\n" "Entrer nouveau le chemin vers l'excutable maxima." #: ../src/wxMaxima.cpp:3016 msgid "Inverse Laplace" msgstr "Inverse Laplace" #: ../src/wxMaximaFrame.cpp:492 msgid "Inverse Laplace T&ransform..." msgstr "&Transforme inverse de Laplace ..." #: ../src/Config.cpp:244 msgid "Italian" msgstr "Italien" #: ../src/Config.cpp:375 msgid "Italic" msgstr "Italique" #: ../src/Config.cpp:245 msgid "Japanese" msgstr "" #: ../src/Config.cpp:262 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Conserver le signe pourcentage avec les symboles spciaux: %e, %i, etc." #: ../src/wxMaxima.cpp:2910 msgid "LCM" msgstr "PPCM" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Langue utilise pour l'interface de wxMaxima" #: ../src/Config.cpp:231 msgid "Language:" msgstr "Langue :" #: ../src/wxMaxima.cpp:2999 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:489 msgid "Laplace &Transform..." msgstr "&Transforme de Laplace ..." #: ../src/wxMaximaFrame.cpp:498 msgid "Least Common Multiple..." msgstr "Plus petit multiple commun ..." #: ../src/wxMaxima.cpp:3647 msgid "Least Squares Fit" msgstr "" #: ../src/wxMaximaFrame.cpp:997 msgid "Least Squares Fit..." msgstr "" #: ../src/LimitWiz.cpp:66 #: ../src/wxMaxima.cpp:3071 msgid "Limit" msgstr "Limite" #: ../src/wxMaximaFrame.cpp:956 msgid "Limit..." msgstr "Limite..." #: ../src/wxMaximaFrame.cpp:996 msgid "Linear Regression..." msgstr "Rgression linaire..." #: ../src/wxMaxima.cpp:2682 #: ../src/wxMaxima.cpp:2715 msgid "List:" msgstr " la liste:" #: ../src/Config.cpp:378 msgid "Load" msgstr "Charger" #: ../src/wxMaxima.cpp:1956 msgid "Load Package" msgstr "Charger un paquetage\tCtrl-L" #: ../src/wxMaximaFrame.cpp:203 msgid "Load a Maxima file using the batch command" msgstr "Ouvrir un fichier maxima en utilisant batch command" #: ../src/wxMaximaFrame.cpp:201 msgid "Load a Maxima package file" msgstr "Charger un paquetage maxima" #: ../src/Config.cpp:1060 msgid "Load style from file" msgstr "Charger un style partir d'un fichier" #: ../src/wxMaxima.cpp:2370 #: ../src/wxMaxima.cpp:3829 msgid "Lower bound:" msgstr "borne infrieure :" #: ../src/wxMaximaFrame.cpp:457 msgid "Ma&p to Matrix..." msgstr "A&ppliquer une matrice ..." #: ../src/wxMaximaFrame.cpp:451 msgid "Make &List..." msgstr "Gnrer une &liste ..." #: ../src/wxMaxima.cpp:2700 msgid "Make list" msgstr "Gnrer une liste" #: ../src/wxMaximaFrame.cpp:452 msgid "Make list from expression" msgstr "Gnrer une liste partir d'une expression" #: ../src/wxMaximaFrame.cpp:593 msgid "Make substitution in expression" msgstr "Substituer dans une expression" #: ../src/wxMaxima.cpp:2684 msgid "Map" msgstr "Appliquer" #: ../src/wxMaximaFrame.cpp:456 msgid "Map function to a list" msgstr "Appliquer une fonction une liste" #: ../src/wxMaximaFrame.cpp:458 msgid "Map function to a matrix" msgstr "Appliquer une fonction une matrice" #: ../src/Config.cpp:258 msgid "Match parenthesis in text controls" msgstr "Faire correspondre les parenthses dans les entres de texte." #: ../src/Config.cpp:338 #, fuzzy msgid "Math font:" msgstr "au point:" #: ../src/wxMaxima.cpp:2595 msgid "Matrix" msgstr "Matrice" #: ../src/wxMaxima.cpp:2581 msgid "Matrix map" msgstr "Appliquer une matrice" #: ../src/wxMaxima.cpp:3695 #, fuzzy msgid "Matrix name:" msgstr "Matrice" #: ../src/wxMaxima.cpp:2579 #: ../src/wxMaxima.cpp:2628 msgid "Matrix:" msgstr "Matrice" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:634 msgid "Maxima &Help\tF1" msgstr "Aide Maxima\tF1" #: ../src/Config.cpp:350 msgid "Maxima input" msgstr "Entre maxima" #: ../src/wxMaxima.cpp:463 msgid "Maxima is calculating" msgstr "Maxima est en train de calculer" #: ../src/wxMaxima.cpp:1969 msgid "Maxima package (*.mac)|*.mac" msgstr "package Maxima (*.mac)|*.mac|" #: ../src/wxMaxima.cpp:1958 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Paquetage maxima (*.mac)|*.mac|Paquetage Lisp (*.lisp)|*.lisp|All|*" #: ../src/wxMaxima.cpp:770 msgid "Maxima process terminated." msgstr "Maxima s'est arrt." #: ../src/Config.cpp:296 msgid "Maxima program:" msgstr "Programme Maxima :" #: ../src/Config.cpp:352 msgid "Maxima questions" msgstr "Questions sur maxima" #: ../src/wxMaxima.cpp:725 msgid "Maxima started. Waiting for connection..." msgstr "Maxima dmarr. Attente de la connection..." #: ../data/tips.txt:3 msgid "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;')." msgstr "Maxima utilise ':' pour affecter une valeur une variable ('a : 3;') et ':=' pour dfinir une fonction ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3442 msgid "Maxima version: " msgstr "Version de Maxima:" #: ../src/wxMaximaFrame.cpp:994 #, fuzzy msgid "Mean Difference Test..." msgstr "Driver ..." #: ../src/wxMaximaFrame.cpp:993 #, fuzzy msgid "Mean Test..." msgstr "Gnrer une &liste ..." #: ../src/wxMaximaFrame.cpp:986 #, fuzzy msgid "Mean..." msgstr "Appliquer" #: ../src/wxMaxima.cpp:3600 msgid "Mean:" msgstr "" #: ../src/wxMaximaFrame.cpp:987 #, fuzzy msgid "Median..." msgstr "Gnrer une &liste ..." #: ../src/MathCtrl.cpp:682 #, fuzzy msgid "Merge Cells" msgstr "Effacer les cellules slectionnes" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "mthode:" #: ../src/wxMaxima.cpp:2851 msgid "Modulus" msgstr "Module" #: ../src/MatWiz.cpp:182 #: ../src/wxMaxima.cpp:2643 #: ../src/wxMaxima.cpp:2662 msgid "Name:" msgstr "Nom:" #: ../src/wxMaximaFrame.cpp:184 msgid "New\tCtrl-N" msgstr "&Nouvelle session\tCtrl-N" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Nouvelle valeur" #: ../src/wxMaxima.cpp:2872 #: ../src/wxMaxima.cpp:2998 #: ../src/wxMaxima.cpp:3015 msgid "New variable:" msgstr "nouvelle variable :" #: ../src/wxMaximaFrame.cpp:309 msgid "Next Command\tAlt-Down" msgstr "Commande suivante\tAlt-Down" #: ../src/wxMaxima.cpp:2174 #: ../src/wxMaxima.cpp:2190 msgid "No matches found!" msgstr "" #: ../src/wxMaximaFrame.cpp:995 #, fuzzy msgid "Normality Test..." msgstr "Texte normal" #: ../src/wxMaxima.cpp:2607 msgid "Not a valid matrix dimension!" msgstr "Dimension de matrice incorrecte !" #: ../src/wxMaxima.cpp:2472 #: ../src/wxMaxima.cpp:2496 msgid "Not a valid number of equations!" msgstr "Nombre d'quations incorrect !" #: ../src/wxMaxima.cpp:3444 msgid "Not connected." msgstr "" #: ../src/wxMaxima.cpp:2889 msgid "Num. deg:" msgstr "num deg:" #: ../src/wxMaxima.cpp:2464 #: ../src/wxMaxima.cpp:2488 msgid "Number of equations:" msgstr "Nombre d'quations :" #: ../src/Config.cpp:345 msgid "Numbers" msgstr "Nombres" #: ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 #: ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 #: ../src/Gen2Wiz.cpp:41 #: ../src/Gen2Wiz.cpp:45 #: ../src/Gen3Wiz.cpp:48 #: ../src/Gen3Wiz.cpp:52 #: ../src/Gen4Wiz.cpp:54 #: ../src/Gen4Wiz.cpp:58 #: ../src/IntegrateWiz.cpp:58 #: ../src/IntegrateWiz.cpp:62 #: ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 #: ../src/MatWiz.cpp:38 #: ../src/MatWiz.cpp:42 #: ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 #: ../src/Plot2dWiz.cpp:100 #: ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 #: ../src/Plot2dWiz.cpp:564 #: ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 #: ../src/Plot3dWiz.cpp:102 #: ../src/Plot3dWiz.cpp:106 #: ../src/SeriesWiz.cpp:47 #: ../src/SeriesWiz.cpp:51 #: ../src/SubstituteWiz.cpp:39 #: ../src/SubstituteWiz.cpp:43 #: ../src/SumWiz.cpp:46 #: ../src/SumWiz.cpp:50 #: ../src/SystemWiz.cpp:36 #: ../src/SystemWiz.cpp:40 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Ancienne valeur" #: ../src/wxMaxima.cpp:2871 #: ../src/wxMaxima.cpp:2997 #: ../src/wxMaxima.cpp:3014 msgid "Old variable:" msgstr "ancienne variable:" #: ../src/wxMaxima.cpp:3601 #, fuzzy msgid "One sample t-test" msgstr "Texte exemple ..." #: ../src/wxMaximaFrame.cpp:646 msgid "Online tutorials" msgstr "Tutoriels en ligne" #: ../src/Config.cpp:298 #: ../src/main.cpp:202 #: ../src/wxMaxima.cpp:1903 #: ../src/wxMaximaFrame.cpp:688 #: ../src/wxMaximaFrame.cpp:747 msgid "Open" msgstr "Ouvrir" #: ../src/wxMaximaFrame.cpp:190 msgid "Open Recent" msgstr "Ouvrir un fichier rcent" #: ../src/wxMaximaFrame.cpp:188 msgid "Open a document" msgstr "Ouvrir un document" #: ../src/wxMaximaFrame.cpp:185 msgid "Open a new window" msgstr "Ouvrir une nouvelle fentre" #: ../src/wxMaximaFrame.cpp:690 #: ../src/wxMaximaFrame.cpp:750 msgid "Open document" msgstr "Ouvrir un document" #: ../src/wxMaxima.cpp:3662 #, fuzzy msgid "Open matrix" msgstr "Entrer une matrice" #: ../src/wxMaxima.cpp:944 #: ../src/wxMaxima.cpp:1011 #, fuzzy msgid "Opening file" msgstr "Erreur durant l'ouverture du fichier" #: ../src/Config.cpp:97 #: ../src/wxMaximaFrame.cpp:700 #: ../src/wxMaximaFrame.cpp:762 msgid "Options" msgstr "Options" #: ../src/Plot2dWiz.cpp:81 #: ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Options :" #: ../src/Config.cpp:365 #, fuzzy msgid "Outdated cells" msgstr "Cellules" #: ../src/Config.cpp:353 msgid "Output labels" msgstr "tiquettes de sorties" #: ../src/wxMaximaFrame.cpp:482 msgid "P&ade Approximation..." msgstr "Approximation de &Pad ..." #: ../src/wxMaxima.cpp:2063 #: ../src/wxMaxima.cpp:3928 msgid "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm" msgstr "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2891 msgid "Pade approximation" msgstr "Approximation de Pad" #: ../src/wxMaximaFrame.cpp:483 msgid "Pade approximation of a Taylor series" msgstr "Approximation de Pad d'un dveloppement en srie de Taylor" #: ../src/wxMaximaFrame.cpp:1042 msgid "Pagebreak" msgstr "Saut de page" #: ../src/wxMaximaFrame.cpp:327 msgid "Panes" msgstr "Panneaux" #: ../src/Plot2dWiz.cpp:447 #: ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Courbe paramtre" #: ../src/wxMaxima.cpp:316 msgid "Parsing output" msgstr "Analyse du rsultat" #: ../src/wxMaximaFrame.cpp:505 msgid "Partial &Fractions..." msgstr "Elments simples ..." #: ../src/wxMaxima.cpp:2955 msgid "Partial fractions" msgstr "Elments simples" #: ../src/MathParser.cpp:961 #: ../src/wxMaxima.cpp:1134 msgid "Parts of the document will not be loaded correctly!" msgstr "" #: ../src/MathCtrl.cpp:717 #: ../src/MathCtrl.cpp:726 #: ../src/wxMaximaFrame.cpp:710 #: ../src/wxMaximaFrame.cpp:775 msgid "Paste" msgstr "Coller" #: ../src/wxMaximaFrame.cpp:239 msgid "Paste\tCtrl-V" msgstr "&Coller\tCtrl-V" #: ../src/wxMaximaFrame.cpp:712 #: ../src/wxMaximaFrame.cpp:778 msgid "Paste from clipboard" msgstr "Coller le texte du presse-papier" #: ../src/wxMaximaFrame.cpp:240 msgid "Paste text from clipboard" msgstr "Coller le texte du presse-papier" #: ../src/wxMaximaFrame.cpp:1004 msgid "Piechart..." msgstr "Camembert..." #: ../src/wxMaxima.cpp:1406 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Configurer wxMaxima avec 'Edition->Configurer'." #: ../src/Config.cpp:922 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Redmarrer wxMaxima pour que les changements prennent effet." #: ../src/wxMaximaFrame.cpp:609 msgid "Plot &2d..." msgstr "Courbe &2d ..." #: ../src/wxMaximaFrame.cpp:611 msgid "Plot &3d..." msgstr "Courbe &3d ..." #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &Format..." msgstr "&Format de la courbe ..." #: ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 #: ../src/Plot2dWiz.cpp:476 #: ../src/wxMaxima.cpp:3162 #: ../src/wxMaxima.cpp:3897 msgid "Plot 2D" msgstr "Courbe 2D" #: ../src/wxMaximaFrame.cpp:958 msgid "Plot 2D..." msgstr "Courbe 2D" #: ../src/MathCtrl.cpp:710 msgid "Plot 2d..." msgstr "Courbe 2d ..." #: ../src/Plot3dWiz.cpp:118 #: ../src/wxMaxima.cpp:3148 #: ../src/wxMaxima.cpp:3910 msgid "Plot 3D" msgstr "Courbe 3D" #: ../src/wxMaximaFrame.cpp:959 msgid "Plot 3D..." msgstr "Courbe 3D" #: ../src/MathCtrl.cpp:711 msgid "Plot 3d..." msgstr "Courbe 3d ..." #: ../src/wxMaxima.cpp:3176 msgid "Plot format" msgstr "Format de la courbe" #: ../src/wxMaximaFrame.cpp:610 msgid "Plot in 2 dimensions" msgstr "Courbe en 2 dimensions" #: ../src/wxMaximaFrame.cpp:612 msgid "Plot in 3 dimensions" msgstr "Courbe en 3 dimensions" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Tracer dans un fichier :" #: ../src/BC2Wiz.cpp:29 #: ../src/BC2Wiz.cpp:35 #: ../src/LimitWiz.cpp:32 #: ../src/SeriesWiz.cpp:38 #: ../src/wxMaxima.cpp:2404 #: ../src/wxMaxima.cpp:2419 #: ../src/wxMaxima.cpp:2527 msgid "Point:" msgstr "Point:" #: ../src/Config.cpp:246 msgid "Polish" msgstr "Polonais" #: ../src/wxMaxima.cpp:2908 #: ../src/wxMaxima.cpp:2923 #: ../src/wxMaxima.cpp:2938 msgid "Polynomial 1:" msgstr "Polynme 1 :" #: ../src/wxMaxima.cpp:2908 #: ../src/wxMaxima.cpp:2923 #: ../src/wxMaxima.cpp:2938 msgid "Polynomial 2:" msgstr "Polynme 2 :" #: ../src/Config.cpp:247 msgid "Portuguese (Brazilian)" msgstr "Portugais (Brsil)" #: ../src/Plot2dWiz.cpp:515 #: ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Fichier postscript (*.eps)|*.eps|All|*" #: ../src/wxMaxima.cpp:3208 msgid "Precision" msgstr "Prcision" #: ../src/wxMaximaFrame.cpp:307 msgid "Previous Command\tAlt-Up" msgstr "Commande prcdente\tAlt-Up" #: ../src/wxMaximaFrame.cpp:696 #: ../src/wxMaximaFrame.cpp:757 msgid "Print" msgstr "Imprimer" #: ../src/wxMaximaFrame.cpp:209 #: ../src/wxMaximaFrame.cpp:698 #: ../src/wxMaximaFrame.cpp:760 msgid "Print document" msgstr "Imprimer le document" #: ../src/wxMaxima.cpp:3121 msgid "Product" msgstr "Produit" #: ../src/wxMaximaFrame.cpp:1009 #, fuzzy msgid "Read Matrix..." msgstr "&Entrer une matrice ..." #: ../src/wxMaxima.cpp:547 #, fuzzy msgid "Reading Maxima output" msgstr "En train de lire la sortie maxima" #: ../src/wxMaxima.cpp:360 #: ../src/wxMaxima.cpp:816 #: ../src/wxMaxima.cpp:934 #: ../src/wxMaxima.cpp:956 #: ../src/wxMaxima.cpp:967 #: ../src/wxMaxima.cpp:1004 #: ../src/wxMaxima.cpp:1027 #: ../src/wxMaxima.cpp:1039 #: ../src/wxMaxima.cpp:1060 #: ../src/wxMaxima.cpp:1106 #: ../src/wxMaxima.cpp:1326 #: ../src/wxMaxima.cpp:1347 msgid "Ready for user input" msgstr "Prt pour une entre utilisateur" #: ../src/wxMaximaFrame.cpp:310 msgid "Recall next command from history" msgstr "Rappeler la commande suivante dans l'historique" #: ../src/wxMaximaFrame.cpp:308 msgid "Recall previous command from history" msgstr "Rappeler la commande prcdent dans l'historique" #: ../src/wxMaximaFrame.cpp:946 msgid "Rectform" msgstr "Forme cart." #: ../src/wxMaximaFrame.cpp:951 msgid "Reduce (tr)" msgstr "Rduire (tr)" #: ../src/wxMaximaFrame.cpp:557 msgid "Reduce trigonometric expression" msgstr "Rduire une expression trigonomtrique" #: ../src/wxMaximaFrame.cpp:282 msgid "Remove All Output" msgstr "Supprimer tous les rsultats" #: ../src/wxMaximaFrame.cpp:283 msgid "Remove output from input cells" msgstr "Supprimer les rsultats des cellules" #: ../src/wxMaxima.cpp:2197 #, c-format msgid "Replaced %d occurences." msgstr "" #: ../src/wxMaximaFrame.cpp:651 msgid "Report bug" msgstr "Rapport de bogue" #: ../src/wxMaximaFrame.cpp:342 msgid "Restart Maxima" msgstr "Redmarrer Maxima" #: ../src/wxMaximaFrame.cpp:465 msgid "Risch Integration..." msgstr "Intgration de Risch ..." #: ../src/wxMaximaFrame.cpp:380 msgid "Roots of &Polynomial" msgstr "Racines d'un &polynme" #: ../src/wxMaximaFrame.cpp:383 #, fuzzy msgid "Roots of Polynomial (bfloat)" msgstr "&Racines d'un polynme (relles)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Colonnes :" #: ../src/Config.cpp:248 msgid "Russian" msgstr "Russe" #: ../src/wxMaxima.cpp:3614 #, fuzzy msgid "Sample 1:" msgstr "Exemple" #: ../src/wxMaxima.cpp:3614 #, fuzzy msgid "Sample 2:" msgstr "Exemple" #: ../src/wxMaxima.cpp:3600 #, fuzzy msgid "Sample:" msgstr "Exemple" #: ../src/Config.cpp:379 #: ../src/wxMaxima.cpp:4364 #: ../src/wxMaximaFrame.cpp:691 #: ../src/wxMaximaFrame.cpp:751 msgid "Save" msgstr "Enregistrer" #: ../src/MathCtrl.cpp:661 msgid "Save Animation..." msgstr "Sauver animation ..." #: ../src/wxMaxima.cpp:1822 msgid "Save As" msgstr "Enregistrer sous" #: ../src/wxMaximaFrame.cpp:198 msgid "Save As...\tShift-Ctrl-S" msgstr "&Sauver la session sous...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:659 msgid "Save Image..." msgstr "Enregistrer l'image" #: ../src/wxMaxima.cpp:2061 msgid "Save Selection to Image" msgstr "Sauver la slection en image" #: ../src/wxMaximaFrame.cpp:249 msgid "Save Selection to Image..." msgstr "Sauver la slection en image" #: ../src/wxMaxima.cpp:3942 msgid "Save animation to file" msgstr "Enregistrer l'animation dans un fichier" #: ../src/wxMaxima.cpp:4376 msgid "Save changes before closing?" msgstr "Sauver les changements avant de fermer?" #: ../src/wxMaxima.cpp:4377 msgid "Save changes?" msgstr "Sauvegarder les changements?" #: ../src/wxMaximaFrame.cpp:197 #: ../src/wxMaximaFrame.cpp:693 #: ../src/wxMaximaFrame.cpp:754 msgid "Save document" msgstr "Sauvegarder le document" #: ../src/wxMaximaFrame.cpp:199 msgid "Save document as" msgstr "Sauvegarder le document sous" #: ../src/Config.cpp:257 msgid "Save panes layout" msgstr "Sauver la disposition des panneaux" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Enregistrer la taille/position de la fentre de wxMaxima d'une session l'autre." #: ../src/Plot2dWiz.cpp:513 #: ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Enregistrer le trac dans un fichier " #: ../src/wxMaximaFrame.cpp:250 msgid "Save selection from document to an image file" msgstr "Sauvegarder la slection du document dans un fichier image " #: ../src/wxMaxima.cpp:3926 msgid "Save selection to file" msgstr "Enregistrer la slection dans un fichier" #: ../src/Config.cpp:1052 msgid "Save style to file" msgstr "Enregistrer le style dans un fichier " #: ../src/Config.cpp:256 msgid "Save wxMaxima window size/position" msgstr "Enregistrer la taille/position de la fentre de wxMaxima " #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Enregistrer la taille/position de la fentre de wxMaxima d'une session l'autre" #: ../src/wxMaxima.cpp:3537 msgid "Scatterplot" msgstr "Nuage de points" #: ../src/wxMaximaFrame.cpp:1002 msgid "Scatterplot..." msgstr "Nuage de points..." #: ../src/wxMaximaFrame.cpp:1040 msgid "Section" msgstr "Section" #: ../src/Config.cpp:357 msgid "Section cell" msgstr "Celllule de section" #: ../src/MathCtrl.cpp:718 #: ../src/MathCtrl.cpp:728 msgid "Select All" msgstr "Tout slectionner" #: ../src/wxMaximaFrame.cpp:246 msgid "Select All\tCtrl-A" msgstr "Tout slectionner" #: ../src/Config.cpp:462 #: ../src/Config.cpp:467 #, fuzzy msgid "Select Maxima program" msgstr "Choisir le programme maxima" #: ../src/wxMaxima.cpp:3698 #, fuzzy msgid "Select Subsample" msgstr "Tout slectionner" #: ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 #: ../src/LimitWiz.cpp:134 #: ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Choisir une constante" #: ../src/wxMaximaFrame.cpp:247 msgid "Select all" msgstr "Tout slectionner" #: ../src/wxMaxima.cpp:2230 msgid "Select math display algorithm" msgstr "Choisir l'algorithme d'affichage mathmatique" #: ../data/tips.txt:13 msgid "Selecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection." msgstr "" #: ../src/Config.cpp:364 msgid "Selection" msgstr "Slection" #: ../src/SeriesWiz.cpp:61 #: ../src/wxMaxima.cpp:3057 msgid "Series" msgstr "Sries" #: ../src/wxMaximaFrame.cpp:957 msgid "Series..." msgstr "Sries" #: ../src/wxMaxima.cpp:648 msgid "Server started" msgstr "Serveur dmarr" #: ../src/wxMaximaFrame.cpp:627 msgid "Set &Precision..." msgstr "Rgler la &prcision ..." #: ../src/wxMaximaFrame.cpp:267 msgid "Set Zoom" msgstr "Fixer zoom" #: ../src/wxMaximaFrame.cpp:628 msgid "Set bigfloat precision" msgstr "Rgler la prcision de la virgule flottante" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Slectionner une police chasse fixe dans les entres de texte." #: ../src/wxMaximaFrame.cpp:614 msgid "Set plot format" msgstr "Rgler le format de courbe" #: ../src/wxMaximaFrame.cpp:261 msgid "Set zoom to 100%" msgstr "Fixer zoom 100%" #: ../src/wxMaximaFrame.cpp:262 msgid "Set zoom to 120%" msgstr "Fixer zoom 120%" #: ../src/wxMaximaFrame.cpp:263 msgid "Set zoom to 150%" msgstr "Fixer zoom 150%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 200%" msgstr "Fixer zoom 200%" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 300%" msgstr "Fixer zoom 300%" #: ../src/wxMaximaFrame.cpp:260 msgid "Set zoom to 80%" msgstr "Fixer zoom 80%" #: ../src/wxMaximaFrame.cpp:418 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "Choisir ' la valeur' pour la rsolution d'une ODE avec la transforme de Laplace" #: ../src/wxMaximaFrame.cpp:604 msgid "Setup modulus computation" msgstr "Calculer le module" #: ../src/wxMaximaFrame.cpp:351 msgid "Show &Definition..." msgstr "Montrer les &dfinitions" #: ../src/wxMaximaFrame.cpp:349 msgid "Show &Functions" msgstr "Montrer les &fonctions" #: ../src/wxMaximaFrame.cpp:642 msgid "Show &Tips..." msgstr "Montrer les as&tuces" #: ../src/wxMaximaFrame.cpp:354 msgid "Show &Variables" msgstr "Montrer les &variables" #: ../src/wxMaximaFrame.cpp:635 #: ../src/wxMaximaFrame.cpp:735 #: ../src/wxMaximaFrame.cpp:804 msgid "Show Maxima help" msgstr "Montrer l'aide de Maxima" #: ../src/wxMaximaFrame.cpp:289 msgid "Show Template\tCtrl-Shift-K" msgstr "Montrer le modle\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:643 msgid "Show a tip" msgstr "Montrer une astuce" #: ../src/wxMaxima.cpp:3478 msgid "Show all commands similar to:" msgstr "Montrer toutes les commandes similaires :" #: ../src/wxMaxima.cpp:3465 msgid "Show an example for the command:" msgstr "Montrer un exemple pour la commande :" #: ../src/wxMaximaFrame.cpp:637 msgid "Show an example of usage" msgstr "Montrer un exemple d'utilisation" #: ../src/wxMaximaFrame.cpp:640 msgid "Show commands similar to" msgstr "Montrer les commandes similaires " #: ../src/wxMaximaFrame.cpp:350 msgid "Show defined functions" msgstr "Montrer les fonctions dfinies" #: ../src/wxMaximaFrame.cpp:355 msgid "Show defined variables" msgstr "Montrer les variables dclares" #: ../src/wxMaximaFrame.cpp:352 msgid "Show definition of a function" msgstr "Montrer la dfinition d'une fonction" #: ../src/wxMaximaFrame.cpp:290 msgid "Show function template" msgstr "Montrer le modle de la fonction" #: ../src/Config.cpp:260 msgid "Show long expressions" msgstr "Montrer les expressions longues" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Montrer les expressions longues dans la console de wxMaxima" #: ../src/wxMaxima.cpp:2252 msgid "Show the definition of function:" msgstr "Montrer la dfinition de la fonction :" #: ../src/wxMaximaFrame.cpp:942 msgid "Simplify" msgstr "Simplifier" #: ../src/wxMaximaFrame.cpp:517 msgid "Simplify &Radicals" msgstr "Simplifier des &radicaux" #: ../src/wxMaximaFrame.cpp:943 msgid "Simplify (r)" msgstr "Simplifier (r)" #: ../src/wxMaximaFrame.cpp:949 msgid "Simplify (tr)" msgstr "Simplifier (tr)" #: ../src/MathCtrl.cpp:702 msgid "Simplify Expression" msgstr "Simplifier une expression" #: ../src/wxMaximaFrame.cpp:543 msgid "Simplify an expression containing factorials" msgstr "Simplifier une expression contenant des factorielles" #: ../src/wxMaximaFrame.cpp:518 msgid "Simplify expression containing radicals" msgstr "Simplifier une expression contenant des radicaux" #: ../src/wxMaximaFrame.cpp:516 msgid "Simplify rational expression" msgstr "Simplifier une expression rationnelle" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Simplifier la somme" #: ../src/wxMaximaFrame.cpp:554 msgid "Simplify trigonometric expression" msgstr "Simplifier une expression trigonomtrique" #: ../data/tips.txt:22 msgid "Since wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document." msgstr "Depuis wxMaxima 0.8.2 vous pouvez aussi insrer des images dans vos documents. Utilisez le menu \"Cellule->Insrer une image\". Notez que si vous voulez que les images soient sauvegardes dans vos documents, vous devez utiliser le format \"Document xml wxMaxima\"." #: ../src/BC2Wiz.cpp:26 #: ../src/wxMaxima.cpp:2404 #: ../src/wxMaxima.cpp:2419 msgid "Solution:" msgstr "Solution:" #: ../src/wxMaxima.cpp:2340 #: ../src/wxMaxima.cpp:2354 #: ../src/wxMaxima.cpp:3815 msgid "Solve" msgstr "Rsoudre" #: ../src/wxMaximaFrame.cpp:392 msgid "Solve &Algebraic System..." msgstr "Rsoudre un systme &algbrique ..." #: ../src/wxMaximaFrame.cpp:389 msgid "Solve &Linear System..." msgstr "Rsoudre un systme &linaire ..." #: ../src/wxMaximaFrame.cpp:400 msgid "Solve &ODE..." msgstr "Rsoudre &une quation diffrentielle ..." #: ../src/wxMaximaFrame.cpp:376 #, fuzzy msgid "Solve (to_poly)..." msgstr "Rsoudre ..." #: ../src/wxMaxima.cpp:2390 #: ../src/wxMaxima.cpp:2514 msgid "Solve ODE" msgstr "ODE" #: ../src/wxMaximaFrame.cpp:414 msgid "Solve ODE with Lapla&ce..." msgstr "Rsoudre une quation diffrentielle avec Lapla&ce ..." #: ../src/wxMaximaFrame.cpp:953 msgid "Solve ODE..." msgstr "Rsoudre ODE" #: ../src/wxMaxima.cpp:2465 #: ../src/wxMaxima.cpp:2476 msgid "Solve algebraic system" msgstr "Rsoudre un systme algbrique" #: ../src/wxMaximaFrame.cpp:393 msgid "Solve algebraic system of equations" msgstr "Rsoudre un systme algbrique d'quations" #: ../src/wxMaximaFrame.cpp:411 msgid "Solve boundary value problem for second degree ODE" msgstr "Rsoudre un problme aux limites pour ODE du second degr" #: ../src/wxMaximaFrame.cpp:375 msgid "Solve equation(s)" msgstr "Rsoudre une (des) quation(s)" #: ../src/wxMaximaFrame.cpp:377 #, fuzzy msgid "Solve equation(s) with to_poly_solver" msgstr "Rsoudre une (des) quation(s)" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve initial value problem for first degree ODE" msgstr "Rsoudre " #: ../src/wxMaximaFrame.cpp:408 msgid "Solve initial value problem for second degree ODE" msgstr "Rsoudre une ODE du seconde degr avec condition initiale" #: ../src/wxMaxima.cpp:2489 #: ../src/wxMaxima.cpp:2500 msgid "Solve linear system" msgstr "Rsoudre un systme &linaire" #: ../src/wxMaximaFrame.cpp:390 msgid "Solve linear system of equations" msgstr "Rsoudre un systme d'quations linaires" #: ../src/wxMaximaFrame.cpp:401 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Rsoudre une quation diffrentielle ordinaire de degr 2 maximum" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Rsoudre une quation diffrentielle ordinaire avec la transforme de Laplace" #: ../src/MathCtrl.cpp:699 #: ../src/wxMaximaFrame.cpp:952 msgid "Solve..." msgstr "Rsoudre" #: ../src/Config.cpp:249 msgid "Spanish" msgstr "Espagnol" #: ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 #: ../src/LimitWiz.cpp:35 #: ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Spcial" #: ../src/Config.cpp:347 msgid "Special constants" msgstr "Constantes spciales" #: ../src/MathCtrl.cpp:662 msgid "Start Animation" msgstr "Dmarrer l'animation" #: ../src/wxMaximaFrame.cpp:722 #: ../src/wxMaximaFrame.cpp:724 msgid "Start animation" msgstr "Dmarrer l'animation" #: ../src/wxMaxima.cpp:262 msgid "Starting Maxima process failed" msgstr "Le dmarrage de Maxima a chou" #: ../src/wxMaxima.cpp:722 msgid "Starting Maxima..." msgstr "Dmarrage de Maxima..." #: ../src/wxMaxima.cpp:260 #: ../src/wxMaxima.cpp:645 msgid "Starting server failed" msgstr "Echec du dmarrage du serveur" #: ../src/wxMaxima.cpp:626 #, c-format msgid "Starting server on port %d" msgstr "Dmarrage du serveur sur le port %d" #: ../src/wxMaximaFrame.cpp:122 msgid "Statistics" msgstr "Statistiques" #: ../src/wxMaximaFrame.cpp:322 msgid "Statistics\tAlt-Shift-S" msgstr "Statistique" #: ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:727 #: ../src/wxMaximaFrame.cpp:793 msgid "Stop animation" msgstr "Arrter l'animation" #: ../src/Config.cpp:349 msgid "Strings" msgstr "Chaines" #: ../src/Config.cpp:99 msgid "Style" msgstr "Style" #: ../src/Config.cpp:323 msgid "Styles" msgstr "Styles" #: ../src/wxMaximaFrame.cpp:1014 #, fuzzy msgid "Subsample..." msgstr "&Exemple" #: ../src/wxMaximaFrame.cpp:1039 msgid "Subsection" msgstr "sous-section" #: ../src/Config.cpp:356 msgid "Subsection cell" msgstr "Celllule de sous-section" #: ../src/wxMaximaFrame.cpp:947 #, fuzzy msgid "Subst..." msgstr "Substituer..." #: ../src/SubstituteWiz.cpp:53 #: ../src/wxMaxima.cpp:2302 #: ../src/wxMaxima.cpp:3884 msgid "Substitute" msgstr "Substituer" #: ../src/MathCtrl.cpp:705 #: ../src/wxMaximaFrame.cpp:592 msgid "Substitute..." msgstr "Substituer..." #: ../src/SumWiz.cpp:61 #: ../src/wxMaxima.cpp:3105 msgid "Sum" msgstr "Somme" #: ../src/wxMaxima.cpp:3318 msgid "System info" msgstr "Info systme" #: ../src/wxMaxima.cpp:2889 msgid "Taylor series:" msgstr "Sries de Taylor :" #: ../src/wxMaxima.cpp:2842 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1037 msgid "Text" msgstr "Texte" #: ../src/Config.cpp:355 msgid "Text cell" msgstr "Cellule de texte" #: ../src/Config.cpp:359 msgid "Text cell background" msgstr "Arrire-plan du texte" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Le port par dfaut utilis pour la communication entre Maxima et wxMaxima" #: ../data/tips.txt:9 msgid "There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima." msgstr "Il y a beaucoup de ressources sur Maxima et wxMaxima sur internet. Visitez http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials pour obtenir plus d'information sur l'utilisation de wxMaxima et Maxima." #: ../src/wxMaxima.cpp:390 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Il y a eu une erreur en gnrant le XML!\n" "\n" "Merci de faire un rapport de bogue." #: ../src/SlideShowCell.cpp:285 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" #: ../src/Plot2dWiz.cpp:66 #: ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Graduations :" #: ../src/wxMaxima.cpp:3032 #: ../src/wxMaxima.cpp:3860 msgid "Times:" msgstr "fois:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Les astuces ne sont pas disponibles !" #: ../src/wxMaximaFrame.cpp:1038 msgid "Title" msgstr "Titre" #: ../src/Config.cpp:358 msgid "Title cell" msgstr "Cellule de titre" #: ../data/tips.txt:7 msgid "Title, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold." msgstr "" #: ../src/wxMaximaFrame.cpp:624 msgid "To &Bigfloat" msgstr "Valeur approche (bfloat)" #: ../src/wxMaximaFrame.cpp:621 #, fuzzy msgid "To &Float" msgstr "En valeur approche" #: ../src/MathCtrl.cpp:697 msgid "To Float" msgstr "En valeur approche" #: ../data/tips.txt:17 msgid "To plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D." msgstr "Pour tracer en coordonnes polaire, choisir 'set polar' dans le menu Opions de la bote de dialogue Courbe 2D. Vous pouvez aussi tracer en coordonnes sphriques ou cylindriques en 3D" #: ../data/tips.txt:19 msgid "To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards." msgstr "Pour mettre des parenthses autour d'une expression, slectionnez la et pressez \"(\" ou \")\" selon l'endroit ou vous voulez voir rapparatre le curseur." #: ../data/tips.txt:21 msgid "To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog." msgstr "Pour sauver la taille et la position de la fentre de wxMaxima d'une session l'autre, utilisez 'Maxima->Configure'." #: ../data/tips.txt:1 msgid "To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command." msgstr "Pour commencer utiliser wxMaxima rapidement, commencez taper vtre commande. Une cellule d'entre devrait apparatre. Pressez alors sur Shift-Entre pour valuer vtre commande." #: ../src/IntegrateWiz.cpp:47 #: ../src/Plot2dWiz.cpp:52 #: ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 #: ../src/Plot3dWiz.cpp:49 #: ../src/Plot3dWiz.cpp:58 #: ../src/SumWiz.cpp:39 #: ../src/wxMaxima.cpp:2698 #: ../src/wxMaxima.cpp:3120 msgid "To:" msgstr "jusqu':" #: ../src/wxMaximaFrame.cpp:598 msgid "Toggle &Algebraic Flag" msgstr "Basculer le mode &algbrique" #: ../src/wxMaximaFrame.cpp:619 msgid "Toggle &Numeric Output" msgstr "Basculer l'affichage numrique" #: ../src/wxMaximaFrame.cpp:362 msgid "Toggle &Time Display" msgstr "Affichage du &temps" #: ../src/wxMaximaFrame.cpp:599 msgid "Toggle algebraic flag" msgstr "Basculer le mode algbrique" #: ../src/wxMaximaFrame.cpp:269 msgid "Toggle full screen editing" msgstr "Basculer en plein cran d'dition" #: ../src/wxMaximaFrame.cpp:620 msgid "Toggle numeric output" msgstr "Basculer l'affichage numrique entre valeur exacte et valeur approche" #: ../src/wxMaximaFrame.cpp:326 msgid "Toolbar\tAlt-Shift-T" msgstr "Barre d'outils\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3330 msgid "Toolbar icons" msgstr "" #: ../src/wxMaxima.cpp:3331 #, fuzzy msgid "Translated by" msgstr "bleu ardoise" #: ../src/wxMaximaFrame.cpp:449 msgid "Transpose a matrix" msgstr "Transposer une matrice" #: ../src/wxMaximaFrame.cpp:645 msgid "Tutorials" msgstr "Tutoriels" #: ../src/wxMaxima.cpp:3616 #, fuzzy msgid "Two sample t-test" msgstr "Texte exemple ..." #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Type :" #: ../src/Config.cpp:250 msgid "Ukrainian" msgstr "Ukrainien" #: ../src/Config.cpp:376 msgid "Underlined" msgstr "Soulign" #: ../src/wxMaximaFrame.cpp:219 msgid "Undo\tCtrl-Z" msgstr "&Annuler\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:220 msgid "Undo last change" msgstr "Annuler la dernire modification" #: ../src/wxMaxima.cpp:3320 msgid "Unicode Support" msgstr "Support unicode" #: ../src/wxMaxima.cpp:4302 #: ../src/wxMaxima.cpp:4309 msgid "Upgrade" msgstr "Mettre jour" #: ../src/wxMaxima.cpp:2370 #: ../src/wxMaxima.cpp:3829 msgid "Upper bound:" msgstr "borne suprieure :" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Utiliser l'algorithme de Gosper" #: ../src/Config.cpp:132 #: ../src/Config.cpp:261 msgid "Use centered dot character for multiplication" msgstr "Utiliser le point pour dsigner la multiplication" #: ../src/Config.cpp:340 msgid "Use jsMath fonts" msgstr "Utiliser les fontes jsMath" #: ../src/BC2Wiz.cpp:32 #: ../src/BC2Wiz.cpp:38 #: ../src/wxMaxima.cpp:2404 #: ../src/wxMaxima.cpp:2420 #: ../src/wxMaxima.cpp:2528 msgid "Value:" msgstr "Variable:" #: ../src/wxMaxima.cpp:2339 #: ../src/wxMaxima.cpp:2353 #: ../src/wxMaxima.cpp:3031 #: ../src/wxMaxima.cpp:3814 #: ../src/wxMaxima.cpp:3859 msgid "Variable(s):" msgstr "Variables :" #: ../src/IntegrateWiz.cpp:39 #: ../src/LimitWiz.cpp:29 #: ../src/Plot2dWiz.cpp:46 #: ../src/Plot2dWiz.cpp:56 #: ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 #: ../src/Plot3dWiz.cpp:52 #: ../src/SeriesWiz.cpp:35 #: ../src/SumWiz.cpp:33 #: ../src/wxMaxima.cpp:2369 #: ../src/wxMaxima.cpp:2388 #: ../src/wxMaxima.cpp:2628 #: ../src/wxMaxima.cpp:2697 #: ../src/wxMaxima.cpp:2953 #: ../src/wxMaxima.cpp:2968 #: ../src/wxMaxima.cpp:3119 #: ../src/wxMaxima.cpp:3828 msgid "Variable:" msgstr "Variable:" #: ../src/Config.cpp:344 msgid "Variables" msgstr "Variables" #: ../src/SystemWiz.cpp:72 #: ../src/wxMaxima.cpp:2450 #: ../src/wxMaxima.cpp:3085 #: ../src/wxMaxima.cpp:3645 msgid "Variables:" msgstr "Variables :" #: ../src/wxMaximaFrame.cpp:988 #, fuzzy msgid "Variance..." msgstr "Variable:" #: ../src/MathParser.cpp:961 #: ../src/wxMaxima.cpp:1067 #: ../src/wxMaxima.cpp:1134 #: ../src/wxMaxima.cpp:1404 msgid "Warning" msgstr "Alerte" #: ../src/wxMaximaFrame.cpp:99 msgid "Welcome to wxMaxima" msgstr "Bienvenue wxMaxima" #: ../data/tips.txt:20 #, fuzzy msgid "When applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command." msgstr "Quand vous appliquez des fonctions avec un argument dans les menus, l'argument par dfaut est '%'. Pour appliquer la fonction une autre valeur, entrez-l dans la ligne d'entre. Vous pouvez aussi slectionner une (sous-)expression prcdente pour cette valeur." #: ../src/wxMaxima.cpp:2643 #: ../src/wxMaxima.cpp:2662 msgid "Width:" msgstr "largeur :" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Faire correspondre les parenthses dans les entres de texte." #: ../src/wxMaxima.cpp:3327 msgid "Written by" msgstr "Ecrit par" #: ../data/tips.txt:4 msgid "You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output." msgstr "La variable '%' reprsente le dernier rsultat obtenu. Les rsultats prcdents s'obtiennent en utilisant les variables '%on' o n est le numro du rsultat." #: ../data/tips.txt:15 msgid "You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document." msgstr "Vous pouvez valuer un document entier en utilisant le menu \"Cellule->Rvaluer toutes les cellules\" ou le raccourci associ. Les cellules seront values dans l'ordre dans lequel elles apparaissent dans le document." #: ../data/tips.txt:10 msgid "You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor." msgstr "Vous pouvez obtenir de l'aide sur une fonction de Maxima en slectionnant ou cliquant sur le nom de la fonction et en pressant F1. wxMaxima cherchera dans l'aide le nom de la fonction slectionne." #: ../data/tips.txt:8 msgid "You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also." msgstr "Vous pouvez cacher la zone de sortie des cellules d'entres en cliquant dans le triangle sur le cot gauche des cellules. Cela fonctionne galement sur les cellules de texte." #: ../data/tips.txt:5 msgid "You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations." msgstr "Vous pouvez insrer diffrents types de \"cellules\" dans un document wxMaxima en utilisant le menu \"Cellule\".Notez que seules les cellules d'entre peuvent tre values alors que les autres sont utilises pour commenter et structurer vos calculs." #: ../data/tips.txt:14 msgid "You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells." msgstr "" #: ../src/wxMaxima.cpp:4299 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Vous avez la version %s. La dernire version est %s.\n" "\n" "Appuyez sur OK pour visiter le site de wxMaxima." #: ../src/wxMaxima.cpp:4363 #: ../src/wxMaxima.cpp:4370 msgid "Your changes will be lost if you don't save them." msgstr "Les changements seront perdus si vous ne sauvegardez pas" #: ../src/wxMaxima.cpp:4309 msgid "Your version of wxMaxima is up to date." msgstr "Vtre version de wxMaxima est jour." #: ../src/wxMaximaFrame.cpp:254 msgid "Zoom &In\tAlt-I" msgstr "Zoom avant\tAlt-I" #: ../src/wxMaximaFrame.cpp:256 msgid "Zoom Ou&t\tAlt-O" msgstr "Zoom arrire\tAlt-O" #: ../src/wxMaximaFrame.cpp:255 msgid "Zoom in 10%" msgstr "Zoom avant de 10%" #: ../src/wxMaximaFrame.cpp:257 msgid "Zoom out 10%" msgstr "Zoom arrire de 10%" #: ../src/wxMaxima.cpp:2088 #: ../src/wxMaxima.cpp:2096 msgid "Zoom set to " msgstr "Zoom fix " #: ../src/wxMaxima.cpp:4162 #: ../src/wxMaximaFrame.cpp:92 msgid "[ unsaved ]" msgstr "[ non sauv ]" #: ../src/wxMaxima.cpp:4164 msgid "[ unsaved* ]" msgstr "[ non sauv* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antisymtrique" #: ../src/LimitWiz.cpp:39 msgid "both sides" msgstr "des deux cts:" #: ../src/Plot2dWiz.cpp:73 #: ../src/Plot2dWiz.cpp:398 #: ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "par dfaut" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonale" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "gnral" #: ../src/Plot2dWiz.cpp:74 #: ../src/Plot2dWiz.cpp:205 #: ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 #: ../src/Plot3dWiz.cpp:73 #: ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 #: ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "en ligne" #: ../src/LimitWiz.cpp:40 #: ../src/LimitWiz.cpp:121 msgid "left" msgstr "gauche" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "Lignes caches" #: ../src/Plot2dWiz.cpp:55 #: ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "" #: ../src/wxMaxima.cpp:2662 #, fuzzy msgid "matrix[i,j]:" msgstr " la matrice:" #: ../src/wxMaxima.cpp:3391 msgid "no" msgstr "Non" #: ../src/LimitWiz.cpp:41 #: ../src/LimitWiz.cpp:123 msgid "right" msgstr "droite" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "symtrique" #: ../src/wxMaxima.cpp:4348 msgid "unsaved" msgstr "non sauv" #: ../src/wxMaxima.cpp:1817 #: ../src/wxMaxima.cpp:1925 #: ../src/wxMaximaFrame.cpp:94 msgid "untitled" msgstr "sans nom" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "sans nom %d" #: ../src/main.cpp:167 #: ../src/wxMaxima.cpp:3402 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaxima.cpp:4162 #: ../src/wxMaxima.cpp:4164 #: ../src/wxMaxima.cpp:4173 #: ../src/wxMaxima.cpp:4176 #: ../src/wxMaximaFrame.cpp:92 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s" #: ../src/Config.cpp:90 #: ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "wxMaxima configuration" #: ../src/wxMaxima.cpp:1402 #, fuzzy msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima n'a pas pu trouevr maxima!\n" "\n" "Configurez wxMaxima avec 'Edition->Configurer'.\n" "Puis dmarrez maxima avec 'Maxima->Redmarrer maxima'." #: ../src/wxMaxima.cpp:1575 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima n'a pas pu trouver les fichiers d'aide.\n" "\n" "Vrifiez votre installation." #: ../src/wxMaxima.cpp:1479 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima n'a pas pu trouver les fichiers d'aide.\n" "\n" "Vrifiez votre installation." #: ../src/wxMaxima.cpp:250 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima n'a pas pu dmarrer le serveur.\n" "\n" "Verifier si vous disposez du support rseau\n" "et ressayez !" #: ../data/tips.txt:18 #, fuzzy msgid "wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'." msgstr "wxMaxima donne des valeurs pas dfaut dans les champs d'entre des botes de dialogue, l'un d'entre eux tant '%'. Pour le remplacer par une autre valeur, entrez-l dans la ligne d'entre." #: ../src/wxMaxima.cpp:1657 msgid "wxMaxima document" msgstr "wxMaxima document" #: ../src/wxMaxima.cpp:1824 msgid "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.mac" msgstr "Document wxMaxima (*.wxm)|*.wxm|Document xml wxMaxima (*.wxmx)|*.wxmx|Fichier de commande Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 #: ../src/wxMaxima.cpp:1905 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "session wxMaxima (*.wxm)|*.wxm" #: ../src/wxMaxima.cpp:955 #: ../src/wxMaxima.cpp:966 #: ../src/wxMaxima.cpp:1025 #: ../src/wxMaxima.cpp:1037 msgid "wxMaxima encountered an error loading " msgstr "" #: ../src/wxMaxima.cpp:3329 msgid "wxMaxima icon" msgstr "Icne wxMaxima" #: ../src/wxMaxima.cpp:3317 #, fuzzy msgid "wxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets." msgstr "wxMaxima est une interface graphique pour le logiciel de calcul formel MAXIMA base sur wxWidgets." #: ../src/wxMaxima.cpp:3383 msgid "wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets." msgstr "wxMaxima est une interface graphique pour le logiciel de calcul formel MAXIMA base sur wxWidgets." #: ../src/wxMaxima.cpp:3389 msgid "yes" msgstr "Oui" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Nouvelle fentre\tCtrl-O" #~ msgid "Close document?" #~ msgstr "Fermer le document ?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Document non sauv !\n" #~ "\n" #~ "Fermer le document courant et perdre toutes les modifications ?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Document non sauv !\n" #~ "\n" #~ "Fermer wxMaxima et perdre toutes les modifications ?" #~ msgid "Maxima options" #~ msgstr "Options de maxima" #~ msgid "Quit?" #~ msgstr "Quitter ?" #~ msgid "wxMaxima options" #~ msgstr "wxMaxima options" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima est une interface graphique pour le \n" #~ " logiciel de calcul formel MAXIMA base sur wxWidgets." #, fuzzy #~ msgid "<< Nothing to display >>" #~ msgstr "<< Expression trop longue pour l'affichage >>" #, fuzzy #~ msgid "Functions and macros" #~ msgstr "Noms des fonctions" #, fuzzy #~ msgid "Inspector" #~ msgstr "Insrer" #~ msgid "Labels" #~ msgstr "Labels" #~ msgid "Adjustment for the size of greek font." #~ msgstr "Rglage de la taille de police grecque" #~ msgid "Adjustment:" #~ msgstr "Rglage" #~ msgid "Basic" #~ msgstr "Basic" #~ msgid "Button panel:" #~ msgstr "Panneau de boutons :" #~ msgid "Copy selected cell(s)" #~ msgstr "Copier la slection" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "" #~ "Copier la slection dans le presse papiers quand la slection est faite " #~ "dans le document" #~ msgid "Copy to clipboard on select" #~ msgstr "Copier vers le presse-papier la slection" #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr "&Couper la cellule\tCtrl-Shift-X" #~ msgid "Decrease fontsize in document" #~ msgstr "Diminuer la taille de la police dans le document" #~ msgid "Delete selected cell(s)" #~ msgstr "Effacer la cellule slectionne" #~ msgid "Delete selection" #~ msgstr "Effacer la slection" #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr "Police d'affichage du document pour les glyphs unicode." #~ msgid "Full" #~ msgstr "Complet" #~ msgid "Increase fontsize in document" #~ msgstr "Augmenter la taille de la police dans le document" #~ msgid "Input" #~ msgstr "Entre" #~ msgid "Insert input group" #~ msgstr "Insrer le groupe d'entre" #~ msgid "Insert text" #~ msgstr "Insrer le texte" #~ msgid "New &Section Cell\tCtrl-F6" #~ msgstr "Nouvelle &Section\tCtrl-F6" #~ msgid "New Input &Cell\tF7" #~ msgstr "Nouvelle entre &Cellule\tF7" #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr "Nouveau t&itre de cellule\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "Eteint" #~ msgid "Paste cell(s) to document" #~ msgstr "Coller la ou les cellules dans le document" #~ msgid "Product..." #~ msgstr "Produit..." #~ msgid "Save document as ..." #~ msgstr "Enregistrer le document sous ..." #~ msgid "Select file to open" #~ msgstr "Choisir un fichier ouvrir" #~ msgid "Show Maxima header" #~ msgstr "Montrer les en-ttes de Maxima" #~ msgid "Show initial header with Maxima system information." #~ msgstr "Montrer les en-ttes avec les informations sur le systme Maxima" #~ msgid "Sum..." #~ msgstr "Somme..." #~ msgid "To &Float\tCtrl-F" #~ msgstr "Valeur approche (float) \tCtrl-F" #~ msgid "Unicode glyphs:" #~ msgstr "Unicode glyphs:" #~ msgid "Use greek font to display greek characters." #~ msgstr "Utiliser la police greque pour afficher les caractres grecs." #~ msgid "Use greek font:" #~ msgstr "Utiliser la police grecque" #~ msgid "untitled.wxm" #~ msgstr "sansnom.wxm" #~ msgid "wxMaxima session (*.wxm)|*.wxm" #~ msgstr "session wxMaxima (*.wxm)|*.wxm" #~ msgid "aquamarine" #~ msgstr "aquamarine" #~ msgid "black" #~ msgstr "Noir" #~ msgid "blue" #~ msgstr "Bleu" #~ msgid "blue violet" #~ msgstr "Bleu violet" #~ msgid "brown" #~ msgstr "Marron" #~ msgid "cadet blue" #~ msgstr "Bleu cadet" #~ msgid "coral" #~ msgstr "Corail" #~ msgid "cornflower blue" #~ msgstr "Bleu cornflower" #~ msgid "cyan" #~ msgstr "Cyan" #~ msgid "dark green" #~ msgstr "vert fonc" #~ msgid "dark grey" #~ msgstr "Gris fonc" #~ msgid "dark olive green" #~ msgstr "Vert olive fonc" #~ msgid "dark orchid" #~ msgstr "orchide fonc" #~ msgid "dark slate blue" #~ msgstr "bleu ardoise fonc" #~ msgid "dark slate grey" #~ msgstr "gris ardoise fonc" #~ msgid "dark turquoise" #~ msgstr "turquoise fonc" #~ msgid "dim grey" #~ msgstr "gris dim" #~ msgid "firebrick" #~ msgstr "brique feu" #~ msgid "forest green" #~ msgstr "vert fort" #~ msgid "gold" #~ msgstr "dor" #~ msgid "goldenrod" #~ msgstr "baguette dore" #~ msgid "green" #~ msgstr "vert" #~ msgid "green yellow" #~ msgstr "vert jaune" #~ msgid "grey" #~ msgstr "gris" #~ msgid "khaki" #~ msgstr "kaki" #~ msgid "light blue" #~ msgstr "bleu clair" #~ msgid "light grey" #~ msgstr "gris clair" #~ msgid "light steel blue" #~ msgstr "bleu mtallis clair" #~ msgid "lime green" #~ msgstr "vert citron" #~ msgid "maroon" #~ msgstr "marron" #~ msgid "medium aquamarine" #~ msgstr "aquamarine medium" #~ msgid "medium blue" #~ msgstr "bleu medium" #~ msgid "medium forrest green" #~ msgstr "vert fort medium" #~ msgid "medium goldenrod" #~ msgstr "baguette dore medium" #~ msgid "medium orchid" #~ msgstr "orchide medium" #~ msgid "medium sea green" #~ msgstr "vert d'eau medium" #~ msgid "medium slate blue" #~ msgstr "bleu ardoise medium" #~ msgid "medium spring green" #~ msgstr "vert printemps medium" #~ msgid "medium turquoise" #~ msgstr "turquoise medium" #~ msgid "medium violet red" #~ msgstr "violet rouge medium" #~ msgid "midnight blue" #~ msgstr "bleu minuit" #~ msgid "navy" #~ msgstr "navy" #~ msgid "orange" #~ msgstr "orange" #~ msgid "orange red" #~ msgstr "orange rouge" #~ msgid "orchid" #~ msgstr "orchid" #~ msgid "pale green" #~ msgstr "vert ple" #~ msgid "pink" #~ msgstr "rose" #~ msgid "plum" #~ msgstr "plum" #~ msgid "purple" #~ msgstr "violet" #~ msgid "red" #~ msgstr "rouge" #~ msgid "salmon" #~ msgstr "saumon" #~ msgid "sea green" #~ msgstr "vert d'eau" #~ msgid "sienna" #~ msgstr "sienne" #~ msgid "sky blue" #~ msgstr "bleu ciel" #~ msgid "spring green" #~ msgstr "vert printemps" #~ msgid "steel blue" #~ msgstr "bleu mtallis" #~ msgid "tan" #~ msgstr "brun roux" #~ msgid "thistle" #~ msgstr "chardon" #~ msgid "turquoise" #~ msgstr "turquoise" #~ msgid "violet" #~ msgstr "violet" #~ msgid "wheat" #~ msgstr "bl" #~ msgid "white" #~ msgstr "blanc" #~ msgid "yellow" #~ msgstr "jaune" #~ msgid "yellow green" #~ msgstr "jaune vert" #~ msgid " << Unfold >>" #~ msgstr " << Dplier >>" #~ msgid "Background" #~ msgstr "Arrire-plan" #, fuzzy #~ msgid "Copy cells" #~ msgstr "Copier Tex" #, fuzzy #~ msgid "Cut selection from document" #~ msgstr "Couper la slection partir de la console" #, fuzzy #~ msgid "Evaluate cell\tShift-Enter" #~ msgstr "&Rvaluer l'entre\tShift-Enter" #~ msgid "Export to HTML file" #~ msgstr "Exporter en HTML" #~ msgid "Hidden groups" #~ msgstr "Groupes cachs" #~ msgid "Integrate ..." #~ msgstr "Intgrer ..." #~ msgid "Main prompts" #~ msgstr "Invite pincipale" #~ msgid "Open session from a file" #~ msgstr "Ouvrir une session partir d'un fichier" #~ msgid "Other prompts" #~ msgstr "Autres invites" #~ msgid "Save session" #~ msgstr "Enregistrer la session" #~ msgid "Save session to a file" #~ msgstr "Enregistrer la session dans un fichier" #~ msgid "Save to file" #~ msgstr "Enregistrer dans un fichier" #~ msgid "Select package to load" #~ msgstr "Choisir un paquetage charger" #~ msgid "Substitute ..." #~ msgstr "Substituer ..." #~ msgid "wxMaxima session" #~ msgstr "Session wxMaxima " #~ msgid "&Copy" #~ msgstr "&Copier" #~ msgid "&Describe\tCtrl-H" #~ msgstr "&Dcrire\tCtrl-H" #~ msgid "&Edit input\tCtrl-E" #~ msgstr "&Editer l'entre\tCtrl-E" #~ msgid "&Input\tF7" #~ msgstr "&Entre\tF7" #~ msgid "&Monitor file" #~ msgstr "Surveiller un fichier" #~ msgid "&Re-evaluate input\tCtrl-R" #~ msgstr "&Rvaluer l'entre\tCtrl-R" #, fuzzy #~ msgid "&Read file" #~ msgstr "Lire un &fichier" #~ msgid "&Text\tF6" #~ msgstr "&Texte\tF6" #~ msgid "" #~ "All|*|Maxima package (*.mac)|*.mac|Demo file (*.dem)|*.dem|Lisp file (*." #~ "lisp)|*.lisp" #~ msgstr "" #~ "All|*|Paquetage maxima(*.mac)|*.mac|Fichier de dmonstration (*.dem)|*." #~ "dem|Fichier Lisp (*.lisp)|*.lisp" #~ msgid "Autoload a file when it is updated" #~ msgstr "Recharger automatiquement un fichier quand il est mis jour" #~ msgid "C&lear screen" #~ msgstr "Effacer &l'cran" #, fuzzy #~ msgid "Copy input" #~ msgstr "Copier le texte" #, fuzzy #~ msgid "Copy input from console" #~ msgstr "Copier la slection partir de la console" #~ msgid "Copy selection from console to input line" #~ msgstr "Copier la slection partir de la console dans la ligne d'entre" #, fuzzy #~ msgid "Copy to input" #~ msgstr "Aller l'entre\tF4" #~ msgid "Delete selected input/output group" #~ msgstr "Effacer le groupe entre/sortie slectionn" #~ msgid "Delete the contents of console." #~ msgstr "Effacer le contenu de la console" #~ msgid "Describe" #~ msgstr "Dcrire" #~ msgid "Edit input" #~ msgstr "diter l'entre" #~ msgid "Edit selected input" #~ msgstr "diter l'entre slectionne" #~ msgid "Edit text" #~ msgstr "diter le texte" #~ msgid "Enter command" #~ msgstr "Entrer une commande" #~ msgid "Go to input\tF4" #~ msgstr "Aller l'entre\tF4" #~ msgid "Go to output window\tF3" #~ msgstr "Aller la fentre d'affichage\tF3" #~ msgid "I&nsert" #~ msgstr "I&nsrer" #~ msgid "INPUT:" #~ msgstr "ENTREE :" #~ msgid "" #~ "If you want to input more than one line at a time, use the 'Multiline " #~ "input' button at the right of the input line." #~ msgstr "" #~ "Si vous voulez entrer plus d'un ligne la fois, utilisez le bouton " #~ "\"Entre multiligne\" doite de la ligne d'entre." #~ msgid "Insert new input before selected input" #~ msgstr "Insrer une nouvelle entre avant l'entre slectionne" #~ msgid "Insert section before selected input" #~ msgstr "Insrer la section avant l'entre slectionne" #~ msgid "Insert text before selected input" #~ msgstr "Insrer le texte avant l'entre slectionne" #~ msgid "Insert title before selected input" #~ msgstr "Insrer le titre avant l'entre slectionne" #~ msgid "" #~ "Instead of typing a long pathname of a file to input line, you can select " #~ "that file using 'File->Select file'." #~ msgstr "" #~ "Au lieu d'netrer un long chemin pour un fichier, vous pouvez slectionner " #~ "le fichier en utilisant 'Fichier->Choisir un fichier'." #~ msgid "Multiline input" #~ msgstr "Entre multiligne" #~ msgid "Open multiline input dialog" #~ msgstr "Entre multiligne" #, fuzzy #~ msgid "Paste input" #~ msgstr "Insrer l'entre" #, fuzzy #~ msgid "Paste input to console" #~ msgstr "Slectionner la dernire entre dans la console !" #, fuzzy #~ msgid "Re-evaluate all\tCtrl-Shift-R" #~ msgstr "&Rvaluer l'entre\tCtrl-Shift-R" #, fuzzy #~ msgid "Re-evaluate all input" #~ msgstr "Rvaluer l'entre" #~ msgid "Re-evaluate input" #~ msgstr "Rvaluer l'entre" #, fuzzy #~ msgid "Read file from command line" #~ msgstr "Lire une session partir d'un fichier" #~ msgid "Select &file" #~ msgstr "Choisir un &fichier" #~ msgid "Select a file" #~ msgstr "Choisir un fichier" #~ msgid "Select a file (copy filename to input line)" #~ msgstr "Choisir un fichier (copie le nom du fichier dans la ligne d'entre)" #, fuzzy #~ msgid "Select last input\tCtrl-D" #~ msgstr "Slectionner la dernire entre\tF2" #~ msgid "Select last input\tF2" #~ msgstr "Slectionner la dernire entre\tF2" #, fuzzy #~ msgid "Select last input in the colsole!" #~ msgstr "Slectionner la dernire entre dans la console !" #~ msgid "Select last input in the console!" #~ msgstr "Slectionner la dernire entre dans la console !" #, fuzzy #~ msgid "Selection to input\tCtrl-Shift-E" #~ msgstr "Selection l'entre\tF5" #~ msgid "Selection to input\tF5" #~ msgstr "Selection l'entre\tF5" #~ msgid "Set focus to the input line" #~ msgstr "Rendre active la ligne d'entre" #~ msgid "Set focus to the output window" #~ msgstr "Rendre active la fentre d'affichage" #~ msgid "Show the description of a command" #~ msgstr "Montrer la description d'une commande" #~ msgid "Show the description of command/variable:" #~ msgstr "Montrer la description de la commande/variable :" #~ msgid "" #~ "To enter a matrix A, type 'A : ' to input line and select 'Algebra->Enter " #~ "matrix' from menus." #~ msgstr "" #~ "Pour entre une matrice A, taper 'A:' dans la ligne d'entre puis choisir " #~ "'Algbre->Entrer une matrice' dans les menus" #~ msgid "" #~ "To put parenthesis around an expression you previously typed into the " #~ "input line, select the expression with mouse and then type '('." #~ msgstr "" #~ "Pour mettre une expression dj crite entre parenthses, slectionnez-l " #~ " la souris puis tapez '('." #~ msgid "" #~ "To repeat a long command you previously entered in the input line, type " #~ "in the first few letters to the input line and then pres tab key." #~ msgstr "" #~ "Pour repter une commande dj entre prcedemment, tapez les premires " #~ "lettres puis utilisez la touche tab." #~ msgid "" #~ "You can delete output/input group if you select the input label and " #~ "choose 'Edit->Delete selection' from menus." #~ msgstr "" #~ "Vous pouvez supprimer un groupe de sortie/entre en slectionnant le " #~ "label d'entre et en choisissant 'Maxima->Effacer la slection' dans les " #~ "menus." #~ msgid "" #~ "You can hide the output by clicking on the output label. Clicking on the " #~ "input label hides input and output. Clicking on the label again, shows " #~ "hidden expressions." #~ msgstr "" #~ "Vous pouvez cacher un rsultat en cliquant sur le label du rsultat. " #~ "Cliquez sur un label pour masquer l'entre et le rsultat. Cliquez " #~ "nouveau pour rendre visible les expressions caches." #~ msgid "" #~ "You can load a file into maxima by dragging it from a file browser to the " #~ "console window." #~ msgstr "" #~ "Vous pouvez charger un fichier en le glissant de l'explorateur de fichier " #~ "vers la fentre de la console." #~ msgid "" #~ "You can load files into maxima if you drop them on the console window. " #~ "You can select a custom function for loading your file. If your custom " #~ "function is 'A:read_matrix(%file%, csv)', then %file% will be replaced " #~ "with the filename of your file." #~ msgstr "" #~ "Vous pouvez charger un fichier en le glissant dans la fentre de la " #~ "console. Vous pouvez slectionner une fonction personnalise pour charger " #~ "le fichier. Si votre fonction personnalise est 'A:read_matrix(%file%, " #~ "csv)', alors %file% sera remplac par le nom de votre fichier." #~ msgid "" #~ "You can select the output of maxima in wxMaxima console with mouse and " #~ "copy it to the clipboard with 'Edit->copy'." #~ msgstr "" #~ "Vous pouvez slectionner un rsultat de maxima dans la console de " #~ "wxMaxima avec la souris et le copier dans le presse-papier avec 'Maxima-" #~ ">Copier'" #~ msgid "" #~ "You can use the maxima tex command to print the expression in TeX form. " #~ "Then you can copy it to text editor to include it in you paper." #~ msgstr "" #~ "Vous pouvez utiliser la commande tex de maxima pour crire les expression " #~ "en Tex. Vous pouvez ensuite les copier dans un diteur de texte pour les " #~ "inclure dans vos documents." #~ msgid "" #~ "wxMaxima has nice plot dialogs. If you want to modify previous plot " #~ "commands, access them using command history and then push the plot button." #~ msgstr "" #~ "wxMaxima a des botes de dialogue agrables pour tracer des courbes. Si " #~ "vous voulez modifier une commande prcdente de trac, vous pouvez y " #~ "accder en utilisant l'historique puis en cliquant sur le bouton Courbe" #~ msgid "" #~ "wxMaxima's input line has command history available using up and down " #~ "keys and command completion based on previous input available using the " #~ "tab key." #~ msgstr "" #~ "La ligne d'entre de wxMaxima a une historique accessible par les touches " #~ "haut et bas, et une auto-compltion base sur les entres antrieures " #~ "accessible par la touche tab." #~ msgid "Apply function:" #~ msgstr "Appliquer la fonction:" #~ msgid "At point:" #~ msgstr "Au point:" #~ msgid "Char poly of:" #~ msgstr "Polynme caractristique de :" #~ msgid "Comment out" #~ msgstr "Commenter" #~ msgid "Copy &text" #~ msgstr "Copier le &texte" #~ msgid "Copy selection from console (including linebreaks)" #~ msgstr "" #~ "Copier la slection partir de la console (avec les sauts de ligne)" #~ msgid "From array:" #~ msgstr "A partir du tableau :" #~ msgid "From equations:" #~ msgstr "A partir des quations :" #~ msgid "Integrate:" #~ msgstr "Intgrer :" #~ msgid "Limit of:" #~ msgstr "Limite de :" #~ msgid "Map function:" #~ msgstr "Appliquer la fonction :" #~ msgid "Product:" #~ msgstr "Produit :" #~ msgid "Solve &numerically ..." #~ msgstr "Rsoudre &numriquement ..." #~ msgid "Solve equation(s):" #~ msgstr "Rsoudre une (des) quation(s) :" #~ msgid "Solve equation:" #~ msgstr "Rsoudre une quation :" #~ msgid "Solve numerically" #~ msgstr "Rsoudre numriquement" #~ msgid "Solve numerically ..." #~ msgstr "Rsoudre numriquement ..." #~ msgid "Substitute:" #~ msgstr "Substituer :" #~ msgid "Substitution" #~ msgstr "Substitution" #~ msgid "Sum of:" #~ msgstr "Somme de :" #~ msgid "Uncomment" #~ msgstr "Dcommenter" #~ msgid "Unfold" #~ msgstr "Dplier" #~ msgid "Unfold all folded groups" #~ msgstr "Dplier tous les groupes" #~ msgid "Use &Taylor series" #~ msgstr "Utiliser les sries de &Taylor :" #~ msgid "around:" #~ msgstr "Au voisinage de:" #~ msgid "by variable:" #~ msgstr "Pour la variable :" #~ msgid "change var:" #~ msgstr "changer la var :" #~ msgid "eliminate variables:" #~ msgstr "liminer les variables:" #~ msgid "equation:" #~ msgstr "quation:" #~ msgid "for function(s):" #~ msgstr "pour la (les) fonction(s):" #~ msgid "for variable(s):" #~ msgstr "pour la (les) variable(s)" #~ msgid "from expression:" #~ msgstr " partir de l'expression:" #~ msgid "function:" #~ msgstr "fonction" #~ msgid "goes to:" #~ msgstr "va jusqu':" #~ msgid "in variable:" #~ msgstr "dans la variable" #~ msgid "in:" #~ msgstr "dans:" #~ msgid "the value is:" #~ msgstr "la valeur est:" #~ msgid "variable" #~ msgstr "variable" #~ msgid "variable:" #~ msgstr "variable:" #~ msgid "when variable:" #~ msgstr "avec la variable:" #~ msgid "with:" #~ msgstr "avec :" #~ msgid "" #~ "wxMaxima is a wxWidgets interface for the\n" #~ "computer algebra system MAXIMA.\n" #~ "\n" #~ "Version: %s.\n" #~ "License: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgstr "" #~ "wxMaxima est une interface wxWidgets pour le\n" #~ "logiciel de calcul formel MAXIMA.\n" #~ "\n" #~ "Version: %s.\n" #~ "License: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #, fuzzy #~ msgid "wxMaxima session (*.wxm)|*.wxm|Maxima batch file (*mac)|*.mac|All|*" #~ msgstr "" #~ "Fichier maxima (*.mac)|*.mac|Fichier de dmonstration (*.dem)|*.dem|All|*" #~ msgid "Maxima session (*.wxm)|*.wxm" #~ msgstr "Session maxima (*.wxm)|*.wxm" #~ msgid "Send ranges to &gnuplot" #~ msgstr "Envoyer les intervalles gnuplot" #~ msgid "Font family:" #~ msgstr "Famille de la police :" #~ msgid "Font size in console window." #~ msgstr "Taille de la police dans la console" #~ msgid "Font size:" #~ msgstr "Taille de la police :" #~ msgid "Parametric" #~ msgstr "Paramtr" #~ msgid "&Create batch file" #~ msgstr "&Crer une fichier batch" #~ msgid "Create a batch file from current session" #~ msgstr "Crer une fichier batch a partir de la session en cours" #~ msgid "Delete selection from console" #~ msgstr "Supprimer la slection partir de la console" #~ msgid "Maxima session (*.sav)|*.sav|All|*" #~ msgstr "Session maxima (*.sav)|*.sav|All|*" #~ msgid "" #~ "Maxima session (*.sav)|*.sav|Maxima package (*.mac)|*.mac|Lisp package (*." #~ "lisp)|*.lisp|Demo file (*.dem)|*.dem|All|*" #~ msgstr "" #~ "Maxima session (*.sav)|*.sav|Maxima package (*.mac)|*.mac|Lisp package (*." #~ "lisp)|*.lisp|Demo file (*.dem)|*.dem|All|*" #~ msgid "Select package to batch" #~ msgstr "Choisir un paquetage traiter" #~ msgid "&Soft restart" #~ msgstr "Redmarrage doux" #~ msgid "Maxima configuration" #~ msgstr "Configuration de Maxima" #~ msgid "R&ationalize trigonometric" #~ msgstr "Simplification trigo r&ationnelle" #~ msgid "Rationalize trigonometrix expression" #~ msgstr "Simplifier une expression trigonomtrique rationnelle" #~ msgid "Ratsimp" #~ msgstr "Ratsimp" #~ msgid "Restart maxima (softly)" #~ msgstr "Redmarrer maxima (doucement)" #~ msgid "Toggle algebraic computation" #~ msgstr "Basculer le calcul algbrique" #~ msgid "U&nsum expression ..." #~ msgstr "Dsommer l'expressio&n ..." #~ msgid "Unsum" #~ msgstr "Dsommer" #~ msgid "Unsum expression:" #~ msgstr "Dsommer l'expression" #~ msgid "What has to be summed to get this result" #~ msgstr "Ce qui doit tre somm pour obtenir ce rsultat" wxMaxima-13.04.2/locales/gl.mo000644 000765 000024 00000163311 12005453373 016452 0ustar00andrejstaff000000 000000  t0A) A3A;AMAhA&xAgAJBRB[B mByBB B BBB BBC(C mQ3QQ Q QQR 5R CRQRkR(zR$R,R%R&SBSIS MS XSfSlS sS1SS0SS S S TT(T9TMT_TqTTT TT T TTT UU)U :U EUSUeUwU UU UU:U $V.V BV MV XV eV sV V/VV VVV.V(WDW ZWgW(|WW W W W WWWWWX"X#3X"WX%zXX X XX XXXXY/Y*6YaY{Y YY YYYYY(Y Z 6Z BZMZRZ&aZZZ ZZZ Z/ZZ)[C['b[[[[[ [[ \\&\"B\5e\\\\\\\\ \ \$\7 ]3X]]] ]]]"],^*.^Y^`^t^+^^3^,^,_'L_t_z__;______ ` `&`.`B` "a,a0a~4aa@aa bb,b?b]b {bbbbb bbb cc=cQchccccccc d#d 7d Dd Rd\dnd)d d ddQd4eDebejeqe4zeee eeeef&f;fAfJf_fef jf*wfff ff f f g#gCgGg^g"wg gg g ggggg ghh?7hwhhh)hWh5iFi ^ikisi yi iiiii i i i iiijj 2jSj bjljjj j jjjj j%jjk !k /k ;kHkPkYk hkvkdkk%l +l5l;lKlZlpl3ll lll l1m36m jm vmmm m mm m m mmm nnn n .nw!Owqw gxqxwxx xx xx xx#y28yky%}y0y1yz z8;zAtzzzzzzz{ {3{J{ e{p{{{{{ { {{{ { {{ {||| !|+|D@||BA}u}}~~#~ )~4~ ~ `>,0G^s ΁ ܁   ) 4@Qa iv-ʂ т ނ  %ރ, vw+)oU1'!IX h t ȉщى   # ,8 ANeDC.brՋ|e.&# JaXa6 )W-ɏ`  1G YctΑ   )1DW`u ɒ ْ $8I`x œ ̓ړ  (@Ro ~ ה .4 Q \g, #6N^#|*:,D LW_ x.Ęטۘ"#+>Fdz )",$;!`Nϛ$/Tn4Μ$  + 7$A"f" ֝% 0##T xK ' 7X ku7A+//N_44/AZBw8 :Wj})0٢0 );(eãʣ8ۣ4P_{Ȥܤ#' : E R \h{ ԥ& % ,8+V  Ħ֦/'7H9^6ϧ& > H V d o{ƨ&ר#1"T\m} "ѩ'%C `k z 0Ӫ  #.6Jhp v3"0&?,f'(߬& ? M-XC .7 J W)a67® * K#W7{12I:]G4.DJ \>iб $=FJzNɳGϳ)+2^tƴδ !/>T eֵ)BUj {&ö d ŷ@η1EMUn¸ʸҸ 66Ql{.' 0/N~ƺͺA<~)s] r Ƽϼ׼ܼ   7V&n&˽Խ  8KP/f žѾ d.*ӿ(+;g ly*3 % 3A W d q ~   +(C lw #**@k{ %%<L\p$   ;W%s,%9_|/=,5FVn* '1!0RoTUs$$,Qi"2 M ny1/%D*V y   (,:U$;:A&X:F 0BTn  ! 5 A LW\t ?;x$hT]bt%! ;I _j  3 =X_ n x u7| `=Ll'(HW h v   0=A I T `l{ M6TmGg/k(wwNs| oVv5-WhLaQ TF?l&#$ 6yU~^ i/a+GnD4QXQ4lh9q$&YI aZ21b'nv+jux?SV=3.~_Hrg{AbubKK H0|y;c1[q<Tmr}[>h>kJ HRg_ dXFCqTRJS){iD\[cF6 fp9EC'\e`zt u  /63/&G%-`AW@LBx o=0oc!YY"UGOs,;jxv,fA?#>e<mB@E** ZnptU}*~5tdM0%N}E:{+2i)"w: (!V8_8=IPlZ-rM:7(@mOjLRPN z\s'](gP"^4 N8%^ydfJSw;]|!k  O, K7k.<Xp$5DCWwI2]7M1.zB)# 9`3e wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy Previous Output Ctrl-UCopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCreate a new cell with previous outputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help CTRL+?Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPreferences... CTRL+,Previous Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformRedo Ctrl-Shift-ZRedo last changeReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: es Report-Msgid-Bugs-To: POT-Creation-Date: 2012-07-17 16:22+0200 PO-Revision-Date: 2007-08-02 17:05+0200 Last-Translator: Mario Rodriguez Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Soporte unicode: %s Lisp: Versión de Maxima: Non conectado a Maxima! Non conectado. << Expresión moi longa para ser amosada! >> foi gardado cunha versión máis actualizada de wxMaxima, polo que é posible que non se cargue correctamente. Rógase a actualización de wxMaxima. foi gardado cunha versión máis actualizada de wxMaxima. Rógase a actualización de wxMaxima.Álxe&bra&Aplicar a lista&A propósitoArquivo por &lotes Ctrl-BPro&blema de contornaInformar de e&rroA&náliseForma &canónicaPolinomio &característico&Limpar memoria&Combinar factoriaisSimplificación &complexaFracción contin&ua&Copiar Ctrl-CIntegración &definida&Demoivre&Determinante&Derivar&EditarEliminar &variable&Introducir matriz&Exemplo&Expandir expresiónExpandir &trigonometríaExpo&nencializar&Exportar&Factorizar expresión&ArquivoC&alcular raíz&Xerar matrizMá&ximo común divisorA&xuda&Integrar&Interrumpir Ctrl-G&Interrumpir Ctrl-GIn&vertir matrizCargar &paquete Ctrl-LDistribui&r sobre lista&MaximaCálculo do &módulo&Novo Ctrl-NN&uméricoIntegración &numérica&Nusum&Abrir Ctrl-O&Abrir... Ctrl-O&GráficosSerie de &potencias&Imprimir... Ctrl-P&RacionalR&educir trigonometría&Reiniciar MaximaRaíces reais dun polino&mio&Gardar Ctrl-S&Simplificar&Simplificar expresión&Simplificar factoriais&Simplificar trigonometría&ResolverEspecialSerie de Taylor&Traspoñer matrizSimplificación &trigonométrica&pm3D(Usar idioma predeterminado)- Infinito
Lisp: Introduciuse en wxMaxima 0.8.0 un 'cursor horizontal'. O seu aspecto é o dunha líña horizontal entre celas, indicando onde aparecerá unha nova cela ó escribir ou copiar unha nova instrución.Introduciue en wxMaxima 0.8.2 un novo formato de documento que non só garda as instrucións e comentarios do usuario, senón tamén os resultados. Cando se garde o documento, seleccione 'Documento xml wxMaxima' &Condición inicialA&cerca de...Acerca de wxMaximaCorchete de cela activaMatriz ad&xuntaEngadir &igualdade alxébricaEngadir directorio á ruta de buscaEngadir dir á ruta:Egadir igualdade ó simplificador racionalEnga&dir á rutaParámetros adicionais para Maxima (por exemplo, -l clisp)Parámetros adicionais:Todos|*AnimaciónAplicarAplicar función a listaA propósitoArray:Arte porPreguntar para gardar documentos non tituladosCondición inicialBC2Diagrama de barrasArquivos bat (*.bat)|*.bat|Todos|*Arquivo por lotesNegritaDiagrama de caixasNavegar&Información de compilaciónPor defecto, Shift-Enter utilízase para avaliar instrucións, mentres Retorno úsase para introducir liñas múltiples. Este comportamento pódese cambiar en 'Editar->Preferencias' seleccionando 'Tecla retorno avalía celas', co que se intercambiarán os roles deestas teclas.C&ambiar variable&Preferencias&Calcular produtoCalcular su&maFormato real grande da última expresiónFormato real da última expresiónCalcular módulo:Calcular produtosCalcular sumasNon se pode acceder ó servidor web.Non se pode descargar a versión.CancelarCanónico (tr)CatalánCe&laCorchete de celaCambiar pantalla &2DCambiar o algoritmo empregado para amosar a saída matemática na pantalla 2D.Cambiar variableCambiar variable en integral ou sumaPolinomio característicoComproba actualizaciónsComproba se existe nova versión de wxMaxima/Maxima.Chino tradicionalElixir tipografíaElixir un novo formato de gráficos:Clases:&Pechar Ctrl-WPechar xanelaNomes col.:Columnas:Combinar factoriais nunha expresiónCoordenadas x separadas por comas.Coordenadas y separadas por comas.Comentar selección&Autocompletar Ctrl-KAutocompletarCalcular fracción continua dun valorCalcula a matriz adxuntaCalcula o polinomio característico dunha matrizCalcula o determinante dunha matrizCalcula o máximo común divisorCalcula a inversa dunha matrizCalcula o mínimo común múltiplo (executar load(funcións) antes de usar)CondiciónArquivo de configuración (*.ini)|*.iniAdvertencia sobre configuraciónConfigura wxMaximaConstanteC&ontrae logaritmosConvirte binomiais, funcións beta e gamma a factoriaisConvirte binomiais, funcións factoriais e beta á función gammaConvirte expresión complexa á forma polarConvirte expresión complexa á forma cartesiáConvirte función exponencial de argumento imaxinario á forma trigonométricaConvirte logaritmo dun produto en suma de logaritmosConvirte suma de logaritmos en logaritmo dun produtoConvirte a &factoriaisConvirte a &gammaConvirte á forma &polarConvirte á forma &cartesiáConvirte expresión trigonométrica á forma canónica casi linearConvirte funcións trigonométricas á forma exponencialCopiarCopiar como imaxenCopiar LaTeX&Copiar entrada anterior Ctrl-ICopia saída anterior Ctrl-UCopiar como imaxenCopiar como &LaTeXCopiar como &texto Ctrl-Shift-CCopiar selecciónCopiar selección do documento como imaxeCopiar selección do documento con formato textoCopiar selección do documento con formato LaTeXCrear unha nova cela coa entrada anteriorCrear unha nova cela coa saída anteriorCursorCortarCo&rtar Ctrl-XCortar selecciónChecoDanésMatriz de datos:Arquivo de datos (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDatos:Descompoñer función racional en fraccións simplesPredeterminadoTipografía predeterminada:Porto predeterminado:BorraBorra f&unciónBorra selecciónBorra v&ariableBorra unha funciónBorra unha variableBorra todas as variables da memoriaBorra función(s):Borra variable(s):denom deg:Profundidad:Derivada:DesviaciónDi&vide polinomiosDerivaDerivaDeriva expresiónDerivaDirección:Gráfico de puntosAmosa formato Te&XAmosa algoritmoAmosa último resultado en formato TeXAmosa tempo de execuciónDivideDivide celaDivide números ou polinomiosGárdanse os cambios feitos no documento? "DocumentoFondo do documentoNon guardarE&cuacións&Sair Ctrl-QVectores &propiosVa&lores propiosEliminaElimina unha variable dun sistema de ecuaciónsInglésIntroduce datosIntroduce matrizIntroduce unha matrizIntroduce unha ecuación para a simplificación racional:Introduce unha lista de variables separadas por comas.Tecla retorno avalía celasIntroduce matrizIntroduce nova precisión:Introduce a ruta ó ejecutable Maxima.Épsilon:Ecuación %d:Ecuación(s):Ecuación:Ecuacións:ErroErro %dErro!Avalía formas &nominaisAvalía t&odas as celas Ctrl-RA&valía cela(s)Avalía celas activas ou seleccionadasAvalía todas as celas do documentoAvalía todas as formas nominais nunha expresiónExemploTexto de exemploSae de wxMaximaExpandeExpande (tr)Expande expresiónEx&pande logaritmosExpande unha expresiónExpande expresión trigonométrica&ExportaExporta documento a arquivo HTML ou TeXFallou a exportación a HTML!Fallou a exportación a TeX!ExpresiónExpresión(s):Expresión:FactorizaFactoriza comple&xoFactoriza expresiónFactoriza unha expresiónFactoriza unha expresión en números gaussianosFactoriais e &gammaErro fatalFigura %d:ArquivoArquivo non atopadoO arquivo a abrir non existe.ArquivoBusca&Busca Ctrl-FCalcula &límiteCalcula mínim&oCalcula raíz...Calcula mínimo (sen restricións) dunha expresiónCalcula o límite dunha expresiónCalcula unha raíz dunha ecuación nun intervaloCalcula todas as raíces dun polinomioCalcula todas as raíces reais dun polinomioBusca e substitueBusca e substitueCalcula os valores propios dunha matrizCalcula os vectores propios dunha matrizCalcula mínimoCalcula as raíces reais dun polinomioCalcula raízCalcula...Tipografía proporcional en controis de textoTipografía usada no documento.Tipografía usada para amosar caracteres matemáticos no documento.TipografíaFormato:FrancésDende:P&antalla completa Alt-RetornoFunciónNomes de funciónsFunción(s):Función:Funcións para a simplificación complexaFuncións para simplificar factoriais e función gammaFuncións para simplificar expresións trigonométricasMCDImaxe GIF (*.gif)|*.gifMatemáticas xerais&Matemáticas xerais Alt-Shift-MXera matriz&Xera matriz a partir de expresiónXera unha matriz a partir dunha táboa de 2 dimensiónsXera unha matriz a partir dunha expresión lambdaAlemánCalcula parte &imaxinariaCalcula &serieCalcula a transformada de Laplace dunha expresiónCalcula parte &realCalcula a transformada inversa de Laplace dunha expresiónCalcula o desenvolvemento de Taylor ou serie de potencias da expresiónCalcula a parte imaxinaria dunha expresión complexaCalcula a parte real dunha expresión complexaGregoConstantes gregasCuadrícula:Arquivo HTML (*.html)|*.html|Arquivo TeX (*.tex)|*.tex|Todos|*Altura:A&xuda&Oculta todo Alt-Shift--Oculta todos os paneisResaltaHistogramaHistogramaHistoria&Historia Alt-Shift-HO cursor horizontal funciona como un cursor normal, pero opera con celas: pulsar cursores arriba e abaixo para movelo; mantendo pulsada a tecla 'Maiúscula' mentres se realiza o movimento se seleccionan celas, pulsando 'Retroceso' ou 'Espazo' dúas veces borrará a cela contigua.HúngaroIC1IC2Se un cálculo leva moito tempo, pódese parar seleccionando 'Maxima->Interrumpir' ou 'Maxima->Reiniciar Maxima' no menú.ImaxeArquivos gráficos (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclúe columnas:InfinitoInformación sobre a compilación de MaximaEstimadores iniciais:Problema de valor inicial (&1)Problema de valor inicial (&2)Introduce etiquetasInsertaNova cela de &sección Ctrl-3Nova cela de te&xto Ctrl-1In&serta cela Alt-Shift-CInserta imaxeI&nserta imaxeNova cela de &entradaSalto de páxinaNova cela de s&ubsección Ctrl-4Nova cela de &sección F8Nova cela de subsecciónNova cela de &título Ctrl-2Nova cela de textoNova cela de títuloNova cela de entradaNova cela de secciónNova cela de subsecciónNova cela de textoNova cela de títuloSalto de páxinaInserta imaxeIntegral/suma:IntegraIntegra (risch)Integra expresiónIntegra expresión con algoritmo RischIntegraInterrumpeInterrumpe o cálculo actualEntrada non válida para o programa Maxima. Por favor, introduza de novo a ruta ó programa Maxima.Inversa de LaplaceTrans&formada inversa de LaplaceItalianoItálicaXaponésMantén o signo porcentual nos símbolos especiais: %e, %i, etc.MCMIdioma usado na interface de usuario de wxMaxima.Idioma:Laplace&Transformada de LaplaceMí&nimo común múltiploAxuste por mínimos cadradosAxuste por mínimos cadradosLímiteLímiteRegresión linearLista:CargaCarga paqueteCarga un arquivo de Maxima usando a instrucion 'batch'Carga un paquete de MaximaLe estilo dende un arquivoCota inferior:Distribúe sobre &matrizConstrúe &listaConstrúe listaConstrúe unha lista a partir dunha expresiónFai unha substitución nunha expresiónAplicaAplica función a unha listaAplica función a unha matrizFai coincidir parénteses nos controis de textoTipografía matemática:MatrizAplica a matrizNome de matriz:Matriz:MaximaA&xuda de Maxima F1A&xuda de Maxima F1Entrada MaximaMaxima está calculandoPaquete de Maxima (*.mac)|*.macPaquete Maxima (*.mac)|*.mac|Paquete Lisp (*.lisp)|*.lisp|Todos|*Proceso de Maxima terminado.Programa Maxima:Opcións de MaximaMaxima iniciado. Esperando a conexión...Maxima utiliza ':' para asignar un valor a unha variable ('a : 3;') e ':=' para definir funcións ('f(x) := x^2;').Versión de Maxima: Contraste de diferenza de mediasContraste de mediasMediaMedia:MedianaUne celasMétodo:MóduloNomeNovo&Novo Ctrl-NNovo documentoNovo valor:Nova variable:Seguinte instrución Alt-AbajoNon se atoparon coincidencias!Contraste de normalidadA dimensión da matriz non é válida!O número de ecuacións é incorrecto!Non conectado.num deg:Número de ecuacións:NúmerosAceptarValor antigo:Variable antiga:Contraste t para unha mostraTutoriais en liñaAbriAbre sesión &recenteAbre unha cela cando Maxima espera unha entradaAbre documentoAbre nova xanelaAbre documentoAbre matrizAbrindo arquivoOpciónsOpcións:Celas obsoletasEtiquetas de saídaAchegamento de &PadéImaxe PNG (*.png)|*.png|Imaxe JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*.mbp|pixmap X (*.xpm)|*.xpmAchegamento de PadéAchegamento de Padé dunha serie de TaylorSalto de páxina&PaneisGráfico paramétricoAnalizando saídaFracción&s simplesFraccións simplesLectura do documento parcialmente correcta!PegaPe&ga Ctrl-VPega dende o portapapeisPega texto dende o portapapeisDiagrama de sectoresConfigure wxMaxima con 'Edita->Configura'.Reinicie wxMaxima para que os cambios teñan efectoGráficos &2DGráficos &3D&Formato de gráficosGráficos 2DGráficos 2DGráficos 2DGráficos 3DGráficos 3DGráficos 3DFormato dos gráficosGráfico en 2 dimensiónsGráfico en 3 dimensiónsGráfico a arquivo:Punto:PolacoPolinomio 1:Polinomio 2:Portugués (Brasileiro)Archivo postscript (*.eps)|*.eps|Todos|*PrecisiónPreferencias... CTRL+,Instrución anterior Alt-ArribaImprimeImprime documentoProdutoLe matrizLendo saída de MaximaPreparado para a entrada de usuarioChama á seguinte instrución do historialChama á instrución anterior do historialForma cartesiáFai de novo Ctrl-Shift-ZDesfai último cambioReduce (tr)Simplifica expresión trigonométrica&Borra todos os resultadosBorra resultados das celas de entradaReemplazadas %d coincidencias.Informe de erroReinicia maximaIntegración &RischRaíces dun &polinomioRaíces reais &grandes dun polinomioFilas:RusoExemplo 1:Exemplo 2:Mostra:GardaGarda animaciónGarda comoGarda &como Shift-Ctrl-SGarda imaxe...Garda selección en imaxenG&ardar selección en imaxeGarda animación no arquivoGárdanse os cambios antes de pechar?Se gardan os cambios?Garda documentoGarda documento comoGarda disposición de paneisGarda disposición de paneis entre sesións.Garda gráfico nun arquivoCopia selección do documento a imaxeGarda selección nun arquivoGarda estilo en arquivoGarda o tamaño/posición da xanela de wxMaximaGarda tamaño/posición da xanela de wxMaxima entre sesións.Diagrama dispersiónDiagrama dispersiónSecciónCela de secciónSelecciona todo&Selecciona todo Ctrl-ASelecciona o programa MaximaSelecciona submostraSelecciona unha constanteSelecciona todoSelecciona o formato de saída matemáticoSeleccionando unha parte do resultado e premendo o botón dereito emerxerá un menú con funcións que se poderán aplicar sobre a selección.SelecciónSerieSerieServidor iniciadoEstablece &precisiónEstablece au&mentoEstablece a precisión en coma flotanteEstablece tipografía fixa nos controis de texto.Establece o formato dos gráficosEstablece ampliación a 100%Establece ampliación a 120%Establece ampliación a 150%Establece ampliación a 200%Establece ampliación a 300%Establece disminución a 80%Establece condicións iniciais para resolver EDOs mediante a transformada de LaplaceConfigura cálculo de móduloAmosa &definiciónAmosa &funciónsAmosa &suxerenciasAmosa &variablesAmosa a axuda de Maxima&Amosa plantilla Ctrl-Shift-KAmosa unha suxerenciaAmosa todos os comandos similares a:Amosa un exemplo para a instrución:Amosa un exemplo de usoAmosa instrucións similares aAmosa as funcións definidasAmosa as variables definidasAmosa a definición dunha funciónAmosa plantilla de funciónAmosa expresións longasAmosa expresións longas no documento de wxMaxima.Amosa a definición da función:SimplificaSimplifica &radicaisSimplifica (r)Simplifica (tr)Simplifica expresiónSimplifica unha expresión que contén factoriaisSimplifica unha expresión que contén radicaisSimplifica expresión racionalSimplifica a sumaSimplifica unha expresión trigonométricaDende wxMaxima 0.8.2 pódense inserir imaxes nos documentos. Seleccione 'Cela->Inserir imaxe' no menú. Téñase en conta que debe gardar o documento no formato 'Documento xml wxMaxima' se quere que se almacene a imaxe xunto co resto do documento.Solución:ResolveReso&lve sistema alxébricoResolve &sistema linearResolve &EDORes&olve (to_poly)Resolve EDOResolve E&DO con LaplaceResolve EDOResolve sistema alxébricoResolve sistema alxébrico de ecuaciónsResolve problema de contorna para unha EDO de segundo ordeResolve ecuación(s)Resolve ecuación con to_poly_solverResolve problema de valor inicial para EDO de primeiro ordeResolve problema de valor inicial para EDO de segundo ordeResolve sistema linearResolve sistema de ecuacións linearesResolve ecuación diferencial ordinaria de orden máximo 2Resolve ecuacións diferenciais ordinarias ca transformada de LaplaceResolveEspañolEspecialConstantes especiaisComeza animaciónComeza animaciónFallou o inicio de MaximaIniciando Maxima...Fallou o inicio do servidorIniciando servidor no puerto %dEstatística&Estatística Alt-Shift-SPara animaciónCadeasEstiloEstilosSubmostraSubsecciónCela de subsecciónS&ubstitúeSubstitúeSubstitúeSumaInformación do sistemaSerie de Taylor:TellratTextoCela de textoFondo de cela de textoPorto predeterminado para comunicación entre Maxima e wxMaximaHai moitos recursos sobre Maxima e wxMaxima en Internet. Visítese http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials para máis información sobre como utilizar wxMaxima e Maxima.Houbo un erro no XML xerado! Prégase informar deste erro.Houbo un erro durante a exportación a GIF! Asegúrese que ImageMagick está instalado e que wxMaxima ten acceso ó programa 'convert'.Marcas de eixes:Veces:Suxerencia non dispoñible, síntoo!TítuloCela de títuloAs celas de título, sección e subsección pódense plegar para ocultar os sus contidos. Tanto para plegalas como para desplegalas fágase clic no cadrado contiguo á cela. Se ó mesmo tempo se preme 'Maiúsculas', todos os subniveis serán pregados/despregados.A real grande (&bigfloat)A &realA realPara representar en coordenadas polares, seleccione 'set polar' na entrada de Opcións de cadro de diálogo de Plot2D. Tamén se puede representar en coordenadas esféricas e cilíndricas en 3D.Para colocar parénteses arrededor dunha expresión, selecciónese esta e presiónese '(' o ')', dependendo de onde quere que se coloque o cursor.Para gardar o tamaño e a posición da xanela de wxMaxima entre sesións, utilícese 'Edita->Configura'.Para comezar a utilizar wxMaxima axiña, comece premendo una instrución. Aparecerá unha cela de entrada. Prema 'Maiúsculas-Retorno' para iniciar o cálculo.Ata:Conmuta álxe&braConmuta saída &numéricaConmuta pantalla de &tempoConmuta álge&braConmuta edición de pantalla completaConmuta saída numérica&Barra de ferramentas Alt-Shift-TIconas da barra de ferramentasTraducido porTranspón unha matriz&TutoriaisContrataste t de dúas mostrasTipo:UcraínoSubraiadoD&esfacer Ctrl-ZDesfacer último cambioSoporte UnicodeActualizaCota superior:Usa algoritmo GosperUsa punto centrado como operador de multiplicaciónUtiliza tipografía jsMathValor:Incógnita(s):Variable:VariablesVariables:VarianzaAvisoBenvido a wxMaximaCando se aplican funcións cun argumento dende o menú, o argumento predeterminado é '%'. Para aplicar a función a outro valor, seleccióneo no documento antes de executar a instrución do menú.Ancho:Escribe parénteses coincidentes nos controis de texto.Escrito porPódese acceder á última saída facendo uso da variable '%' . Asemade, pódese acceder ás saídas das instrucións previas usando as variables '%on', onde n é o número de etiqueta da saída.Pode avaliar o documento completo seleccionando 'Cela-> Avalía todas as celas' no menú. As celas avaliaranse na orde na que aparecen no documento.Pódese obter información sobre unha función de Maxima resaltando ou facendo clic sobre o seu nome e premendo F1. wxMaxima buscará a axuda correspondente á palabra baixo o cursor.Pódese ocultar a parte do resultado dunha cela facendo clic sobre o triángulo á súa esquerda. Isto tamén é aplicable ás celas de texto.Pódense incluir diferentes tipos de celas nun documento de wxMaxima seleccionando no menú 'Cela'. Téñase en conta que só se poden avaliar celas de entrada, mentres que o resto se utilizan para comentarios e estruturar o documento.Pódense seleccionar varias celas, ben co rato, faciendo clic e arrastrando entre celas ou corchetes de celas, ben co teclado, mantendo pulsada a tecla de Maiúsculas mentres se move o cursor horizontal, para logo operar sobre a selección. Isto será útil cando se queiran borrar ou avaliar varias celas a un tempo.Ten instalada a versión %s. A versión actual é %s. Selecciónese OK para acceder á páxina de wxMaxima.Perderanse os cambios se non se gardan.A versión de wxMaxima está actualizadaAmpl&iar Alt-I&Disminuir Alt-ODisminuir 10%Ampliar 10%Establece ampliación a [non gardado][non gardado*]antisimétricaambos os dous ladospredeterminadodiagonalxeralen liñaesquerdaliñas agochadasescala logarítmicamatriz[i,j]:nondereitasimétricanon gardadosen títulosen título %dwxMaximawxMaxima %s Configuración de wxMaximawxMaxima non puido atopar Maxima! Configure wxMaxima con 'Edita->Configura. A continuación inicie Maxima con 'Maxima->Reinicia maxima'.wxMaxima non puido atopar os arquivos de axuda. Comprobe a súa instalación.wxMaxima non puido atopar os arquivos de suxerencias. Comprobe a súa instalación.wxMaxima non puido iniciar o servidor. Verifique se dispón de soporte de rede activado e inténteo de novo!Nos cadros de diálogo de wxMaxima aparecen entradas predeterminadas, unha das cales é '%'. Se fixo unha selección no documento, esta será utilizada en lugar de '%'.Documento wxMaximaDocumento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|Arquivo de Maxima (*.mac)|*.macDocumento wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima atopou un erro durante a carga Icona de wxMaximawxMaxima é unha interface gráfica de usuario para o Sistema de Álxebra Simbólica (CAS) Maxima, basado en wxWidgets.wxMaxima é unha interface gráfica de usuario para o Sistema de Álxebra Simbólica (CAS) Maxima, basado en wxWidgets.siwxMaxima-13.04.2/locales/gl.po000644 000765 000024 00000324606 12005452203 016452 0ustar00andrejstaff000000 000000 # translation of gl.po to # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Mario Rodriguez , 2012 msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-07-17 16:22+0200\n" "PO-Revision-Date: 2007-08-02 17:05+0200\n" "Last-Translator: Mario Rodriguez \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3433 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Soporte unicode: %s" #: ../src/wxMaxima.cpp:3446 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3442 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Versión de Maxima: " #: ../src/wxMaxima.cpp:4084 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Non conectado a Maxima!\n" #: ../src/wxMaxima.cpp:3444 msgid "" "\n" "Not connected." msgstr "" "\n" "Non conectado." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << Expresión moi longa para ser amosada! >>" #: ../src/wxMaxima.cpp:1087 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " foi gardado cunha versión máis actualizada de wxMaxima, polo que é posible " "que non se cargue correctamente. Rógase a actualización de wxMaxima." #: ../src/wxMaxima.cpp:1079 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" " foi gardado cunha versión máis actualizada de wxMaxima. Rógase a " "actualización de wxMaxima." #: ../src/wxMaximaFrame.cpp:473 msgid "&Algebra" msgstr "Álxe&bra" #: ../src/wxMaximaFrame.cpp:467 msgid "&Apply to List..." msgstr "&Aplicar a lista" #: ../src/wxMaximaFrame.cpp:658 msgid "&Apropos..." msgstr "&A propósito" #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "Arquivo por &lotes\tCtrl-B" #: ../src/wxMaximaFrame.cpp:424 msgid "&Boundary Value Problem..." msgstr "Pro&blema de contorna" #: ../src/wxMaximaFrame.cpp:669 msgid "&Bug Report" msgstr "Informar de e&rro" #: ../src/wxMaximaFrame.cpp:525 msgid "&Calculus" msgstr "A&nálise" #: ../src/wxMaximaFrame.cpp:576 msgid "&Canonical Form" msgstr "Forma &canónica" #: ../src/wxMaximaFrame.cpp:449 msgid "&Characteristic Polynomial..." msgstr "Polinomio &característico" #: ../src/wxMaximaFrame.cpp:357 msgid "&Clear Memory" msgstr "&Limpar memoria" #: ../src/wxMaximaFrame.cpp:559 msgid "&Combine Factorials" msgstr "&Combinar factoriais" #: ../src/wxMaximaFrame.cpp:602 msgid "&Complex Simplification" msgstr "Simplificación &complexa" #: ../src/wxMaximaFrame.cpp:522 msgid "&Continued Fraction" msgstr "Fracción contin&ua" #: ../src/wxMaximaFrame.cpp:233 msgid "&Copy\tCtrl-C" msgstr "&Copiar\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Integración &definida" #: ../src/wxMaximaFrame.cpp:596 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:452 msgid "&Determinant" msgstr "&Determinante" #: ../src/wxMaximaFrame.cpp:485 msgid "&Differentiate..." msgstr "&Derivar" #: ../src/wxMaximaFrame.cpp:286 msgid "&Edit" msgstr "&Editar" #: ../src/wxMaximaFrame.cpp:409 msgid "&Eliminate Variable..." msgstr "Eliminar &variable" #: ../src/wxMaximaFrame.cpp:444 msgid "&Enter Matrix..." msgstr "&Introducir matriz" #: ../src/wxMaximaFrame.cpp:655 msgid "&Example..." msgstr "&Exemplo" #: ../src/wxMaximaFrame.cpp:539 msgid "&Expand Expression" msgstr "&Expandir expresión" #: ../src/wxMaximaFrame.cpp:573 msgid "&Expand Trigonometric" msgstr "Expandir &trigonometría" #: ../src/wxMaximaFrame.cpp:599 msgid "&Exponentialize" msgstr "Expo&nencializar" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Exportar" #: ../src/wxMaximaFrame.cpp:534 msgid "&Factor Expression" msgstr "&Factorizar expresión" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Arquivo" #: ../src/wxMaximaFrame.cpp:392 msgid "&Find Root..." msgstr "C&alcular raíz" #: ../src/wxMaximaFrame.cpp:438 msgid "&Generate Matrix..." msgstr "&Xerar matriz" #: ../src/wxMaximaFrame.cpp:509 msgid "&Greatest Common Divisor..." msgstr "Má&ximo común divisor" #: ../src/wxMaximaFrame.cpp:685 msgid "&Help" msgstr "A&xuda" #: ../src/wxMaximaFrame.cpp:477 msgid "&Integrate..." msgstr "&Integrar" #: ../src/wxMaximaFrame.cpp:348 msgid "&Interrupt\tCtrl-." msgstr "&Interrumpir\tCtrl-G" #: ../src/wxMaximaFrame.cpp:352 msgid "&Interrupt\tCtrl-G" msgstr "&Interrumpir\tCtrl-G" #: ../src/wxMaximaFrame.cpp:446 msgid "&Invert Matrix" msgstr "In&vertir matriz" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Cargar &paquete\tCtrl-L" #: ../src/wxMaximaFrame.cpp:469 msgid "&Map to List..." msgstr "Distribui&r sobre lista" #: ../src/wxMaximaFrame.cpp:384 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:617 msgid "&Modulus Computation..." msgstr "Cálculo do &módulo" #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Novo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:644 msgid "&Numeric" msgstr "N&umérico" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Integración &numérica" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Nusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Abrir\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Abrir...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:629 msgid "&Plot" msgstr "&Gráficos" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Serie de &potencias" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Imprimir...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Racional" #: ../src/wxMaximaFrame.cpp:570 msgid "&Reduce Trigonometric" msgstr "R&educir trigonometría" #: ../src/wxMaximaFrame.cpp:356 msgid "&Restart Maxima" msgstr "&Reiniciar Maxima" #: ../src/wxMaximaFrame.cpp:400 msgid "&Roots of Polynomial (Real)" msgstr "Raíces reais dun polino&mio" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Gardar\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:619 msgid "&Simplify" msgstr "&Simplificar" #: ../src/wxMaximaFrame.cpp:529 msgid "&Simplify Expression" msgstr "&Simplificar expresión" #: ../src/wxMaximaFrame.cpp:556 msgid "&Simplify Factorials" msgstr "&Simplificar factoriais" #: ../src/wxMaximaFrame.cpp:567 msgid "&Simplify Trigonometric" msgstr "&Simplificar trigonometría" #: ../src/wxMaximaFrame.cpp:388 msgid "&Solve..." msgstr "&Resolver" #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "Especial" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Serie de Taylor" #: ../src/wxMaximaFrame.cpp:462 msgid "&Transpose Matrix" msgstr "&Traspoñer matriz" #: ../src/wxMaximaFrame.cpp:579 msgid "&Trigonometric Simplification" msgstr "Simplificación &trigonométrica" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3D" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Usar idioma predeterminado)" #: ../src/IntegrateWiz.cpp:217 ../src/IntegrateWiz.cpp:228 #: ../src/IntegrateWiz.cpp:236 ../src/IntegrateWiz.cpp:247 #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 msgid "- Infinity" msgstr "- Infinito" #: ../src/wxMaxima.cpp:3497 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Introduciuse en wxMaxima 0.8.0 un 'cursor horizontal'. O seu aspecto é o " "dunha líña horizontal entre celas, indicando onde aparecerá unha nova cela ó " "escribir ou copiar unha nova instrución." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Introduciue en wxMaxima 0.8.2 un novo formato de documento que non só garda " "as instrucións e comentarios do usuario, senón tamén os resultados. Cando se " "garde o documento, seleccione 'Documento xml wxMaxima' " #: ../src/wxMaximaFrame.cpp:431 msgid "A&t Value..." msgstr "&Condición inicial" #: ../src/wxMaximaFrame.cpp:680 ../src/wxMaxima.cpp:3499 msgid "About" msgstr "A&cerca de..." #: ../src/wxMaximaFrame.cpp:682 ../src/wxMaximaFrame.cpp:684 msgid "About wxMaxima" msgstr "Acerca de wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Corchete de cela activa" #: ../src/wxMaximaFrame.cpp:460 msgid "Ad&joint Matrix" msgstr "Matriz ad&xunta" #: ../src/wxMaximaFrame.cpp:614 msgid "Add Algebraic E&quality..." msgstr "Engadir &igualdade alxébrica" #: ../src/wxMaximaFrame.cpp:360 msgid "Add a directory to search path" msgstr "Engadir directorio á ruta de busca" #: ../src/wxMaxima.cpp:2300 msgid "Add dir to path:" msgstr "Engadir dir á ruta:" #: ../src/wxMaximaFrame.cpp:615 msgid "Add equality to the rational simplifier" msgstr "Egadir igualdade ó simplificador racional" #: ../src/wxMaximaFrame.cpp:359 msgid "Add to &Path..." msgstr "Enga&dir á ruta" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Parámetros adicionais para Maxima (por exemplo, -l clisp)" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Parámetros adicionais:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Todos|*" #: ../src/wxMaximaFrame.cpp:819 msgid "Animation" msgstr "Animación" #: ../src/wxMaxima.cpp:2753 msgid "Apply" msgstr "Aplicar" #: ../src/wxMaximaFrame.cpp:468 msgid "Apply function to a list" msgstr "Aplicar función a lista" #: ../src/wxMaxima.cpp:3529 msgid "Apropos" msgstr "A propósito" #: ../src/wxMaxima.cpp:2679 msgid "Array:" msgstr "Array:" #: ../src/wxMaxima.cpp:3375 msgid "Artwork by" msgstr "Arte por" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "Preguntar para gardar documentos non titulados" #: ../src/wxMaxima.cpp:2565 msgid "At value" msgstr "Condición inicial" #: ../src/wxMaxima.cpp:2472 ../src/BC2Wiz.cpp:57 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1032 msgid "Barsplot..." msgstr "Diagrama de barras" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Arquivos bat (*.bat)|*.bat|Todos|*" #: ../src/wxMaxima.cpp:1995 msgid "Batch File" msgstr "Arquivo por lotes" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Negrita" #: ../src/wxMaximaFrame.cpp:1034 msgid "Boxplot..." msgstr "Diagrama de caixas" #: ../src/Plot3dWiz.cpp:124 ../src/Plot2dWiz.cpp:122 msgid "Browse" msgstr "Navegar" #: ../src/wxMaximaFrame.cpp:667 msgid "Build &Info" msgstr "&Información de compilación" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Por defecto, Shift-Enter utilízase para avaliar instrucións, mentres Retorno " "úsase para introducir liñas múltiples. Este comportamento pódese cambiar en " "'Editar->Preferencias' seleccionando 'Tecla retorno avalía celas', co que se " "intercambiarán os roles deestas teclas." #: ../src/wxMaximaFrame.cpp:482 msgid "C&hange Variable..." msgstr "C&ambiar variable" #: ../src/wxMaximaFrame.cpp:283 msgid "C&onfigure" msgstr "&Preferencias" #: ../src/wxMaximaFrame.cpp:501 msgid "Calculate &Product..." msgstr "&Calcular produto" #: ../src/wxMaximaFrame.cpp:499 msgid "Calculate Su&m..." msgstr "Calcular su&ma" #: ../src/wxMaximaFrame.cpp:639 msgid "Calculate bigfloat value of the last result" msgstr "Formato real grande da última expresión" #: ../src/wxMaximaFrame.cpp:636 msgid "Calculate float value of the last result" msgstr "Formato real da última expresión" #: ../src/wxMaxima.cpp:2886 msgid "Calculate modulus:" msgstr "Calcular módulo:" #: ../src/wxMaximaFrame.cpp:502 msgid "Calculate products" msgstr "Calcular produtos" #: ../src/wxMaximaFrame.cpp:500 msgid "Calculate sums" msgstr "Calcular sumas" #: ../src/wxMaxima.cpp:4340 msgid "Can not connect to the web server." msgstr "Non se pode acceder ó servidor web." #: ../src/wxMaxima.cpp:4385 msgid "Can not download version info." msgstr "Non se pode descargar a versión." #: ../src/Plot3dWiz.cpp:103 ../src/Plot3dWiz.cpp:105 #: ../src/PlotFormatWiz.cpp:41 ../src/PlotFormatWiz.cpp:43 #: ../src/Plot2dWiz.cpp:101 ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 #: ../src/Plot2dWiz.cpp:563 ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/SumWiz.cpp:47 #: ../src/SumWiz.cpp:49 ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 #: ../src/MatWiz.cpp:188 ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 #: ../src/IntegrateWiz.cpp:61 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/Gen1Wiz.cpp:34 ../src/Gen1Wiz.cpp:36 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/wxMaxima.cpp:4442 #: ../src/LimitWiz.cpp:51 ../src/LimitWiz.cpp:53 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 msgid "Cancel" msgstr "Cancelar" #: ../src/wxMaximaFrame.cpp:977 msgid "Canonical (tr)" msgstr "Canónico (tr)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Catalán" #: ../src/wxMaximaFrame.cpp:326 msgid "Ce&ll" msgstr "Ce&la" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Corchete de cela" #: ../src/wxMaximaFrame.cpp:379 msgid "Change &2d Display" msgstr "Cambiar pantalla &2D" #: ../src/wxMaximaFrame.cpp:380 msgid "Change the 2d display algorithm used to display math output" msgstr "" "Cambiar o algoritmo empregado para amosar a saída matemática na pantalla 2D." #: ../src/wxMaxima.cpp:2910 msgid "Change variable" msgstr "Cambiar variable" #: ../src/wxMaximaFrame.cpp:483 msgid "Change variable in integral or sum" msgstr "Cambiar variable en integral ou suma" #: ../src/wxMaxima.cpp:2666 msgid "Char poly" msgstr "Polinomio característico" #: ../src/wxMaximaFrame.cpp:672 msgid "Check for Updates" msgstr "Comproba actualizacións" #: ../src/wxMaximaFrame.cpp:673 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Comproba se existe nova versión de wxMaxima/Maxima." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Chino tradicional" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Elixir tipografía" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Elixir un novo formato de gráficos:" #: ../src/wxMaxima.cpp:3573 ../src/wxMaxima.cpp:3587 msgid "Classes:" msgstr "Clases:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "&Pechar\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Pechar xanela" #: ../src/wxMaxima.cpp:3695 msgid "Col. names:" msgstr "Nomes col.:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Columnas:" #: ../src/wxMaximaFrame.cpp:560 msgid "Combine factorials in an expression" msgstr "Combinar factoriais nunha expresión" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Coordenadas x separadas por comas." #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Coordenadas y separadas por comas." #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Comentar selección" #: ../src/wxMaximaFrame.cpp:301 msgid "Complete Word\tCtrl-K" msgstr "&Autocompletar\tCtrl-K" #: ../src/wxMaximaFrame.cpp:302 msgid "Complete word" msgstr "Autocompletar" #: ../src/wxMaximaFrame.cpp:523 msgid "Compute continued fraction of a value" msgstr "Calcular fracción continua dun valor" #: ../src/wxMaximaFrame.cpp:461 msgid "Compute the adjoint matrix" msgstr "Calcula a matriz adxunta" #: ../src/wxMaximaFrame.cpp:450 msgid "Compute the characteristic polynomial of a matrix" msgstr "Calcula o polinomio característico dunha matriz" #: ../src/wxMaximaFrame.cpp:453 msgid "Compute the determinant of a matrix" msgstr "Calcula o determinante dunha matriz" #: ../src/wxMaximaFrame.cpp:510 msgid "Compute the greatest common divisor" msgstr "Calcula o máximo común divisor" #: ../src/wxMaximaFrame.cpp:447 msgid "Compute the inverse of a matrix" msgstr "Calcula a inversa dunha matriz" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "" "Calcula o mínimo común múltiplo (executar load(funcións) antes de usar)" #: ../src/wxMaxima.cpp:3745 msgid "Condition:" msgstr "Condición" #: ../src/Config.cpp:1066 ../src/Config.cpp:1074 msgid "Config file (*.ini)|*.ini" msgstr "Arquivo de configuración (*.ini)|*.ini" #: ../src/Config.cpp:935 msgid "Configuration warning" msgstr "Advertencia sobre configuración" #: ../src/wxMaximaFrame.cpp:281 ../src/wxMaximaFrame.cpp:284 #: ../src/wxMaximaFrame.cpp:726 ../src/wxMaximaFrame.cpp:794 msgid "Configure wxMaxima" msgstr "Configura wxMaxima" #: ../src/IntegrateWiz.cpp:219 ../src/IntegrateWiz.cpp:238 #: ../src/SeriesWiz.cpp:109 ../src/LimitWiz.cpp:135 msgid "Constant" msgstr "Constante" #: ../src/wxMaximaFrame.cpp:544 msgid "Contract Logarithms" msgstr "C&ontrae logaritmos" #: ../src/wxMaximaFrame.cpp:551 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Convirte binomiais, funcións beta e gamma a factoriais" #: ../src/wxMaximaFrame.cpp:554 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Convirte binomiais, funcións factoriais e beta á función gamma" #: ../src/wxMaximaFrame.cpp:588 msgid "Convert complex expression to polar form" msgstr "Convirte expresión complexa á forma polar" #: ../src/wxMaximaFrame.cpp:585 msgid "Convert complex expression to rect form" msgstr "Convirte expresión complexa á forma cartesiá" #: ../src/wxMaximaFrame.cpp:597 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Convirte función exponencial de argumento imaxinario á forma trigonométrica" #: ../src/wxMaximaFrame.cpp:542 msgid "Convert logarithm of product to sum of logarithms" msgstr "Convirte logaritmo dun produto en suma de logaritmos" #: ../src/wxMaximaFrame.cpp:545 msgid "Convert sum of logarithms to logarithm of product" msgstr "Convirte suma de logaritmos en logaritmo dun produto" #: ../src/wxMaximaFrame.cpp:550 msgid "Convert to &Factorials" msgstr "Convirte a &factoriais" #: ../src/wxMaximaFrame.cpp:553 msgid "Convert to &Gamma" msgstr "Convirte a &gamma" #: ../src/wxMaximaFrame.cpp:587 msgid "Convert to &Polarform" msgstr "Convirte á forma &polar" #: ../src/wxMaximaFrame.cpp:584 msgid "Convert to &Rectform" msgstr "Convirte á forma &cartesiá" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Convirte expresión trigonométrica á forma canónica casi linear" #: ../src/wxMaximaFrame.cpp:600 msgid "Convert trigonometric functions to exponential form" msgstr "Convirte funcións trigonométricas á forma exponencial" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:731 #: ../src/wxMaximaFrame.cpp:800 msgid "Copy" msgstr "Copiar" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Copiar como imaxen" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Copiar LaTeX" #: ../src/wxMaximaFrame.cpp:297 msgid "Copy Previous Input\tCtrl-I" msgstr "&Copiar entrada anterior\tCtrl-I" #: ../src/wxMaximaFrame.cpp:299 msgid "Copy Previous Output\tCtrl-U" msgstr "Copia saída anterior\tCtrl-U" #: ../src/wxMaximaFrame.cpp:242 msgid "Copy as Image" msgstr "Copiar como imaxen" #: ../src/wxMaximaFrame.cpp:238 msgid "Copy as LaTeX" msgstr "Copiar como &LaTeX" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Copiar como &texto\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:234 ../src/wxMaximaFrame.cpp:733 #: ../src/wxMaximaFrame.cpp:803 msgid "Copy selection" msgstr "Copiar selección" #: ../src/wxMaximaFrame.cpp:243 msgid "Copy selection from document as an image" msgstr "Copiar selección do documento como imaxe" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document as text" msgstr "Copiar selección do documento con formato texto" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy selection from document in LaTeX format" msgstr "Copiar selección do documento con formato LaTeX" #: ../src/wxMaximaFrame.cpp:298 msgid "Create a new cell with previous input" msgstr "Crear unha nova cela coa entrada anterior" #: ../src/wxMaximaFrame.cpp:300 msgid "Create a new cell with previous output" msgstr "Crear unha nova cela coa saída anterior" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Cursor" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:728 #: ../src/wxMaximaFrame.cpp:796 msgid "Cut" msgstr "Cortar" #: ../src/wxMaximaFrame.cpp:230 msgid "Cut\tCtrl-X" msgstr "Co&rtar\tCtrl-X" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:730 #: ../src/wxMaximaFrame.cpp:799 msgid "Cut selection" msgstr "Cortar selección" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Checo" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Danés" #: ../src/wxMaxima.cpp:3688 ../src/wxMaxima.cpp:3695 ../src/wxMaxima.cpp:3745 msgid "Data Matrix:" msgstr "Matriz de datos:" #: ../src/wxMaxima.cpp:3715 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Arquivo de datos (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3573 ../src/wxMaxima.cpp:3587 ../src/wxMaxima.cpp:3601 #: ../src/wxMaxima.cpp:3608 ../src/wxMaxima.cpp:3615 ../src/wxMaxima.cpp:3623 #: ../src/wxMaxima.cpp:3630 ../src/wxMaxima.cpp:3637 ../src/wxMaxima.cpp:3644 #: ../src/wxMaxima.cpp:3680 msgid "Data:" msgstr "Datos:" #: ../src/wxMaximaFrame.cpp:520 msgid "Decompose rational function to partial fractions" msgstr "Descompoñer función racional en fraccións simples" #: ../src/Config.cpp:351 msgid "Default" msgstr "Predeterminado" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Tipografía predeterminada:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Porto predeterminado:" #: ../src/wxMaxima.cpp:2318 ../src/wxMaxima.cpp:2327 msgid "Delete" msgstr "Borra" #: ../src/wxMaximaFrame.cpp:370 msgid "Delete F&unction..." msgstr "Borra f&unción" #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Borra selección" #: ../src/wxMaximaFrame.cpp:372 msgid "Delete V&ariable..." msgstr "Borra v&ariable" #: ../src/wxMaximaFrame.cpp:371 msgid "Delete a function" msgstr "Borra unha función" #: ../src/wxMaximaFrame.cpp:373 msgid "Delete a variable" msgstr "Borra unha variable" #: ../src/wxMaximaFrame.cpp:358 msgid "Delete all values from memory" msgstr "Borra todas as variables da memoria" #: ../src/wxMaxima.cpp:2327 msgid "Delete function(s):" msgstr "Borra función(s):" #: ../src/wxMaxima.cpp:2318 msgid "Delete variable(s):" msgstr "Borra variable(s):" #: ../src/wxMaxima.cpp:2926 msgid "Denom. deg:" msgstr "denom deg:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Profundidad:" #: ../src/wxMaxima.cpp:2456 msgid "Derivative:" msgstr "Derivada:" #: ../src/wxMaximaFrame.cpp:1018 msgid "Deviation..." msgstr "Desviación" #: ../src/wxMaximaFrame.cpp:516 msgid "Di&vide Polynomials..." msgstr "Di&vide polinomios" #: ../src/wxMaximaFrame.cpp:983 msgid "Diff..." msgstr "Deriva" #: ../src/wxMaxima.cpp:3069 ../src/wxMaxima.cpp:3912 msgid "Differentiate" msgstr "Deriva" #: ../src/wxMaximaFrame.cpp:486 msgid "Differentiate expression" msgstr "Deriva expresión" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Deriva" #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Dirección:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Gráfico de puntos" #: ../src/wxMaximaFrame.cpp:382 msgid "Display Te&X Form" msgstr "Amosa formato Te&X" #: ../src/wxMaxima.cpp:2267 msgid "Display algorithm" msgstr "Amosa algoritmo" #: ../src/wxMaximaFrame.cpp:383 msgid "Display last result in TeX form" msgstr "Amosa último resultado en formato TeX" #: ../src/wxMaximaFrame.cpp:377 msgid "Display time used for evaluation" msgstr "Amosa tempo de execución" #: ../src/wxMaxima.cpp:2976 msgid "Divide" msgstr "Divide" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Divide cela" #: ../src/wxMaximaFrame.cpp:517 msgid "Divide numbers or polynomials" msgstr "Divide números ou polinomios" #: ../src/wxMaxima.cpp:4437 ../src/wxMaxima.cpp:4449 msgid "Do you want to save the changes you made in the document \"" msgstr "Gárdanse os cambios feitos no documento? \"" #: ../src/wxMaxima.cpp:1078 ../src/wxMaxima.cpp:1086 msgid "Document " msgstr "Documento" #: ../src/Config.cpp:368 msgid "Document background" msgstr "Fondo do documento" #: ../src/wxMaxima.cpp:4442 msgid "Don't save" msgstr "Non guardar" #: ../src/wxMaximaFrame.cpp:434 msgid "E&quations" msgstr "E&cuacións" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "&Sair\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:457 msgid "Eige&nvectors" msgstr "Vectores &propios" #: ../src/wxMaximaFrame.cpp:455 msgid "Eigen&values" msgstr "Va&lores propios" #: ../src/wxMaxima.cpp:2487 msgid "Eliminate" msgstr "Elimina" #: ../src/wxMaximaFrame.cpp:410 msgid "Eliminate a variable from a system of equations" msgstr "Elimina unha variable dun sistema de ecuacións" #: ../src/Config.cpp:243 msgid "English" msgstr "Inglés" #: ../src/wxMaxima.cpp:3601 ../src/wxMaxima.cpp:3608 ../src/wxMaxima.cpp:3615 #: ../src/wxMaxima.cpp:3623 ../src/wxMaxima.cpp:3630 ../src/wxMaxima.cpp:3637 #: ../src/wxMaxima.cpp:3644 ../src/wxMaxima.cpp:3680 ../src/wxMaxima.cpp:3688 msgid "Enter Data" msgstr "Introduce datos" #: ../src/wxMaximaFrame.cpp:1039 msgid "Enter Matrix..." msgstr "Introduce matriz" #: ../src/wxMaximaFrame.cpp:445 msgid "Enter a matrix" msgstr "Introduce unha matriz" #: ../src/wxMaxima.cpp:2877 msgid "Enter an equation for rational simplification:" msgstr "Introduce unha ecuación para a simplificación racional:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Introduce unha lista de variables separadas por comas." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Tecla retorno avalía celas" #: ../src/wxMaxima.cpp:2649 msgid "Enter matrix" msgstr "Introduce matriz" #: ../src/wxMaxima.cpp:3251 msgid "Enter new precision:" msgstr "Introduce nova precisión:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Introduce a ruta ó ejecutable Maxima." #: ../src/wxMaxima.cpp:3123 msgid "Epsilon:" msgstr "Épsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Ecuación %d:" #: ../src/wxMaxima.cpp:2375 ../src/wxMaxima.cpp:2389 ../src/wxMaxima.cpp:2548 #: ../src/wxMaxima.cpp:3865 msgid "Equation(s):" msgstr "Ecuación(s):" #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:2424 ../src/wxMaxima.cpp:2908 #: ../src/wxMaxima.cpp:3696 ../src/wxMaxima.cpp:3879 msgid "Equation:" msgstr "Ecuación:" #: ../src/wxMaxima.cpp:2485 msgid "Equations:" msgstr "Ecuacións:" #: ../src/Config.cpp:488 ../src/wxMaxima.cpp:395 ../src/wxMaxima.cpp:976 #: ../src/wxMaxima.cpp:987 ../src/wxMaxima.cpp:1046 ../src/wxMaxima.cpp:1058 #: ../src/wxMaxima.cpp:1080 ../src/wxMaxima.cpp:1502 ../src/wxMaxima.cpp:1598 #: ../src/wxMaxima.cpp:4084 ../src/wxMaxima.cpp:4340 ../src/wxMaxima.cpp:4385 #: ../src/ImgCell.cpp:101 msgid "Error" msgstr "Erro" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Erro %d" #: ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:1975 ../src/wxMaxima.cpp:2508 #: ../src/wxMaxima.cpp:2532 ../src/wxMaxima.cpp:2643 msgid "Error!" msgstr "Erro!" #: ../src/wxMaximaFrame.cpp:609 msgid "Evaluate &Noun Forms" msgstr "Avalía formas &nominais" #: ../src/wxMaximaFrame.cpp:292 msgid "Evaluate All Cells\tCtrl-R" msgstr "Avalía t&odas as celas\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:290 msgid "Evaluate Cell(s)" msgstr "A&valía cela(s)" #: ../src/wxMaximaFrame.cpp:291 msgid "Evaluate active or selected cell(s)" msgstr "Avalía celas activas ou seleccionadas" #: ../src/wxMaximaFrame.cpp:293 msgid "Evaluate all cells in the document" msgstr "Avalía todas as celas do documento" #: ../src/wxMaximaFrame.cpp:610 msgid "Evaluate all noun forms in expression" msgstr "Avalía todas as formas nominais nunha expresión" #: ../src/wxMaxima.cpp:3516 msgid "Example" msgstr "Exemplo" #: ../src/Config.cpp:1020 ../src/Config.cpp:1112 msgid "Example text" msgstr "Texto de exemplo" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Sae de wxMaxima" #: ../src/wxMaximaFrame.cpp:974 msgid "Expand" msgstr "Expande" #: ../src/wxMaximaFrame.cpp:979 msgid "Expand (tr)" msgstr "Expande (tr)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Expande expresión" #: ../src/wxMaximaFrame.cpp:541 msgid "Expand Logarithms" msgstr "Ex&pande logaritmos" #: ../src/wxMaximaFrame.cpp:540 msgid "Expand an expression" msgstr "Expande unha expresión" #: ../src/wxMaximaFrame.cpp:574 msgid "Expand trigonometric expression" msgstr "Expande expresión trigonométrica" #: ../src/wxMaxima.cpp:1956 msgid "Export" msgstr "&Exporta" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Exporta documento a arquivo HTML ou TeX" #: ../src/wxMaxima.cpp:1975 msgid "Exporting to HTML failed!" msgstr "Fallou a exportación a HTML!" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to TeX failed!" msgstr "Fallou a exportación a TeX!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Expresión" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Expresión(s):" #: ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 ../src/SubstituteWiz.cpp:27 #: ../src/SeriesWiz.cpp:32 ../src/wxMaxima.cpp:2563 ../src/wxMaxima.cpp:2733 #: ../src/wxMaxima.cpp:2989 ../src/wxMaxima.cpp:3004 ../src/wxMaxima.cpp:3033 #: ../src/wxMaxima.cpp:3050 ../src/wxMaxima.cpp:3067 ../src/wxMaxima.cpp:3120 #: ../src/wxMaxima.cpp:3155 ../src/wxMaxima.cpp:3910 ../src/LimitWiz.cpp:26 msgid "Expression:" msgstr "Expresión:" #: ../src/wxMaximaFrame.cpp:973 msgid "Factor" msgstr "Factoriza" #: ../src/wxMaximaFrame.cpp:536 msgid "Factor Complex" msgstr "Factoriza comple&xo" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Factoriza expresión" #: ../src/wxMaximaFrame.cpp:535 msgid "Factor an expression" msgstr "Factoriza unha expresión" #: ../src/wxMaximaFrame.cpp:537 msgid "Factor an expression in Gaussian numbers" msgstr "Factoriza unha expresión en números gaussianos" #: ../src/wxMaximaFrame.cpp:562 msgid "Factorials and &Gamma" msgstr "Factoriais e &gamma" #: ../src/wxMaxima.cpp:256 msgid "Fatal error" msgstr "Erro fatal" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "Figura %d:" #: ../src/main.cpp:107 msgid "File" msgstr "Arquivo" #: ../src/wxMaxima.cpp:4033 msgid "File not found" msgstr "Arquivo non atopado" #: ../src/wxMaxima.cpp:4033 msgid "File you tried to open does not exist." msgstr "O arquivo a abrir non existe." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Arquivo" #: ../src/wxMaximaFrame.cpp:738 msgid "Find" msgstr "Busca" #: ../src/wxMaximaFrame.cpp:251 msgid "Find\tCtrl-F" msgstr "&Busca\tCtrl-F" #: ../src/wxMaximaFrame.cpp:487 msgid "Find &Limit..." msgstr "Calcula &límite" #: ../src/wxMaximaFrame.cpp:490 msgid "Find Minimum..." msgstr "Calcula mínim&o" #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Calcula raíz..." #: ../src/wxMaximaFrame.cpp:491 msgid "Find a (unconstrained) minimum of an expression" msgstr "Calcula mínimo (sen restricións) dunha expresión" #: ../src/wxMaximaFrame.cpp:488 msgid "Find a limit of an expression" msgstr "Calcula o límite dunha expresión" #: ../src/wxMaximaFrame.cpp:393 msgid "Find a root of an equation on an interval" msgstr "Calcula unha raíz dunha ecuación nun intervalo" #: ../src/wxMaximaFrame.cpp:395 msgid "Find all roots of a polynomial" msgstr "Calcula todas as raíces dun polinomio" #: ../src/wxMaximaFrame.cpp:398 msgid "Find all roots of a polynomial (bfloat)" msgstr "Calcula todas as raíces reais dun polinomio" #: ../src/wxMaxima.cpp:2182 msgid "Find and Replace" msgstr "Busca e substitue" #: ../src/wxMaximaFrame.cpp:251 ../src/wxMaximaFrame.cpp:740 #: ../src/wxMaximaFrame.cpp:812 msgid "Find and replace" msgstr "Busca e substitue" #: ../src/wxMaximaFrame.cpp:456 msgid "Find eigenvalues of a matrix" msgstr "Calcula os valores propios dunha matriz" #: ../src/wxMaximaFrame.cpp:458 msgid "Find eigenvectors of a matrix" msgstr "Calcula os vectores propios dunha matriz" #: ../src/wxMaxima.cpp:3125 msgid "Find minimum" msgstr "Calcula mínimo" #: ../src/wxMaximaFrame.cpp:401 msgid "Find real roots of a polynomial" msgstr "Calcula as raíces reais dun polinomio" #: ../src/wxMaxima.cpp:2408 ../src/wxMaxima.cpp:3882 msgid "Find root" msgstr "Calcula raíz" #: ../src/wxMaximaFrame.cpp:809 msgid "Find..." msgstr "Calcula..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Tipografía proporcional en controis de texto" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Tipografía usada no documento." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Tipografía usada para amosar caracteres matemáticos no documento." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Tipografía" #: ../src/Plot3dWiz.cpp:69 ../src/Plot2dWiz.cpp:70 msgid "Format:" msgstr "Formato:" #: ../src/Config.cpp:244 msgid "French" msgstr "Francés" #: ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 ../src/Plot2dWiz.cpp:49 #: ../src/Plot2dWiz.cpp:59 ../src/Plot2dWiz.cpp:548 ../src/SumWiz.cpp:36 #: ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2734 #: ../src/wxMaxima.cpp:3155 msgid "From:" msgstr "Dende:" #: ../src/wxMaximaFrame.cpp:275 msgid "Full Screen\tAlt-Enter" msgstr "P&antalla completa\tAlt-Retorno" #: ../src/wxMaxima.cpp:2289 msgid "Function" msgstr "Función" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Nomes de funcións" #: ../src/wxMaxima.cpp:2548 msgid "Function(s):" msgstr "Función(s):" #: ../src/wxMaxima.cpp:2424 ../src/wxMaxima.cpp:2615 ../src/wxMaxima.cpp:2718 #: ../src/wxMaxima.cpp:2751 msgid "Function:" msgstr "Función:" #: ../src/wxMaximaFrame.cpp:604 msgid "Functions for complex simplification" msgstr "Funcións para a simplificación complexa" #: ../src/wxMaximaFrame.cpp:564 msgid "Functions for simplifying factorials and gamma function" msgstr "Funcións para simplificar factoriais e función gamma" #: ../src/wxMaximaFrame.cpp:581 msgid "Functions for simplifying trigonometric expressions" msgstr "Funcións para simplificar expresións trigonométricas" #: ../src/wxMaxima.cpp:2961 msgid "GCD" msgstr "MCD" #: ../src/wxMaxima.cpp:3995 msgid "GIF image (*.gif)|*.gif" msgstr "Imaxe GIF (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Matemáticas xerais" #: ../src/wxMaximaFrame.cpp:335 msgid "General Math\tAlt-Shift-M" msgstr "&Matemáticas xerais\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2681 ../src/wxMaxima.cpp:2700 msgid "Generate Matrix" msgstr "Xera matriz" #: ../src/wxMaximaFrame.cpp:441 msgid "Generate Matrix from Expression..." msgstr "&Xera matriz a partir de expresión" #: ../src/wxMaximaFrame.cpp:439 msgid "Generate a matrix from a 2-dimensional array" msgstr "Xera unha matriz a partir dunha táboa de 2 dimensións" #: ../src/wxMaximaFrame.cpp:442 msgid "Generate a matrix from a lambda expression" msgstr "Xera unha matriz a partir dunha expresión lambda" #: ../src/Config.cpp:245 msgid "German" msgstr "Alemán" #: ../src/wxMaximaFrame.cpp:593 msgid "Get &Imaginary Part" msgstr "Calcula parte &imaxinaria" #: ../src/wxMaximaFrame.cpp:493 msgid "Get &Series..." msgstr "Calcula &serie" #: ../src/wxMaximaFrame.cpp:504 msgid "Get Laplace transformation of an expression" msgstr "Calcula a transformada de Laplace dunha expresión" #: ../src/wxMaximaFrame.cpp:590 msgid "Get Real P&art" msgstr "Calcula parte &real" #: ../src/wxMaximaFrame.cpp:507 msgid "Get inverse Laplace transformation of an expression" msgstr "Calcula a transformada inversa de Laplace dunha expresión" #: ../src/wxMaximaFrame.cpp:494 msgid "Get the Taylor or power series of expression" msgstr "Calcula o desenvolvemento de Taylor ou serie de potencias da expresión" #: ../src/wxMaximaFrame.cpp:594 msgid "Get the imaginary part of complex expression" msgstr "Calcula a parte imaxinaria dunha expresión complexa" #: ../src/wxMaximaFrame.cpp:591 msgid "Get the real part of complex expression" msgstr "Calcula a parte real dunha expresión complexa" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Grego" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Constantes gregas" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Cuadrícula:" #: ../src/wxMaxima.cpp:1958 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Arquivo HTML (*.html)|*.html|Arquivo TeX (*.tex)|*.tex|Todos|*" #: ../src/wxMaxima.cpp:2679 ../src/wxMaxima.cpp:2698 msgid "Height:" msgstr "Altura:" #: ../src/wxMaximaFrame.cpp:757 ../src/wxMaximaFrame.cpp:830 msgid "Help" msgstr "A&xuda" #: ../src/wxMaximaFrame.cpp:333 msgid "Hide All\tAlt-Shift--" msgstr "&Oculta todo\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:333 msgid "Hide all panes" msgstr "Oculta todos os paneis" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Resalta" #: ../src/wxMaxima.cpp:3574 msgid "Histogram" msgstr "Histograma" #: ../src/wxMaximaFrame.cpp:1030 msgid "Histogram..." msgstr "Histograma" #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Historia" #: ../src/wxMaximaFrame.cpp:337 msgid "History\tAlt-Shift-H" msgstr "&Historia\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "O cursor horizontal funciona como un cursor normal, pero opera con celas: " "pulsar cursores arriba e abaixo para movelo; mantendo pulsada a tecla " "'Maiúscula' mentres se realiza o movimento se seleccionan celas, pulsando " "'Retroceso' ou 'Espazo' dúas veces borrará a cela contigua." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Húngaro" #: ../src/wxMaxima.cpp:2442 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2458 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Se un cálculo leva moito tempo, pódese parar seleccionando 'Maxima-" ">Interrumpir' ou 'Maxima->Reiniciar Maxima' no menú." #: ../src/wxMaximaFrame.cpp:1070 msgid "Image" msgstr "Imaxe" #: ../src/wxMaxima.cpp:4192 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Arquivos gráficos (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3746 msgid "Include columns:" msgstr "Inclúe columnas:" #: ../src/IntegrateWiz.cpp:216 ../src/IntegrateWiz.cpp:226 #: ../src/IntegrateWiz.cpp:235 ../src/IntegrateWiz.cpp:245 #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 msgid "Infinity" msgstr "Infinito" #: ../src/wxMaximaFrame.cpp:668 msgid "Info about Maxima build" msgstr "Información sobre a compilación de Maxima" #: ../src/wxMaxima.cpp:3122 msgid "Initial Estimates:" msgstr "Estimadores iniciais:" #: ../src/wxMaximaFrame.cpp:418 msgid "Initial Value Problem (&1)..." msgstr "Problema de valor inicial (&1)" #: ../src/wxMaximaFrame.cpp:421 msgid "Initial Value Problem (&2)..." msgstr "Problema de valor inicial (&2)" #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Introduce etiquetas" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Inserta" #: ../src/wxMaximaFrame.cpp:312 msgid "Insert &Section Cell\tCtrl-3" msgstr "Nova cela de &sección\tCtrl-3" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert &Text Cell\tCtrl-1" msgstr "Nova cela de te&xto\tCtrl-1" #: ../src/wxMaximaFrame.cpp:338 msgid "Insert Cell\tAlt-Shift-C" msgstr "In&serta cela\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4190 msgid "Insert Image" msgstr "Inserta imaxe" #: ../src/wxMaximaFrame.cpp:318 msgid "Insert Image..." msgstr "I&nserta imaxe" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Input &Cell" msgstr "Nova cela de &entrada" #: ../src/wxMaximaFrame.cpp:316 msgid "Insert Page Break" msgstr "Salto de páxina" #: ../src/wxMaximaFrame.cpp:314 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Nova cela de s&ubsección\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Nova cela de &sección\tF8" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Nova cela de subsección" #: ../src/wxMaximaFrame.cpp:310 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Nova cela de &título\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Nova cela de texto" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Nova cela de título" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a new input cell" msgstr "Nova cela de entrada" #: ../src/wxMaximaFrame.cpp:313 msgid "Insert a new section cell" msgstr "Nova cela de sección" #: ../src/wxMaximaFrame.cpp:315 msgid "Insert a new subsection cell" msgstr "Nova cela de subsección" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert a new text cell" msgstr "Nova cela de texto" #: ../src/wxMaximaFrame.cpp:311 msgid "Insert a new title cell" msgstr "Nova cela de título" #: ../src/wxMaximaFrame.cpp:317 msgid "Insert a page break" msgstr "Salto de páxina" #: ../src/wxMaximaFrame.cpp:319 msgid "Insert image" msgstr "Inserta imaxe" #: ../src/wxMaxima.cpp:2907 msgid "Integral/Sum:" msgstr "Integral/suma:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3020 #: ../src/wxMaxima.cpp:3897 msgid "Integrate" msgstr "Integra" #: ../src/wxMaxima.cpp:3006 msgid "Integrate (risch)" msgstr "Integra (risch)" #: ../src/wxMaximaFrame.cpp:478 msgid "Integrate expression" msgstr "Integra expresión" #: ../src/wxMaximaFrame.cpp:480 msgid "Integrate expression with Risch algorithm" msgstr "Integra expresión con algoritmo Risch" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:984 msgid "Integrate..." msgstr "Integra" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:814 msgid "Interrupt" msgstr "Interrumpe" #: ../src/wxMaximaFrame.cpp:349 ../src/wxMaximaFrame.cpp:353 #: ../src/wxMaximaFrame.cpp:744 ../src/wxMaximaFrame.cpp:817 msgid "Interrupt current computation" msgstr "Interrumpe o cálculo actual" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Entrada non válida para o programa Maxima.\n" "\n" "Por favor, introduza de novo a ruta ó programa Maxima." #: ../src/wxMaxima.cpp:3052 msgid "Inverse Laplace" msgstr "Inversa de Laplace" #: ../src/wxMaximaFrame.cpp:506 msgid "Inverse Laplace T&ransform..." msgstr "Trans&formada inversa de Laplace" #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italiano" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Itálica" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Xaponés" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Mantén o signo porcentual nos símbolos especiais: %e, %i, etc." #: ../src/wxMaxima.cpp:2946 msgid "LCM" msgstr "MCM" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Idioma usado na interface de usuario de wxMaxima." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Idioma:" #: ../src/wxMaxima.cpp:3035 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:503 msgid "Laplace &Transform..." msgstr "&Transformada de Laplace" #: ../src/wxMaximaFrame.cpp:512 msgid "Least Common Multiple..." msgstr "Mí&nimo común múltiplo" #: ../src/wxMaxima.cpp:3698 msgid "Least Squares Fit" msgstr "Axuste por mínimos cadrados" #: ../src/wxMaximaFrame.cpp:1026 msgid "Least Squares Fit..." msgstr "Axuste por mínimos cadrados" #: ../src/wxMaxima.cpp:3107 ../src/LimitWiz.cpp:66 msgid "Limit" msgstr "Límite" #: ../src/wxMaximaFrame.cpp:985 msgid "Limit..." msgstr "Límite" #: ../src/wxMaximaFrame.cpp:1025 msgid "Linear Regression..." msgstr "Regresión linear" #: ../src/wxMaxima.cpp:2718 ../src/wxMaxima.cpp:2751 msgid "List:" msgstr "Lista:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Carga" #: ../src/wxMaxima.cpp:1984 msgid "Load Package" msgstr "Carga paquete" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Carga un arquivo de Maxima usando a instrucion 'batch'" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Carga un paquete de Maxima" #: ../src/Config.cpp:1072 msgid "Load style from file" msgstr "Le estilo dende un arquivo" #: ../src/wxMaxima.cpp:2406 ../src/wxMaxima.cpp:3880 msgid "Lower bound:" msgstr "Cota inferior:" #: ../src/wxMaximaFrame.cpp:471 msgid "Ma&p to Matrix..." msgstr "Distribúe sobre &matriz" #: ../src/wxMaximaFrame.cpp:465 msgid "Make &List..." msgstr "Constrúe &lista" #: ../src/wxMaxima.cpp:2736 msgid "Make list" msgstr "Constrúe lista" #: ../src/wxMaximaFrame.cpp:466 msgid "Make list from expression" msgstr "Constrúe unha lista a partir dunha expresión" #: ../src/wxMaximaFrame.cpp:607 msgid "Make substitution in expression" msgstr "Fai unha substitución nunha expresión" #: ../src/wxMaxima.cpp:2720 msgid "Map" msgstr "Aplica" #: ../src/wxMaximaFrame.cpp:470 msgid "Map function to a list" msgstr "Aplica función a unha lista" #: ../src/wxMaximaFrame.cpp:472 msgid "Map function to a matrix" msgstr "Aplica función a unha matriz" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Fai coincidir parénteses nos controis de texto" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Tipografía matemática:" #: ../src/wxMaxima.cpp:2631 msgid "Matrix" msgstr "Matriz" #: ../src/wxMaxima.cpp:2617 msgid "Matrix map" msgstr "Aplica a matriz" #: ../src/wxMaxima.cpp:3746 msgid "Matrix name:" msgstr "Nome de matriz:" #: ../src/wxMaxima.cpp:2615 ../src/wxMaxima.cpp:2664 msgid "Matrix:" msgstr "Matriz:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:649 msgid "Maxima &Help\tCTRL+?" msgstr "A&xuda de Maxima\tF1" #: ../src/wxMaximaFrame.cpp:652 msgid "Maxima &Help\tF1" msgstr "A&xuda de Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Entrada Maxima" #: ../src/wxMaxima.cpp:467 msgid "Maxima is calculating" msgstr "Maxima está calculando" #: ../src/wxMaxima.cpp:1997 msgid "Maxima package (*.mac)|*.mac" msgstr "Paquete de Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1986 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Paquete Maxima (*.mac)|*.mac|Paquete Lisp (*.lisp)|*.lisp|Todos|*" #: ../src/wxMaxima.cpp:776 msgid "Maxima process terminated." msgstr "Proceso de Maxima terminado." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Programa Maxima:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Opcións de Maxima" #: ../src/wxMaxima.cpp:731 msgid "Maxima started. Waiting for connection..." msgstr "Maxima iniciado. Esperando a conexión..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima utiliza ':' para asignar un valor a unha variable ('a : 3;') e ':=' " "para definir funcións ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3493 msgid "Maxima version: " msgstr "Versión de Maxima: " #: ../src/wxMaximaFrame.cpp:1023 msgid "Mean Difference Test..." msgstr "Contraste de diferenza de medias" #: ../src/wxMaximaFrame.cpp:1022 msgid "Mean Test..." msgstr "Contraste de medias" #: ../src/wxMaximaFrame.cpp:1015 msgid "Mean..." msgstr "Media" #: ../src/wxMaxima.cpp:3651 msgid "Mean:" msgstr "Media:" #: ../src/wxMaximaFrame.cpp:1016 msgid "Median..." msgstr "Mediana" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Une celas" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Método:" #: ../src/wxMaxima.cpp:2887 msgid "Modulus" msgstr "Módulo" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2679 ../src/wxMaxima.cpp:2698 msgid "Name:" msgstr "Nome" #: ../src/wxMaximaFrame.cpp:708 ../src/wxMaximaFrame.cpp:771 msgid "New" msgstr "Novo" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "&Novo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:710 ../src/wxMaximaFrame.cpp:774 msgid "New document" msgstr "Novo documento" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Novo valor:" #: ../src/wxMaxima.cpp:2908 ../src/wxMaxima.cpp:3034 ../src/wxMaxima.cpp:3051 msgid "New variable:" msgstr "Nova variable:" #: ../src/wxMaximaFrame.cpp:323 msgid "Next Command\tAlt-Down" msgstr "Seguinte instrución\tAlt-Abajo" #: ../src/wxMaxima.cpp:2210 ../src/wxMaxima.cpp:2226 msgid "No matches found!" msgstr "Non se atoparon coincidencias!" #: ../src/wxMaximaFrame.cpp:1024 msgid "Normality Test..." msgstr "Contraste de normalidad" #: ../src/wxMaxima.cpp:2643 msgid "Not a valid matrix dimension!" msgstr "A dimensión da matriz non é válida!" #: ../src/wxMaxima.cpp:2508 ../src/wxMaxima.cpp:2532 msgid "Not a valid number of equations!" msgstr "O número de ecuacións é incorrecto!" #: ../src/wxMaxima.cpp:3495 msgid "Not connected." msgstr "Non conectado." #: ../src/wxMaxima.cpp:2925 msgid "Num. deg:" msgstr "num deg:" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Number of equations:" msgstr "Número de ecuacións:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Números" #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 ../src/Plot2dWiz.cpp:560 #: ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 ../src/Plot2dWiz.cpp:659 #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/SumWiz.cpp:46 #: ../src/SumWiz.cpp:50 ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 #: ../src/MatWiz.cpp:187 ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 #: ../src/IntegrateWiz.cpp:62 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/Gen2Wiz.cpp:41 #: ../src/Gen2Wiz.cpp:45 ../src/Gen1Wiz.cpp:33 ../src/Gen1Wiz.cpp:37 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/BC2Wiz.cpp:43 ../src/BC2Wiz.cpp:47 msgid "OK" msgstr "Aceptar" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Valor antigo:" #: ../src/wxMaxima.cpp:2907 ../src/wxMaxima.cpp:3033 ../src/wxMaxima.cpp:3050 msgid "Old variable:" msgstr "Variable antiga:" #: ../src/wxMaxima.cpp:3652 msgid "One sample t-test" msgstr "Contraste t para unha mostra" #: ../src/wxMaximaFrame.cpp:665 msgid "Online tutorials" msgstr "Tutoriais en liña" #: ../src/Config.cpp:306 ../src/main.cpp:202 ../src/wxMaximaFrame.cpp:712 #: ../src/wxMaximaFrame.cpp:776 ../src/wxMaxima.cpp:1931 msgid "Open" msgstr "Abri" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Abre sesión &recente" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "Abre unha cela cando Maxima espera unha entrada" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Abre documento" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Abre nova xanela" #: ../src/wxMaximaFrame.cpp:714 ../src/wxMaximaFrame.cpp:779 msgid "Open document" msgstr "Abre documento" #: ../src/wxMaxima.cpp:3713 msgid "Open matrix" msgstr "Abre matriz" #: ../src/wxMaxima.cpp:965 ../src/wxMaxima.cpp:1032 msgid "Opening file" msgstr "Abrindo arquivo" #: ../src/Config.cpp:97 ../src/wxMaximaFrame.cpp:724 #: ../src/wxMaximaFrame.cpp:791 msgid "Options" msgstr "Opcións" #: ../src/Plot3dWiz.cpp:80 ../src/Plot2dWiz.cpp:81 msgid "Options:" msgstr "Opcións:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Celas obsoletas" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Etiquetas de saída" #: ../src/wxMaximaFrame.cpp:496 msgid "P&ade Approximation..." msgstr "Achegamento de &Padé" #: ../src/wxMaxima.cpp:2100 ../src/wxMaxima.cpp:3979 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "Imaxe PNG (*.png)|*.png|Imaxe JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*." "mbp|pixmap X (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2927 msgid "Pade approximation" msgstr "Achegamento de Padé" #: ../src/wxMaximaFrame.cpp:497 msgid "Pade approximation of a Taylor series" msgstr "Achegamento de Padé dunha serie de Taylor" #: ../src/wxMaximaFrame.cpp:1071 msgid "Pagebreak" msgstr "Salto de páxina" #: ../src/wxMaximaFrame.cpp:341 msgid "Panes" msgstr "&Paneis" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Gráfico paramétrico" #: ../src/wxMaxima.cpp:320 msgid "Parsing output" msgstr "Analizando saída" #: ../src/wxMaximaFrame.cpp:519 msgid "Partial &Fractions..." msgstr "Fracción&s simples" #: ../src/wxMaxima.cpp:2991 msgid "Partial fractions" msgstr "Fraccións simples" #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1155 msgid "Parts of the document will not be loaded correctly!" msgstr "Lectura do documento parcialmente correcta!" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:804 msgid "Paste" msgstr "Pega" #: ../src/wxMaximaFrame.cpp:246 msgid "Paste\tCtrl-V" msgstr "Pe&ga\tCtrl-V" #: ../src/wxMaximaFrame.cpp:736 ../src/wxMaximaFrame.cpp:807 msgid "Paste from clipboard" msgstr "Pega dende o portapapeis" #: ../src/wxMaximaFrame.cpp:247 msgid "Paste text from clipboard" msgstr "Pega texto dende o portapapeis" #: ../src/wxMaximaFrame.cpp:1033 msgid "Piechart..." msgstr "Diagrama de sectores" #: ../src/wxMaxima.cpp:1427 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Configure wxMaxima con 'Edita->Configura'." #: ../src/Config.cpp:934 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Reinicie wxMaxima para que os cambios teñan efecto" #: ../src/wxMaximaFrame.cpp:623 msgid "Plot &2d..." msgstr "Gráficos &2D" #: ../src/wxMaximaFrame.cpp:625 msgid "Plot &3d..." msgstr "Gráficos &3D" #: ../src/wxMaximaFrame.cpp:627 msgid "Plot &Format..." msgstr "&Formato de gráficos" #: ../src/Plot2dWiz.cpp:116 ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 #: ../src/wxMaxima.cpp:3198 ../src/wxMaxima.cpp:3948 msgid "Plot 2D" msgstr "Gráficos 2D" #: ../src/wxMaximaFrame.cpp:987 msgid "Plot 2D..." msgstr "Gráficos 2D" #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "Gráficos 2D" #: ../src/Plot3dWiz.cpp:118 ../src/wxMaxima.cpp:3184 ../src/wxMaxima.cpp:3961 msgid "Plot 3D" msgstr "Gráficos 3D" #: ../src/wxMaximaFrame.cpp:988 msgid "Plot 3D..." msgstr "Gráficos 3D" #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "Gráficos 3D" #: ../src/wxMaxima.cpp:3211 msgid "Plot format" msgstr "Formato dos gráficos" #: ../src/wxMaximaFrame.cpp:624 msgid "Plot in 2 dimensions" msgstr "Gráfico en 2 dimensións" #: ../src/wxMaximaFrame.cpp:626 msgid "Plot in 3 dimensions" msgstr "Gráfico en 3 dimensións" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Gráfico a arquivo:" #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2440 ../src/wxMaxima.cpp:2455 #: ../src/wxMaxima.cpp:2563 ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 #: ../src/BC2Wiz.cpp:35 msgid "Point:" msgstr "Punto:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polaco" #: ../src/wxMaxima.cpp:2944 ../src/wxMaxima.cpp:2959 ../src/wxMaxima.cpp:2974 msgid "Polynomial 1:" msgstr "Polinomio 1:" #: ../src/wxMaxima.cpp:2944 ../src/wxMaxima.cpp:2959 ../src/wxMaxima.cpp:2974 msgid "Polynomial 2:" msgstr "Polinomio 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portugués (Brasileiro)" #: ../src/Plot3dWiz.cpp:461 ../src/Plot2dWiz.cpp:515 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Archivo postscript (*.eps)|*.eps|Todos|*" #: ../src/wxMaxima.cpp:3251 msgid "Precision" msgstr "Precisión" #: ../src/wxMaximaFrame.cpp:280 msgid "Preferences...\tCTRL+," msgstr "Preferencias...\tCTRL+," #: ../src/wxMaximaFrame.cpp:321 msgid "Previous Command\tAlt-Up" msgstr "Instrución anterior\tAlt-Arriba" #: ../src/wxMaximaFrame.cpp:720 ../src/wxMaximaFrame.cpp:786 msgid "Print" msgstr "Imprime" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:722 #: ../src/wxMaximaFrame.cpp:789 msgid "Print document" msgstr "Imprime documento" #: ../src/wxMaxima.cpp:3157 msgid "Product" msgstr "Produto" #: ../src/wxMaximaFrame.cpp:1038 msgid "Read Matrix..." msgstr "Le matriz" #: ../src/wxMaxima.cpp:551 msgid "Reading Maxima output" msgstr "Lendo saída de Maxima" #: ../src/wxMaxima.cpp:364 ../src/wxMaxima.cpp:822 ../src/wxMaxima.cpp:955 #: ../src/wxMaxima.cpp:977 ../src/wxMaxima.cpp:988 ../src/wxMaxima.cpp:1025 #: ../src/wxMaxima.cpp:1048 ../src/wxMaxima.cpp:1060 ../src/wxMaxima.cpp:1081 #: ../src/wxMaxima.cpp:1127 ../src/wxMaxima.cpp:1347 ../src/wxMaxima.cpp:1368 msgid "Ready for user input" msgstr "Preparado para a entrada de usuario" #: ../src/wxMaximaFrame.cpp:324 msgid "Recall next command from history" msgstr "Chama á seguinte instrución do historial" #: ../src/wxMaximaFrame.cpp:322 msgid "Recall previous command from history" msgstr "Chama á instrución anterior do historial" #: ../src/wxMaximaFrame.cpp:975 msgid "Rectform" msgstr "Forma cartesiá" #: ../src/wxMaximaFrame.cpp:226 msgid "Redo\tCtrl-Shift-Z" msgstr "Fai de novo\tCtrl-Shift-Z" #: ../src/wxMaximaFrame.cpp:227 msgid "Redo last change" msgstr "Desfai último cambio" #: ../src/wxMaximaFrame.cpp:980 msgid "Reduce (tr)" msgstr "Reduce (tr)" #: ../src/wxMaximaFrame.cpp:571 msgid "Reduce trigonometric expression" msgstr "Simplifica expresión trigonométrica" #: ../src/wxMaximaFrame.cpp:294 msgid "Remove All Output" msgstr "&Borra todos os resultados" #: ../src/wxMaximaFrame.cpp:295 msgid "Remove output from input cells" msgstr "Borra resultados das celas de entrada" #: ../src/wxMaxima.cpp:2233 #, c-format msgid "Replaced %d occurences." msgstr "Reemplazadas %d coincidencias." #: ../src/wxMaximaFrame.cpp:670 msgid "Report bug" msgstr "Informe de erro" #: ../src/wxMaximaFrame.cpp:356 msgid "Restart Maxima" msgstr "Reinicia maxima" #: ../src/wxMaximaFrame.cpp:479 msgid "Risch Integration..." msgstr "Integración &Risch" #: ../src/wxMaximaFrame.cpp:394 msgid "Roots of &Polynomial" msgstr "Raíces dun &polinomio" #: ../src/wxMaximaFrame.cpp:397 msgid "Roots of Polynomial (bfloat)" msgstr "Raíces reais &grandes dun polinomio" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Filas:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Ruso" #: ../src/wxMaxima.cpp:3665 msgid "Sample 1:" msgstr "Exemplo 1:" #: ../src/wxMaxima.cpp:3665 msgid "Sample 2:" msgstr "Exemplo 2:" #: ../src/wxMaxima.cpp:3651 msgid "Sample:" msgstr "Mostra:" #: ../src/Config.cpp:387 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:780 ../src/wxMaxima.cpp:4442 msgid "Save" msgstr "Garda" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Garda animación" #: ../src/wxMaxima.cpp:1845 msgid "Save As" msgstr "Garda como" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Garda &como\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Garda imaxe..." #: ../src/wxMaxima.cpp:2098 msgid "Save Selection to Image" msgstr "Garda selección en imaxen" #: ../src/wxMaximaFrame.cpp:256 msgid "Save Selection to Image..." msgstr "G&ardar selección en imaxe" #: ../src/wxMaxima.cpp:3993 msgid "Save animation to file" msgstr "Garda animación no arquivo" #: ../src/wxMaxima.cpp:4454 msgid "Save changes before closing?" msgstr "Gárdanse os cambios antes de pechar?" #: ../src/wxMaxima.cpp:4455 msgid "Save changes?" msgstr "Se gardan os cambios?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:717 #: ../src/wxMaximaFrame.cpp:783 msgid "Save document" msgstr "Garda documento" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Garda documento como" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Garda disposición de paneis" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Garda disposición de paneis entre sesións." #: ../src/Plot3dWiz.cpp:459 ../src/Plot2dWiz.cpp:513 msgid "Save plot to file" msgstr "Garda gráfico nun arquivo" #: ../src/wxMaximaFrame.cpp:257 msgid "Save selection from document to an image file" msgstr "Copia selección do documento a imaxe" #: ../src/wxMaxima.cpp:3977 msgid "Save selection to file" msgstr "Garda selección nun arquivo" #: ../src/Config.cpp:1064 msgid "Save style to file" msgstr "Garda estilo en arquivo" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Garda o tamaño/posición da xanela de wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Garda tamaño/posición da xanela de wxMaxima entre sesións." #: ../src/wxMaxima.cpp:3588 msgid "Scatterplot" msgstr "Diagrama dispersión" #: ../src/wxMaximaFrame.cpp:1031 msgid "Scatterplot..." msgstr "Diagrama dispersión" #: ../src/wxMaximaFrame.cpp:1069 msgid "Section" msgstr "Sección" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Cela de sección" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Selecciona todo" #: ../src/wxMaximaFrame.cpp:253 msgid "Select All\tCtrl-A" msgstr "&Selecciona todo\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Selecciona o programa Maxima" #: ../src/wxMaxima.cpp:3749 msgid "Select Subsample" msgstr "Selecciona submostra" #: ../src/IntegrateWiz.cpp:218 ../src/IntegrateWiz.cpp:237 #: ../src/SeriesWiz.cpp:108 ../src/LimitWiz.cpp:134 msgid "Select a constant" msgstr "Selecciona unha constante" #: ../src/wxMaximaFrame.cpp:254 msgid "Select all" msgstr "Selecciona todo" #: ../src/wxMaxima.cpp:2266 msgid "Select math display algorithm" msgstr "Selecciona o formato de saída matemático" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Seleccionando unha parte do resultado e premendo o botón dereito emerxerá un " "menú con funcións que se poderán aplicar sobre a selección." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Selección" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3093 msgid "Series" msgstr "Serie" #: ../src/wxMaximaFrame.cpp:986 msgid "Series..." msgstr "Serie" #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Servidor iniciado" #: ../src/wxMaximaFrame.cpp:641 msgid "Set &Precision..." msgstr "Establece &precisión" #: ../src/wxMaximaFrame.cpp:274 msgid "Set Zoom" msgstr "Establece au&mento" #: ../src/wxMaximaFrame.cpp:642 msgid "Set bigfloat precision" msgstr "Establece a precisión en coma flotante" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Establece tipografía fixa nos controis de texto." #: ../src/wxMaximaFrame.cpp:628 msgid "Set plot format" msgstr "Establece o formato dos gráficos" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 100%" msgstr "Establece ampliación a 100%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 120%" msgstr "Establece ampliación a 120%" #: ../src/wxMaximaFrame.cpp:270 msgid "Set zoom to 150%" msgstr "Establece ampliación a 150%" #: ../src/wxMaximaFrame.cpp:271 msgid "Set zoom to 200%" msgstr "Establece ampliación a 200%" #: ../src/wxMaximaFrame.cpp:272 msgid "Set zoom to 300%" msgstr "Establece ampliación a 300%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 80%" msgstr "Establece disminución a 80%" #: ../src/wxMaximaFrame.cpp:432 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" "Establece condicións iniciais para resolver EDOs mediante a transformada de " "Laplace" #: ../src/wxMaximaFrame.cpp:618 msgid "Setup modulus computation" msgstr "Configura cálculo de módulo" #: ../src/wxMaximaFrame.cpp:365 msgid "Show &Definition..." msgstr "Amosa &definición" #: ../src/wxMaximaFrame.cpp:363 msgid "Show &Functions" msgstr "Amosa &funcións" #: ../src/wxMaximaFrame.cpp:661 msgid "Show &Tips..." msgstr "Amosa &suxerencias" #: ../src/wxMaximaFrame.cpp:368 msgid "Show &Variables" msgstr "Amosa &variables" #: ../src/wxMaximaFrame.cpp:650 ../src/wxMaximaFrame.cpp:653 #: ../src/wxMaximaFrame.cpp:759 ../src/wxMaximaFrame.cpp:833 msgid "Show Maxima help" msgstr "Amosa a axuda de Maxima" #: ../src/wxMaximaFrame.cpp:303 msgid "Show Template\tCtrl-Shift-K" msgstr "&Amosa plantilla\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:662 msgid "Show a tip" msgstr "Amosa unha suxerencia" #: ../src/wxMaxima.cpp:3529 msgid "Show all commands similar to:" msgstr "Amosa todos os comandos similares a:" #: ../src/wxMaxima.cpp:3516 msgid "Show an example for the command:" msgstr "Amosa un exemplo para a instrución:" #: ../src/wxMaximaFrame.cpp:656 msgid "Show an example of usage" msgstr "Amosa un exemplo de uso" #: ../src/wxMaximaFrame.cpp:659 msgid "Show commands similar to" msgstr "Amosa instrucións similares a" #: ../src/wxMaximaFrame.cpp:364 msgid "Show defined functions" msgstr "Amosa as funcións definidas" #: ../src/wxMaximaFrame.cpp:369 msgid "Show defined variables" msgstr "Amosa as variables definidas" #: ../src/wxMaximaFrame.cpp:366 msgid "Show definition of a function" msgstr "Amosa a definición dunha función" #: ../src/wxMaximaFrame.cpp:304 msgid "Show function template" msgstr "Amosa plantilla de función" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Amosa expresións longas" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Amosa expresións longas no documento de wxMaxima." #: ../src/wxMaxima.cpp:2288 msgid "Show the definition of function:" msgstr "Amosa a definición da función:" #: ../src/wxMaximaFrame.cpp:971 msgid "Simplify" msgstr "Simplifica" #: ../src/wxMaximaFrame.cpp:531 msgid "Simplify &Radicals" msgstr "Simplifica &radicais" #: ../src/wxMaximaFrame.cpp:972 msgid "Simplify (r)" msgstr "Simplifica (r)" #: ../src/wxMaximaFrame.cpp:978 msgid "Simplify (tr)" msgstr "Simplifica (tr)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Simplifica expresión" #: ../src/wxMaximaFrame.cpp:557 msgid "Simplify an expression containing factorials" msgstr "Simplifica unha expresión que contén factoriais" #: ../src/wxMaximaFrame.cpp:532 msgid "Simplify expression containing radicals" msgstr "Simplifica unha expresión que contén radicais" #: ../src/wxMaximaFrame.cpp:530 msgid "Simplify rational expression" msgstr "Simplifica expresión racional" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Simplifica a suma" #: ../src/wxMaximaFrame.cpp:568 msgid "Simplify trigonometric expression" msgstr "Simplifica unha expresión trigonométrica" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Dende wxMaxima 0.8.2 pódense inserir imaxes nos documentos. Seleccione 'Cela-" ">Inserir imaxe' no menú. Téñase en conta que debe gardar o documento no " "formato 'Documento xml wxMaxima' se quere que se almacene a imaxe xunto co " "resto do documento." #: ../src/wxMaxima.cpp:2440 ../src/wxMaxima.cpp:2455 ../src/BC2Wiz.cpp:26 msgid "Solution:" msgstr "Solución:" #: ../src/wxMaxima.cpp:2376 ../src/wxMaxima.cpp:2390 ../src/wxMaxima.cpp:3866 msgid "Solve" msgstr "Resolve" #: ../src/wxMaximaFrame.cpp:406 msgid "Solve &Algebraic System..." msgstr "Reso&lve sistema alxébrico" #: ../src/wxMaximaFrame.cpp:403 msgid "Solve &Linear System..." msgstr "Resolve &sistema linear" #: ../src/wxMaximaFrame.cpp:414 msgid "Solve &ODE..." msgstr "Resolve &EDO" #: ../src/wxMaximaFrame.cpp:390 msgid "Solve (to_poly)..." msgstr "Res&olve (to_poly)" #: ../src/wxMaxima.cpp:2426 ../src/wxMaxima.cpp:2550 msgid "Solve ODE" msgstr "Resolve EDO" #: ../src/wxMaximaFrame.cpp:428 msgid "Solve ODE with Lapla&ce..." msgstr "Resolve E&DO con Laplace" #: ../src/wxMaximaFrame.cpp:982 msgid "Solve ODE..." msgstr "Resolve EDO" #: ../src/wxMaxima.cpp:2501 ../src/wxMaxima.cpp:2512 msgid "Solve algebraic system" msgstr "Resolve sistema alxébrico" #: ../src/wxMaximaFrame.cpp:407 msgid "Solve algebraic system of equations" msgstr "Resolve sistema alxébrico de ecuacións" #: ../src/wxMaximaFrame.cpp:425 msgid "Solve boundary value problem for second degree ODE" msgstr "Resolve problema de contorna para unha EDO de segundo orde" #: ../src/wxMaximaFrame.cpp:389 msgid "Solve equation(s)" msgstr "Resolve ecuación(s)" #: ../src/wxMaximaFrame.cpp:391 msgid "Solve equation(s) with to_poly_solver" msgstr "Resolve ecuación con to_poly_solver" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve initial value problem for first degree ODE" msgstr "Resolve problema de valor inicial para EDO de primeiro orde" #: ../src/wxMaximaFrame.cpp:422 msgid "Solve initial value problem for second degree ODE" msgstr "Resolve problema de valor inicial para EDO de segundo orde" #: ../src/wxMaxima.cpp:2525 ../src/wxMaxima.cpp:2536 msgid "Solve linear system" msgstr "Resolve sistema linear" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve linear system of equations" msgstr "Resolve sistema de ecuacións lineares" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Resolve ecuación diferencial ordinaria de orden máximo 2" #: ../src/wxMaximaFrame.cpp:429 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Resolve ecuacións diferenciais ordinarias ca transformada de Laplace" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:981 msgid "Solve..." msgstr "Resolve" #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Español" #: ../src/IntegrateWiz.cpp:46 ../src/IntegrateWiz.cpp:50 #: ../src/SeriesWiz.cpp:41 ../src/LimitWiz.cpp:35 msgid "Special" msgstr "Especial" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Constantes especiais" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Comeza animación" #: ../src/wxMaximaFrame.cpp:746 ../src/wxMaximaFrame.cpp:748 msgid "Start animation" msgstr "Comeza animación" #: ../src/wxMaxima.cpp:265 msgid "Starting Maxima process failed" msgstr "Fallou o inicio de Maxima" #: ../src/wxMaxima.cpp:728 msgid "Starting Maxima..." msgstr "Iniciando Maxima..." #: ../src/wxMaxima.cpp:263 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Fallou o inicio do servidor" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Iniciando servidor no puerto %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Estatística" #: ../src/wxMaximaFrame.cpp:336 msgid "Statistics\tAlt-Shift-S" msgstr "&Estatística\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:749 ../src/wxMaximaFrame.cpp:751 #: ../src/wxMaximaFrame.cpp:822 msgid "Stop animation" msgstr "Para animación" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Cadeas" #: ../src/Config.cpp:99 msgid "Style" msgstr "Estilo" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Estilos" #: ../src/wxMaximaFrame.cpp:1043 msgid "Subsample..." msgstr "Submostra" #: ../src/wxMaximaFrame.cpp:1068 msgid "Subsection" msgstr "Subsección" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Cela de subsección" #: ../src/wxMaximaFrame.cpp:976 msgid "Subst..." msgstr "S&ubstitúe" #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2338 #: ../src/wxMaxima.cpp:3935 msgid "Substitute" msgstr "Substitúe" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:606 msgid "Substitute..." msgstr "Substitúe" #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3141 msgid "Sum" msgstr "Suma" #: ../src/wxMaxima.cpp:3365 msgid "System info" msgstr "Información do sistema" #: ../src/wxMaxima.cpp:2925 msgid "Taylor series:" msgstr "Serie de Taylor:" #: ../src/wxMaxima.cpp:2878 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1066 msgid "Text" msgstr "Texto" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Cela de texto" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Fondo de cela de texto" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Porto predeterminado para comunicación entre Maxima e wxMaxima" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Hai moitos recursos sobre Maxima e wxMaxima en Internet. Visítese http://" "wxmaxima.sourceforge.net/wiki/index.php/Tutorials para máis información " "sobre como utilizar wxMaxima e Maxima." #: ../src/wxMaxima.cpp:394 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Houbo un erro no XML xerado!\n" "\n" "Prégase informar deste erro." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Houbo un erro durante a exportación a GIF!\n" "\n" "Asegúrese que ImageMagick está instalado e que wxMaxima ten acceso ó " "programa 'convert'." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Marcas de eixes:" #: ../src/wxMaxima.cpp:3068 ../src/wxMaxima.cpp:3911 msgid "Times:" msgstr "Veces:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Suxerencia non dispoñible, síntoo!" #: ../src/wxMaximaFrame.cpp:1067 msgid "Title" msgstr "Título" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Cela de título" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "As celas de título, sección e subsección pódense plegar para ocultar os sus " "contidos. Tanto para plegalas como para desplegalas fágase clic no cadrado " "contiguo á cela. Se ó mesmo tempo se preme 'Maiúsculas', todos os subniveis " "serán pregados/despregados." #: ../src/wxMaximaFrame.cpp:638 msgid "To &Bigfloat" msgstr "A real grande (&bigfloat)" #: ../src/wxMaximaFrame.cpp:635 msgid "To &Float" msgstr "A &real" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "A real" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Para representar en coordenadas polares, seleccione 'set polar' na entrada " "de Opcións de cadro de diálogo de Plot2D. Tamén se puede representar en " "coordenadas esféricas e cilíndricas en 3D." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Para colocar parénteses arrededor dunha expresión, selecciónese esta e " "presiónese '(' o ')', dependendo de onde quere que se coloque o cursor." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Para gardar o tamaño e a posición da xanela de wxMaxima entre sesións, " "utilícese 'Edita->Configura'." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Para comezar a utilizar wxMaxima axiña, comece premendo una instrución. " "Aparecerá unha cela de entrada. Prema 'Maiúsculas-Retorno' para iniciar o " "cálculo." #: ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 ../src/Plot2dWiz.cpp:52 #: ../src/Plot2dWiz.cpp:62 ../src/Plot2dWiz.cpp:551 ../src/SumWiz.cpp:39 #: ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2734 #: ../src/wxMaxima.cpp:3156 msgid "To:" msgstr "Ata:" #: ../src/wxMaximaFrame.cpp:612 msgid "Toggle &Algebraic Flag" msgstr "Conmuta álxe&bra" #: ../src/wxMaximaFrame.cpp:633 msgid "Toggle &Numeric Output" msgstr "Conmuta saída &numérica" #: ../src/wxMaximaFrame.cpp:376 msgid "Toggle &Time Display" msgstr "Conmuta pantalla de &tempo" #: ../src/wxMaximaFrame.cpp:613 msgid "Toggle algebraic flag" msgstr "Conmuta álge&bra" #: ../src/wxMaximaFrame.cpp:276 msgid "Toggle full screen editing" msgstr "Conmuta edición de pantalla completa" #: ../src/wxMaximaFrame.cpp:634 msgid "Toggle numeric output" msgstr "Conmuta saída numérica" #: ../src/wxMaximaFrame.cpp:340 msgid "Toolbar\tAlt-Shift-T" msgstr "&Barra de ferramentas\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3377 msgid "Toolbar icons" msgstr "Iconas da barra de ferramentas" #: ../src/wxMaxima.cpp:3378 msgid "Translated by" msgstr "Traducido por" #: ../src/wxMaximaFrame.cpp:463 msgid "Transpose a matrix" msgstr "Transpón unha matriz" #: ../src/wxMaximaFrame.cpp:664 msgid "Tutorials" msgstr "&Tutoriais" #: ../src/wxMaxima.cpp:3667 msgid "Two sample t-test" msgstr "Contrataste t de dúas mostras" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Tipo:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ucraíno" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Subraiado" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "D&esfacer\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Desfacer último cambio" #: ../src/wxMaxima.cpp:3367 msgid "Unicode Support" msgstr "Soporte Unicode" #: ../src/wxMaxima.cpp:4369 ../src/wxMaxima.cpp:4376 msgid "Upgrade" msgstr "Actualiza" #: ../src/wxMaxima.cpp:2406 ../src/wxMaxima.cpp:3880 msgid "Upper bound:" msgstr "Cota superior:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Usa algoritmo Gosper" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Usa punto centrado como operador de multiplicación" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Utiliza tipografía jsMath" #: ../src/wxMaxima.cpp:2440 ../src/wxMaxima.cpp:2456 ../src/wxMaxima.cpp:2564 #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 msgid "Value:" msgstr "Valor:" #: ../src/wxMaxima.cpp:2375 ../src/wxMaxima.cpp:2389 ../src/wxMaxima.cpp:3067 #: ../src/wxMaxima.cpp:3865 ../src/wxMaxima.cpp:3910 msgid "Variable(s):" msgstr "Incógnita(s):" #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 ../src/Plot2dWiz.cpp:46 #: ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 ../src/SumWiz.cpp:33 #: ../src/IntegrateWiz.cpp:39 ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2405 #: ../src/wxMaxima.cpp:2424 ../src/wxMaxima.cpp:2664 ../src/wxMaxima.cpp:2733 #: ../src/wxMaxima.cpp:2989 ../src/wxMaxima.cpp:3004 ../src/wxMaxima.cpp:3155 #: ../src/wxMaxima.cpp:3879 ../src/LimitWiz.cpp:29 msgid "Variable:" msgstr "Variable:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Variables" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2486 ../src/wxMaxima.cpp:3121 #: ../src/wxMaxima.cpp:3696 msgid "Variables:" msgstr "Variables:" #: ../src/wxMaximaFrame.cpp:1017 msgid "Variance..." msgstr "Varianza" #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1088 ../src/wxMaxima.cpp:1155 #: ../src/wxMaxima.cpp:1425 msgid "Warning" msgstr "Aviso" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Benvido a wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Cando se aplican funcións cun argumento dende o menú, o argumento " "predeterminado é '%'. Para aplicar a función a outro valor, seleccióneo no " "documento antes de executar a instrución do menú." #: ../src/wxMaxima.cpp:2679 ../src/wxMaxima.cpp:2698 msgid "Width:" msgstr "Ancho:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Escribe parénteses coincidentes nos controis de texto." #: ../src/wxMaxima.cpp:3374 msgid "Written by" msgstr "Escrito por" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Pódese acceder á última saída facendo uso da variable '%' . Asemade, pódese " "acceder ás saídas das instrucións previas usando as variables '%on', onde n " "é o número de etiqueta da saída." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Pode avaliar o documento completo seleccionando 'Cela-> Avalía todas as " "celas' no menú. As celas avaliaranse na orde na que aparecen no documento." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Pódese obter información sobre unha función de Maxima resaltando ou facendo " "clic sobre o seu nome e premendo F1. wxMaxima buscará a axuda correspondente " "á palabra baixo o cursor." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Pódese ocultar a parte do resultado dunha cela facendo clic sobre o " "triángulo á súa esquerda. Isto tamén é aplicable ás celas de texto." #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Pódense incluir diferentes tipos de celas nun documento de wxMaxima " "seleccionando no menú 'Cela'. Téñase en conta que só se poden avaliar celas " "de entrada, mentres que o resto se utilizan para comentarios e estruturar o " "documento." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Pódense seleccionar varias celas, ben co rato, faciendo clic e arrastrando " "entre celas ou corchetes de celas, ben co teclado, mantendo pulsada a tecla " "de Maiúsculas mentres se move o cursor horizontal, para logo operar sobre a " "selección. Isto será útil cando se queiran borrar ou avaliar varias celas a " "un tempo." #: ../src/wxMaxima.cpp:4366 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Ten instalada a versión %s. A versión actual é %s.\n" "\n" "Selecciónese OK para acceder á páxina de wxMaxima." #: ../src/wxMaxima.cpp:4441 ../src/wxMaxima.cpp:4448 msgid "Your changes will be lost if you don't save them." msgstr "Perderanse os cambios se non se gardan." #: ../src/wxMaxima.cpp:4376 msgid "Your version of wxMaxima is up to date." msgstr "A versión de wxMaxima está actualizada" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom &In\tAlt-I" msgstr "Ampl&iar\tAlt-I" #: ../src/wxMaximaFrame.cpp:263 msgid "Zoom Ou&t\tAlt-O" msgstr "&Disminuir\tAlt-O" #: ../src/wxMaximaFrame.cpp:262 msgid "Zoom in 10%" msgstr "Disminuir 10%" #: ../src/wxMaximaFrame.cpp:264 msgid "Zoom out 10%" msgstr "Ampliar 10%" #: ../src/wxMaxima.cpp:2124 ../src/wxMaxima.cpp:2132 msgid "Zoom set to " msgstr "Establece ampliación a " #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4229 msgid "[ unsaved ]" msgstr "[non gardado]" #: ../src/wxMaxima.cpp:4231 msgid "[ unsaved* ]" msgstr "[non gardado*]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antisimétrica" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "ambos os dous lados" #: ../src/Plot3dWiz.cpp:72 ../src/Plot3dWiz.cpp:388 ../src/Plot2dWiz.cpp:73 #: ../src/Plot2dWiz.cpp:398 msgid "default" msgstr "predeterminado" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonal" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "xeral" #: ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 ../src/Plot3dWiz.cpp:388 #: ../src/Plot3dWiz.cpp:419 ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 #: ../src/Plot2dWiz.cpp:398 ../src/Plot2dWiz.cpp:431 msgid "inline" msgstr "en liña" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "esquerda" #: ../src/EditorCell.cpp:331 msgid "lines hidden" msgstr "liñas agochadas" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "escala logarítmica" #: ../src/wxMaxima.cpp:2698 msgid "matrix[i,j]:" msgstr "matriz[i,j]:" #: ../src/wxMaxima.cpp:3438 msgid "no" msgstr "non" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "dereita" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "simétrica" #: ../src/wxMaxima.cpp:4426 msgid "unsaved" msgstr "non gardado" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1840 #: ../src/wxMaxima.cpp:1953 msgid "untitled" msgstr "sen título" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "sen título %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3449 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4229 #: ../src/wxMaxima.cpp:4231 ../src/wxMaxima.cpp:4240 ../src/wxMaxima.cpp:4243 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Configuración de wxMaxima" #: ../src/wxMaxima.cpp:1423 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima non puido atopar Maxima!\n" "\n" "Configure wxMaxima con 'Edita->Configura.\n" "A continuación inicie Maxima con 'Maxima->Reinicia maxima'." #: ../src/wxMaxima.cpp:1596 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima non puido atopar os arquivos de axuda.\n" "Comprobe a súa instalación." #: ../src/wxMaxima.cpp:1500 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima non puido atopar os arquivos de suxerencias.\n" "\n" "Comprobe a súa instalación." #: ../src/wxMaxima.cpp:253 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima non puido iniciar o servidor.\n" "\n" "Verifique se dispón de soporte de rede\n" "activado e inténteo de novo!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "Nos cadros de diálogo de wxMaxima aparecen entradas predeterminadas, unha " "das cales é '%'. Se fixo unha selección no documento, esta será utilizada en " "lugar de '%'." #: ../src/wxMaxima.cpp:1678 msgid "wxMaxima document" msgstr "Documento wxMaxima" #: ../src/wxMaxima.cpp:1847 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "Documento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|" "Arquivo de Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1933 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "Documento wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:976 ../src/wxMaxima.cpp:987 ../src/wxMaxima.cpp:1046 #: ../src/wxMaxima.cpp:1058 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima atopou un erro durante a carga " #: ../src/wxMaxima.cpp:3376 msgid "wxMaxima icon" msgstr "Icona de wxMaxima" #: ../src/wxMaxima.cpp:3364 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima é unha interface gráfica de usuario para o Sistema de Álxebra " "Simbólica (CAS) Maxima, basado en wxWidgets." #: ../src/wxMaxima.cpp:3430 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima é unha interface gráfica de usuario para o Sistema de Álxebra " "Simbólica (CAS) Maxima, basado en wxWidgets." #: ../src/wxMaxima.cpp:3436 msgid "yes" msgstr "si" #~ msgid "&Cell" #~ msgstr "Ce&la" #~ msgid "&New Window\tCtrl-N" #~ msgstr "&Nova xanela\tCtrl-N" #~ msgid "Close document?" #~ msgstr "Pecha documento?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Documento non gardado!\n" #~ "\n" #~ "Pecha o documento actual e perde todos os cambios?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Documento non gardado!\n" #~ "\n" #~ "Abandonar wxMaxima e perder todos os cambios?" #~ msgid "Maxima options" #~ msgstr "Opcións de Maxima" #~ msgid "Quit?" #~ msgstr "Sae?" #~ msgid "wxMaxima options" #~ msgstr "Opcións de wxMaxima" #~ msgid "Mean" #~ msgstr "Media" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima é unha interface gráfica de usuario para \n" #~ "o Sistema de Cálculo Simbólico Maxima, basado en wxWidgets." #~ msgid "<< Nothing to display >>" #~ msgstr "<< Nada que amosar >>" #~ msgid "Functions and macros" #~ msgstr "Funcións e macros" #~ msgid "Inspector" #~ msgstr "Inspector" #~ msgid "Inspector\tAlt-Shift-I" #~ msgstr "&Inspector\tAlt-Shift-I" #~ msgid "Labels" #~ msgstr "Etiquetas" #~ msgid "Autocomplete" #~ msgstr "Autocompletar" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "Copia selección ó portapapeis cando se faga no documento." #~ msgid "Copy to clipboard on select" #~ msgstr "Copia a selección ó portapapeis" #~ msgid "Input" #~ msgstr "Entrada" #~ msgid "Save document as ..." #~ msgstr "Garda documento como ..." #~ msgid "Show Maxima header" #~ msgstr "Amosa encabezamento de Maxima" #~ msgid "Show initial header with Maxima system information." #~ msgstr "Amosa encabezamento inicial con información de Maxima." #~ msgid "Adjustment for the size of greek font." #~ msgstr "Axuste para o tamaño da tipografía grega" #~ msgid "Adjustment:" #~ msgstr "Axuste:" #~ msgid "Basic" #~ msgstr "Básico" #~ msgid "Button panel:" #~ msgstr "Panel de botóns:" #~ msgid "Copy selected cell(s)" #~ msgstr "Copia cela(s) seleccionada(s)" #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr "Corta Cela(s)\tCtrl-Shift-X" #~ msgid "Decrease fontsize in document" #~ msgstr "Disminúe o tamaño da tipografía no documento" #~ msgid "Delete selected cell(s)" #~ msgstr "Borra cela(s) seleccionada(s)" #~ msgid "Delete selection" #~ msgstr "Borra selección" #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr "Tipografía usada para amosar glifos unicode no documento." #~ msgid "Full" #~ msgstr "Completo" #~ msgid "Increase fontsize in document" #~ msgstr "Aumenta o tamaño da tipografía do documento." #~ msgid "Insert input cell" #~ msgstr "Insire cela de entrada" #~ msgid "Insert input group" #~ msgstr "Insire grupo de entrada" #~ msgid "Insert text" #~ msgstr "Insire texto" #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr "Cela de novo t&ítulo\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "Desactivado" #~ msgid "Paste cell(s) to document" #~ msgstr "Pega cela(s) ó documento" #~ msgid "Product..." #~ msgstr "Produto" #~ msgid "Select file to open" #~ msgstr "Selecciona arquivo para abrir" #~ msgid "Sum..." #~ msgstr "Suma" #~ msgid "To &Float\tCtrl-F" #~ msgstr "A real \tCtrl-F" #~ msgid "Use greek font to display greek characters." #~ msgstr "Usa tipografía grega para amosar caracteres gregos." #~ msgid "Use greek font:" #~ msgstr "Usa tipografía grega:" #~ msgid "untitled.wxm" #~ msgstr "sennome.wxm" #~ msgid "wxMaxima session (*.wxm)|*.wxm" #~ msgstr "Sesión de wxMaxima (*.wxm)|*.wxm" #~ msgid "aquamarine" #~ msgstr "augamariña" #~ msgid "black" #~ msgstr "negro" #~ msgid "blue" #~ msgstr "azul" #~ msgid "blue violet" #~ msgstr "azul violeta" #~ msgid "brown" #~ msgstr "marrón" #~ msgid "cadet blue" #~ msgstr "azul cadete" #~ msgid "coral" #~ msgstr "coral" #~ msgid "cornflower blue" #~ msgstr "azulina" #~ msgid "cyan" #~ msgstr "cyan" #~ msgid "dark green" #~ msgstr "verde escuro" #~ msgid "dark grey" #~ msgstr "gris escuro" #~ msgid "dark olive green" #~ msgstr "verde oliva escuro" #~ msgid "dark orchid" #~ msgstr "orquídea escuro" #~ msgid "dark slate blue" #~ msgstr "azul lousa escuro" #~ msgid "dark slate grey" #~ msgstr "gris lousa escuro" #~ msgid "dark turquoise" #~ msgstr "turquesa escuro" #~ msgid "dim grey" #~ msgstr "gris claro" #~ msgid "firebrick" #~ msgstr "tella" #~ msgid "forest green" #~ msgstr "verde fraga" #~ msgid "gold" #~ msgstr "ouro" #~ msgid "goldenrod" #~ msgstr "barra de ouro" #~ msgid "green yellow" #~ msgstr "verde amarelo" #~ msgid "grey" #~ msgstr "gris" #~ msgid "khaki" #~ msgstr "caqui" #~ msgid "light blue" #~ msgstr "azul claro" #~ msgid "light grey" #~ msgstr "gris claro" #~ msgid "light steel blue" #~ msgstr "azul aceiro claro" #~ msgid "lime green" #~ msgstr "verde lima" #~ msgid "maroon" #~ msgstr "granate" #~ msgid "medium aquamarine" #~ msgstr "augamariña medio" #~ msgid "medium blue" #~ msgstr "azul medio" #~ msgid "medium forrest green" #~ msgstr "verde fraga medio" #~ msgid "medium goldenrod" #~ msgstr "barra de ouro medio" #~ msgid "medium orchid" #~ msgstr "orquídea medio" #~ msgid "medium sea green" #~ msgstr "verde mar medio" #~ msgid "medium slate blue" #~ msgstr "azul lousa medio" #~ msgid "medium spring green" #~ msgstr "verde primavera medio" #~ msgid "medium turquoise" #~ msgstr "turquesa medio" #~ msgid "medium violet red" #~ msgstr "vermello violeta medio" #~ msgid "midnight blue" #~ msgstr "azul medianoite" #~ msgid "navy" #~ msgstr "mariña" #~ msgid "orange" #~ msgstr "laranxa" #~ msgid "orange red" #~ msgstr "vermello alaranxado" #~ msgid "orchid" #~ msgstr "orquídea" #~ msgid "pale green" #~ msgstr "verde pálido" #~ msgid "pink" #~ msgstr "rosa" #~ msgid "plum" #~ msgstr "cirola" #~ msgid "purple" #~ msgstr "morado" #~ msgid "red" #~ msgstr "vermello" #~ msgid "salmon" #~ msgstr "salmón" #~ msgid "sea green" #~ msgstr "verde mar" #~ msgid "sienna" #~ msgstr "siena" #~ msgid "sky blue" #~ msgstr "azul ceo" #~ msgid "spring green" #~ msgstr "verde primavera" #~ msgid "steel blue" #~ msgstr "azul aceiro" #~ msgid "tan" #~ msgstr "tan" #~ msgid "thistle" #~ msgstr "cardo" #~ msgid "turquoise" #~ msgstr "turquesa" #~ msgid "violet" #~ msgstr "violeta" #~ msgid "wheat" #~ msgstr "trigo" #~ msgid "white" #~ msgstr "branco" #~ msgid "yellow" #~ msgstr "amarelo" #~ msgid "yellow green" #~ msgstr "verde amarelo" #~ msgid " << Unfold >>" #~ msgstr " << Desprega >>" #~ msgid "Background" #~ msgstr "Fondo" #~ msgid "Copy cells" #~ msgstr "Copia celas" #~ msgid "Cut selection from document" #~ msgstr "Corta selección do documento" #~ msgid "Evaluate cell\tShift-Enter" #~ msgstr "Avalía cela\tShift-Enter" #~ msgid "Export to HTML file" #~ msgstr "Exportar a un arquivo HTML" #~ msgid "Hidden groups" #~ msgstr "Grupos ocultos" #~ msgid "Integrate ..." #~ msgstr "Integra" #~ msgid "Main prompts" #~ msgstr "Indicadores principais" #~ msgid "Open session from a file" #~ msgstr "Abre sesión dende un arquivo" #~ msgid "Other prompts" #~ msgstr "Outros indicadores" #~ msgid "Save session" #~ msgstr "Garda sesión" #~ msgid "Save session to a file" #~ msgstr "Garda sesión nun arquivo" #~ msgid "Save to file" #~ msgstr "Garda nun arquivo" #~ msgid "Select package to load" #~ msgstr "Selecciona paquete para cargar" #~ msgid "Substitute ..." #~ msgstr "Substitue" #~ msgid "wxMaxima session" #~ msgstr "Sesión de wxMaxima" #~ msgid "&Copy" #~ msgstr "&Copia" #~ msgid "&Describe\tCtrl-H" #~ msgstr "&Describe\tCtrl-H" #~ msgid "&Edit input\tCtrl-E" #~ msgstr "E&dita entrada\tCtrl-E" #~ msgid "&Input\tF7" #~ msgstr "&Entrada\tF7" #~ msgid "&Monitor file" #~ msgstr "&Monitoriza arquivo" #~ msgid "&Re-evaluate input\tCtrl-R" #~ msgstr "&Re-calcula entrada\tCtrl-R" #~ msgid "&Read file" #~ msgstr "Le &arquivo" #~ msgid "&Text\tF6" #~ msgstr "&Texto\tF6" #~ msgid "" #~ "All|*|Maxima package (*.mac)|*.mac|Demo file (*.dem)|*.dem|Lisp file (*." #~ "lisp)|*.lisp" #~ msgstr "" #~ "Todos|*|Paquete maxima(*.mac)|*.mac|Arquivo demo (*.dem)|*.dem|Arquivo " #~ "lisp (*.lisp)|*.lisp" #~ msgid "Autoload a file when it is updated" #~ msgstr "Autocarga un arquivo cando sexa actualizado" #~ msgid "C&lear screen" #~ msgstr "&Limpa pantalla" #~ msgid "Copy input" #~ msgstr "Copia entrada" #~ msgid "Copy input from console" #~ msgstr "Copia entrada dende documento" #~ msgid "Copy selection from console to input line" #~ msgstr "Copia selección da consola á liña de entrada" #~ msgid "Copy to input" #~ msgstr "Copia na entrada" #~ msgid "Delete selected input/output group" #~ msgstr "Borra grupo de entrada/saída seleccionado" #~ msgid "Delete the contents of console." #~ msgstr "Borra os contidos da consola." #~ msgid "Describe" #~ msgstr "Describe" #~ msgid "Edit input" #~ msgstr "Edita entrada" #~ msgid "Edit selected input" #~ msgstr "Edita a entrada seleccionada" #~ msgid "Edit text" #~ msgstr "Edita texto" #~ msgid "Enter command" #~ msgstr "Introduce comando" #~ msgid "Go to input\tCtrl-Shift-D" #~ msgstr "Vai a\tCtrl-Shift-D" #~ msgid "Go to input\tF4" #~ msgstr "Vai á entrada\tF4" #~ msgid "Go to output window\tF3" #~ msgstr "Vai á xanela de saída\tF3" #~ msgid "I&nsert" #~ msgstr "I&nsire" #~ msgid "INPUT:" #~ msgstr "ENTRADA:" #~ msgid "" #~ "If you want to input more than one line at a time, use the 'Multiline " #~ "input' button at the right of the input line." #~ msgstr "" #~ "Se desexa introducir máis dunha liña á vez, utilice o botón \"Entrada " #~ "multiliña\" á dereita da liña de entrada." #~ msgid "Insert new input before selected input" #~ msgstr "Insire nova entrada antes da entrada seleccionada" #~ msgid "Insert section before selected input" #~ msgstr "Insire sección antes da entrada seleccionada" #~ msgid "Insert text before selected input" #~ msgstr "Insire texto antes da entrada seleccionada" #~ msgid "Insert title before selected input" #~ msgstr "Insire título antes da entrada seleccionada" #~ msgid "" #~ "Instead of typing a long pathname of a file to input line, you can select " #~ "that file using 'File->Select file'." #~ msgstr "" #~ "En lugar de introducir unha ruta longa para un arquivo, pode seleccionar " #~ "ese arquivo utilizando 'Arquivo->Selecciona arquivo'." #~ msgid "Multiline input" #~ msgstr "Entrada multiliña" #~ msgid "Open multiline input dialog" #~ msgstr "Abre diálogo de entrada multiliña" #~ msgid "Paste input" #~ msgstr "Pega entrada" #~ msgid "Paste input to console" #~ msgstr "Pega entrada na consola" #~ msgid "Re-evaluate all\tCtrl-Shift-R" #~ msgstr "&Re-calcula todo\tCtrl-Shift-R" #~ msgid "Re-evaluate all input" #~ msgstr "Re-calcula todas as entradas" #~ msgid "Re-evaluate input" #~ msgstr "Re-calcula entrada" #~ msgid "Read file from command line" #~ msgstr "Le arquivo dende liña de comandos" #~ msgid "Select &file" #~ msgstr "Selecciona &arquivo" #~ msgid "Select a file" #~ msgstr "Seleccionar un archivo" #~ msgid "Select a file (copy filename to input line)" #~ msgstr "Selecciona un arquivo (copia o nome do arquivo na liña de entrada)" #~ msgid "Select last input\tCtrl-D" #~ msgstr "Selecciona a última entrada\tCtrl-D" #~ msgid "Select last input\tF2" #~ msgstr "Selecciona a última entrada\tF2" #~ msgid "Select last input in the colsole!" #~ msgstr "Selecciona a última entrada da consola" #~ msgid "Select last input in the console!" #~ msgstr "Selecciona a última entrada da consola" #~ msgid "Selection to input\tCtrl-Shift-E" #~ msgstr "Selección a entrada\tCtrl-Shift-E" #~ msgid "Selection to input\tF5" #~ msgstr "Selección a entrada\tF5" #~ msgid "Set focus to the input line" #~ msgstr "Pon o foco na liña de entrada" #~ msgid "Set focus to the output window" #~ msgstr "Pon o foco na xanela de saída" #~ msgid "Show the description of a command" #~ msgstr "Amosa a descripción dunha instrución" #~ msgid "Show the description of command/variable:" #~ msgstr "Amosa a descripción dunha instrución/variable:" #~ msgid "" #~ "To enter a matrix A, type 'A : ' to input line and select 'Algebra->Enter " #~ "matrix' from menus." #~ msgstr "" #~ "Para inserir unha matriz A, escriba 'A:' na liña de entrada e seleccione " #~ "'Álxebra->Introduce matriz' do menú" #~ msgid "" #~ "To put parenthesis around an expression you previously typed into the " #~ "input line, select the expression with mouse and then type '('." #~ msgstr "" #~ "Para poñer parénteses a unha expresión previamente escrita na liña de " #~ "entrada, seleccione a expresión co rato e entón escriba '('." #~ msgid "" #~ "To repeat a long command you previously entered in the input line, type " #~ "in the first few letters to the input line and then pres tab key." #~ msgstr "" #~ "Para repetir un comando longo previamente inserido, escriba as primeiras " #~ "letras do mesmo na liña de entrada e prema a tecla tabulador." #~ msgid "" #~ "You can delete output/input group if you select the input label and " #~ "choose 'Edit->Delete selection' from menus." #~ msgstr "" #~ "Pódese eliminar un grupo entrada/saída se se selecciona a etiqueta de " #~ "entrada e elixe 'Edita->Elimina selección' dos menús." #~ msgid "" #~ "You can hide the output by clicking on the output label. Clicking on the " #~ "input label hides input and output. Clicking on the label again, shows " #~ "hidden expressions." #~ msgstr "" #~ "Pódese ocultar a saída faciendo clic na etiqueta de saída. Facendo clic " #~ "outra vez na etiqueta, amósanse as expresións ocultas." #~ msgid "" #~ "You can load a file into maxima by dragging it from a file browser to the " #~ "console window." #~ msgstr "" #~ "Pódese cargar un arquivo en maxima arrastrándoo do explorador de arquivos " #~ "á xanela da consola." #~ msgid "" #~ "You can load files into maxima if you drop them on the console window. " #~ "You can select a custom function for loading your file. If your custom " #~ "function is 'A:read_matrix(%file%, csv)', then %file% will be replaced " #~ "with the filename of your file." #~ msgstr "" #~ "Pódense cargar arquivos en maxima se se arrastran dende a xanela da " #~ "consola. Pódese seleccionar unha función personalizada para cargar o " #~ "arquivo. Se a función personalizada é 'A:read_matrix(%file%, csv)', entón " #~ "%file% será reemplazado co nombre do arquivo." #~ msgid "" #~ "You can select the output of maxima in wxMaxima console with mouse and " #~ "copy it to the clipboard with 'Edit->copy'." #~ msgstr "" #~ "Pódese seleccionar a saída de maxima na consola de wxMaxima co rato e " #~ "copiándoa ó portapapeis con 'Edita->Copia.'" #~ msgid "" #~ "You can use the maxima tex command to print the expression in TeX form. " #~ "Then you can copy it to text editor to include it in you paper." #~ msgstr "" #~ "Pódese usar a instrucción tex de maxima para amosar a expresión en " #~ "formato TeX. Logo se puede copiar a un editor de texto para inserilo no " #~ "seu documento." #~ msgid "" #~ "wxMaxima has nice plot dialogs. If you want to modify previous plot " #~ "commands, access them using command history and then push the plot button." #~ msgstr "" #~ "wxMaxima ten bos cadros de diálogo. Se se queren modificar as instrucción " #~ "gráficas anteriores, pódese acceder usando a historia de instruccións e a " #~ "continuación premer no botón de gráficos." #~ msgid "" #~ "wxMaxima's input line has command history available using up and down " #~ "keys and command completion based on previous input available using the " #~ "tab key." #~ msgstr "" #~ "A líña de entrada de wxMaxima ten un histórico dispoñible usando as " #~ "teclas de dirección arriba e abaixo, e un autocompletado de instruccións " #~ "baseado na entrada anterior dispoñible, usando a tecla tabulador." #~ msgid "Apply function:" #~ msgstr "Aplica función:" #~ msgid "At point:" #~ msgstr "No punto:" #~ msgid "Char poly of:" #~ msgstr "Polinomio característico de:" #~ msgid "Comment out" #~ msgstr "Comenta" #~ msgid "Copy &text" #~ msgstr "Copia &texto" #~ msgid "Copy selection from console (including linebreaks)" #~ msgstr "Copia selección da consola (saltos de liña incluidos)" #~ msgid "From array:" #~ msgstr "De array:" #~ msgid "From equations:" #~ msgstr "Das ecuacións:" #~ msgid "Integrate:" #~ msgstr "Integra:" #~ msgid "Limit of:" #~ msgstr "Límite de:" #~ msgid "Map function:" #~ msgstr "Aplica a función:" #~ msgid "Product:" #~ msgstr "Produto:" #~ msgid "Solve &numerically ..." #~ msgstr "Resolve &numéricamente" #~ msgid "Solve equation(s):" #~ msgstr "Resolve ecuación(s):" #~ msgid "Solve equation:" #~ msgstr "Resolve ecuación:" #~ msgid "Solve numerically" #~ msgstr "Resolve numéricamente" #~ msgid "Solve numerically ..." #~ msgstr "Resolve numéricamente" #~ msgid "Substitute:" #~ msgstr "Substitúe:" #~ msgid "Substitution" #~ msgstr "Substitución" #~ msgid "Sum of:" #~ msgstr "Suma de:" #~ msgid "Uncomment" #~ msgstr "Descomenta" #~ msgid "Unfold" #~ msgstr "Desprega" #~ msgid "Unfold all folded groups" #~ msgstr "Desprega todos os grupos" #~ msgid "Use &Taylor series" #~ msgstr "Usa serie de &Taylor" #~ msgid "around:" #~ msgstr "arredor de:" #~ msgid "by variable:" #~ msgstr "para a variable:" #~ msgid "change var:" #~ msgstr "cambia var:" #~ msgid "eliminate variables:" #~ msgstr "elimina as variables:" #~ msgid "equation:" #~ msgstr "ecuación:" #~ msgid "for function(s):" #~ msgstr "para a(s) función(s):" #~ msgid "for variable(s):" #~ msgstr "para a(s) variable(s):" #~ msgid "from expression:" #~ msgstr "da expresión:" #~ msgid "function:" #~ msgstr "función:" #~ msgid "goes to:" #~ msgstr "tende a:" #~ msgid "in variable:" #~ msgstr "respecto da variable:" #~ msgid "in:" #~ msgstr "en:" #~ msgid "the value is:" #~ msgstr "o valor é:" #~ msgid "variable" #~ msgstr "variable" #~ msgid "variable:" #~ msgstr "variable:" #~ msgid "when variable:" #~ msgstr "cando a variable:" #~ msgid "with:" #~ msgstr "con:" #~ msgid "" #~ "wxMaxima is a wxWidgets interface for the\n" #~ "computer algebra system MAXIMA.\n" #~ "\n" #~ "Version: %s.\n" #~ "License: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgstr "" #~ "wxMaxima é unha interface wxWidgets para o\n" #~ "sistema de cálculo simbólico Maxima.\n" #~ "\n" #~ "Versión: %s.\n" #~ "Licenza: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgid "wxMaxima session (*.wxm)|*.wxm|Maxima batch file (*mac)|*.mac|All|*" #~ msgstr "" #~ "Sesión wxMaxima (*.wxm)|*.wxm|Arquivo por lotes de Maxima (*mac)|*.mac|" #~ "Todos|*" #~ msgid "Maxima session (*.wxm)|*.wxm" #~ msgstr "Sesión de Maxima (*.wxm)|*.wxm" wxMaxima-13.04.2/locales/hu.mo000644 000765 000024 00000174403 12135221243 016461 0ustar00andrejstaff000000 000000 %l1B)B+B3BEB`B&pBgBJBJCSC eCqCC C CCC CCD D 4DAD WD aDnDDDD DDDD DDE E%E9EUE [EiE{EEEEEE EEEF F$F4F :FHF YFcFyFF F FFFF FGG G2GPGVG mG xGGIH (I5I;IJI^InIII'II1I#J:J @JJJPJiJqJ xJJJJ JJ JJ JJ JKK LL,L+>L(jLLLL"LL MM M(M .M;M;NMM"M MM2M NN 3N?NWN `N mN zNN#NNNNO O%$OJO1eO#O#OO@O @PKPeP{PPP8PAP(&Q'OQHwQ1Q1Q$R;RMRcR>xR3RR R R S$S @S NS\SvS(S$S,S%T&&TMTTT XT cTqTwT ~T1TT0TT T UUU3UDUXUjU|UUU UU U UUV VV4V EV PV^VpVV VV VV:V /W9W MW XW cW pW ~W W/WW WWW.W(&XOX eXrX(XX X X X XXXXXY!3YUY#fY"Y%Y*YY Z Z!Z (Z4ZFZXZmZZ*ZZZ ZZ [[[.[@[(U[~[ [ [[[&[[[ [[ \ \/)\Y\)w\\'\\\ ]'] E]R] r]|]]]]"]5]^%^-^4^:^P^Y^ h^ u^$^7^3^__,_ 5_B_[_"k_,_*___`+`<`3K`,`,`'`aaa;aYaaafa{aa a aaaa bbbb~c!d@'dhdyddddd dd6d4ePeie eeeeeee f'f8fJfbf|ffff f f fgg)(g Rg _gigQggghhh4hThXh xhhhhhhhhhi i i*iGibi wii i iiiiij"j ?jJj Qj \jijqjxjj jjj?jk7kGk)XkWkkk lll l (l4ltltt"t4t tt u u u)u;uQubu tuuu /v9v @vJvYvkvtv vvvvvvww:!w\wvww wwww ww x.xGx`xwxxxx+x y&y/y By Oy]y,qy'yyy!yz {{{7{ O{]{ p{z{ {{#{2{|%"|0H|1y|| |8|A}[}d}l}t}}}}}}} ~~,~;~C~I~ P~ ]~h~x~ ~ ~~ ~~~~ ~~D~*Bu-̀ Ҁ݀ Ɓa`HՃك2Mc w  „ Ȅ ҄ ݄+; CP-e … ̅ ׅ, Pw})IUs1ɋ'#2 B N [ h t  ̌ Ռ   (?DÍCbLVeh.Ώ& $a2ak-f ϒ4S  7R cn~͔ ' 1? Tb ֕!($Bgʖ 9 EPh ×#ٗ4L\n! Θ ܘ=C \ hsy͛"*,19^#.  "?GP0X *  X3 Ɵ"ߟ#AV&k%Ϡؠߠ#H\+k2ɡ+$C ht +,ܢ, 6Q n#&4ڣ''7!_i #0K dnGPѥ0"*SG~CƦC NlJ@ KUi"|"¨֨ 5#+Y>9ĩ98 ?I[v{ 4ê9ɪ2IRk)ƫ " 0 : EQhyì Ԭ+2:mu- ح  +<0M~ :34$Yj' ¯ Я گ)+#/O"24<$a hv ձ& 7$)\(  ˲ ײ+5#a , /E'^)<**CV(i')̵ 7!Pr M ' DO_ o%{@-* FP"g'/Ǹ2*1B#^ *##߹ $,;FC  Ӻ ݺ  )FAĽ &'N b  B  %Ffw"7Qh" 5?Q,j $S+#:^djRq$ #5!Y${  5=\u! 13P  F;++     ,9Hf $5I \ g0s !1Cl\!  .@W.j ##M@a:@Uh  - %0I `k96 LX#s 3#0.+Fr "&IZv(#=]3s )+=R Zg9 C  8S4lF# - N o y"Kn ~ & .1-Q&$'0$$:I(  ; 5F*|2 ()G$q .&%$?Zd?[\{%FW`  4F2X   0FN coX2 "  Q'$/Tq#  -:OW ^j#" 54j 4 $(Hq$)"8 R`o       '4 =JcX9Vyc"j605 ssvb+\w "=y0.n!/ O|~0Kz]-<Y] a;>.^~W@rA:1J:w7'xv de ]R3x,ONtBQRDL!P 2gk F?+uTRTN&-zq45JvM")$Q.sF#fg{$/6hk }Wsr6#L>l?h;ijux#IU`bn^%g$ Q+zHG:X?8VnA5 N lcyZU7%br3{Kw'2Z o`ooD(&kO |1YK)u\7{Zt8_\; <lXi@pJ/^,9 h}V 6~SEmE Se!qIq cfI=A}s"d0FGf>C*ejV PE34`HpB[McitCSWM,&24*By@8 p%9a<G|P_(*DT1mLj[a[5m- ' X=)CU(Yd9_ H wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese SimplifiedChinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy Previous Output Ctrl-UCopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCreate a new cell with previous outputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-Shift-REvaluate All Visible Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionEvaluate all visible cells in the documentExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFold All Ctrl-Alt-[Fold all sectionsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGalicianGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If you type an operator (one of +*/^=,) as the first symbol in an input cell, % will be automatically inserted before the operator, as on a graphing calculator. You can disable this feature from the 'Edit->Configure' dialog.If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert % before an operator at the beginning of a cellInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help CTRL+?Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPreferences... CTRL+,Previous Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformRedo Ctrl-Shift-ZRedo last changeReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://andrejv.github.com/wxmaxima/help.html for more information and to find tutorials on using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnfold All Ctrl-Alt-]Unfold all folded sectionsUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: hu Report-Msgid-Bugs-To: POT-Creation-Date: 2013-03-22 09:07+0100 PO-Revision-Date: 2013-03-22 09:29+0100 Last-Translator: Blahota István Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Lokalize 0.3 Plural-Forms: nplurals=2; plural=(n != 1); wxWidgets: %d.%d.%d Unicode támogatás: %s Lisp: Maxima verzió: Nem csatlakozott a Maximához! Nem csatlakozott.<< A kifejezés túl hosszú a megjelenítéshez! >> a wxMaxima egy újabb verziójával lett elmentve, ezért nem biztos hogy tökéletesen töltődik be. Kérem frissítse a wxMaximát! a wxMaxima egy újabb verziójával lett elmentve. Kérem frissítse a wxMaximát!&Algebra&Alkalmazás listán...&Apropó...&Batch fájl... Ctrl-BPe&remérték probléma...&HibabejelentésAna&lízis&Kanonikus alak&Karakterisztikus polinom...M&emória törlése&Számolás faktoriálisokkalKom&plex átalakításLán&ctörtté alakítás&Másolás Ctrl-C&Határozott integrál&Demoivre&Determináns&Differenciálás...S&zerkesztés&Változó kiküszöbölése...Má&trix bevitele...&Példa...Kifejezé&s felbontásaTr&igonometrikus felbontásE&xponenciálissá alakításE&xportálás...Kife&jezés faktorizálása&FájlM&egoldás numerikusan...&Mátrix generálása sorozatból...&Legnagyobb közös osztó...&Súgó&Integrálás...&Megszakítás Ctrl-.&Megszakítás Ctrl-GMát&rix invertálás&Csomag betöltése... Ctrl-LLeké&pezés listába...&Maxima&Modulus beállítása...&Új Ctrl-N&Numerikus&Numerikus integrálás&Numerikus összegzés&Megnyitás Ctrl-O&Megnyitás... Ctrl-OÁ&brázolás&Hatványsor&Nyomtatás... Ctrl-P&Értelemszerűen (nem formálisan)T&rigonometrikus redukálás&A Maxima újraindításaPoli&nom valós gyökeiM&entés Ctrl-SE&gyszerűsítés&Kifejezés egyszerűsítéseF&aktoriális egyszerűsítése&Trigonometrikus egyszerűsítés&Megoldás...&KülönlegesTaylor-sor használatávalMátri&x transzponálás&Trigonometrikus átalakítás&pm3d(Alapértelmezett nyelv)- Végtelen
Lisp: A wxMaxima 0.8.0-ás verziójában megjelent egy 'vízszintes kurzor'. Úgy néz ki, mint egy cellák közti vízszintes vonal. Ott jelenik meg, ahol szöveg begépelésével, beillesztésével vagy egy menü parancs végrehajtásával egy új cella keletkezik.A wxMaxima 0.8.2-es verziójában új dokumentumformátumot vezettek be, amely nem csak a bemenetet és a szöveges megjegyzéseket menti, hanem a számítások kimenetét is. Használatához a dokumentum mentésénél válasszuk a 'wxMaxima XML dokumentum' formátumot.Ér&tékadás...NévjegyNévjegy: wxMaximaAktív cella zárójeleMátr&ix adjungálásAlg&ebrai egyenlet hozzáadása...Könyvtár hozzáadása a keresési úthozKönyvtár hozzáadása az elérési úthoz:Egyenlőség hozzáadása racionális egyszerűsítéshez&Hozzáadás az elérési úthoz...A Maxima további paraméterei (pl. -l clisp).Paraméterek:Minden fájl|*AnimációAlkalmazFüggvény alkalmazása a listáraApropóSorozat:GrafikaRákérdez név nélküli dokumentum mentéséreÉrtékadásPeremérték problémaOszlopdiagram...Batch fájlok (*.bat)|*.bat|Minden fájl|*Batch fájlFélkövérDoboz ábra...Böngészés&VerzióinformációkA Shift-Enter billentyűkombinációval alapértelmezés szerint az aktuális parancs hajtódik végre, míg az Enter-t a többsoros bemenetre használjuk. Mindez megváltoztatható a 'Szerkesztés->Beállítás' ablakban, kipipálva 'A parancsok Enter-re hajtódnak végre' tulajdonságot, amely felcseréli a két billentyűparancs hatását.&Változócsere...B&eállítás&Szorzat számítása...Öss&zeg számítása...Szám hosszú tizedes tört alakjaSzám tizedes tört alakjaModulus értékének beállítása:Szorzat számításaÖsszeg számításaNem lehet a webszerverhez kapcsolódniA verzióinformáció nem elérhető.MégsemKanonikus (tr)KatalánCe&llaCella zárójel&2d-s megjelenítés változtatásaMatematikai jelek 2d-s megjelenítési algoritmusának megváltoztatásaVáltozócsereVáltozócsere integrálban vagy összegbenKarakterisztikus polinom&Frissítések keresése A wxMaxima/Maxima újabb verziójának keresése.Egyszerűsített kínaiTradícionális kínaiBetűtípus választásÚj ábrázolási mód választása:Osztályok:Bezárás Ctrl-WAblak bezárásaOszlopok nevei:Oszlopok:Faktoriálisokkal számol egy kifejezésbenVesszővel válassza el az x koordinátákatVesszővel válassza el az y koordinátákatMegjegyzés kiválasztásaSzó &kiegészítése Ctrl-KSzó automatikus kiegészítéseEgy lista lánctörtté alakításaMátrix adjungáltjának kiszámolásaMátrix karakterisztikus polinomjának kiszámolásaMátrix determinánsának kiszámolásaLegnagyobb közös osztó kiszámolásaMátrix inverzének kiszámolásaLegkisebb közös többszörös kiszámolása (használata előtt hajtsd végre a load(functs) parancsot)Feltétel:Konfigurációs fájl (*.ini)|*.iniFigyelmeztetés a beállításokkal kapcsolatbanA wxMaxima beállításaÁllandóLoga&ritmikus összevonásBinomiális-, béta- és gamma-függvények faktoriálissá alakításaBinomiális-, faktoriális- és béta-függvényeket gamma-függvénnyé alakítKomplex kifejezés exponenciálissá alakításaKomplex kifejezés algebraivá alakításaKomplex exponenciális függvény alakítása trigonometrikus formáváSzorzat logaritmusának logaritmusok összegévé való alakításaLogaritmusok összegének szorzat logaritmusává való alakítása&Faktoriálisokká alakítás&Gamma-függvénnyé alakításPolárformává alakítás&Algebraivá alakításTrigonometrikus kifejezés kanonikus kvázilineáris formává alakításaTrigonometrikus függvény exponenciális formává alakításaMásolásMásolás képkéntMásolás LaTeX-beE&lőző bemenet másolása Ctrl-IE&lőző kimenet másolása Ctrl-UMásolás képként&LaTeX másolás&Szöveg másolása Ctrl-Shift-CKijelölt rész másolásaKijelölt rész képként másolása a domumentumbólKijelölt rész másolása a dokumentumbólKijelölt rész másolása a dokumentumból LaTeX formátumbanLétrehoz egy új cellát az előző bemenet tartalmávalLétrehoz egy új cellát az előző kimenet tartalmávalKurzorKivágás&Kivágás Ctrl-XKijelölt rész kivágásaCsehDánAdat mátrix:Adat fájlok (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtAdat:Racionális törtfüggvény parciális törtekre bontásaAlapértelmezettAlapértelmezett betűtípus:Alapértelmezett port:TörlésFü&ggvény törlése...Kijelölt rész törléseVá<ozó törlése...Függvény törléseVáltozó törléseMinden tartalom törlése a memóriábólFüggvény(ek) törlése:Változó(k) törlése:Nevező foka:Fokszám:Derivált:Szórás...P&olinomok osztása...Differenciál...DifferenciálásKifejezés differenciálásaDifferenciálás...Irány:Diszkrét pontokMeg&jelenítés TeX formátumbanMegjelenítő algoritmusKifejezés megjelenítése TeX formátumbanMegjeleníti mennyi idő alatt fut le az eljárásOsztásCella kettéosztásaSzámok vagy polinomok osztásaEl akarja menteni a dokumentum változásait?DokumentumSzöveg háttereNem ment&Egyenletek&Kilépés Ctrl-QSaját&vektorok&SajátértékekKiküszöbölésVáltozó kiküszöbölése egyenletrendszerbőlAngolAdatbevitelMátrix bevitele...Mátrix beviteleÍrja be a listába felvenni kívánt algebrai egyenletet:A változókat vesszővel válassza el egymástól.A parancsok az Enter lenyomására hajtódnak végreMátrix beviteleÚj pontosság bevitele:A Maxima elérési útjának beírása.Epszilon:Egyenlet %d:Egyenlet(ek):Egyenlet:Egyenletek:HibaHiba %dHiba!K&iértékeletlen formák kiértékelése&Minden cella újraszámolása Ctrl-Shift-R&Minden látható cella újraszámolása Ctrl-RC&ellák újraszámolásaKijelölt cellák újraszámolásaA dokumentum összes cellájának újraszámolásaNem kiértékelésre szánt formákat is kiértékelA dokumentum összes látható cellájának újraszámolásaPéldaPéldaszövegKilépés a wxMaximábólFelbontFelbont (tr)Kifejezés felbontása&Logaritmikus felbontásEgy kifejezés felbontásaTrigonometrikus kifejezés felbontásaExportálásDokumentum exportálása HTML vagy pdfLaTeX formátumbaA HTML-be való exportálás meghiúsult!A TeX-be való exportálás meghiúsult!Függvény:Függvény(ek):Kifejezés:FaktorizálK&omplex faktorizációKifejezés faktorizálásaEgy kifejezés faktorizálásaKifejezés faktorizálása Gauss-egészekre&Faktoriális- és gamma-függvényVégzetes hiba%d. ábra:FájlA fájl nem találhatóA megnyitni próbált fájl nem található.Fájl:Keresés...Ke&resés... Ctrl-F&Határérték számolása...&Minimum keresése...Megoldás numerikusan...Kifejezés minimumának meghatározásaKifejezés határértékének számolásaEgyenlet adott intervallumba eső gyökének meghatározásaPolinom összes gyökének meghatározásaPolinom összes gyökének meghatározásaKeresés és csereKeresés és csereMátrix sajátértékeinek kiszámolásaMátrix sajátvektorainak kiszámolásaMinimum keresésePolinom valós gyökeinek meghatározásaMegoldás numerikusanKeresés...Rögzített szélességű betűtípus a bemeneti sorban&Minden kiválasztása Ctrl-Alt-[Minden fejezet elrejtéseKonzolban használt betűtípus.A dokumentumban előforduló matematikai karakterekhez használt betűtípus.BetűkészletekFormátum:FranciaMettől:&Teljes képernyő Alt-EnterFüggvényFüggvénynevekFüggvény(ek):Függvény:Eljárások komplex átalakításokraEljárások faktoriális- és gamma-függvény átalakításokraEljárások trigonometrikus átalakításokraLegnagyobb közös osztóGIF képfájl (*.gif)|*.gifGalíciaiÁltalános matematikaÁltalános matematika Alt-Shift-MMátrix generálásaMátrix &generálása kifejezésből...Mátrix generálása kétdimenziós sorozatbólMátrix generálása kétdimenziós kifejezésbőlNémet&Képzetes rész&Taylor- és hatványsor...Kifejezés Laplace-transzformáltja&Valós részKifejezés inverz Laplace-transzformáltjaFüggvény Taylor- és hatványsoraKomplex kifejezés képzetes részeKomplex kifejezés valós részeGörögGörög betűkHáló:HTML fájl (*.html)|*.html|pdfLaTeX fájl (*.tex)|*.tex|Minden fájl|*Oszlopok:SúgóÖsszes elrejtése Alt-Shift--Összes panel elrejtéseKiemelésHisztogramHisztogram...ElőzményekElőzmények Alt-Shift-HA vízszintes kurzor normál kurzorként működik, csak éppen a hatása cellákon jelentkezik: nyomjuk meg a fel vagy le nyilat mozgatásához. Ha mindeközben a Shift gombot lenyomva tartjuk, kijelöljük az érintett részeket.MagyarKezdetiérték-probléma (1)Kezdetiérték-probléma (2)Ha a bemeneti cella első karaktere valamelyik műveleti jel (a +*/^= karakterek egyike), egy % jel fog automatikusan beíródni elé. Ez a funkció kiiktatható a 'Szerkesztés->Beállítás' menüpont alatt.Ha egy számítás elvégzése túl sokáig tart, megpróbálhatjuk a 'Maxima->Megszakítás' vagy a 'Maxima->A Maxima újraindítása' menüparancsok használatát.KépKép fájlok (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmTartalmazott oszlopok:VégtelenInformáció a Maxima fordításárólKezdeti becslések:Kezdetiérték-probléma (&1)...Kezdetiérték-probléma (&2)...Bemeneti címkékBeszúrásBeszúr egy %-jelet a cella elején található műveleti jel elé&Fejezetcella beszúrása Ctrl-3&Szövegcella beszúrása Ctrl-1Cella beillesztése Alt-Shift-CKép beszúrásaKép beszú&rása...&Bemeneti cella beszúrásaLa&ptörés beszúrása&Alfejezetcella beszúrása Ctrl-4&Fejezetcella beszúrása&Alfejezetcella beszúrása&Címcella beszúrása Ctrl-2&Szövegcella beszúrása&Címcella beszúrásaÚj bemeneti cella beszúrásaÚj fejezetcella beszúrásaÚj alfejezetcella beszúrásaÚj szövegcella beszúrásaÚj címcella beszúrásaLaptörés beszúrásaKép beszúrásaIntegrál/összeg:IntegrálIntegrál (Risch)Függvény integrálásaFüggvény integrálása Risch-algoritmussalIntegrál...MegszakításJelenlegi számítás megszakításaHibás elérési út. Írja be a Maxima futtatható fájl elérési útját újra.Inverz LaplaceI&nverz Laplace-transzformáció...OlaszDőltJapánSzázalékjel használata speciális szimbólumoknál, mint például %e, %i, stb.Legkisebb közös többszörösA wxMaxima grafikus felület nyelve.Nyelv:LaplaceL&aplace-transzformáció...L&egkisebb közös többszörös...Legkisebb négyzetes közelítésLegkisebb négyzetes közelítés...HatárértékHatárérték...Lineáris regresszió...Erre a listára:BetöltésCsomag betöltéseBatch parancsokat használó Maxima fájl betöltéseMaxima csomagfájl betöltéseStílusfájl betöltéseAlsó végpont:Mátrix leképe&zése...&Lista készítése...Lista készítéseLista készítése kifejezésbőlBehelyettesítés kifejezésbeLeképezésLista leképezése listábaMátrix leképezése mátrixbaNyitó zárójelek párjának automatikus beírásaMatematika betűtípus:MátrixMátrix leképezésMátrix neve:Mátrix:Maxima&Maxima súgó CTRL+?&Maxima súgó F1Maxima bemenetA Maxima számolMaxima csomag (*.mac)|*.mac|Maxima csomag (*.mac)|*.mac|Lisp csomag (*.lisp)|*.lisp|Minden fájl|*A Maxima eljárásának futása megszakadt.Maxima program:Maxima kérdéseiA Maxima elindult és vár a kapcsolatra...A Maxima a ':' jelet használja változó értékadására ('a : 3;') és a ':=' jelet függvény definiálására ('f(x) := x^2;'). Maxima verzió: Kétmintás t-próba...Egymintás t-próba...Átlag...Átlag:Medián...Cellák egyesítéseEljárás:ModulusNév:ÚjÚ&j Ctrl-NÚj dokumentumÚj érték:Új változó:Kö&vetkező parancs Alt-DownA kifejezés nem találhatóNormalitás vizsgálat...Hibás mátrixdimenzió!Az egyenletek száma hibás!Nem csatlakozott.Számláló foka:Egyenletek száma:SzámokOKRégi érték:Régi változó:Egymintás t-próbaOnline ismertetőkMegnyitásMe&gnyitásNyit egy cellát, amikor a Maxima bemenetet várDokumentum megnyitásaÚj ablakDokumentum megnyitásaMátrix megnyitásaFájl megnyitásaBeállításokBeállítások:Elavult cellákKimeneti címkékPadé-appro&ximáció...PNG képfájl (*.png)|*.png|JPEG képfájl (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPadé-approximációTaylor-sor Padé-approximációjaLaptörés&PanelekParaméteres ábrázolásKimenet elemzése&Parciális törtek...Parciális törtekA dokumentum egyes részei nem töltődtek be!Beillesztés&Beillesztés Ctrl-VSzöveg beillesztése vágólaprólSzöveg beillesztése vágólaprólTortadiagram...Kérem állítsa be a wxMaximát a 'Szerkesztés->Beállítás' menüpontban.A változások életbe lépéséhez indítsa újra a wxMaximát!&2d-s ábrázolás...&3d-s ábrázolás...Á&brázolási mód...Kétdimenziós ábrázolás2D...2d-s ábrázolás...Háromdimenziós ábrázolás3D...3d-s ábrázolás...Ábrázolási módÁbrázolás két dimenzióbanÁbrázolás három dimenzióbanÁbrázolás fájlba:Hely:Lengyel1. polinom:2. polinom:Portugál (Brazil)Postscript fájl (*.eps)|*.eps|Minden fájl|*PontosságBeállítások... CTRL+,Előző parancs Alt-UpNyomtatásDokumentum nyomtatásaSzorzatMátrix beolvasása...Maxima kimenetelének olvasásaBemeneti adatok fogadásaA következő parancs előhozása az előzmények közülAz előző parancs előhozása az előzmények közülAlg.-i alak&Visszavonás Ctrl-Shift-ZUtolsó változtatás visszavonásaRedukál (tr)Trigonometrikus kifejezés redukált alakra hozásaA&z összes kimenet eltávolításaA kimenet eltávolítása a bemeneti cellákból%d egyezés kicserélveRendszerinformációk hiba bejelentéséhezA Maxima újraindítása&Risch-integrálás...&Polinom gyökeiP&olinom gyökei (bfloat)Sorok:Orosz1. minta:2. minta:Minta:MentésAnimáció mentése...Mentés máskéntMen&tés másként... Shift-Ctrl-SKép mentése...Kijelölés mentése képbeKi&jelölés mentése képbe...Animáció mentése fájlbaBezárás előtt menti a változásokat?Menti a változásokat?Dokumentum mentéseMentés máskéntPanelek elrendezésének elmentésePanelek állapotának mentése.Kép mentése fájlbaKijelölt rész fájlba másolása a dokumentumbólKijelölt rész mentése fájlbaStílus mentése fájlbaAblak méret/pozíció mentésewxMaxima ablak méret/pozíció mentése.Szóródási pontSzóródási pont...FejezetFejezetcellaCellatartalom kijelölése&Minden kiválasztása Ctrl-AA Maxima program kiválasztásaRészminta kiválasztásaÁllandó kiválasztásaMinden kiválasztásaMatematikai megjelenítés algoritmusának kiválasztásaA kimenetet egy részét kijelölve az egérrel és arra a jobb egérgombbal kattintva egy menüt kapunk a kijelölt részen való lehetséges műveletekkel.Kijelölt rész másolásaTaylor- és hatványsorHatv.sor...A kiszolgáló elindult&Pontosság állítása...Nagyítás beállításaLebegőpontos műveletek pontosságának állításaRögzített szélességű betűtípus beállítása a bemeneti sorban.Ábrázolás módjának állításaNagyítás beállítása 100%-raNagyítás beállítása 120%-raNagyítás beállítása 150%-raNagyítás beállítása 200%-raNagyítás beállítása 300%-raNagyítás beállítása 80%-raLaplace-transzformációval megoldani próbált kezdetiérték-probléma kezdeti helyének és értékének beállításaModulus értékének beállítása&Definíció...&Függvények&Tippek...&VáltozókMaxima súgóK&iegészítés sablonnal Ctrl-Shift-KTippet mutatMegmutat minden parancsot, ami hasonlít erre:Példa az alábbi parancsra:Példa a parancs használatáraMegmutat minden parancsot, ami hasonlít erreMegmutatja a definiált függvényeketMegmutatja a definiált változókatMegmutatja a függvény definíciójátFüggvény automatikus kiegészítése sablonnalHosszú kifejezések megjelenítéseA wxMaxima konzolja megjeleníti a hosszú kifejezéseket.Megmutatja a függvény definícióját:Egyszerűsít&Gyökös egyszerűsítésEgysz. (r)Egysz. (tr)Kifejezés egyszerűsítéseFaktoriálisokat tartalmazó kifejezések egyszerűsítéseGyököket tartalmazó kifejezések egyszerűsítéseRacionális kifejezések egyszerűsítéseEgyszerűsíti az összegetTrigonometrikus kifejezést egyszerűbb alakra hozA wxMaxima 0.8.2-es változatától már képeket is be lehet illeszteni a dokumentumba. Használjuk a 'Cellák->Kép beszúrása...' menüparancsot. Megjegyezzük, hogy ahhoz, hogy a kép is mentve legyen, a dokumentumot 'wxMaxima XML dokumentum' formátumban kell menteni.Megoldás:Megoldás&Algebrai egyenletrendszer megoldása...&Lineáris egyenletrendszer megoldása...&Differenciálegyenlet megoldása...Me&goldás (to_poly)...Differenciálegyenlet megoldásaD&ifferenciálegyenlet megoldása (Laplace)...Differenciálegyenletek megoldása....Algebrai egyenletrendszerAlgebrai egyenletrendszer megoldásaPeremérték probléma megoldása másodrendű közönséges differenciálegyenlet eseténEgyenletet(rendszer) megoldásaEgyenletet(rendszer)ek megoldása a to_poly_solver eljárássalKezdetiérték-probléma megoldása elsőrendű közönséges differenciálegyenlet eseténKezdetiérték-probléma megoldása másodrendű közönséges differenciálegyenlet eseténLineáris egyenletrendszerLineáris egyenletrendszer megoldásaLegfeljebb másodrendű közönséges differenciálegyenlet megoldásaKözönséges differenciálegyenlet megoldása Laplace-transzformáció segítségévelMegold...SpanyolKülönlegesKülönleges állandóAnimáció indításaAnimáció indításaA Maxima folyamat leálltIndul a Maxima...A szerver leálltA szerver elindult és az alábbi porton figyel %dStatisztikaStatisztika Alt-Shift-SAnimáció leállításaKarakterláncokStílusStílusokRészminta...AlfejezetAlfejezetcellaBehelyet....Behelyettesítés&Behelyettesítés...ÖsszegRendszerinformációTaylor-sor:'tellrat' eljárásSzövegCellák kivágásaSzöveg háttereA Maxima és a wxMaxima közötti kommunikáció során használt alapértelmezett port.A Maximáról és a wxMaximáról számos leírást találhatunk az interneten. További információkért és leírásokért látogasson el a http://andrejv.github.com/wxmaxima/help.html címre.XML hiba lépett fel! Kérem jelentse a hibát.Hiba történt a GIF képfájl létrehozása során! Ellenőrizze, hogy az ImageMagick telepítve van, valamint elérhető a wxMaxima számára!Törésvonalak:Ennyiszer:Sajnos nem tudok tippeket mutatni!CímCímcellaA cím- , fejezet- és alfejezetcellák tartalma elrejthető/megjeleníthető, ha rákattint a sor elején látható négyzetre. A Shift+kattintás kombinációval az adott cella alatti összes tartalom láthatóvá válik.&Hosszú tizedestört&TizedestörtTizedestörtPolár koordinátás ábrázolásmódhoz válasszuk a 'set polar' opciót a kétdimenziós ábrázolás 'Beállítások:' menüjében. 3D-ben szférikus (spherical) vagy cilindrikus (cylindrical) ábrázolásmódot is választhatunk.Ha egy kifejezést zárójelbe szeretnénk rakni, jelöljük ki azt, majd nyomjuk meg a '(' vagy ')' zárójelek egyikét, aszerint, hogy a művelet végrehajtása után a kifejezés előtt, vagy után szeretnénk a kurzort megjeleníteni.A wxMaxima ablak méretének és pozíciójának mentéséhez jelölje ki a megfelelő opciót a 'Szerkesztés->Beállítás' ablakban.A wxMaxima használatához csak el kell kezdeni gépelni a végrehajtani kívánt parancsot. Az első billentyű leütésekor egy bemeneti cella fog megjelenni. A parancs végrehajtásához nyomjunk Shift-Enter-t.Meddig:&Az 'algebrai' kapcsoló állítása&Numerikus kimenet kapcsoló&IdőkapcsolóAz 'algebrai' kapcsoló állításaTeljes képernyős üzemmódNumerikus kimenet kapcsolóEszközök Alt-Shift-TEszköztár ikonokFordítottákMátrix transzponálás&IsmertetőkKétmintás t-próbaTípus:UkránAláhúzott&Visszavonás Ctrl-ZUtolsó változtatás visszavonása&Minden megjelenítése Ctrl-Alt-]Minden fejezet megjelenítéseUnicode támogatásFrissítésFelső végpont:Gosper algoritmus használataKözépre helyezett pont használata szorzásjelkéntjsMath betűk használataÉrték:Változó(k):Változó:VáltozókVáltozók:Szórásnégyzet...FigyelmeztetésA wxMaxima üdvözli Önt!Ha egy egy bemeneti értékkel működő függvényt választunk ki a menük közül, annak argumentuma a '%' lesz. Ha mást szeretnénk bemeneti értékként, jelöljük ki azt a parancs végrehajtása előtt.Sorok:Nyitó zárójelek párjának automatikus beírása.ÍrtaAz előző parancs kimenetére a '%' jellel, valamely korábbi kimenetre pedig a '%on' változó használatával hivatkozhatunk, ahol n annak száma.A dokumentum összes parancsának végrehajtása a 'Cellák->Minden cella újraszámolása' menü parancs vagy a megfelelő gyorsbillentyű kombináció segítségével történhet. A cellák parancsainak végrehajtása a dokumentumban való elhelyezkedésük sorrendjében fog megtörténni.A Maxima egy függvényéről segítséget kaphatunk, ha kijelöljük vagy rákattintunk a nevére, majd megnyomjuk az F1-et. A wxMaxima meg fogja keresni a kijelölt vagy a kurzor alatti szöveg 'Tartalom mutató'-ját a Súgóban.Elrejthetjük a cellák kimeneti részét, ha bal oldalukon lévő háromszögre kattintunk. Ez az eljárás szövegcellák esetén is működik.A 'Cellák' menü használatával különböző típusú cellákat illeszthetünk be. Fontos tudni, hogy csak az 'Új bemeneti cella' használatával jutunk parancs végrehajtására alkalmas cellához, a többi segítségével megjegyzéseket szúrhatunk be, illetve tagolhatjuk dokumentumunkat.Egy cellán belül akár több sort is kiválaszthatunk egérrel - kattintva, majd a bal egérgombot lenyomva tartva az egeret mozgatva, vagy a cella bal oldalán lévő cellazárójelre kattintva - vagy a billentyűzet segítségével - a Shift gombot lenyomva tartva a vízszintes kurzort mozgatva. Ez nagyon hasznos, ha többsoros cellák parancsait akarjuk végrehajtani vagy tartalmukat törölni.A %s verzió fut. Az elérhető legfrissebb verzió a %s. Az OK gomb megnyomására az alapértelmezett böngésző megnyitja a wxMaxima honlapjátHa nem ment, változásai elvesznek.A wxMaxima verzió a lehető legfrissebb.&Nagyítás Alt-IK&icsinyítés Alt-ONagyítás 10%-kalKicsinyítés 10%-kalNagyítás beállítása [ mentetlen ][ mentetlen* ]antiszimmetrikuskét oldalrólalapértelmezettátlósáltalánossorok közöttbalrólsor elrejtvelogaritmikus skálamatrix[i,j]:nemjobbrólszimmetrikusmentetlennévtelennévtelen %dwxMaximawxMaxima %s A wxMaxima beállításaA wxMaxima nem találja a Maxima programot! Kérem adja meg az elérési útját a 'Szerkesztés->Beállítás' menüpont alatt. Ezután indítsa el a Maximát a 'Maxima->Maxima újraindítása' segítségével.A wxMaxima nem talál súgó fájlokat. Kérem ellenőrizze a wxMaxima telepítését.A wxMaxima nem talál tipp fájlokat. Kérem ellenőrizze a wxMaxima telepítését.A wxMaxima nem tud csatlakozni a kiszolgálóhoz. Kérem ellenőrizze a hálózati kapcsolatot és próbálja újra!A wxMaxima menüparancsai bemenetekkel hajtódnak végre, ezek egyike a '%'. Ha kijelölünk egy részt a dokumentumunkban, a menüparancs ezt fogja argumentumként használni a '%' helyett.wxMaxima dokumentumwxMaxima dokumentum (*.wxm)|*.wxm|wxMaxima xml dokumentum (*.wxmx)|*.wxmx|Maxima batch fájl (*.mac)|*.macwxMaxima dokumentum (*.wxm, *.wxmx)|*.wxm;*.wxmxA wxMaxima nem tudta betölteni a következő fájlt:wxMaxima ikonA wxMaxima egy wxWidgets-en alapuló grafikus felhasználói felület a Maxima komputeralgebrai rendszer számára.A wxMaxima egy wxWidgets-en alapuló grafikus felhasználói felület a Maxima komputeralgebrai rendszer számára.igenwxMaxima-13.04.2/locales/it.mo000644 000765 000024 00000165274 11710501376 016475 0ustar00andrejstaff000000 000000 Dl0@)@@@@@&@gAJAAA AAB *B 6B@BPB nB|BBB BB B BBCC%C 6CBCUCkC {CCC CCCC CCDD$DP3,Q`Q eQ sQ~Q Q QQQ(Q$R,,R%YRRR R RRR R1RR0R&S .S ]*k]]]]+]]3],/^,\^'^^^^;^ ___+_:_ L_ V_c_k__ _`i`m`~q``@`7aHaQaia|aa aaaab b&b6bIb[bzbbbbbbbc1cHc`c tc c ccc)c c cdQdqddddd4ddd ee"e8eQecexe~eeee e*eee ff .f oDo Lo Vo`ohomooo ooooo p "p0pAp#Spwp-ppp"p4q 9qEqTq \q iqtqqqq qqq zrr rrrrr rrss)s:sKs\s:lssss sstt /t:t Xtyttttttu+$u Puquzu u uu,u'uv.v!?vav Wwawgww ww ww ww#x2(x[x%mx0x1xx y8+yAdyyyyyyyyz#z:z Uz`zwzzzz z zzz z zz zz{ { {{D0{u{B1|ut||||} }$} } }~ ~~`. 7Ncy ̀ڀ    $0AQ Yf-{ ΁ ؁ ΂,Ղ  fw)_U1߇'9H X d q ~ ɈЈ Ո    ( 1>UDىCbbŊle~.& :aHa I*Z/ˎe'$= bpyԐ  ' 1? OYr ő ֑'F MYlƒΒ  #3<N `k! “Γ  &0BWw}  Ėі"-6#d03җ $/7 U`g0y ˘  < A19sӛ&2 > FT]dtI՜-&AB *ϝ ם & 6 Wx)4&5%\ G $9LU7i@34WK89ܡ.A[Gv=%'Mar.+ң180iq x 14 !-DW_x%ѥ " . ; ESm u Ц&* 5 <I0i  Ƨ ѧ ާ 008H_7u6,+X a o }  ǩ%$/Aqy ƪڪ$/Nl ٫- : N \gl1} Ȭܬ*!-0O(:# $0U(e3*ۮ=DIR[_w )5ϯ8>B]q&-ǰ,"*G3[;E7(1`=3 E P ^i" =BF)͵#ݵ#% :DdǶ $)A^}!̷" )#Fj}. !b%"ǹ ϹGڹ"3&Zbjغ ߺ-"Pp ̻ !#3*W ż̼߼E'm+bؽ;$Pu ž ˾ؾ #CYx ſ̿Ͽ߿  /&Vh jy+  7W_n/9.= Q \ j x $5 Ze// K U#a0 &=\c i t !(7`w37@[5rE %3CZx3 ;:YqK4Rl ! B[s%7 %E kv31 +L%`!   ,HW)tF'>"@a$EI% oz! +7Oclrx   F7~H;&(-V ]j,AD#_-$!* LXmv  6Sc k y  : X.ix&4-+?Vhx      & 0= FSnOTRkg/a9nnI@nmfmj < `t~F<J"GO+KTxgWb$,pbLg_sLE.B(Se! i|wFE6Zd:}$\W159_ ziGQ(p/K 5c>,@.OrxUc/Q\F3;2xu}R];wI<# Py *A ;{-X^)n)If,QX 7`c%]C?}"@iN[` HbDSVN-I{hlu3lkM=':7[z96M h4   %RV4~-3'PASL[4aevKkuZDy:0ED7+TkT"q#o/p!Xj$ A=1]_|UHrBvR?8nMH9agJ2oh012B6+P&vY8et lz^ rs*~sdYa|m&0qJW('N\UCqY.^)>Z*V#!yC8t%=fo&dw>j O?G5{ wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: wxMaxima Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2011-09-10 23:03+0200 Last-Translator: Marco Ciampa Language-Team: Italian Language: it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Supporto Unicode: %s Lisp: Versione di Maxima: Non connesso a Maxima! Non connesso.<< Espressione troppo lunga da visualizzare! >> era stato salvato usando una versione più recente di wxMaxima perciò potrebbe non caricarsi correttamente. Si consiglia di aggiornare wxMaxima. era stato salvato usando una versione più recente di wxMaxima. Si consiglia di aggiornare wxMaxima.&Algebra&Applica alla lista...&A proposito di...File &batch... Ctrl-BPro&blema del valore al contorno ...Rapporto &bug&CalcoloForma &canonicaPolinomiale &caratteristico ...&Cancella la memoria&Combina i fattorialiSemplificazione &ComplessaFrazione &continua&Copia Ctrl-CIntegrazione &definita&Demoivre&Determinante&Differenzia...&Modifica&Elimina la variabile...Ins&erire la matrice...&Esempio...&Espandi l'espressione&Espandi trigonometrica&Esponenzializza&Esporta...Scomponi in &fattori&File&Trova la radice...&Genera la matrice...&Massimo comun denominatore...&Aiuto&Integra...&Interrompi Ctrl-.&Interrompi Ctrl-G&Inverti la matriceCarica i&l pacchetto Ctrl-L&Mappa in una lista...&MaximaCalcolo &modulo...&Apri Ctrl-N&NumericoIntegrazione &numericaSom&nu&Apri Ctrl-O&Apri... Ctrl-O&DisegnoSerie di &potenzeStam&pa... Ctrl-P&Razionale&Riduci trigonometrica&Riavvia Maxima&Radici della polinomiale (reali)&Salva Ctrl-S&Semplifica&Semplifica l'espressione&Semplifica fattoriali&Semplifica trigonometricaRis&olvi...&SpecialeSerie di &Taylor:&Trasponi la matriceSemplificazione &trigonometrica&pm3d(usa la lingua predefinita)- infinito
Lisp: Un "cursore orizzontale" è stato introdotto in wxMaxima dalla versione 0.8.0. Esso consiste in una linea orizzontale tra le celle. Esso indica dove una nuova cella apparirà se si digita o incolla del testo o si esegue in comando dai menu.A partire da wxMaxima versione 0.8.2 è stato introdotto un nuovo formato di documenti che salva non solamente il testo immesso ed i commenti, ma anche i risultati del calcoli. Quando salva il documento, selezionare "Documento XML wxMaxima" per salvare in questo nuovo formato.A&l valore...InformazioniInformazioni su wxMaximaParentesi cella attivaMatrice ag&giuntaAggiungi &uguaglianza algebrica...Aggiungi una directory al percorso di ricercaAggiungi una directory al percorso:Aggiungi uguaglianza al semplificatore razionaleAggiungi al &percorso...Parametri aggiuntivi per maxima (per es. -l clisp).Parametri aggiuntivi:Tutti|*AnimazioneApplicaApplica funzione ad una listaApropositoArray:Design grafico diRichiedi il salvataggio dei documenti senza nomeAl valoreBC2Grafico a barre...File bat (*.bat)|*.bat|Tutti|*File batchGrassettoGrafico a blocchi...Naviga&Informazioni sulla compilazioneCome impostazione predefinita la combinazione di tasti Maiusc-Invio viene usata per segnalare la richiesta di valutazione dei comandi, mentre Invio da solo viene usato per l'immisione di testo su più righe. Questo comportamento può essere modificato nella finestra di dialogo 'Modifica->Configura' selezionando 'Invio elabora le celle'. Questa impostazione scambia il comportamento di queste due combinazioni di tasti.Cambia la &variabile...C&onfiguraCalcola il &prodotto...Calcola la so&mma...Calcola il valore dell'ultimo risultato in virgola mobile precisaCalcola il valore dell'ultimo risultato in virgola mobileCalcola il modulo:Calcola i prodottiCalcola le sommeImpossibile connettersi al server web.Impossibile scaricare le informazioni di versione.AnnullaCanonica (tr)CatalanoCe&llaParentesi cellaCambia la finestra &2dCambia l'algoritmo della finestra 2d usato per visualizzare il risultato.Cambia la variabileCambia variabile nell'integrale o nella sommaPolin. caratt.Controlla gli aggiornamentiControlla se esiste una versione più recente di wxMaxima/Maxima.Cinese tradizionaleScegli fontScegliere un nuovo formato per il grafico:Classi:Chiudi Ctrl-WChiudi la finestraNomi colonne:Colonne:Combina i fattoriali in un'espressioneCoordinate x separate da virgoleCoordinate y separate da virgoleCommenta la selezioneComplete a parola Ctrl-KCompleta la parolaCalcola la frazione continua di un valoreCalcola la matrice aggiuntaCalcola la polinomiale caratteristica di una matriceCalcola il determinante di una matriceCalcola il massimo comun denominatoreCalcola l'inversa di una matriceCalcola il minimo comune multiplo (esegui load(functs) prima di usarlo)Condizione:File di configurazione (*.ini)|*.iniAvvertenze di configurazioneConfigura wxMaximaCostanteContrai i logaritmiConverti binomiali, funzioni beta e gamma in fattorialiConverti binomiali, fattoriali e funzione beta in funzione gammaConverti l'espressione complessa nella forma polareConverti l'espressione complessa nella forma normaleConverti la funzione esponenziale dell'argomento immaginario nella forma trigonometricaConverti il logaritmo del prodotto in somma di logaritmiConverti la somma dei logaritmi in logaritmo del prodottoConverti in &fattorialiConverti in &gammaConverti in forma &polareConverti in forma no&rmaleConverti l'espressione trigonometrica nella forma canonica quasilineareConverti le funzioni trigonometriche nella forma esponenzialeCopiaCopia come immagineCopia come LaTeXCopia l'inserimento precedente Ctrl-ICopia come immagineCopia come LaTeXCopia come testo Ctrl-Shift-CCopia la selezioneCopia la selezione dal documento come immagineCopia la selezione dal documento come testoCopia la selezione dal documento in formato LaTeXCrea una nuova cella con i dati inseriti precedentementeCursoreTagliaTaglia Ctrl-XTaglia la selezioneCecoDaneseMatrice dati:File dati (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDati:Decomponi la funzione razionale in frazioni parzialiPredefinitoCarattere predefinito:Porta predefinita:EliminaElimina una f&unzione...Elimina la selezioneElimina la v&ariabile...Elimina una funzioneElimina una variabileCancella tutti i valori dalla memoriaElimina le funzioni:Elimina le variabili:Denom. deg:profondità:Derivata:Deviazione...Di&vidi le polinomiali...Diff...DifferenziaDifferenzia l'espressioneDeriva...Direzione:Grafico discretoMostra in Te&XMostra l'algoritmoMostra l'espressione precedente in TeXMostra il tempo impiegato per l'esecuzioneDividiDividi cellaDividi i numeri o i polinomialiSalvare i cambiamenti effettuati nel documento "Documento Sfondo del documentoNon salvareE&quazioni&Esci Ctrl-Q&AutovettoriAuto&valoriAnnullaAnnulla una variabile da un sistema di equazioniIngleseInserire i datiInserire la matrice...Inserisci una matriceInserire un'equazione per la semplificazione razionale:Inserire la lista di variabili separate dalla virgola.Invio elabora le celleInserire la matriceInserisci nuova precisione:Inserire il percorso dell'eseguibile Maxima.Epsilon:Equazione %d:Equazione(i):Equazione:Equazioni:ErroreErrore %dErrore!Elabora le forme &nominaliElabora tutte le celle Ctrl-RElabora le celleElabora le celle attive o selezionateElabora tutte le celle nel documentoValuta tutte le forme nominali nell'espressioneEsempioEsempio di testoEsci da wxMaximaEspandiEspandi (tr)Espandi l'espressioneEspandi i logaritmiEspandi un'espressioneEspandi l'espressione trigonometricaEsportaEsporta il documento in un file HTML o pdfLaTeXEsportazione su HTML fallita!Esportazione in TeX fallita!EspressioneEspressioni:Espressione:FattorizzaFattorizza in numeri complessiFattorizza l'espressioneFattorizza un'espressioneFattorizza un'espressione di numeri GaussianiFattoriali e &gammaErrore fataleFigura %d:FileFile non trovatoIl file che si sta provando ad aprire non esiste.File:TrovaTrova Ctrl-FTrova il &limite...Trova il minimo...Trova la radice...Trova un minimo (libero) di un'espressioneTrova il limite di un'espressioneTrova la radice di un'equazione in un intervalloTrova tutte le radici di una polinomialeTrova tutte le radici di una polinomiale (alta precisione)Cerca e sostituisciCerca e sostituisciTrova gli autovalori di una matriceTrova gli autovettori di una matriceTrova il minimoTrova le radici reali di una polinomialeTrova la radiceTrova...Carattere di ampiezza fissa nei controlli di testo.Carattere usato per mostrare il documento.Font usato per mostrare i caratteri matematici nel documento.FontFormato:FranceseDa:Pieno schermo Alt-InvioFunzioneNomi funzioneFunzione(i):Funzione:Funzioni per la semplificazione complessaFunzioni per semplificare fattoriali e funzione gammaFunzioni per semplificare le espressioni trigonometricheMCDImmagine GIF (*.gif)|*.gifMatematica generaleMatematica generale Alt-Shift-MGenera matriceGenera una matrice dall'espressione...Genera una matrice da un array bidimensionaleGenera una matrice da una espressione lambdaTedescoRicava la parte &immaginariaRicava le &serie...Calcola la trasformata di Laplace di un'espressioneRicava la p&arte realeCalcola la trasformata inversa di Laplace di un'espressioneCalcola la serie di Taylor o la serie di potenze di un un'espressioneRicava la parte immaginaria da un'espressione complessaRicava la parte reale da un'espressione complessaGrecoCostanti grecheGriglia:File HTML (*.html)|*.html|File PDFLaTeX (*.tex)|*.tex|Tutti|*Altezza:AiutoNascondi tutto Alt-Shift--Nascondi tutti i pannelliEvidenzia (dpart)IstogrammaIstogramma...CronologiaCronologia Alt-Shift-HIl cursore orizzontale lavora come un normale cursore, anche se opera sulle celle: premere le frecce in su e in giù per spostarlo, mantenendo premuto il tasto Maiusc durante questo movimento selezionerà le celle, premendo backspace o Canc due volte si cancellerà la cella vicina ad esso.UnghereseIC1IC2Se il calcolo dura troppo tempo, si può provare ad arrestarlo con i comandi da menu "Maxima->Interruzione" o "Maxima->Riavvia Maxima".ImmagineFile immagine (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmIncludi colonne:InfinitoInformazioni sulla compilazione di MaximaStime iniziali:Problema ai valori iniziali (&1)...Problema ai valori iniziali (&2)...Etichette d'ingressoInserisciInserisci cella &sezione Ctrl-3Inserisci cella &testo Ctrl-1Inserisci cella Alt-Shift-CInserisci immagineInserisci immagine...Inserisci &cella d'ingressoInserisci interruzione di paginaInserisci cella s&ottosezione Ctrl-4Inserisci cella sezioneInserisci cella sottosezioneInserisci cella t&itolo Ctrl-2Inserisci cella testoInserisci cella titoloInserisci nuova cella di ingressoInserisci nuova cella sezioneInserisci nuova cella sottosezioneInserisci nuova cella testoInserisci nuova cella titoloInserisci un'interruzione di paginaInserisci immagineIntegrale/somma:IntegraIntegra (Risch)Integra l'espressioneIntegra l'espressione con l'algoritmo di RischIntegra...InterruzioneInterruzione del calcolo correnteVoce non valida per il programma Maxima. Inserire nuovamente il percorso per il programma Maxima.Inversa di LaplaceT&rasformata inversa di Laplace...ItalianoCorsivoGiapponeseMantieni il simbolo di percentuale con i simboli speciali: %e, %i, ecc.mcmLingua usata per l'interfaccia grafica di wxMaxima.Lingua:Laplace&Trasformata di Laplace...Minimo comune multiplo...Metodo dei minimi quadratiMetodo dei minimi quadrati...LimiteLimite...Regressione lineare...Lista:CaricaCarica il pacchettoCarica un file Maxima usando un comando batchCarica un file pacchetto MaximaCarica lo stile da fileIntorno basso:Map&pa su matrice...Crea la &lista...Crea la listaCrea una lista da un'espressioneSostituisci in un'espressioneMappaMappa la funzione su di una listaMappa la funzione su di una matriceControllo parentesi nei controlli di testoCarattere matematica:MatriceMappa matriceNome matrice:Matrice:MaximaGuida di Maxima F1Ingresso di MaximaMaxima sta calcolandoPacchetto Maxima (*.mac)|*.macPacchetto Maxima (*.mac)|*.mac|Pacchetto Lisp (*.lisp)|*.lisp|Tutti|*Processo Maxima terminato.Programma maxima:Domande di MaximaMaxima avviato. In attesa di connessione...Maxima usa ":" per impostare i valori ("a : 3;") e ":=" per definire le funzioni ("f(x) := x^2;").Versione di Maxima: Test della differenza della media...Test della media...Media...Media:Mediana...Fondi celleMetodo:ModuloNome:NuovoNuovo Ctrl-NNuovo documentoNuovo valore:Nuova variabile:Comando successivo Alt-GiùNessuna corrispondenza trovata!Test di normalità...Dimensione matrice non valida!Numero di equazioni non valido!Non connesso.Num. deg:Numero di equazioni:NumeriOKVecchio valore:Vecchia variabile:Test t a un campioneGuide onlineApriApri recentiApri una cella mentre Maxima aspetta l'ingressoApri un documentoApri una nuova finestraApri documentoApri matriceDurante l'apertura del fileOpzioniOpzioni:Celle non aggiornateEtichette risultatiApprossimazione di P&ade...Immagine PNG (*.png)|*.png|immagine JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*.bmp|pixmap X (*.xpm)|*.xpmApprossimazione di PadeApprossimazione Pade di una serie di TaylorSaltopaginaPannelliStampa parametricaAnalisi risultato&Frazioni parziali...Frazioni parzialiParti del documento non saranno caricate correttamente!IncollaIncolla Ctrl-VIncolla dagli appuntiIncolla testo dagli appuntiDiagramma a torta...Configurare wxMaxima con "Modifica->Configura".Riavviare wxMaxima perché i cambiamenti abbiano effetto!Grafico &2d...Grafico &3d...&Formato grafico...Grafico 2DGrafico 2D...Grafico 2d...Grafico 3DGrafico 3D...Grafico 3d...Formato graficoGrafico in 2 dimensioniGrafico in 3 dimensioniGrafico su file:Punto:PolaccoPolinomiale 1:Polinomiale 2:Portoghese (Brasiliano)File postscript (*.eps)|*.eps|Tutti|PrecisioneComando precedente Alt-SuStampaStampa documentoProdottoLeggi la matrice...Lettura risultati maximaIn attesa di dati dall'utenteRichiama il comando successivo dalla cronologiaRichiama il comando precedente dalla cronologiaFormanormRiduci (tr)Riduci l'espressione trigonometricaElimina tutti i risultatiElimina tutti i risultati dalla celle d'ingressoRimpiazzate %d corrispondenze.Riporta un bugRiavvia maximaIntegrazione di Risch...Radici di &polinomialeRadici di polinomiale (bfloat)Righe:RussoEsempio 1:Esempio 2:Esempio:SalvaSalva animazione...Salva come&Salva come... Shift-Ctrl-SSalva immagine...Salva la selezione su immagineSalva la selezione su immagine...Salva l'animazione su fileSalvare i cambiamenti prima di chiudere?Salvare i cambiamenti?Salva documentoSalva documento comeSalva la disposizione pannelliSalva la disposizione dei pannelli tra le sessioni.Salva il grafico su fileSalva la selezione del documento su di un file immagineSalva la selezione su fileSalva lo stile su fileSalva l'ampiezza/posizione della finestra di wxMaximaSalva l'ampiezza/posizione della finestra di wxMaxima tra le sessioniGrafico a dispersioneGrafico a dispersione...SezioneSezione cellaSeleziona tuttoSeleziona tutto Ctrl-ASeleziona il programma maximaSeleziona il sottocampioneSeleziona una costanteSeleziona tuttoSeleziona l'algoritmo di visualizzazione matematicaSelezionando una parte del risultato e facendo clic destro sulla selezione si porterà in primo piano un menu con comode funzioni per operare sulla selezione.SelezioneSerieSerie...Server avviatoImposta la &precisione...Imposta lo zoomImposta la precisione bigfloatImposta carattere ad ampiezza fissa nei controlli di testo.Imposta il formato del graficoImposta lo zoom al 100%Imposta lo zoom al 120%Imposta lo zoom al 150%Imposta lo zoom al 200%Imposta lo zoom al 300%Imposta lo zoom al 80%Imposta i valori puntuali per risolvere l'ODE con la trasformata di LaplaceImposta il calcolo del moduloMostra la &definizione...Mostra le &funzioniMostra i suggerimen&ti...Mostra le &variabiliMostra la guida di maximaMostra il modello Ctrl-Shift-KMostra un suggerimentoMostra tutti i comandi simili a:Mostra un esempio per il comando:Mostra un esempio di usoMostra comandi simili aMostra le funzioni definiteMostra le variabili definiteMostra la definizione di una funzioneMostra un modello di funzioneMostra le espressioni lungheMostra le espressione lunghe nei documenti di wxMaxima.Mostra la definizione della funzione:SemplificaSemplifica i &radicaliSemplifica (r)Semplifica (tr)Semplifica l'espressioneSemplifica un'espressione contenente dei fattorialiSemplifica un'espressione contenente dei radicaliSemplifica espressione razionaleSemplifica la sommaSemplifica espressione trigonometricaDalla versione 0.8.2 di wxMaxima è possibile inserire immagini nei documenti. Usare il comando dal menu "Cella->Inserisci immagine...". Notare bene che è necessario salvare il documento in formato "documento XML wxMaxima" se si desidera che l'immagine venga salvata assieme al documento.Soluzione:RisolviRisolvi il sistema &algebrico...Risolvi il sistema &lineare...Risolvi &ODE...Risolvi (to_poly)...Risolvi ODERisolvi ODE con Lapla&ce...Risolvi ODE...Risolvi il sistema algebricoRisolvi il sistema algebrico di equazioniRisolvi il problema del valore al contorno per un'ODE di secondo gradoRisolvi le equazioniRisolvi le equazioni con to_poly_solverRisolvi problema del valore iniziale per un'ODE di primo gradoRisolvi problema del valore iniziale per un'ODE di secondo gradoRisolvi sistema lineareRisolvi sistema lineare di equazioniRisolvi l'equazione differenziale ordinaria per un grado massimo di 2Risolvi l'equazione differenziale ordinaria con la trasformata di LaplaceRisolvi...SpagnoloSpecialeCostanti specialiAvvia animazioneAvvia animazioneAvvio del processo Maxima fallitoAvvio di maxima...Avvio del server fallitoAvvio del server sul port %dStatisticheStatistiche Alt-Shift-SBlocca l'animazioneStringheStileStiliSottocampione...SottosezioneCella sottosezioneSostit...SostituisciSostituisci...SommaInformazioni sul sistemaSerie di Taylor:SemprazTestoCella di testoSfondo della cella di testoLa porta predefinita usata per la comunicazione tra Maxima e wxMaxima.Ci sono molte risorse su Maxima e wxMaxima su Internet. Visitare http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials per ottenere ulteriori informazioni sull'uso di wxMaxima e Maxima.C'è stato un'errore nell'XML generato! Fate un rapporto di questo bug.Si è verificato un errore durante l'esportazione a GIF! Controllare che ImageMagick sia installato e che wxMaxima possa trovare il programma "convert".Tacche:Volte:Spiacente, suggerimenti non disponibili!TitoloCella titoloLe celle titolo, selezione e sottoselezione possono essere chiuse per nascondere i propri contenuti. Per chiudere o aprire le celle, fare clic sul riquadro presso la cella. Se si preme la combinazione Maiusc-clic, anche tutti i sottolivelli delle celle verranno chiusi o aperti.In virgola mobile &precisaIn &virgola mobileIn virgola mobilePer disegnare un grafico in coordinate polari, selezionare "imposta polari" nella voce Opzioni nella finestra di dialogo Plot2d. È possibile avere grafici anche in sistemi di coordinate 3D sferiche e cilindriche.Per mettere le parentesi attorno ad un'espressione, selezionarla e premere "(" o ")" a seconda di dove si desidera che in seguito appaia il cursore.Per salvare la dimensione e posizione delle finestre di wxMaxima tra le sessioni, usare la finestra di dialogo "Modifica->Configura".Per cominciare subito a usare wxMaxima, si batta un comando. Dovrebbe apparire subito una cella. Poi premere Maiusc-Invio per farlo elaborare.A:Mostra/nascondi &algebricaMostra/nascondi risultati &numericiMostra/nascondi la visualizzazione del &tempoMostra/nascondi algebricaMostra/nascondi schermo pienoMostra/nascondi i risultati numericiBarra strumenti Alt-Shift-TIcone della barra degli strumentiTradotto daTrasponi una matriceTutorialTest t a due campioniTipo:UcrainoSottolineatoAnnulla Ctrl-ZAnnulla l'ultima modificaSupporto caratteri unicodeAggiornaIntorno alto:Usa l'algoritmo di GosperUsa il carattere punto centrato per la moltiplicazioneUsa font jsMathValore:Variabile(i):Variabile:VariabiliVariabili:Varianza...AttenzioneBenvenuti in wxMaximaQuando si applicano funzioni con un argomento dai menu, l'argomento predefinito è "%". Per applicare la funzione a qualche altro valore, selezionarlo nel documento prima di eseguirlo.Ampiezza:Scrivi le parentesi corrispondenti nei controlli di testo.Scritto daSi può accedere all'ultimo risultato usando la variabile "%". È possibile accedere al risultato di comandi precedenti usando le variabili "%on" dove n è il numero del risultato.Si può elaborare l'intero documento usando il comando da menu "Celle->Elabora tutte le celle" o tramite l'appropriata scorciatoia da tastiera. Le celle saranno valutate nell'ordine di apparizione nel documento.Si può ottenere aiuto su una funzione di Maxima selezionandola o facendo clic sul nome della funzione e premendo F1. wxMaxima cercherà nell'indice della guida la parola o la selezione di parole sutto il cursore.Si può nascondere i risultati delle celle facendo clic sul triangolo presente nel bordo sinistro delle celle. L'operazione funziona anche sulle celle di testo.Nei documenti di wxMaxima si può inserire differenti tipi di "celle" usando il menu "Cella". Da notare che solo le "celle d'ingresso" possono essere valutate, mentre le altre vengono usate per commentare e strutturare i propri calcoli.Celle multiple possono essere selezionate, con il mouse facendo clic e trascinando tra le celle o da una parentesi di cella a sinistra, oppure tramite tastiera mantenendo premuto il tasto Maiusc mentre viene spostato il cursore orizzontale, per poi operare su di esse tramite la selezione. Ciò torna comodo quando si vuole cancellare o valutare celle multiple.La versione installata è %s. L'ultima versione disponibile è %s. Selezionare OK per visitare il sito web di wxMaxima.I cambiamenti andranno persi se non vengono salvati.L'attuale versione di wxMaxima è aggiornata.&Ingrandisci Alt-IRimpicci&olisci Alt-OIngrandisci del 10%Rimpicciolisci del 10%Zoom impostato a [ non salvato ][ non salvato* ]antimmetricaentrambi i latipredefinitodiagonalegeneraleinlineasinistrolinee nascostescala logaritmicamatrice[i,j]:nodestrosimmetricanon salvatosenzanomesenzanome %dwxMaximawxMaxima %s Configurazione di wxMaximawxMaxima non riesce a trovare maxima! Configurare wxMaxima con "Modifica->Configura". Successivamente avviare maxima con "Maxima->Riavvia maxima".wxMaxima non riesce a trovare i file della guida. Controllare l'installazione.wxMaxima non riesce a trovare i file dei suggerimenti. Controllare l'installazione.wxMaxima non riesce a eseguire il server. Controllare che il supporto alla rete sia abilitato e riprovare!Le finestre di dialogo di wxMaxima impostano valori predefiniti per le voci di ingresso, uno dei quali è "%". Se si è effettuata una selezione nel documento corrente, questa verrà utilizzata al posto di "%".Documento wxMaximaDocumento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|File batch Maxima (*.mac)|*.macDocumento wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima ha riscontrato un errore durante il caricamento Icona wxMaximawxMaxima è un'interfaccia utente grafica basata sui wxWidgets per il sistema algebrico computerizzato Maxima.wxMaxima è un'interfaccia utente grafica basata sui wxWidgets per il sistema algebrico computerizzato Maxima.sìwxMaxima-13.04.2/locales/it.po000644 000765 000024 00000261377 11705765322 016510 0ustar00andrejstaff000000 000000 # wxMaxima italian po translation # Copyright (C) 2005-2011 Marco Ciampa # This file is distributed under the same license as the wxMaxima package. # Marco Ciampa , 2005-2011. # msgid "" msgstr "" "Project-Id-Version: wxMaxima\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2011-09-10 23:03+0200\n" "Last-Translator: Marco Ciampa \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" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Supporto Unicode: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Versione di Maxima: " #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Non connesso a Maxima!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "Non connesso." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "<< Espressione troppo lunga da visualizzare! >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " era stato salvato usando una versione più recente di wxMaxima perciò " "potrebbe non caricarsi correttamente. Si consiglia di aggiornare wxMaxima." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" " era stato salvato usando una versione più recente di wxMaxima. Si consiglia " "di aggiornare wxMaxima." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "&Algebra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "&Applica alla lista..." #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&A proposito di..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "File &batch...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Pro&blema del valore al contorno ..." #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Rapporto &bug" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "&Calcolo" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "Forma &canonica" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "Polinomiale &caratteristico ..." #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Cancella la memoria" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "&Combina i fattoriali" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "Semplificazione &Complessa" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "Frazione &continua" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "&Copia\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Integrazione &definita" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Determinante" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Differenzia..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Modifica" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "&Elimina la variabile..." #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "Ins&erire la matrice..." #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "&Esempio..." #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "&Espandi l'espressione" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "&Espandi trigonometrica" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "&Esponenzializza" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Esporta..." #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "Scomponi in &fattori" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&File" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "&Trova la radice..." #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "&Genera la matrice..." #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "&Massimo comun denominatore..." #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "&Aiuto" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Integra..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "&Interrompi\tCtrl-." #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "&Interrompi\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "&Inverti la matrice" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "Carica i&l pacchetto\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "&Mappa in una lista..." #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Calcolo &modulo..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Apri\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "&Numerico" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Integrazione &numerica" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "Som&nu" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Apri\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Apri...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Disegno" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Serie di &potenze" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "Stam&pa...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Razionale" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "&Riduci trigonometrica" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Riavvia Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "&Radici della polinomiale (reali)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Salva\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "&Semplifica" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "&Semplifica l'espressione" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "&Semplifica fattoriali" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "&Semplifica trigonometrica" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "Ris&olvi..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "&Speciale" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Serie di &Taylor:" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "&Trasponi la matrice" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "Semplificazione &trigonometrica" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(usa la lingua predefinita)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- infinito" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Un \"cursore orizzontale\" è stato introdotto in wxMaxima dalla versione " "0.8.0. Esso consiste in una linea orizzontale tra le celle. Esso indica dove " "una nuova cella apparirà se si digita o incolla del testo o si esegue in " "comando dai menu." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "A partire da wxMaxima versione 0.8.2 è stato introdotto un nuovo formato di " "documenti che salva non solamente il testo immesso ed i commenti, ma anche i " "risultati del calcoli. Quando salva il documento, selezionare \"Documento " "XML wxMaxima\" per salvare in questo nuovo formato." #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "A&l valore..." #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "Informazioni" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "Informazioni su wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Parentesi cella attiva" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Matrice ag&giunta" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Aggiungi &uguaglianza algebrica..." #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Aggiungi una directory al percorso di ricerca" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Aggiungi una directory al percorso:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "Aggiungi uguaglianza al semplificatore razionale" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Aggiungi al &percorso..." #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Parametri aggiuntivi per maxima (per es. -l clisp)." #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Parametri aggiuntivi:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Tutti|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animazione" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Applica" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Applica funzione ad una lista" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "Aproposito" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Array:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "Design grafico di" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "Richiedi il salvataggio dei documenti senza nome" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Al valore" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "Grafico a barre..." #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "File bat (*.bat)|*.bat|Tutti|*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "File batch" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Grassetto" #: ../src/wxMaximaFrame.cpp:1019 msgid "Boxplot..." msgstr "Grafico a blocchi..." #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Naviga" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "&Informazioni sulla compilazione" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Come impostazione predefinita la combinazione di tasti Maiusc-Invio viene " "usata per segnalare la richiesta di valutazione dei comandi, mentre Invio da " "solo viene usato per l'immisione di testo su più righe. Questo comportamento " "può essere modificato nella finestra di dialogo 'Modifica->Configura' " "selezionando 'Invio elabora le celle'. Questa impostazione scambia il " "comportamento di queste due combinazioni di tasti." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "Cambia la &variabile..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "C&onfigura" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "Calcola il &prodotto..." #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Calcola la so&mma..." #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Calcola il valore dell'ultimo risultato in virgola mobile precisa" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Calcola il valore dell'ultimo risultato in virgola mobile" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Calcola il modulo:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Calcola i prodotti" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Calcola le somme" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "Impossibile connettersi al server web." #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "Impossibile scaricare le informazioni di versione." #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Annulla" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "Canonica (tr)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Catalano" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "Ce&lla" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Parentesi cella" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Cambia la finestra &2d" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "" "Cambia l'algoritmo della finestra 2d usato per visualizzare il risultato." #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Cambia la variabile" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Cambia variabile nell'integrale o nella somma" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Polin. caratt." #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "Controlla gli aggiornamenti" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Controlla se esiste una versione più recente di wxMaxima/Maxima." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Cinese tradizionale" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Scegli font" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Scegliere un nuovo formato per il grafico:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "Classi:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "Chiudi\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Chiudi la finestra" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Nomi colonne:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Colonne:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Combina i fattoriali in un'espressione" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Coordinate x separate da virgole" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Coordinate y separate da virgole" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Commenta la selezione" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "Complete a parola\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Completa la parola" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Calcola la frazione continua di un valore" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Calcola la matrice aggiunta" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Calcola la polinomiale caratteristica di una matrice" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Calcola il determinante di una matrice" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Calcola il massimo comun denominatore" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Calcola l'inversa di una matrice" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "" "Calcola il minimo comune multiplo (esegui load(functs) prima di usarlo)" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Condizione:" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "File di configurazione (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Avvertenze di configurazione" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "Configura wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Costante" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "Contrai i logaritmi" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Converti binomiali, funzioni beta e gamma in fattoriali" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Converti binomiali, fattoriali e funzione beta in funzione gamma" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Converti l'espressione complessa nella forma polare" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Converti l'espressione complessa nella forma normale" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Converti la funzione esponenziale dell'argomento immaginario nella forma " "trigonometrica" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Converti il logaritmo del prodotto in somma di logaritmi" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Converti la somma dei logaritmi in logaritmo del prodotto" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Converti in &fattoriali" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Converti in &gamma" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Converti in forma &polare" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "Converti in forma no&rmale" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "" "Converti l'espressione trigonometrica nella forma canonica quasilineare" #: ../src/wxMaximaFrame.cpp:590 msgid "Convert trigonometric functions to exponential form" msgstr "Converti le funzioni trigonometriche nella forma esponenziale" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Copia" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Copia come immagine" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Copia come LaTeX" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "Copia l'inserimento precedente\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Copia come immagine" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Copia come LaTeX" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Copia come testo\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Copia la selezione" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Copia la selezione dal documento come immagine" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Copia la selezione dal documento come testo" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Copia la selezione dal documento in formato LaTeX" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Crea una nuova cella con i dati inseriti precedentemente" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Cursore" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Taglia" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "Taglia\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Taglia la selezione" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Ceco" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Danese" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Matrice dati:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "File dati (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Dati:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Decomponi la funzione razionale in frazioni parziali" #: ../src/Config.cpp:351 msgid "Default" msgstr "Predefinito" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Carattere predefinito:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Porta predefinita:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Elimina" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Elimina una f&unzione..." #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Elimina la selezione" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "Elimina la v&ariabile..." #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Elimina una funzione" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Elimina una variabile" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Cancella tutti i valori dalla memoria" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Elimina le funzioni:" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Elimina le variabili:" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "Denom. deg:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "profondità:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Derivata:" #: ../src/wxMaximaFrame.cpp:1003 msgid "Deviation..." msgstr "Deviazione..." #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Di&vidi le polinomiali..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Diff..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Differenzia" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Differenzia l'espressione" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Deriva..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Direzione:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Grafico discreto" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Mostra in Te&X" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Mostra l'algoritmo" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Mostra l'espressione precedente in TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Mostra il tempo impiegato per l'esecuzione" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Dividi" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Dividi cella" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Dividi i numeri o i polinomiali" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "Salvare i cambiamenti effettuati nel documento \"" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Documento " #: ../src/Config.cpp:368 msgid "Document background" msgstr "Sfondo del documento" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "Non salvare" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "E&quazioni" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "&Esci\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "&Autovettori" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Auto&valori" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Annulla" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Annulla una variabile da un sistema di equazioni" #: ../src/Config.cpp:243 msgid "English" msgstr "Inglese" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 msgid "Enter Data" msgstr "Inserire i dati" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Inserire la matrice..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Inserisci una matrice" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Inserire un'equazione per la semplificazione razionale:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Inserire la lista di variabili separate dalla virgola." #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Invio elabora le celle" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Inserire la matrice" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Inserisci nuova precisione:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Inserire il percorso dell'eseguibile Maxima." #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Equazione %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Equazione(i):" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Equazione:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Equazioni:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Errore" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Errore %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Errore!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Elabora le forme &nominali" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Elabora tutte le celle\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "Elabora le celle" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Elabora le celle attive o selezionate" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Elabora tutte le celle nel documento" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Valuta tutte le forme nominali nell'espressione" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Esempio" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Esempio di testo" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Esci da wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Espandi" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Espandi (tr)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Espandi l'espressione" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Espandi i logaritmi" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Espandi un'espressione" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Espandi l'espressione trigonometrica" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "Esporta" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Esporta il documento in un file HTML o pdfLaTeX" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "Esportazione su HTML fallita!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "Esportazione in TeX fallita!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Espressione" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Espressioni:" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Espressione:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Fattorizza" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Fattorizza in numeri complessi" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Fattorizza l'espressione" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Fattorizza un'espressione" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Fattorizza un'espressione di numeri Gaussiani" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Fattoriali e &gamma" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Errore fatale" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "Figura %d:" #: ../src/main.cpp:107 msgid "File" msgstr "File" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "File non trovato" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "Il file che si sta provando ad aprire non esiste." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "File:" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Trova" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "Trova\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Trova il &limite..." #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Trova il minimo..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Trova la radice..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Trova un minimo (libero) di un'espressione" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Trova il limite di un'espressione" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Trova la radice di un'equazione in un intervallo" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Trova tutte le radici di una polinomiale" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Trova tutte le radici di una polinomiale (alta precisione)" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Cerca e sostituisci" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Cerca e sostituisci" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Trova gli autovalori di una matrice" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Trova gli autovettori di una matrice" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Trova il minimo" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Trova le radici reali di una polinomiale" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Trova la radice" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Trova..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Carattere di ampiezza fissa nei controlli di testo." #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Carattere usato per mostrare il documento." #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Font usato per mostrare i caratteri matematici nel documento." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Font" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Formato:" #: ../src/Config.cpp:244 msgid "French" msgstr "Francese" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "Da:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "Pieno schermo\tAlt-Invio" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Funzione" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Nomi funzione" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Funzione(i):" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Funzione:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Funzioni per la semplificazione complessa" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Funzioni per semplificare fattoriali e funzione gamma" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Funzioni per semplificare le espressioni trigonometriche" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "MCD" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "Immagine GIF (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Matematica generale" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "Matematica generale\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Genera matrice" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "Genera una matrice dall'espressione..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Genera una matrice da un array bidimensionale" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Genera una matrice da una espressione lambda" #: ../src/Config.cpp:245 msgid "German" msgstr "Tedesco" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "Ricava la parte &immaginaria" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Ricava le &serie..." #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Calcola la trasformata di Laplace di un'espressione" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "Ricava la p&arte reale" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Calcola la trasformata inversa di Laplace di un'espressione" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Calcola la serie di Taylor o la serie di potenze di un un'espressione" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Ricava la parte immaginaria da un'espressione complessa" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Ricava la parte reale da un'espressione complessa" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Greco" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Costanti greche" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Griglia:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "File HTML (*.html)|*.html|File PDFLaTeX (*.tex)|*.tex|Tutti|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Altezza:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Aiuto" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "Nascondi tutto\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Nascondi tutti i pannelli" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Evidenzia (dpart)" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Istogramma" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Istogramma..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Cronologia" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "Cronologia\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "Il cursore orizzontale lavora come un normale cursore, anche se opera sulle " "celle: premere le frecce in su e in giù per spostarlo, mantenendo premuto il " "tasto Maiusc durante questo movimento selezionerà le celle, premendo " "backspace o Canc due volte si cancellerà la cella vicina ad esso." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Ungherese" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Se il calcolo dura troppo tempo, si può provare ad arrestarlo con i comandi " "da menu \"Maxima->Interruzione\" o \"Maxima->Riavvia Maxima\"." #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Immagine" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "File immagine (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "Includi colonne:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Infinito" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Informazioni sulla compilazione di Maxima" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Stime iniziali:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Problema ai valori iniziali (&1)..." #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Problema ai valori iniziali (&2)..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Etichette d'ingresso" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Inserisci" #: ../src/wxMaximaFrame.cpp:302 msgid "Insert &Section Cell\tCtrl-3" msgstr "Inserisci cella &sezione\tCtrl-3" #: ../src/wxMaximaFrame.cpp:298 msgid "Insert &Text Cell\tCtrl-1" msgstr "Inserisci cella &testo\tCtrl-1" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "Inserisci cella\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Inserisci immagine" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "Inserisci immagine..." #: ../src/wxMaximaFrame.cpp:296 msgid "Insert Input &Cell" msgstr "Inserisci &cella d'ingresso" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Page Break" msgstr "Inserisci interruzione di pagina" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Inserisci cella s&ottosezione\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Inserisci cella sezione" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Inserisci cella sottosezione" #: ../src/wxMaximaFrame.cpp:300 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Inserisci cella t&itolo\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Inserisci cella testo" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Inserisci cella titolo" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Inserisci nuova cella di ingresso" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Inserisci nuova cella sezione" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Inserisci nuova cella sottosezione" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Inserisci nuova cella testo" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Inserisci nuova cella titolo" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Inserisci un'interruzione di pagina" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Inserisci immagine" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Integrale/somma:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Integra" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Integra (Risch)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Integra l'espressione" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Integra l'espressione con l'algoritmo di Risch" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Integra..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Interruzione" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Interruzione del calcolo corrente" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Voce non valida per il programma Maxima.\n" "\n" "Inserire nuovamente il percorso per il programma Maxima." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Inversa di Laplace" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "T&rasformata inversa di Laplace..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italiano" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Corsivo" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Giapponese" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "" "Mantieni il simbolo di percentuale con i simboli speciali: %e, %i, ecc." #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "mcm" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Lingua usata per l'interfaccia grafica di wxMaxima." #: ../src/Config.cpp:235 msgid "Language:" msgstr "Lingua:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "&Trasformata di Laplace..." #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Minimo comune multiplo..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Metodo dei minimi quadrati" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Metodo dei minimi quadrati..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Limite" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Limite..." #: ../src/wxMaximaFrame.cpp:1010 msgid "Linear Regression..." msgstr "Regressione lineare..." #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Lista:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Carica" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Carica il pacchetto" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Carica un file Maxima usando un comando batch" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Carica un file pacchetto Maxima" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Carica lo stile da file" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Intorno basso:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Map&pa su matrice..." #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "Crea la &lista..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Crea la lista" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Crea una lista da un'espressione" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Sostituisci in un'espressione" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Mappa" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Mappa la funzione su di una lista" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Mappa la funzione su di una matrice" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "Controllo parentesi nei controlli di testo" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Carattere matematica:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Matrice" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Mappa matrice" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Nome matrice:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Matrice:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "Guida di Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Ingresso di Maxima" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima sta calcolando" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Pacchetto Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Pacchetto Maxima (*.mac)|*.mac|Pacchetto Lisp (*.lisp)|*.lisp|Tutti|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Processo Maxima terminato." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Programma maxima:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Domande di Maxima" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima avviato. In attesa di connessione..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima usa \":\" per impostare i valori (\"a : 3;\") e \":=\" per definire " "le funzioni (\"f(x) := x^2;\")." #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Versione di Maxima: " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "Test della differenza della media..." #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "Test della media..." #: ../src/wxMaximaFrame.cpp:1000 msgid "Mean..." msgstr "Media..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Media:" #: ../src/wxMaximaFrame.cpp:1001 msgid "Median..." msgstr "Mediana..." #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Fondi celle" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Metodo:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Modulo" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Nome:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "Nuovo" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "Nuovo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 msgid "New document" msgstr "Nuovo documento" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Nuovo valore:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Nuova variabile:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "Comando successivo\tAlt-Giù" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "Nessuna corrispondenza trovata!" #: ../src/wxMaximaFrame.cpp:1009 msgid "Normality Test..." msgstr "Test di normalità..." #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "Dimensione matrice non valida!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "Numero di equazioni non valido!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "Non connesso." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "Num. deg:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Numero di equazioni:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Numeri" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Vecchio valore:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Vecchia variabile:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "Test t a un campione" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Guide online" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Apri" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Apri recenti" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "Apri una cella mentre Maxima aspetta l'ingresso" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Apri un documento" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Apri una nuova finestra" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Apri documento" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "Apri matrice" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Durante l'apertura del file" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Opzioni" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Opzioni:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Celle non aggiornate" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Etichette risultati" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Approssimazione di P&ade..." #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "Immagine PNG (*.png)|*.png|immagine JPEG (*.jpg)|*.jpg|bitmap Windows (*." "bmp)|*.bmp|pixmap X (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Approssimazione di Pade" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Approssimazione Pade di una serie di Taylor" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Saltopagina" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "Pannelli" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Stampa parametrica" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Analisi risultato" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "&Frazioni parziali..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Frazioni parziali" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "Parti del documento non saranno caricate correttamente!" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Incolla" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "Incolla\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Incolla dagli appunti" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Incolla testo dagli appunti" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "Diagramma a torta..." #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Configurare wxMaxima con \"Modifica->Configura\"." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Riavviare wxMaxima perché i cambiamenti abbiano effetto!" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "Grafico &2d..." #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "Grafico &3d..." #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "&Formato grafico..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "Grafico 2D" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "Grafico 2D..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "Grafico 2d..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "Grafico 3D" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "Grafico 3D..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "Grafico 3d..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Formato grafico" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "Grafico in 2 dimensioni" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "Grafico in 3 dimensioni" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Grafico su file:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Punto:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polacco" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Polinomiale 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Polinomiale 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portoghese (Brasiliano)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "File postscript (*.eps)|*.eps|Tutti|" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Precisione" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "Comando precedente\tAlt-Su" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Stampa" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Stampa documento" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Prodotto" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "Leggi la matrice..." #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Lettura risultati maxima" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "In attesa di dati dall'utente" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "Richiama il comando successivo dalla cronologia" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "Richiama il comando precedente dalla cronologia" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Formanorm" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Riduci (tr)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Riduci l'espressione trigonometrica" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "Elimina tutti i risultati" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Elimina tutti i risultati dalla celle d'ingresso" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "Rimpiazzate %d corrispondenze." #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Riporta un bug" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Riavvia maxima" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Integrazione di Risch..." #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Radici di &polinomiale" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Radici di polinomiale (bfloat)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Righe:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Russo" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Esempio 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Esempio 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Esempio:" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Salva" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Salva animazione..." #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Salva come" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "&Salva come...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Salva immagine..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Salva la selezione su immagine" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "Salva la selezione su immagine..." #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Salva l'animazione su file" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "Salvare i cambiamenti prima di chiudere?" #: ../src/wxMaxima.cpp:4432 msgid "Save changes?" msgstr "Salvare i cambiamenti?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Salva documento" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Salva documento come" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Salva la disposizione pannelli" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Salva la disposizione dei pannelli tra le sessioni." #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Salva il grafico su file" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Salva la selezione del documento su di un file immagine" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Salva la selezione su file" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Salva lo stile su file" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Salva l'ampiezza/posizione della finestra di wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Salva l'ampiezza/posizione della finestra di wxMaxima tra le sessioni" #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "Grafico a dispersione" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "Grafico a dispersione..." #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Sezione" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Sezione cella" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Seleziona tutto" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "Seleziona tutto\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Seleziona il programma maxima" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "Seleziona il sottocampione" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Seleziona una costante" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Seleziona tutto" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Seleziona l'algoritmo di visualizzazione matematica" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Selezionando una parte del risultato e facendo clic destro sulla selezione " "si porterà in primo piano un menu con comode funzioni per operare sulla " "selezione." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Selezione" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Serie" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Serie..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Server avviato" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Imposta la &precisione..." #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Imposta lo zoom" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Imposta la precisione bigfloat" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Imposta carattere ad ampiezza fissa nei controlli di testo." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Imposta il formato del grafico" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Imposta lo zoom al 100%" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Imposta lo zoom al 120%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Imposta lo zoom al 150%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Imposta lo zoom al 200%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Imposta lo zoom al 300%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Imposta lo zoom al 80%" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" "Imposta i valori puntuali per risolvere l'ODE con la trasformata di Laplace" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Imposta il calcolo del modulo" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Mostra la &definizione..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Mostra le &funzioni" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "Mostra i suggerimen&ti..." #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Mostra le &variabili" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Mostra la guida di maxima" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "Mostra il modello\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Mostra un suggerimento" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Mostra tutti i comandi simili a:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Mostra un esempio per il comando:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Mostra un esempio di uso" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Mostra comandi simili a" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Mostra le funzioni definite" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Mostra le variabili definite" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Mostra la definizione di una funzione" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "Mostra un modello di funzione" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Mostra le espressioni lunghe" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Mostra le espressione lunghe nei documenti di wxMaxima." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Mostra la definizione della funzione:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Semplifica" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Semplifica i &radicali" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Semplifica (r)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Semplifica (tr)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Semplifica l'espressione" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Semplifica un'espressione contenente dei fattoriali" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Semplifica un'espressione contenente dei radicali" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Semplifica espressione razionale" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Semplifica la somma" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Semplifica espressione trigonometrica" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Dalla versione 0.8.2 di wxMaxima è possibile inserire immagini nei " "documenti. Usare il comando dal menu \"Cella->Inserisci immagine...\". " "Notare bene che è necessario salvare il documento in formato \"documento XML " "wxMaxima\" se si desidera che l'immagine venga salvata assieme al documento." #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Soluzione:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Risolvi" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Risolvi il sistema &algebrico..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Risolvi il sistema &lineare..." #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Risolvi &ODE..." #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Risolvi (to_poly)..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Risolvi ODE" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Risolvi ODE con Lapla&ce..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Risolvi ODE..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Risolvi il sistema algebrico" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Risolvi il sistema algebrico di equazioni" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Risolvi il problema del valore al contorno per un'ODE di secondo grado" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Risolvi le equazioni" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Risolvi le equazioni con to_poly_solver" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Risolvi problema del valore iniziale per un'ODE di primo grado" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Risolvi problema del valore iniziale per un'ODE di secondo grado" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Risolvi sistema lineare" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Risolvi sistema lineare di equazioni" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Risolvi l'equazione differenziale ordinaria per un grado massimo di 2" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "" "Risolvi l'equazione differenziale ordinaria con la trasformata di Laplace" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Risolvi..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Spagnolo" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Speciale" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Costanti speciali" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Avvia animazione" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Avvia animazione" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Avvio del processo Maxima fallito" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Avvio di maxima..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Avvio del server fallito" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Avvio del server sul port %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Statistiche" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "Statistiche\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Blocca l'animazione" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Stringhe" #: ../src/Config.cpp:99 msgid "Style" msgstr "Stile" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Stili" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "Sottocampione..." #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Sottosezione" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Cella sottosezione" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "Sostit..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Sostituisci" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Sostituisci..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Somma" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "Informazioni sul sistema" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Serie di Taylor:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Sempraz" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Testo" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Cella di testo" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Sfondo della cella di testo" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "La porta predefinita usata per la comunicazione tra Maxima e wxMaxima." #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Ci sono molte risorse su Maxima e wxMaxima su Internet. Visitare http://" "wxmaxima.sourceforge.net/wiki/index.php/Tutorials per ottenere ulteriori " "informazioni sull'uso di wxMaxima e Maxima." #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "C'è stato un'errore nell'XML generato!\n" "\n" "Fate un rapporto di questo bug." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Si è verificato un errore durante l'esportazione a GIF!\n" "\n" "Controllare che ImageMagick sia installato e che wxMaxima possa trovare il " "programma \"convert\"." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Tacche:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Volte:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Spiacente, suggerimenti non disponibili!" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Titolo" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Cella titolo" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Le celle titolo, selezione e sottoselezione possono essere chiuse per " "nascondere i propri contenuti. Per chiudere o aprire le celle, fare clic sul " "riquadro presso la cella. Se si preme la combinazione Maiusc-clic, anche " "tutti i sottolivelli delle celle verranno chiusi o aperti." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "In virgola mobile &precisa" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "In &virgola mobile" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "In virgola mobile" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Per disegnare un grafico in coordinate polari, selezionare \"imposta polari" "\" nella voce Opzioni nella finestra di dialogo Plot2d. È possibile avere " "grafici anche in sistemi di coordinate 3D sferiche e cilindriche." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Per mettere le parentesi attorno ad un'espressione, selezionarla e premere " "\"(\" o \")\" a seconda di dove si desidera che in seguito appaia il cursore." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Per salvare la dimensione e posizione delle finestre di wxMaxima tra le " "sessioni, usare la finestra di dialogo \"Modifica->Configura\"." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Per cominciare subito a usare wxMaxima, si batta un comando. Dovrebbe " "apparire subito una cella. Poi premere Maiusc-Invio per farlo elaborare." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "A:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Mostra/nascondi &algebrica" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Mostra/nascondi risultati &numerici" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Mostra/nascondi la visualizzazione del &tempo" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Mostra/nascondi algebrica" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Mostra/nascondi schermo pieno" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Mostra/nascondi i risultati numerici" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "Barra strumenti\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "Icone della barra degli strumenti" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Tradotto da" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Trasponi una matrice" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "Tutorial" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "Test t a due campioni" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Tipo:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ucraino" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Sottolineato" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "Annulla\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Annulla l'ultima modifica" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Supporto caratteri unicode" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "Aggiorna" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Intorno alto:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Usa l'algoritmo di Gosper" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Usa il carattere punto centrato per la moltiplicazione" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Usa font jsMath" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Valore:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Variabile(i):" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Variabile:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Variabili" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Variabili:" #: ../src/wxMaximaFrame.cpp:1002 msgid "Variance..." msgstr "Varianza..." #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Attenzione" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Benvenuti in wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Quando si applicano funzioni con un argomento dai menu, l'argomento " "predefinito è \"%\". Per applicare la funzione a qualche altro valore, " "selezionarlo nel documento prima di eseguirlo." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Ampiezza:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Scrivi le parentesi corrispondenti nei controlli di testo." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Scritto da" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Si può accedere all'ultimo risultato usando la variabile \"%\". È possibile " "accedere al risultato di comandi precedenti usando le variabili \"%on\" dove " "n è il numero del risultato." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Si può elaborare l'intero documento usando il comando da menu \"Celle-" ">Elabora tutte le celle\" o tramite l'appropriata scorciatoia da tastiera. " "Le celle saranno valutate nell'ordine di apparizione nel documento." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Si può ottenere aiuto su una funzione di Maxima selezionandola o facendo " "clic sul nome della funzione e premendo F1. wxMaxima cercherà nell'indice " "della guida la parola o la selezione di parole sutto il cursore." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Si può nascondere i risultati delle celle facendo clic sul triangolo " "presente nel bordo sinistro delle celle. L'operazione funziona anche sulle " "celle di testo." #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Nei documenti di wxMaxima si può inserire differenti tipi di \"celle\" " "usando il menu \"Cella\". Da notare che solo le \"celle d'ingresso\" possono " "essere valutate, mentre le altre vengono usate per commentare e strutturare " "i propri calcoli." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Celle multiple possono essere selezionate, con il mouse facendo clic e " "trascinando tra le celle o da una parentesi di cella a sinistra, oppure " "tramite tastiera mantenendo premuto il tasto Maiusc mentre viene spostato il " "cursore orizzontale, per poi operare su di esse tramite la selezione. Ciò " "torna comodo quando si vuole cancellare o valutare celle multiple." #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "La versione installata è %s. L'ultima versione disponibile è %s.\n" "\n" "Selezionare OK per visitare il sito web di wxMaxima." #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "I cambiamenti andranno persi se non vengono salvati." #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "L'attuale versione di wxMaxima è aggiornata." #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "&Ingrandisci\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "Rimpicci&olisci\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Ingrandisci del 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Rimpicciolisci del 10%" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Zoom impostato a " #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ non salvato ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ non salvato* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antimmetrica" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "entrambi i lati" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "predefinito" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonale" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "generale" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "inlinea" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "sinistro" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "linee nascoste" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "scala logaritmica" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "matrice[i,j]:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "no" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "destro" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "simmetrica" #: ../src/wxMaxima.cpp:4403 msgid "unsaved" msgstr "non salvato" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "senzanome" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "senzanome %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "Configurazione di wxMaxima" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima non riesce a trovare maxima!\n" "\n" "Configurare wxMaxima con \"Modifica->Configura\".\n" "Successivamente avviare maxima con \"Maxima->Riavvia maxima\"." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima non riesce a trovare i file della guida.\n" "\n" "Controllare l'installazione." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima non riesce a trovare i file dei suggerimenti.\n" "\n" "Controllare l'installazione." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima non riesce a eseguire il server.\n" "\n" "Controllare che il supporto alla rete\n" "sia abilitato e riprovare!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "Le finestre di dialogo di wxMaxima impostano valori predefiniti per le voci " "di ingresso, uno dei quali è \"%\". Se si è effettuata una selezione nel " "documento corrente, questa verrà utilizzata al posto di \"%\"." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "Documento wxMaxima" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "Documento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|File " "batch Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "Documento wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima ha riscontrato un errore durante il caricamento " #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "Icona wxMaxima" #: ../src/wxMaxima.cpp:3355 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima è un'interfaccia utente grafica basata sui wxWidgets per il sistema " "algebrico computerizzato Maxima." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima è un'interfaccia utente grafica basata sui wxWidgets per il sistema " "algebrico computerizzato Maxima." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "sì" wxMaxima-13.04.2/locales/ja.mo000644 000765 000024 00000151751 11710501376 016446 0ustar00andrejstaff000000 000000 q\) 7!7<7E7 W7c7y7 7 777 7778 &838 I8 S8`8r8x88 8888 889 99+9G9 M9[9m9|999999 999 9: ::5:E: a: n:x::: ::::: ;; );4;; <<<<==>=O=_=v=|=== === = == == ==> >??+-?(Y?????? ??;?@".@ Q@[@2m@@ @@ @@#@A A>APA eA%sAA1A#A# B.B@NB BBB8BAB(D3DE E EE :E HEVEpE(E$E,E%E F'F +F 6FDFJF QF^F0dFF F FFFFFF GG;GOG cGoG vG GGG GGG G GGH#H CHdH kHwHH H H H H H/HI I)I9I(HIqIII I I I IIII J#J">J%aJJ JJ JJJJJ K*K;KUK nKyK KKKKK(KK&L7L =LILXL hL/uLL)LL' M4MEMVMsM MM MMMMMMNNN&N 5N BNLN PN]NvN"N,N*NOOO++OWO3fO,O,O'OP"P2P;8PtP|PPP P PPPP QQQ~QVR@\RRRRRRS S+S2S JSWSgSSSSSS S T TT0T)ET oT|TTTTTTT TTT U%U7ULURU[UpUvU {U*UUU UU V VV4VTVXVoV"V VV V VVV VVW?-WmW}W)WWWX!X 9XFXNX TX ^XjXrX xX XXXX XXXX X YY Y1Y 6YBY RY `YlYtY}Y YYdYZ%)Z OZYZ_ZoZ~ZZZ ZZZ Z3Z ([ 4[@[P[ X[ c[n[ v[ [ [[[ [[[ [ [[#\ 5\?\W\]\l\t\\\ \$\\ \ ])];]Z] r]}]]]]]] ] ]]]^ ^(^C^Z^ w^ ^^^^-^^ _" _ C_O_^_ f_ s_~___ ___ n`x` `````````a a:0akaa aaaa aa b#bW+o '-͋&-" P ]j ~ Č9ތ+DW%^%!!܍Q!Pr Ўݎ  < S*`!ď # :HHO*ʐ*ݐ7F@ ˑ ؑ  ,%<b.{ ƒ ͒ڒ-&#9']' ȓ!Փ *!/Q4n ֔ ccgy$-4DMT} -*Xi?z Ǘח   . 8B R_ x/ +Jrd9י''9aq"g *2(] 4қ  $.G MW[t//'7M$lɟߟ (ELbx àӠ ' E OY iv3*١ *G[k¢ޢ #* C PZk {0j!!:\"{ȥ ۥ  %2 B$O'tȦۦ 9 DKgçߧ ' ʨڨ  3@ T'a M%:Nbv@˪O \r$Fث ",OV]dz EH2 EYRȭ 1=!Z | ++(%$J$`V 34h$3Ұ  * @M a!n 0α IJ"ײ-'>f}³ٳH%81^. ִ"*'A!i-*ϵ94'Jr  ¶ ϶!ܶZfYSܷD0 u +"۹!"*M]Ns7º'0"7S7ûٻCf< Ƽ*Ӽ< [h !ʽ18T [g }п z  (8%Xr~;L hv $  9!C$e9    (!3Ugk2[&&  * CPW v   Vi89s\n;6h9oDFt'XY,ychegjk8w#$$gmDU0 w"}DLAaJ:2}m*l&;qV?1db_BiX&1L.p:R3~jJ 8ofZu8I0M#z za&M}/9^l^_4E1?)\%,E'd*WPICT{ _Q<F@ZvWH-CPyS!#sh B('nZ+L`-.=o\jw"T]G0fv*r 46H |>Nk m bn!E:BUK]OM+/`2{5FS-A u(5%ueV~/xqcvk)xJRQ,Ip{>(Q9|=KgpYf.7$C7`~WGd7 OsKx[?PUS^%eaN[2Trr ;Xt46=zty@l V  3b Y@+A">| ciq]<O<!R[53Gi )NH Not connected to Maxima! &Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- InfinityA 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd a directory to search pathAdd dir to path:Add to &Path...Additional parameters:ApplyApply function to a listAproposArray:Artwork byAt valueBC2Barsplot...Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate productsCalculate sumsCancelCanonical (tr)CatalanCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontClasses:Col. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Configure wxMaximaContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDocument backgroundE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter comma separated list of variables.Enter evaluates cellsEnter new precision:Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorEvaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFile you tried to open does not exist.File:Find Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:GCDGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:Hide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert Cell Alt-Shift-CInsert ImageInsert Image...Insert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...Interrupt current computationInverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseLCMLanguage:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:Name:New value:New variable:Next Command Alt-DownNo matches found!Normality Test...Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a documentOpen documentOpen matrixOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsPastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave As... Shift-Ctrl-SSave Image...Save Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Set &Precision...Set ZoomSet bigfloat precisionSet plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima...StatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TextText cellText cell backgroundThere are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.Ticks:Times:TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...Welcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%[ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaxima configurationwxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima encountered an error loading wxMaxima iconyesProject-Id-Version: wxmaxima0.87 Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2011-01-11 07:03+0900 Last-Translator: Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Japanese X-Poedit-Country: JAPAN X-Poedit-Basepath: C:\po_files X-Poedit-SearchPath-0: C:\po_files\wxmaxima Maximaと接続していません! 代数(&A)リストにコマンドを適用(&A)コマンドを探す(&A)バッチファイル(&B) Ctrl-B境界条件から特殊解を求める(&B)バグの報告(&B)微積分(&C)三角関数式の整理(&C)固有多項式(&C)メモリをクリア(&C)係数の結合(&C)複素関数への操作(&C)連分数で表示(&C)コピー(&C) Ctrl-C定積分(&D)指数関数の変換(&D)行列式の計算(&D)微分(&D)編集(&E)方程式の数を減らす(&E)手入力による行列生成(&E)コマンドの使用例(&E)展開(&E)三角関数の展開(&E)三角関数の変換(&E)エクスポート(&E)因数分解(&F)ファイル(&F)解を1つ探す(&F)文字のみの行列生成(&G)最大公約数(&G)ヘルプ(&H)積分(&I)処理を強制終了(&I) Ctrl-G逆行列(&I)パッケージ読込み(&L) Ctrl-Lリストに関数を適用(&M)&Maxima数値処理(&N)結果を小数で出力(&N)数式で出力(&N)開く(&O) Ctrl-O開く(&O) Ctrl-Oプロット(&P)ベキ級数で表示(&P)印刷(&P) Ctrl-P置換の代わりに代入を行う(&R)三角関数の結合(&R)ラベル番号をリセット(&R)実数解のみ求める(&R)上書き保存(&S) Ctrl-S式の変形(&S)式の整理(&S)階乗式の整理(&S)三角関数の変形(&S)方程式を解く(&S)特殊プロット(&S)テイラー展開を用いる(&T)転置行列(&T)三角関数への操作(&T)&PM3Dを有効(デフォルトの言語を使用)-∞wxMaxima 0.8.0 より「水平カーソル」が導入されました。これはセルとセルの間に現れる水平線のことです。「水平カーソル」はテキストの入力や貼り付け,メニューバーからコマンドを実行する時に,新しいセルが現れる位置を知らせます。wxMaxima 0.8.2 より新しいドキュメントフォーマット「wxMaxima XML document」が導入されました。これにより,「入力セル」やドキュメント用セルの内容だけでなく,「出力セル」の内容も保存できるようになりました。作成したドキュメントを保存する際,特別な理由が無ければ「wxMaxima XML document」を選択してください。初期条件の設定(&T)wxMaximaについてwxMaximaについてアクティブセル余因子行列(&J)Maximaパッケージを検索するディレクトリの追加検索するディレクトリの選択:検索するディレクトリを追加(&P)追加パラメーター:リストにコマンドを適用リストにコマンドを適用(ダイアログの"関数"は"コマンド"のことです)コマンド検索文字:Artwork by初期条件境界条件棒グラフバッチファイル太字箱ひげ図参照ビルド情報(&I)初期設定ではShift-Enterで入力セルの評価,Enterで改行を行います。この設定を変更するには,メニューバーの「編集」より「設定」ダイアログを開き,「Enterでセルを評価」にチェックを入れてください。変数の置換(&H)設定(&O)数列の総乗(&P)数列の総和(&M)浮動小数点で出力小数点で出力総乗を計算総和を計算キャンセル整理 (tri)カタロニア語セル出力の表示形式を変更(&2)数式の出力形式を変更変数の置換未評価の積分,総和,総乗の変数を置換固有多項式更新の確認wxMaxima/Maxima の最新版がないか確認します中国語(繁体字)フォントの選択区間の数:文字変数:列数:与えられた階乗とその係数を結合して一つの階乗に変換各x座標はカンマで区切ってください各y座標はカンマで区切ってください選択をコメント化単語補完 Ctrl-K単語補完連分数を求める(連分数の段数はコマンド "cflength:<段数>"で変更可能)余因子行列を求める固有多項式を求めます行列式の計算最大公約数を求める逆行列を求める最小公倍数を求める抽出条件(複数指定可): (col[i]#Xでi列のXを除外) (col[i]=Xでi列のXのみ抽出)設定対数の結合2項係数,ベータ関数およびガンマ関数を階乗に変換2項係数,ベータ関数および階乗をガンマ関数に変換複素関数またはその展開形を極形式に変換(指数関数として出力されます)複素関数を実変数の関数と虚数iの積の形に変換引数が複素数の指数関数を三角関数に変換対数の展開(自動的に展開したい場合はコマンド"logexpand:super"を入力)展開された状態の対数をまとめる階乗に変換(&F)ガンマ関数に変換(&G)複素関数の変換(&P)複素関数の展開(&R)三角関数を含む有理式を整理(引数にyπが含まれると余計に複雑になる事があります)三角関数および双曲線関数を指数関数に変換コピー画像としてコピーLaTeXとしてコピー直前の入力を再入力 Ctrl-I画像としてコピーLaTeXとしてコピーテキストとしてコピー Ctrl-Shift-Cコピー選択範囲を画像としてコピー選択範囲をテキストとしてコピー選択範囲をLaTeXとしてコピー新しいセルに直前の入力を再入力カーソル切り取り切り取り Ctrl-X切り取りチェコ語デンマーク語データ(行列):リスト/ベクトル:指定した変数に対して部分分数分解を実行特別な文字列入力用フォント:通信ポート:削除ユーザー定義関数を削除(&U)選択を削除ユーザー定義変数を削除(&A)ユーザー定義関数を削除ユーザー定義変数を削除セルの内容は保持してMaximaを起動した直後の状態にリセット削除する関数名の入力:削除する変数の入力:分母の最高次数:次数の指定:導関数の値:標準偏差多項式の除算(&V)微分微分微分微分近づき方:座標データプロットTeX形式で出力(&X)表示形式一番新しい出力をTeX形式で出力計算に要した時間を表示除算セルの分割[商]および[余り]を出力ドキュメントの背景色方程式(&Q)終了(&X) Ctrl-Q固有ベクトル(&N)固有値(&V)消去連立方程式から指定した変数を消去(方程式に代入)英語行列の各成分に任意の値を入力行列を手入力行列の各成分に任意の値を入力変数はカンマで区切ります(例:x,y,…)Enterでセルを評価(改行はShift+Enterに変更されます)表示桁数の設定:許容誤差:方程式 %d:方程式:方程式:方程式:エラー未評価の式を評価(&N)全てのセルを評価 Ctrl-Rセルを評価アクティブ/選択セルを評価全てのセルを評価'integrateのような未評価の式を評価使用例wxMaximaを終了展開展開 (tri)展開対数の展開展開三角関数および双曲線関数の展開エクスポートHTML/TeX形式でエクスポートエクスポートに失敗しましたエクスポートに失敗しました関数関数:関数:因数分解複素数の範囲で因数分解因数分解因数分解(素因数分解も可能)複素数の範囲で因数分解階乗とガンマ関数(&G)開こうとしたファイルは 存在しませんEPS形式で出力:テキストを検索 Ctrl-F極限値(&L)極小値解を1つ探す正しい極小値を得るには開始位置の値を極小値の付近に設定してください極限値を求める定義域内で解を1つ探す(定義域の両端の符号が同じ場合エラーを出します)方程式の解を小数で求める方程式の解を浮動小数点で求める検索と置換検索と置換固有値を求める([固有値],[各固有値の重複]の順に表示)固有ベクトルを求める([固有値],[各固有値の重複],[各固有値での固有ベクトル]の順に表示)極小値方程式の実数解を有理数で求める解を1つ探す解を1つ探すテキスト入力ボックスで固定幅フォントを使用フォント表示方法:フランス語下端:全画面表示 Alt-Enter表示ユーザー定義関数名関数:関数:最大公約数数式処理数式処理 Alt-Shift-M行列生成関数から行列生成文字のみの行列を生成i行j列の成分に関数f(i,j)の値を代入ドイツ語虚部を取り出す(&I)テイラー展開(&S)ラプラス変換を求める実部を取り出す(&A)ラプラス逆変換を求めます(分母の多項式は各次数が定まっている必要があります)テイラー級数またはそのベキ級数を求める複素関数から虚部を取り出す複素関数から実部を取り出すギリシャ語ギリシャ文字グラフの滑らかさ(y):HTML ドキュメント (*.html)|*.html|TeX ファイル (*.tex)|*.tex|すべてのファイル (*.*)|*列数:全て隠す Alt-Shift--サイドバーのツールを全て隠す強調コマンド(dpartなど)の出力ヒストグラムヒストグラム入力履歴入力履歴 Alt-Shift-H水平カーソルは上下方向にだけ動かせます。また,Shiftを押しながら動かすとセルを選択できます。水平カーソルを表示した状態でBackspace,またはDeleteキーを二回押すと,それぞれ水平カーソルの上または下のセルを削除します。ハンガリー語特殊解特殊解もし入力セルの評価に時間がかかるようであれば、メニューバーの「Maxima」より「処理を強制終了」または「ラベル番号をリセット」を実行して下さい。画像画像ファイル (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm抽出列∞ビルド情報の表示開始位置:特殊解を求める(&1階微分方程式)特殊解を求める(&2階微分方程式)入力ラベル挿入セルの挿入 Alt-Shift-C画像の挿入画像の挿入入力セルを挿入セクションセルを挿入サブセクションセルを挿入テキストセルを挿入タイトルセルを挿入改ページを挿入画像を挿入未評価の式:積分Risch積分積分Rishのアルゴリズムによる積分積分処理を強制終了ラプラス逆変換ラプラス逆変換(&R)イタリア語斜体日本語最小公倍数使用言語:ラプラス変換ラプラス変換(&T)最小公倍数最小二乗法回帰式の係数と切片を求める極限値極限値単回帰分析リスト:設定の読込みパッケージ読み込みバッチ処理に使うファイルの読み込みパッケージファイルの読み込みスタイルの読み込み下限:行列に関数を適用(&P)リスト作成(&L)リスト作成関数からリストを作成式中の部分式を置換リストに関数を適用リストに関数を適用行列に関数を適用括弧の自動補完出力用フォント行列行列に関数を適用変数名:行列:ヘルプ(&H) F1入力文字列処理中バッチファイル (*.bat, *.mac)|*.bat;*.macMaxima パッケージ (*.mac)|*.mac|Lisp パッケージ (*.lisp)|*.lisp|すべてのファイル (*.*)|*Maxima本体のパス:条件不足時のMaximaの質問maximaと接続していますMaximaは「:」を使うことで変数に値を代入できます。また「:=」を使うことで関数を定義できます。 以下に使用例を示します ・ xに3を代入する場合、"x : 3;"と入力 ・ f(x) にx^2を定義する場合、「f(x) := x^2;」 と入力Maxima version: 母平均の差の検定母平均の検定平均値比較する値:中央値セルの結合数値積分法:変数名:新部分式:新変数:履歴から入力(次) Alt-Down一致する文字列がありません正規性の検定分子の最高次数:方程式の数:数値OK旧部分式:旧変数:t検定ブラウザでチュートリアルのページを開く参照最近開いたファイルドキュメントを開く開くファイルを開くオプションオプション:再入力する前の出力出力ラベルPade近似(&A)PNG ファイル (*.png)|*.png|JPEG ファイル (*.jpg)|*.jpg|ビットマップ ファイル (*.bmp)|*.bmp|XPM ファイル (*.xpm)|*.xpmPade近似テイラー級数を有理式で近似改ページサイドバー媒介変数プロット出力しています部分分数分解(&F)部分分数分解貼り付け貼り付け Ctrl-V貼り付けクリップボードから貼り付け円グラフ変更を有効にするにはwxMaximaを再起動する必要があります2次元プロット(&2)3次元プロット(&3)プロットエンジンの変更(&F)2次元プロット2次元プロット2次元プロット3次元プロット3次元プロット3次元プロットプロットエンジン2次元プロット(同時に複数の関数を表示可能)3次元プロット(同時に表示できる関数は1つまたは3つ)EPS形式で出力:値の入力:ポーランド語多項式 1:多項式 2:ポルトガル語(ブラジル)Postscript ファイル (*.eps)|*.eps|すべてのファイル (*.*)|*表示桁数履歴から入力(前) Alt-Up印刷印刷総乗行列のファイル処理が終了しました入力可能入力履歴のコマンドを古いものから順に表示します入力履歴のコマンドを新しいものから順に表示します複素関数展開結合 (tri)三角関数(sin,cos),双曲線関数(sinh,cosh)の積を一つの関数にまとめる全ての出力をクリア全ての出力をクリア%d箇所を置換しましたバグの報告ラベル番号をリセットRisch積分解を小数で求める(&P)解を浮動小数点で求める行数:ロシア語標本1(リスト/行ベクトル):標本2(リスト/行ベクトル):標本(リスト/行ベクトル):設定の保存名前を付けて保存 Shift-Ctrl-S画像として保存選択範囲を画像として保存アニメーションの開始このドキュメントは変更されています 閉じる前に保存しますか?変更の保存上書き保存名前を付けて保存前回のサイドバーのレイアウトを保持名前を付けて保存選択範囲を画像として保存画像として保存スタイルの保存前回のウインドウサイズと位置を保持散布図散布図セクションセクションセル全て選択全て選択 Ctrl-A標本抽出定数を選択してください全て選択数式の出力形式を選択してください出力結果を選択して右クリックすると、メニューが表示されます。その中には必要最小限のコマンドが入っており、その選択した部分に対して実行できます。選択範囲テイラー展開テイラー展開浮動小数点の桁数設定(&P)指定倍率で表示浮動小数点で表示する桁数の設定プロットに使うソフトの変更100%の倍率で表示120%の倍率で表示150%の倍率で表示200%の倍率で表示300%の倍率で表示80%の倍率で表示連立微分方程式の特殊解を求める際の初期条件を設定ユーザー定義関数を表示(&D)ユーザー定義関数名をリスト表示(&F)ヒントを表示(&T)ユーザー定義変数をリスト表示(&V)ヘルプコマンドの補完 Ctrl-Shift-Kヒントを表示コマンド名に含まれる文字列:使用例を見たいコマンド名:コマンドの使用例を表示コマンドを探すユーザー定義関数名をリスト表示ユーザー定義変数をリスト表示関数名を指定してユーザー定義関数を表示コマンドの補完出力に時間がかかる式も表示表示する関数名の入力式の整理関数の整理(&R)関数の整理変形 (tri)式の整理階乗を含む有理式を整理式中の関数も含めて整理(三角関数は文字定数として扱われます)式および関数の引数を整理(式中の関数自体は文字定数として扱われます)数式を整理して出力三角関数をsinとcosの関数,双曲線関数をsinhとcoshの関数に変形wxMaxima 0.8.2 よりドキュメント内に画像を挿入できるようになりました。メニューバーの「セル」より「画像の挿入」を選択してください。画像を挿入したドキュメントを保存するときは「wxMaxima XML document」フォーマットを選択してください。一般解:方程式連立高次方程式の解を求める(&A)連立一次方程式を解く(&L)微分方程式を解く(&O)高次方程式の解を求める微分方程式連立微分方程式を解く(&C)微分方程式連立高次方程式連立高次方程式の近似解(可能であれば厳密解)を求める2階微分方程式の一般解に境界条件を適用解の公式から厳密解を求める高次方程式の近似解を小数で求める1階微分方程式の一般解に初期条件を適用2階微分方程式の一般解に初期条件を適用連立一次方程式連立一次方程式を解くMaximaが対応しているのは2階常微分方程式までです連立微分方程式を解く (関数は変数名を明示する必要があります 例:f(x))方程式を解くスペイン語数学定数数学定数(ギリシャ文字以外)アニメーションの開始アニメーションの開始Maximaを起動しています統計処理統計処理 Alt-Shift-Sアニメーションの停止出力文字列スタイルスタイル標本(行ベクトル)抽出サブセクションサブセクションセル部分式の置換置換式中の部分式を置換総和System infoテイラー級数:テキストテキストセルテキストセルの背景色インターネット上にはMaximaおよびwxMaximaの情報が数多く存在しています。それらについてより多くの情報が必要ならば、http://wxmaxima.sourceforge.net/wiki/index.php/Tutorialsを訪れてみて下さい。グラフの滑らかさ:微分回数:タイトルタイトルセル「タイトルセル」,「セクションセル」,「サブセクションセル」は,そのセルよりも下位のセルを折りたたんで隠すことができます。セルの左上側にある正方形をクリックすることで「隠す/展開」の切り替えができます。Shiftを押しながらクリックすると,下位のセル全体に対して「隠す/展開」を行います。浮動小数点で出力(&B)小数点で出力(&F)小数点で出力2次元プロットでは、Plot2dダイアログのオプションの中から「set polar」を選択することで極座標プロットで出力できます。また3次元プロットでは、Plot3dダイアログのオプションの中から「set mapping spherical」や「set mapping cylindrical」を選択することで球座標や円柱座標プロットで出力できます。セル内の式を選択し、「 ( 」または「 ) 」を押すことでその式をカッコで括ることができます。wxMaxima起動時のウィンドウサイズと位置を保持したい場合は、メニューバーの「編集」から「設定」ダイアログを開き、「前回のウィンドウサイズと位置を保持」にチェックを入れて下さいwxMaximaを早速使ってみましょう.適当に文字や数式などを入力してください.すると入力セルが現れ、そこに入力されます.次にらShift-Enterを押してください.セルの内容が評価(計算)されます.上端:代数的整数の整理の有効化(&A)自動的に数値で出力(&N)計算に要した時間を表示(&T)式中の平方根や虚数といった代数的整数の整理を有効にします(デフォルトは無効)全画面表示の切り替え平方根やπといった数を自動的に数値で出力ツールバー Alt-Shift-TTranslated by転置行列を求めるチュートリアルt検定タイプ:ウクライナ語下線元に戻す Ctrl-Z一番新しい入力をリセットUnicode Supportソフトウェアの更新上限:Gosperアルゴリズムを使用乗法記号を・に置き換えるギリシャ文字のフォントにjsMathを使用する関数の値:変数:変数:変数変数:標本分散wxMaximaへようこそメニューバーからコマンドを実行するとき、デフォルトの引数は「%」(直前の出力結果)です。他の引数(それ以前の出力結果)を使用するときは、それを選択してから実行して下さい。行数:Written by以前の出力結果が再び必要になる場合もあるでしょう。一番新しい出力結果を使う場合、「 % 」で代用できます。それより以前の出力結果を使う場合は、「%on」(nは使用する出力結果の番号です)で代用できます。全ての入力セルの内容を一度に評価することができます。メニューバーの「セル」から「全てのセルを評価」を実行するか、そのショートカットキーを押してください。セルは上から順に評価されます。wxMaximaにはコマンド名やオプション変数のヘルプを検索する機能があります。検索したい単語を選択またはその上にカーソルを置き、F1キーを押すことでそれについてのヘルプが表示されます。「テキストセル」では,セルの左側の三角形をクリックすることでその内容を隠すことができます。メニューバーの「セル」より,「入力セル」以外のセルを挿入することができます。ただし、それらのセルはドキュメントの体裁を整えるために使うものです。評価を行えるのは「入力セル」のみであることに注意して下さい。複数のセルを選択すれば、それらをまとめて削除または評価できます。複数のセルを選択するには、水平カーソル(またはセルの左側にあるカッコ)をクリックしたままドラッグ、もしくはShiftキーを押しながら矢印キーで水平カーソルを動かしてください。お使いのwxMaximaは最新版です拡大(&I) Alt-I縮小(&T) Alt-OZoom in 10%縮小率10%[ 無題 ][ 無題* ]反対称行列挟み撃ちユーザ指定のプロットエンジン対角行列一般ドキュメント内で表示左極限対数目盛を使用関数f(i,j)=no右極限対称行列[ 無題 ]無題無題 %d設定メニューからコマンドを実行するとき、ダイアログ画面が現れるものにはその入力欄に「%」(直前の出力結果を表す記号)があらかじめ入力されています。ただし、ドキュメント内に選択状態のものがある場合、「%」の代わりにそれが入力されます。wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|バッチファイル (*.mac)|*.mac以下のファイルの読込みに失敗しました wxMaximayeswxMaxima-13.04.2/locales/ja.po000644 000765 000024 00000262645 11705765322 016465 0ustar00andrejstaff000000 000000 # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: wxmaxima0.87\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2011-01-11 07:03+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Japanese\n" "X-Poedit-Country: JAPAN\n" "X-Poedit-Basepath: C:\\po_files\n" "X-Poedit-SearchPath-0: C:\\po_files\\wxmaxima\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Maximaと接続していません!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "代数(&A)" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "リストにコマンドを適用(&A)" #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "コマンドを探す(&A)" #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "バッチファイル(&B)\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "境界条件から特殊解を求める(&B)" #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "バグの報告(&B)" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "微積分(&C)" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "三角関数式の整理(&C)" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "固有多項式(&C)" #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "メモリをクリア(&C)" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "係数の結合(&C)" #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "複素関数への操作(&C)" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "連分数で表示(&C)" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "コピー(&C)\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "定積分(&D)" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "指数関数の変換(&D)" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "行列式の計算(&D)" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "微分(&D)" #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "編集(&E)" #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "方程式の数を減らす(&E)" #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "手入力による行列生成(&E)" #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "コマンドの使用例(&E)" #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "展開(&E)" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "三角関数の展開(&E)" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "三角関数の変換(&E)" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "エクスポート(&E)" #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "因数分解(&F)" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "ファイル(&F)" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "解を1つ探す(&F)" #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "文字のみの行列生成(&G)" #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "最大公約数(&G)" #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "ヘルプ(&H)" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "積分(&I)" #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "" #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "処理を強制終了(&I)\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "逆行列(&I)" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "パッケージ読込み(&L)\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "リストに関数を適用(&M)" #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "" #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "数値処理(&N)" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "結果を小数で出力(&N)" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "数式で出力(&N)" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "開く(&O)\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "開く(&O)\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "プロット(&P)" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "ベキ級数で表示(&P)" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "印刷(&P)\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "置換の代わりに代入を行う(&R)" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "三角関数の結合(&R)" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "ラベル番号をリセット(&R)" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "実数解のみ求める(&R)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "上書き保存(&S)\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "式の変形(&S)" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "式の整理(&S)" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "階乗式の整理(&S)" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "三角関数の変形(&S)" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "方程式を解く(&S)" #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "特殊プロット(&S)" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "テイラー展開を用いる(&T)" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "転置行列(&T)" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "三角関数への操作(&T)" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&PM3Dを有効" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(デフォルトの言語を使用)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "-∞" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "" #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "wxMaxima 0.8.0 より「水平カーソル」が導入されました。これはセルとセルの間に現" "れる水平線のことです。「水平カーソル」はテキストの入力や貼り付け,メニュー" "バーからコマンドを実行する時に,新しいセルが現れる位置を知らせます。" #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "wxMaxima 0.8.2 より新しいドキュメントフォーマット「wxMaxima XML document」が" "導入されました。これにより,「入力セル」やドキュメント用セルの内容だけでな" "く,「出力セル」の内容も保存できるようになりました。作成したドキュメントを保" "存する際,特別な理由が無ければ「wxMaxima XML document」を選択してください。" #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "初期条件の設定(&T)" #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "wxMaximaについて" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "wxMaximaについて" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "アクティブセル" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "余因子行列(&J)" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "" #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Maximaパッケージを検索するディレクトリの追加" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "検索するディレクトリの選択:" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "検索するディレクトリを追加(&P)" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "追加パラメーター:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "リストにコマンドを適用" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "リストにコマンドを適用(ダイアログの\"関数\"は\"コマンド\"のことです)" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "コマンド検索" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "文字:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "Artwork by" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "初期条件" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "境界条件" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "棒グラフ" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "バッチファイル" #: ../src/Config.cpp:382 msgid "Bold" msgstr "太字" #: ../src/wxMaximaFrame.cpp:1019 msgid "Boxplot..." msgstr "箱ひげ図" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "参照" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "ビルド情報(&I)" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "初期設定ではShift-Enterで入力セルの評価,Enterで改行を行います。この設定を変" "更するには,メニューバーの「編集」より「設定」ダイアログを開き,「Enterでセル" "を評価」にチェックを入れてください。" #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "変数の置換(&H)" #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "設定(&O)" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "数列の総乗(&P)" #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "数列の総和(&M)" #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "浮動小数点で出力" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "小数点で出力" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "総乗を計算" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "総和を計算" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "" #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "" #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "キャンセル" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "整理 (tri)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "カタロニア語" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "セル" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "出力の表示形式を変更(&2)" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "数式の出力形式を変更" #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "変数の置換" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "未評価の積分,総和,総乗の変数を置換" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "固有多項式" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "更新の確認" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "wxMaxima/Maxima の最新版がないか確認します" #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "中国語(繁体字)" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "フォントの選択" #: ../src/PlotFormatWiz.cpp:27 #, fuzzy msgid "Choose new plot format:" msgstr "グラフ表示に使用するアプリケーション名を入力:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "区間の数:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "文字変数:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "列数:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "与えられた階乗とその係数を結合して一つの階乗に変換" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "各x座標はカンマで区切ってください" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "各y座標はカンマで区切ってください" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "選択をコメント化" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "単語補完\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "単語補完" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "" "連分数を求める(連分数の段数はコマンド \"cflength:<段数>\"で変更可能)" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "余因子行列を求める" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "固有多項式を求めます" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "行列式の計算" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "最大公約数を求める" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "逆行列を求める" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "最小公倍数を求める" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "" "抽出条件(複数指定可):\n" "(col[i]#Xでi列のXを除外)\n" "(col[i]=Xでi列のXのみ抽出)" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "設定" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "対数の結合" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "2項係数,ベータ関数およびガンマ関数を階乗に変換" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "2項係数,ベータ関数および階乗をガンマ関数に変換" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "複素関数またはその展開形を極形式に変換(指数関数として出力されます)" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "複素関数を実変数の関数と虚数iの積の形に変換" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "引数が複素数の指数関数を三角関数に変換" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "" "対数の展開(自動的に展開したい場合はコマンド\"logexpand:super\"を入力)" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "展開された状態の対数をまとめる" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "階乗に変換(&F)" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "ガンマ関数に変換(&G)" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "複素関数の変換(&P)" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "複素関数の展開(&R)" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "" "三角関数を含む有理式を整理(引数にyπが含まれると余計に複雑になる事がありま" "す)" #: ../src/wxMaximaFrame.cpp:590 msgid "Convert trigonometric functions to exponential form" msgstr "三角関数および双曲線関数を指数関数に変換" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "コピー" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "画像としてコピー" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "LaTeXとしてコピー" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "直前の入力を再入力\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "画像としてコピー" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "LaTeXとしてコピー" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "テキストとしてコピー\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "コピー" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "選択範囲を画像としてコピー" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "選択範囲をテキストとしてコピー" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "選択範囲をLaTeXとしてコピー" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "新しいセルに直前の入力を再入力" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "カーソル" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "切り取り" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "切り取り\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "切り取り" #: ../src/Config.cpp:241 msgid "Czech" msgstr "チェコ語" #: ../src/Config.cpp:242 msgid "Danish" msgstr "デンマーク語" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "データ(行列):" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "リスト/ベクトル:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "指定した変数に対して部分分数分解を実行" #: ../src/Config.cpp:351 msgid "Default" msgstr "特別な文字列" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "入力用フォント:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "通信ポート:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "削除" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "ユーザー定義関数を削除(&U)" #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "選択を削除" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "ユーザー定義変数を削除(&A)" #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "ユーザー定義関数を削除" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "ユーザー定義変数を削除" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "セルの内容は保持してMaximaを起動した直後の状態にリセット" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "削除する関数名の入力:" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "削除する変数の入力:" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "分母の最高次数:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "次数の指定:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "導関数の値:" #: ../src/wxMaximaFrame.cpp:1003 msgid "Deviation..." msgstr "標準偏差" #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "多項式の除算(&V)" #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "微分" #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "微分" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "微分" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "微分" #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "近づき方:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "座標データプロット" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "TeX形式で出力(&X)" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "表示形式" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "一番新しい出力をTeX形式で出力" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "計算に要した時間を表示" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "除算" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "セルの分割" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "[商]および[余り]を出力" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "" #: ../src/Config.cpp:368 msgid "Document background" msgstr "ドキュメントの背景色" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "方程式(&Q)" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "終了(&X)\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "固有ベクトル(&N)" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "固有値(&V)" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "消去" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "連立方程式から指定した変数を消去(方程式に代入)" #: ../src/Config.cpp:243 msgid "English" msgstr "英語" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 msgid "Enter Data" msgstr "行列の各成分に任意の値を入力" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "行列を手入力" #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "行列の各成分に任意の値を入力" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "変数はカンマで区切ります(例:x,y,…)" #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Enterでセルを評価(改行はShift+Enterに変更されます)" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "表示桁数の設定:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "" #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "許容誤差:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "方程式 %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "方程式:" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "方程式:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "方程式:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "エラー" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "未評価の式を評価(&N)" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "全てのセルを評価\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "セルを評価" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "アクティブ/選択セルを評価" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "全てのセルを評価" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "'integrateのような未評価の式を評価" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "使用例" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "wxMaximaを終了" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "展開" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "展開 (tri)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "展開" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "対数の展開" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "展開" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "三角関数および双曲線関数の展開" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "エクスポート" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "HTML/TeX形式でエクスポート" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "エクスポートに失敗しました" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "エクスポートに失敗しました" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "関数" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "関数:" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "関数:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "因数分解" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "複素数の範囲で因数分解" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "因数分解" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "因数分解(素因数分解も可能)" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "複素数の範囲で因数分解" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "階乗とガンマ関数(&G)" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "" #: ../src/main.cpp:107 msgid "File" msgstr "" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "" "開こうとしたファイルは\n" "存在しません" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "EPS形式で出力:" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "テキストを検索\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "極限値(&L)" #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "極小値" #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "解を1つ探す" #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "正しい極小値を得るには開始位置の値を極小値の付近に設定してください" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "極限値を求める" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "定義域内で解を1つ探す(定義域の両端の符号が同じ場合エラーを出します)" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "方程式の解を小数で求める" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "方程式の解を浮動小数点で求める" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "検索と置換" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "検索と置換" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "固有値を求める([固有値],[各固有値の重複]の順に表示)" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "" "固有ベクトルを求める([固有値],[各固有値の重複],[各固有値での固有ベクトル]の" "順に表示)" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "極小値" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "方程式の実数解を有理数で求める" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "解を1つ探す" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "解を1つ探す" #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "テキスト入力ボックスで固定幅フォントを使用" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "" #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "" #: ../src/Config.cpp:330 msgid "Fonts" msgstr "フォント" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "表示方法:" #: ../src/Config.cpp:244 msgid "French" msgstr "フランス語" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "下端:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "全画面表示\tAlt-Enter" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "表示" #: ../src/Config.cpp:354 msgid "Function names" msgstr "ユーザー定義関数名" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "関数:" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "関数:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "最大公約数" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "数式処理" #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "数式処理\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "行列生成" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "関数から行列生成" #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "文字のみの行列を生成" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "i行j列の成分に関数f(i,j)の値を代入" #: ../src/Config.cpp:245 msgid "German" msgstr "ドイツ語" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "虚部を取り出す(&I)" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "テイラー展開(&S)" #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "ラプラス変換を求める" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "実部を取り出す(&A)" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "" "ラプラス逆変換を求めます(分母の多項式は各次数が定まっている必要があります)" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "テイラー級数またはそのベキ級数を求める" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "複素関数から虚部を取り出す" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "複素関数から実部を取り出す" #: ../src/Config.cpp:246 msgid "Greek" msgstr "ギリシャ語" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "ギリシャ文字" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "グラフの滑らかさ(y):" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "" "HTML ドキュメント (*.html)|*.html|TeX ファイル (*.tex)|*.tex|すべてのファイ" "ル (*.*)|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "列数:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "全て隠す\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "サイドバーのツールを全て隠す" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "強調コマンド(dpartなど)の出力" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "ヒストグラム" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "ヒストグラム" #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "入力履歴" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "入力履歴\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "水平カーソルは上下方向にだけ動かせます。また,Shiftを押しながら動かすとセルを" "選択できます。水平カーソルを表示した状態でBackspace,またはDeleteキーを二回押" "すと,それぞれ水平カーソルの上または下のセルを削除します。" #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "ハンガリー語" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "特殊解" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "特殊解" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "もし入力セルの評価に時間がかかるようであれば、メニューバーの「Maxima」より" "「処理を強制終了」または「ラベル番号をリセット」を実行して下さい。" #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "画像" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "画像ファイル (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "抽出列" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "∞" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "ビルド情報の表示" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "開始位置:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "特殊解を求める(&1階微分方程式)" #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "特殊解を求める(&2階微分方程式)" #: ../src/Config.cpp:359 msgid "Input labels" msgstr "入力ラベル" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "挿入" #: ../src/wxMaximaFrame.cpp:302 #, fuzzy msgid "Insert &Section Cell\tCtrl-3" msgstr "セクションセル(&S)\tF8" #: ../src/wxMaximaFrame.cpp:298 #, fuzzy msgid "Insert &Text Cell\tCtrl-1" msgstr "テキストセル(&T)\tF6" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "セルの挿入\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "画像の挿入" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "画像の挿入" #: ../src/wxMaximaFrame.cpp:296 #, fuzzy msgid "Insert Input &Cell" msgstr "入力セル(&C)\tF5" #: ../src/wxMaximaFrame.cpp:306 #, fuzzy msgid "Insert Page Break" msgstr "改ページを挿入\tF10" #: ../src/wxMaximaFrame.cpp:304 #, fuzzy msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "サブセクションセル(&C)\tF7" #: ../src/MathCtrl.cpp:724 #, fuzzy msgid "Insert Section Cell" msgstr "セクションセル(&S)\tF8" #: ../src/MathCtrl.cpp:725 #, fuzzy msgid "Insert Subsection Cell" msgstr "サブセクションセル(&C)\tF7" #: ../src/wxMaximaFrame.cpp:300 #, fuzzy msgid "Insert T&itle Cell\tCtrl-2" msgstr "タイトルセル(&I)\tF9" #: ../src/MathCtrl.cpp:722 #, fuzzy msgid "Insert Text Cell" msgstr "テキストセル(&T)\tF6" #: ../src/MathCtrl.cpp:723 #, fuzzy msgid "Insert Title Cell" msgstr "タイトルセル(&I)\tF9" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "入力セルを挿入" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "セクションセルを挿入" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "サブセクションセルを挿入" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "テキストセルを挿入" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "タイトルセルを挿入" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "改ページを挿入" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "画像を挿入" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "未評価の式:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "積分" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Risch積分" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "積分" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Rishのアルゴリズムによる積分" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "積分" #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "処理を強制終了" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "ラプラス逆変換" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "ラプラス逆変換(&R)" #: ../src/Config.cpp:248 msgid "Italian" msgstr "イタリア語" #: ../src/Config.cpp:383 msgid "Italic" msgstr "斜体" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "日本語" #: ../src/Config.cpp:266 #, fuzzy, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "数学定数の頭に%をつける(%e, %i のようになります)" #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "最小公倍数" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "" #: ../src/Config.cpp:235 msgid "Language:" msgstr "使用言語:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "ラプラス変換" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "ラプラス変換(&T)" #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "最小公倍数" #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "最小二乗法" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "回帰式の係数と切片を求める" #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "極限値" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "極限値" #: ../src/wxMaximaFrame.cpp:1010 msgid "Linear Regression..." msgstr "単回帰分析" #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "リスト:" #: ../src/Config.cpp:386 msgid "Load" msgstr "設定の読込み" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "パッケージ読み込み" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "バッチ処理に使うファイルの読み込み" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "パッケージファイルの読み込み" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "スタイルの読み込み" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "下限:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "行列に関数を適用(&P)" #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "リスト作成(&L)" #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "リスト作成" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "関数からリストを作成" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "式中の部分式を置換" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "リストに関数を適用" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "リストに関数を適用" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "行列に関数を適用" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "括弧の自動補完" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "出力用フォント" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "行列" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "行列に関数を適用" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "変数名:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "行列:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "ヘルプ(&H)\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "入力文字列" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "処理中" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "バッチファイル (*.bat, *.mac)|*.bat;*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "" "Maxima パッケージ (*.mac)|*.mac|Lisp パッケージ (*.lisp)|*.lisp|すべてのファ" "イル (*.*)|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "" #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Maxima本体のパス:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "条件不足時のMaximaの質問" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "maximaと接続しています" #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maximaは「:」を使うことで変数に値を代入できます。また「:=」を使うことで関数を" "定義できます。\n" "以下に使用例を示します\n" "\n" "・ xに3を代入する場合、\"x : 3;\"と入力\n" "・ f(x) にx^2を定義する場合、「f(x) := x^2;」 と入力" #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Maxima version: " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "母平均の差の検定" #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "母平均の検定" #: ../src/wxMaximaFrame.cpp:1000 msgid "Mean..." msgstr "平均値" #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "比較する値:" #: ../src/wxMaximaFrame.cpp:1001 msgid "Median..." msgstr "中央値" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "セルの結合" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "数値積分法:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "変数名:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 #, fuzzy msgid "New document" msgstr "開く" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "新部分式:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "新変数:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "履歴から入力(次)\tAlt-Down" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "一致する文字列がありません" #: ../src/wxMaximaFrame.cpp:1009 msgid "Normality Test..." msgstr "正規性の検定" #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "" #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "分子の最高次数:" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "方程式の数:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "数値" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "旧部分式:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "旧変数:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "t検定" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "ブラウザでチュートリアルのページを開く" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "参照" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "最近開いたファイル" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "ドキュメントを開く" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "開く" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "ファイルを開く" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "オプション" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "オプション:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "再入力する前の出力" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "出力ラベル" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Pade近似(&A)" #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "PNG ファイル (*.png)|*.png|JPEG ファイル (*.jpg)|*.jpg|ビットマップ ファイル " "(*.bmp)|*.bmp|XPM ファイル (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Pade近似" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "テイラー級数を有理式で近似" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "改ページ" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "サイドバー" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "媒介変数プロット" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "出力しています" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "部分分数分解(&F)" #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "部分分数分解" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "貼り付け" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "貼り付け\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "貼り付け" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "クリップボードから貼り付け" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "円グラフ" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "" #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "変更を有効にするにはwxMaximaを再起動する必要があります" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "2次元プロット(&2)" #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "3次元プロット(&3)" #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "プロットエンジンの変更(&F)" #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "2次元プロット" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "2次元プロット" #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "2次元プロット" #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "3次元プロット" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "3次元プロット" #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "3次元プロット" #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "プロットエンジン" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "2次元プロット(同時に複数の関数を表示可能)" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "3次元プロット(同時に表示できる関数は1つまたは3つ)" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "EPS形式で出力:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "値の入力:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "ポーランド語" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "多項式 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "多項式 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "ポルトガル語(ブラジル)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Postscript ファイル (*.eps)|*.eps|すべてのファイル (*.*)|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "表示桁数" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "履歴から入力(前)\tAlt-Up" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "印刷" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "印刷" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "総乗" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "行列のファイル" #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "処理が終了しました" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "入力可能" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "入力履歴のコマンドを古いものから順に表示します" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "入力履歴のコマンドを新しいものから順に表示します" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "複素関数展開" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "結合 (tri)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "三角関数(sin,cos),双曲線関数(sinh,cosh)の積を一つの関数にまとめる" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "全ての出力をクリア" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "全ての出力をクリア" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "%d箇所を置換しました" #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "バグの報告" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "ラベル番号をリセット" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Risch積分" #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "解を小数で求める(&P)" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "解を浮動小数点で求める" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "行数:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "ロシア語" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "標本1(リスト/行ベクトル):" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "標本2(リスト/行ベクトル):" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "標本(リスト/行ベクトル):" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "設定の保存" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "" #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "名前を付けて保存\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "画像として保存" #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "選択範囲を画像として保存" #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "アニメーションの開始" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "" "このドキュメントは変更されています\n" "閉じる前に保存しますか?" #: ../src/wxMaxima.cpp:4432 msgid "Save changes?" msgstr "変更の保存" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "上書き保存" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "名前を付けて保存" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "前回のサイドバーのレイアウトを保持" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "" #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "名前を付けて保存" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "選択範囲を画像として保存" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "画像として保存" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "スタイルの保存" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "前回のウインドウサイズと位置を保持" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "" #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "散布図" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "散布図" #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "セクション" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "セクションセル" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "全て選択" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "全て選択\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "標本抽出" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "定数を選択してください" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "全て選択" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "数式の出力形式を選択してください" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "出力結果を選択して右クリックすると、メニューが表示されます。その中には必要最" "小限のコマンドが入っており、その選択した部分に対して実行できます。" #: ../src/Config.cpp:372 msgid "Selection" msgstr "選択範囲" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "テイラー展開" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "テイラー展開" #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "浮動小数点の桁数設定(&P)" #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "指定倍率で表示" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "浮動小数点で表示する桁数の設定" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "" #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "プロットに使うソフトの変更" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "100%の倍率で表示" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "120%の倍率で表示" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "150%の倍率で表示" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "200%の倍率で表示" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "300%の倍率で表示" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "80%の倍率で表示" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "連立微分方程式の特殊解を求める際の初期条件を設定" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "ユーザー定義関数を表示(&D)" #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "ユーザー定義関数名をリスト表示(&F)" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "ヒントを表示(&T)" #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "ユーザー定義変数をリスト表示(&V)" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "ヘルプ" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "コマンドの補完\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "ヒントを表示" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "コマンド名に含まれる文字列:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "使用例を見たいコマンド名:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "コマンドの使用例を表示" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "コマンドを探す" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "ユーザー定義関数名をリスト表示" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "ユーザー定義変数をリスト表示" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "関数名を指定してユーザー定義関数を表示" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "コマンドの補完" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "出力に時間がかかる式も表示" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "" #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "表示する関数名の入力" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "式の整理" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "関数の整理(&R)" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "関数の整理" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "変形 (tri)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "式の整理" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "階乗を含む有理式を整理" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "式中の関数も含めて整理(三角関数は文字定数として扱われます)" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "式および関数の引数を整理(式中の関数自体は文字定数として扱われます)" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "数式を整理して出力" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "三角関数をsinとcosの関数,双曲線関数をsinhとcoshの関数に変形" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "wxMaxima 0.8.2 よりドキュメント内に画像を挿入できるようになりました。メニュー" "バーの「セル」より「画像の挿入」を選択してください。画像を挿入したドキュメン" "トを保存するときは「wxMaxima XML document」フォーマットを選択してください。" #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "一般解:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "方程式" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "連立高次方程式の解を求める(&A)" #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "連立一次方程式を解く(&L)" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "微分方程式を解く(&O)" #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "高次方程式の解を求める" #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "微分方程式" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "連立微分方程式を解く(&C)" #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "微分方程式" #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "連立高次方程式" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "連立高次方程式の近似解(可能であれば厳密解)を求める" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "2階微分方程式の一般解に境界条件を適用" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "解の公式から厳密解を求める" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "高次方程式の近似解を小数で求める" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "1階微分方程式の一般解に初期条件を適用" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "2階微分方程式の一般解に初期条件を適用" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "連立一次方程式" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "連立一次方程式を解く" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Maximaが対応しているのは2階常微分方程式までです" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "連立微分方程式を解く (関数は変数名を明示する必要があります 例:f(x))" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "方程式を解く" #: ../src/Config.cpp:253 msgid "Spanish" msgstr "スペイン語" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "数学定数" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "数学定数(ギリシャ文字以外)" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "アニメーションの開始" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "アニメーションの開始" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Maximaを起動しています" #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "統計処理" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "統計処理\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "アニメーションの停止" #: ../src/Config.cpp:357 msgid "Strings" msgstr "出力文字列" #: ../src/Config.cpp:99 msgid "Style" msgstr "スタイル" #: ../src/Config.cpp:331 msgid "Styles" msgstr "スタイル" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "標本(行ベクトル)抽出" #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "サブセクション" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "サブセクションセル" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "部分式の置換" #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "置換" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "式中の部分式を置換" #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "総和" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "System info" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "テイラー級数:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "テキスト" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "テキストセル" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "テキストセルの背景色" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "インターネット上にはMaximaおよびwxMaximaの情報が数多く存在しています。それら" "についてより多くの情報が必要ならば、http://wxmaxima.sourceforge.net/wiki/" "index.php/Tutorialsを訪れてみて下さい。" #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "グラフの滑らかさ:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "微分回数:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "タイトル" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "タイトルセル" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "「タイトルセル」,「セクションセル」,「サブセクションセル」は,そのセルより" "も下位のセルを折りたたんで隠すことができます。セルの左上側にある正方形をク" "リックすることで「隠す/展開」の切り替えができます。Shiftを押しながらクリック" "すると,下位のセル全体に対して「隠す/展開」を行います。" #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "浮動小数点で出力(&B)" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "小数点で出力(&F)" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "小数点で出力" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "2次元プロットでは、Plot2dダイアログのオプションの中から「set polar」を選択す" "ることで極座標プロットで出力できます。また3次元プロットでは、Plot3dダイアロ" "グのオプションの中から「set mapping spherical」や「set mapping cylindrical」" "を選択することで球座標や円柱座標プロットで出力できます。" #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "セル内の式を選択し、「 ( 」または「 ) 」を押すことでその式をカッコで括ること" "ができます。" #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "wxMaxima起動時のウィンドウサイズと位置を保持したい場合は、メニューバーの「編" "集」から「設定」ダイアログを開き、「前回のウィンドウサイズと位置を保持」に" "チェックを入れて下さい" #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "wxMaximaを早速使ってみましょう.適当に文字や数式などを入力してください.する" "と入力セルが現れ、そこに入力されます.次にらShift-Enterを押してください.セル" "の内容が評価(計算)されます." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "上端:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "代数的整数の整理の有効化(&A)" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "自動的に数値で出力(&N)" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "計算に要した時間を表示(&T)" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "" "式中の平方根や虚数といった代数的整数の整理を有効にします(デフォルトは無効)" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "全画面表示の切り替え" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "平方根やπといった数を自動的に数値で出力" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "ツールバー\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Translated by" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "転置行列を求める" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "チュートリアル" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "t検定" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "タイプ:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "ウクライナ語" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "下線" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "元に戻す\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "一番新しい入力をリセット" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Unicode Support" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "ソフトウェアの更新" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "上限:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Gosperアルゴリズムを使用" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "乗法記号を・に置き換える" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "ギリシャ文字のフォントにjsMathを使用する" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "関数の値:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "変数:" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "変数:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "変数" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "変数:" #: ../src/wxMaximaFrame.cpp:1002 msgid "Variance..." msgstr "標本分散" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "wxMaximaへようこそ" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "メニューバーからコマンドを実行するとき、デフォルトの引数は「%」(直前の出力" "結果)です。他の引数(それ以前の出力結果)を使用するときは、それを選択してか" "ら実行して下さい。" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "行数:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "" #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Written by" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "以前の出力結果が再び必要になる場合もあるでしょう。一番新しい出力結果を使う場" "合、「 % 」で代用できます。それより以前の出力結果を使う場合は、「%on」(nは使" "用する出力結果の番号です)で代用できます。" #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "全ての入力セルの内容を一度に評価することができます。メニューバーの「セル」か" "ら「全てのセルを評価」を実行するか、そのショートカットキーを押してください。" "セルは上から順に評価されます。" #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "wxMaximaにはコマンド名やオプション変数のヘルプを検索する機能があります。検索" "したい単語を選択またはその上にカーソルを置き、F1キーを押すことでそれについて" "のヘルプが表示されます。" #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "「テキストセル」では,セルの左側の三角形をクリックすることでその内容を隠すこ" "とができます。" #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "メニューバーの「セル」より,「入力セル」以外のセルを挿入することができます。" "ただし、それらのセルはドキュメントの体裁を整えるために使うものです。評価を行" "えるのは「入力セル」のみであることに注意して下さい。" #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "複数のセルを選択すれば、それらをまとめて削除または評価できます。複数のセルを" "選択するには、水平カーソル(またはセルの左側にあるカッコ)をクリックしたまま" "ドラッグ、もしくはShiftキーを押しながら矢印キーで水平カーソルを動かしてくださ" "い。" #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "" #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "お使いのwxMaximaは最新版です" #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "拡大(&I)\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "縮小(&T)\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Zoom in 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "縮小率10%" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ 無題 ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ 無題* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "反対称行列" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "挟み撃ち" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "ユーザ指定のプロットエンジン" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "対角行列" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "一般" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "ドキュメント内で表示" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "左極限" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "対数目盛を使用" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "関数f(i,j)=" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "no" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "右極限" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "対称行列" #: ../src/wxMaxima.cpp:4403 msgid "unsaved" msgstr "[ 無題 ]" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "無題" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "無題 %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "" #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "設定" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "メニューからコマンドを実行するとき、ダイアログ画面が現れるものにはその入力欄" "に「%」(直前の出力結果を表す記号)があらかじめ入力されています。ただし、ド" "キュメント内に選択状態のものがある場合、「%」の代わりにそれが入力されます。" #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|バッチ" "ファイル (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "以下のファイルの読込みに失敗しました " #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "wxMaxima" #: ../src/wxMaxima.cpp:3355 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "yes" #~ msgid "&Cell" #~ msgstr "セル(&C)" wxMaxima-13.04.2/locales/Makefile.am000644 000765 000024 00000011232 12145116503 017535 0ustar00andrejstaff000000 000000 # # This file is based on the corresponding file for the poedit program # WXMAXIMA_LINGUAS = fr es it de pt_BR ru hu uk pl zh_TW da cs el ja ca gl zh_CN WXWIN_LINGUAS = fr es it de pt_BR ru hu uk pl zh_TW da cs el ja ca gl zh_CN localedir = $(datadir)/locale install-data-local: @CATALOGS_TO_INSTALL@ install-wxmaxima-catalogs: for i in $(WXMAXIMA_LINGUAS) ; do \ $(mkinstalldirs) $(DESTDIR)$(localedir)/$$i/LC_MESSAGES ; \ $(INSTALL_DATA) $(srcdir)/$$i.mo $(DESTDIR)$(localedir)/$$i/LC_MESSAGES/wxMaxima.mo ; \ done install-wxstd-catalogs: for i in $(WXWIN_LINGUAS) ; do \ $(mkinstalldirs) $(DESTDIR)$(localedir)/$$i/LC_MESSAGES ; \ $(INSTALL_DATA) $(srcdir)/wxwin/$$i.mo $(DESTDIR)$(localedir)/$$i/LC_MESSAGES/wxMaxima-wxstd.mo ; \ done # ---------------------------------------------------------------------------- # Logic for catalogs updating follows # (shamelessly stolen from wxWindows makefile): # ---------------------------------------------------------------------------- # the programs we use (TODO: use configure to detect them) MSGFMT=msgfmt --verbose MSGMERGE=msgmerge XGETTEXT=xgettext XARGS=xargs # common xgettext args: C++ syntax, use the specified macro names as markers XGETTEXT_ARGS=-C -k_ -s -j # implicit rules %.mo: %.po $(MSGFMT) -o $@ $< # a PO file must be updated to include new translations %.po: $(srcdir)/wxMaxima.pot touch $@ $(MSGMERGE) $@ $(srcdir)/wxMaxima.pot > $@.new && mv $@.new $@; $(srcdir)/wxMaxima.pot: touch $@ (cd $(srcdir) ; find ../src -name "*.cpp" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxMaxima.pot) (cd $(srcdir) ; find ../data -name "*.txt" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxMaxima.pot) allpo: force-update @-for t in $(WXMAXIMA_LINGUAS); do $(MAKE) $(srcdir)/$$t.po; done allmo: @for t in $(WXMAXIMA_LINGUAS); do $(MAKE) $(srcdir)/$$t.mo; done force-update: $(RM) $(srcdir)/wxMaxima.pot # print out the percentage of the translated strings stats: @for i in $(WXMAXIMA_LINGUAS); do \ x=`$(MSGFMT) -o /dev/null "$(srcdir)/$$i.po" 2>&1 | sed -e 's/[,\.]//g' \ -e 's/\([0-9]\+\) translated messages\?/TR=\1/' \ -e 's/\([0-9]\+\) fuzzy translations\?/FZ=\1/' \ -e 's/\([0-9]\+\) untranslated messages\?/UT=\1/'`; \ TR=0 FZ=0 UT=0; \ eval $$x; \ TOTAL=`expr $$TR + $$FZ + $$UT`; \ echo "\"$$i\" => \"`expr 100 "*" $$TR / $$TOTAL`\", /* $$TOTAL strings */"; \ done #echo "$$i.po `expr 100 "*" $$TR / $$TOTAL`% of $$TOTAL strings"; # transcoded locales transcoded: mkdir -p transcoded cat da.po | sed -e "s/utf-8/ISO-8859-1/" | iconv -f utf-8 -t iso8859-1 > transcoded/da.po $(MSGFMT) transcoded/da.po -o transcoded/da.mo cat de.po | sed -e "s/UTF-8/ISO-8859-15/" | iconv -f utf-8 -t iso8859-15 > transcoded/de.po $(MSGFMT) transcoded/de.po -o transcoded/de.mo cp es.po transcoded $(MSGFMT) transcoded/es.po -o transcoded/es.mo cp fr.po transcoded $(MSGFMT) transcoded/fr.po -o transcoded/fr.mo cat it.po | sed -e "s/UTF-8/ISO-8859-1/" | iconv -f utf-8 -t iso8859-1 > transcoded/it.po $(MSGFMT) transcoded/it.po -o transcoded/it.mo cat pt_BR.po | sed -e "s/UTF-8/ISO-8859-1/" | iconv -f utf-8 -t iso8859-1 > transcoded/pt_br.po $(MSGFMT) transcoded/pt_BR.po -o transcoded/pt_BR.mo cp ru.po transcoded $(MSGFMT) transcoded/ru.po -o transcoded/ru.mo cp uk.po transcoded $(MSGFMT) transcoded/uk.po -o transcoded/uk.mo cat hu.po | sed -e "s/UTF-8/ISO-8859-2/" | iconv -f utf-8 -t iso8859-2 > transcoded/hu.po $(MSGFMT) transcoded/hu.po -o transcoded/hu.mo cp pl.po transcoded $(MSGFMT) transcoded/pl.po -o transcoded/pl.mo cp zh_TW.po transcoded $(MSGFMT) transcoded/zh_TW.po -o transcoded/zh_TW.mo cp cs.po transcoded $(MSGFMT) transcoded/cs.po -o transcoded/cs.mo cp el.po transcoded $(MSGFMT) transcoded/el.po -o transcoded/el.mo cp ja.po transcoded $(MSGFMT) transcoded/ja.po -o transcoded/ja.mo cp ca.po transcoded $(MSGFMT) transcoded/ca.po -o transcoded/ca.mo cp gl.po transcoded $(MSGFMT) transcoded/gl.po -o transcoded/gl.mo cp zh_CN.po transcoded $(MSGFMT) transcoded/zh_CN.po -o transcoded/zh_CN.mo EXTRA_DIST = fr.po fr.mo wxwin/fr.mo \ es.po es.mo wxwin/es.mo \ it.po it.mo wxwin/it.mo \ de.po de.mo wxwin/de.mo \ pt_BR.po pt_BR.mo wxwin/pt_BR.mo \ ru.po ru.mo wxwin/ru.mo \ ru.po hu.mo wxwin/hu.mo \ ru.po uk.mo wxwin/uk.mo \ pl.po pl.mo wxwin/pl.mo \ zh_TW.po zh_TW.mo wxwin/zh_TW.mo \ da.po da.mo wxwin/da.mo \ cs.po cs.mo wxwin/cs.mo \ el.po el.mo wxwin/el.mo \ ja.po ja.mo wxwin/ja.mo \ ca.po ca.mo wxwin/ca.mo \ gl.po gl.mo wxwin/gl.mo \ zh_CN.po zh_CN.mo wxwin/zh_CN.mo \ wxMaxima.pot ChangeLog .PHONY: allpo allmo force-update stats FORCE wxMaxima-13.04.2/locales/Makefile.in000644 000765 000024 00000032507 12150103454 017553 0ustar00andrejstaff000000 000000 # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006 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@ # # This file is based on the corresponding file for the poedit program # VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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@ target_triplet = @target@ subdir = locales DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/Setup.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS_TO_INSTALL = @CATALOGS_TO_INSTALL@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RC_OBJ = @RC_OBJ@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ WX_CFLAGS = @WX_CFLAGS@ WX_CFLAGS_ONLY = @WX_CFLAGS_ONLY@ WX_CONFIG_PATH = @WX_CONFIG_PATH@ WX_CPPFLAGS = @WX_CPPFLAGS@ WX_CXXFLAGS = @WX_CXXFLAGS@ WX_CXXFLAGS_ONLY = @WX_CXXFLAGS_ONLY@ WX_LIBS = @WX_LIBS@ WX_LIBS_STATIC = @WX_LIBS_STATIC@ WX_RC_PATH = @WX_RC_PATH@ WX_RESCOMP = @WX_RESCOMP@ WX_VERSION = @WX_VERSION@ WX_VERSION_MAJOR = @WX_VERSION_MAJOR@ WX_VERSION_MICRO = @WX_VERSION_MICRO@ WX_VERSION_MINOR = @WX_VERSION_MINOR@ 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@ ac_ct_CXX = @ac_ct_CXX@ 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 = $(datadir)/locale localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ WXMAXIMA_LINGUAS = fr es it de pt_BR ru hu uk pl zh_TW da cs el ja ca gl zh_CN WXWIN_LINGUAS = fr es it de pt_BR ru hu uk pl zh_TW da cs el ja ca gl zh_CN # ---------------------------------------------------------------------------- # Logic for catalogs updating follows # (shamelessly stolen from wxWindows makefile): # ---------------------------------------------------------------------------- # the programs we use (TODO: use configure to detect them) MSGFMT = msgfmt --verbose MSGMERGE = msgmerge XGETTEXT = xgettext XARGS = xargs # common xgettext args: C++ syntax, use the specified macro names as markers XGETTEXT_ARGS = -C -k_ -s -j EXTRA_DIST = fr.po fr.mo wxwin/fr.mo \ es.po es.mo wxwin/es.mo \ it.po it.mo wxwin/it.mo \ de.po de.mo wxwin/de.mo \ pt_BR.po pt_BR.mo wxwin/pt_BR.mo \ ru.po ru.mo wxwin/ru.mo \ ru.po hu.mo wxwin/hu.mo \ ru.po uk.mo wxwin/uk.mo \ pl.po pl.mo wxwin/pl.mo \ zh_TW.po zh_TW.mo wxwin/zh_TW.mo \ da.po da.mo wxwin/da.mo \ cs.po cs.mo wxwin/cs.mo \ el.po el.mo wxwin/el.mo \ ja.po ja.mo wxwin/ja.mo \ ca.po ca.mo wxwin/ca.mo \ gl.po gl.mo wxwin/gl.mo \ zh_CN.po zh_CN.mo wxwin/zh_CN.mo \ wxMaxima.pot ChangeLog all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu locales/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu locales/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-data-local install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-data-local 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 maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am install-data-local: @CATALOGS_TO_INSTALL@ install-wxmaxima-catalogs: for i in $(WXMAXIMA_LINGUAS) ; do \ $(mkinstalldirs) $(DESTDIR)$(localedir)/$$i/LC_MESSAGES ; \ $(INSTALL_DATA) $(srcdir)/$$i.mo $(DESTDIR)$(localedir)/$$i/LC_MESSAGES/wxMaxima.mo ; \ done install-wxstd-catalogs: for i in $(WXWIN_LINGUAS) ; do \ $(mkinstalldirs) $(DESTDIR)$(localedir)/$$i/LC_MESSAGES ; \ $(INSTALL_DATA) $(srcdir)/wxwin/$$i.mo $(DESTDIR)$(localedir)/$$i/LC_MESSAGES/wxMaxima-wxstd.mo ; \ done # implicit rules %.mo: %.po $(MSGFMT) -o $@ $< # a PO file must be updated to include new translations %.po: $(srcdir)/wxMaxima.pot touch $@ $(MSGMERGE) $@ $(srcdir)/wxMaxima.pot > $@.new && mv $@.new $@; $(srcdir)/wxMaxima.pot: touch $@ (cd $(srcdir) ; find ../src -name "*.cpp" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxMaxima.pot) (cd $(srcdir) ; find ../data -name "*.txt" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxMaxima.pot) allpo: force-update @-for t in $(WXMAXIMA_LINGUAS); do $(MAKE) $(srcdir)/$$t.po; done allmo: @for t in $(WXMAXIMA_LINGUAS); do $(MAKE) $(srcdir)/$$t.mo; done force-update: $(RM) $(srcdir)/wxMaxima.pot # print out the percentage of the translated strings stats: @for i in $(WXMAXIMA_LINGUAS); do \ x=`$(MSGFMT) -o /dev/null "$(srcdir)/$$i.po" 2>&1 | sed -e 's/[,\.]//g' \ -e 's/\([0-9]\+\) translated messages\?/TR=\1/' \ -e 's/\([0-9]\+\) fuzzy translations\?/FZ=\1/' \ -e 's/\([0-9]\+\) untranslated messages\?/UT=\1/'`; \ TR=0 FZ=0 UT=0; \ eval $$x; \ TOTAL=`expr $$TR + $$FZ + $$UT`; \ echo "\"$$i\" => \"`expr 100 "*" $$TR / $$TOTAL`\", /* $$TOTAL strings */"; \ done #echo "$$i.po `expr 100 "*" $$TR / $$TOTAL`% of $$TOTAL strings"; # transcoded locales transcoded: mkdir -p transcoded cat da.po | sed -e "s/utf-8/ISO-8859-1/" | iconv -f utf-8 -t iso8859-1 > transcoded/da.po $(MSGFMT) transcoded/da.po -o transcoded/da.mo cat de.po | sed -e "s/UTF-8/ISO-8859-15/" | iconv -f utf-8 -t iso8859-15 > transcoded/de.po $(MSGFMT) transcoded/de.po -o transcoded/de.mo cp es.po transcoded $(MSGFMT) transcoded/es.po -o transcoded/es.mo cp fr.po transcoded $(MSGFMT) transcoded/fr.po -o transcoded/fr.mo cat it.po | sed -e "s/UTF-8/ISO-8859-1/" | iconv -f utf-8 -t iso8859-1 > transcoded/it.po $(MSGFMT) transcoded/it.po -o transcoded/it.mo cat pt_BR.po | sed -e "s/UTF-8/ISO-8859-1/" | iconv -f utf-8 -t iso8859-1 > transcoded/pt_br.po $(MSGFMT) transcoded/pt_BR.po -o transcoded/pt_BR.mo cp ru.po transcoded $(MSGFMT) transcoded/ru.po -o transcoded/ru.mo cp uk.po transcoded $(MSGFMT) transcoded/uk.po -o transcoded/uk.mo cat hu.po | sed -e "s/UTF-8/ISO-8859-2/" | iconv -f utf-8 -t iso8859-2 > transcoded/hu.po $(MSGFMT) transcoded/hu.po -o transcoded/hu.mo cp pl.po transcoded $(MSGFMT) transcoded/pl.po -o transcoded/pl.mo cp zh_TW.po transcoded $(MSGFMT) transcoded/zh_TW.po -o transcoded/zh_TW.mo cp cs.po transcoded $(MSGFMT) transcoded/cs.po -o transcoded/cs.mo cp el.po transcoded $(MSGFMT) transcoded/el.po -o transcoded/el.mo cp ja.po transcoded $(MSGFMT) transcoded/ja.po -o transcoded/ja.mo cp ca.po transcoded $(MSGFMT) transcoded/ca.po -o transcoded/ca.mo cp gl.po transcoded $(MSGFMT) transcoded/gl.po -o transcoded/gl.mo cp zh_CN.po transcoded $(MSGFMT) transcoded/zh_CN.po -o transcoded/zh_CN.mo .PHONY: allpo allmo force-update stats FORCE # 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: wxMaxima-13.04.2/locales/pl.mo000644 000765 000024 00000160336 11720647505 016474 0ustar00andrejstaff000000 000000 /`?)a?????&?g?J_@@@ @@@ A AA(A FATAhAA AA A AAAAA BB-BCB SB^BqB wBBBB BBBBBC$C,C DCPCYCpC wCCC CC CCCC D DD1DFD ^DhDqDDDDD D DDE FFFFFFFGG1)G[GrG xGGGGGGGG GG HH H!H (H4H$I 8ICIYI+kI(IIII"IJJ.J6J sO3OO O OP P -P;PUP(dP$P,P%PQ Q Q Q)Q/Q 6Q1CQuQ0{QQ Q QQQQQR"R4RRRfR zRR R RRR RRR R SS(S:S ZS{S SS:S SS T T T (T 6T CT/MT}T TTT.T(TU U*U(?UhU qU ~U U UUUUUUU#U"V%=VcV kV xVV VVVVVV*V$W>W WWbW qW}WWWW(WW W XXX&$XKXQX VXbXqX X/XX)XY'%YMY^YoYY YY YYY"Z5(Z^ZdZlZsZyZZZ Z Z$Z7Z3[O[S[ k[x[["[,[*[\#\7\+F\r\3\,\,\']7]=]M];S]]]]]] ] ]]]^ ^^^~^v_@|_____` ` >`K`R`n`` `````aa+aEaVahaaaaaa a b bb1b)Fb pb }bbQbbc%c-c4c4=crcvc cccccccd d"d(d -d*:dedd dd d ddde e!e :eEe Le Wedelese eee?eff.f)?fWiffff f fffg g g g (g 3gAgWgig gg gggg g gg h hh,h >h Lh Xhehmhvh hhdhi%"i HiRiXihiwii3ii iii j1!j3Sj j jjj j jj j j jj k !k/k6k =k KkYk#pk kkkkkkkk l$.lSl \lhllll lllmm2m8m @m JmTm\mamsm{m mmmmm n n$n5n#Gnkn-}nnn"n4n -o9oHo Po ]ohozoo ooo ]pgp npxpppp pppp qq.q?qOqiq}q qqqq qq r!r:rSrjrrrr+r rs"s 5s BsPs,ds'sss!s t t uu*u BuPu cumu uu#u2uv%v0;v1lvv v8vA wNwWw_wgwywwwwww wxx.x6xV^ e r) μ/K'c( ǽ#ս#1Ods ߾   /;Wi" ƿ'2Z+q((!1 EOct!  ?G^z!6 FRcw&%.+.Z1"+ A N\'p,$ $-< S a(005O3#@V7 ! "!!D fq    %+=@UJR < GQjq n{5Qg~  /H ` kw V 1ETlA_E'!m   $ .9 A K Xe y   F|M`rlg~.+ADPD&x[w"1~go H+8 ?J c^<Zwyjf;YO(R?$/ku<8:stZzz+\ pwE" 2 q6R C$P0C*YS@4v.@T3,~ L({U~Ict9!v1)Wq#sVGd]pE}Ayx'cNH|/lmLtHk'_yB3Q`b}P^_0meV{OR1@S}lXsWF=6B*8FMU -+>Jk 3?jV\]n[ DX-=$)dh0EOJIjD&QnTSh.5`A7.7uMFT26lg;i9{>bZ_](efIYWK7dqNeUf:|Korb:z%4 DaiL|Xa#gG>54! i=r# Pamv)  %GAxMQ/uo"h<!&p`rCK- ',2%*^ \9[,;nB5N wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Ask to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:Online tutorialsOpenOpen RecentOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrevious Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: pl Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: Last-Translator: Ihor Rokach Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Wsparcie Unicode: %s Lisp: Wersja Maximy: Nie połączono z Maxima! Nie połączono.<< Wyrażenie jest zbyt długie, aby je wyświetlić >>został zapisany z użyciem nowszej wersji wxMaximy przez co może nie zostać wczytany poprawnie. Zaleca się aktualizację wxMaximy.został zapisany z użyciem nowszej wersji wxMaximy. Zaleca się aktualizację wxMaximy.&Algebra&Zastosuj do listy ...&Apropos...&Plik wsadowy... Ctrl-BWarunek &brzegowy ...Zgłoś &błądA&nalizaPostać &kanonicznaWielomian charakterystyczny ...&Wyczyść pamięć&Połącz silnie Uproszczenia &zespoloneUłamek ł&ańcuchowy&Kopiuj Ctrl-CCałka &oznaczona&Demoivre&Wyznacznik&Pochodna...&Edycja&Ruguj zmienną&Wprowadź macierz&Przykład...&Rozwiń wyrażenieRozwiń &trygonometrycznie&ExponentializeE&ksportuj&Faktoryzuj wyrażenie&PlikZnajdź &pierwiastek&Generuj macierz&Największy wspólny dzielnik&Pomoc&Całkowanie...&Przerwij Ctrl-.&Przerwij Ctrl-GMacierz &odwrotna&Wczytaj pakiet Ctrl-L&Mapuj listę&MaximaObliczenia &modulo...Nowy Ctrl-N&NumeryczneCałkowanie &numeryczne&Nusum&Otwórz Ctrl-O&Otwórz... Ctrl-O&Wykres&Szereg potęgowy&Drukuj... Ctrl-P&WymierneRedukuj &trygonometrycznie&Restart MaximaPierwiastki &wielomianiu (rzeczywiste)Zapisz Ctrl-S&UpraszczanieUprość &wyrażenieUprość &silnieUprość &trygonometrycznie&Rozwiąż...&SpecjalnySzereg &Taylora&Transponuj macierzUproszczenia &trygonometryczne&pm3d(Używaj domyślnego języka)- Nieskończoność
Lisp: Od wxMaxima 0.8.0 został wprowadzony 'kurzor poziomy'. Wygłada jak kreska pozioma pomiędzy komórkami. Wskazuje miejsce, w którym mozna wstawić nową komorkę poprzez zwykły początek wprowadzania nowego polecenia, wklejanie skopiowanej koorki lub uruchomienie polecenia z menu.Od wxMaxima 0.8.2 został wprowadzony nowy format zapisu dokumentu, który pozwala zapisać nie tylko wprowadzony tekst i polecenia ale i wyniki obliczeń. Żeby zapisać plik w tym formacie użyj opcji 'XML dokument wxMaxima'.Wartość wyrażeniaOO wxMaximaObramowanie aktywnej komórkiMacierz &dołączonaDodaj nierówność algebraicznąDodaj katalogi do zmiennej PathDodaj do zmiennej PathDodaj do zmiennej &PathDodatkowe parametry Maximy (np. -l clisp).Dodatkowe parametry:Wszystkie|*AnimacjaZastosujZastosuj funkcję do listyAproposTablica:Pytaj o zapis dokumentów bez nazwyDla wartościWarunki brzegoweWykres słupkowy...Pliki wsadowe (*.bat)|*.bat|Wszystkie*Plik wsadowyPogrubienieWykres pudełkowy...PrzeglądajInformacje o kompilacjiDomyślnie Shift-Enter wykonuje aktywną komórkę natomiast Enter wstawia nową linię do wyrażenia. Zachowanie to, można zmienić w 'Edycja->Preferencje'.Zmiana &zmiennych ...PreferencjeOblicz &iloczyn ...Oblicz &sumę ...Oblicz ostatni wynik w podwyższonej precyzji (bigfloat)Wartość zmiennoprzecinkowa wyrażeniaObliczenia modulo:Oblicz iloczynOblicz sumęBrak łączności z serwerem internetowym.AnulujPostać kanoniczna (tr)Katalonski&KomórkaObramowanie komórkiZmień format wynikówZmień format podawania wynikówZmień zmiennąZmień zmienną w całce lub sumieChar polySprawdź, czy jest nowsza wersjaSprawdź najawność nowszej wersji wxMaxima/Maxima.Tradycyjny ChińskiWybierz czcionkęWybierz nowy format wykresów:Klasy:&Zamknij Ctrl-WZamknij oknoNazwy kolumn:Kolumny:Połącz silnie występujące w wyrażeniu - np. 'n*(n-1)! => n!'Przecinek oddziela kolejne współrzędne na osi OXPrzecinek oddziela kolejne współrzędne na osi OYZakomentuj zaznaczenieUzupełnij słowo Ctrl-KUzupełnij słowoPrzedstaw wyrażenie w postaci ułamka łańcuchowegoZnajdź macierz dołączonąOblicz wielomian charakterystyczny macierzyOblicz wyznacznik macierzyZnajdź największy wspólny dzielnik (NWD)Znajdź macierz odwrotnąZnajdź najmniejszą wspólną wielokrotność (NWW) (przed użyciem wykonaj 'load(functs)')Warunek:Plik konfiguracyjny (*.ini)|*.iniUwaga na temat konfiguracjiPreferencje programu wxMaximaStałaZwiń logarytmyZamień dwumian Newtona, funkcje beta lub gamma na silnieZamień dwumian Newtona, silnie, funkcję beta na funkcję gammaZamień wyrażenie zespolone na postać biegunowąZamień wyrażenie zespolone na postać alebraicznąZamień postać wykładniczą liczby zespolonej na postać trygonometrycznąZamień logarytm iloczynu na sumę logarytmówZamień sumę logarytmów na logarytm iloczynuZamień na &silnieZamień na funkcję &gammaForma &biegunowaForma &algebraicznaUprość wyrażenie trygonometryczne zawierające ułamki.Zamień funkcje trygonometryczne i hiperboliczne na eksponencjalneKopiujKopiuj jako obrazekKopiuj LaTeXKopiuj ostatnie wejście Ctrl-IKopiuj jako obrazekKopiuj jako LaTeXKopiuj jako tekst Ctrl-Shift-CKopiuj zaznaczenieKopiuj zaznaczenie z dokumentu jako obrazekKopiuj zaznaczenie z dokumentu jako tekstKopiuj zaznaczenie z dokumentu w formacje LaTeXUtwórz nową komórkę z ostatnim wejściemKursorWytnij&Wytnij Ctrl-XWytnij zaznaczenieCzeskiDuńskiMacierz danych:Plik z danymi (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDane:Przedstaw wyrażenie w postaci ułamka prostegoDomyślnieDomyślna czcionka:Domyślny port:UsuńUsuń &funkcjęUsuń zaznaczenieUsuń &zmiennąUsuń funkcjęUsuń zmiennąUsuń wszystkie dane z pamięciUsuń funkcję(e):Usuń zmienną(e):st. mianownika:Stopień:Pochodna:Odchylenie...Podziel wielomiany...Pochodna...PochodnaOblicz pochodną wyrażeniaPochodna...Z:DyskretnyWyświetl w formacie Te&XFormat wyświetlania wynikówZapisz ostatni wynik w formacie TeXWyświetl czas przeprowadzania obliczeńPodzielPodziel komórkiPodziel liczby lub wielomianyCzy chcesz zapisać wprowadzone zmiany?Dokument Tło dokumentuNie zapisuj&RównaniaWyjście Ctrl-QWektory własneWartości własneWyznaczWyznacz zmienną z układu równańAngielskiWprowadź daneWprowadź macierz...Wprowadź macierzWprowadź równanie do upraszczania racjonalnego:Wprowadź listę zmiennych oddzielonych przecinkamiKlawisz 'Enter' wykonuje komórkiWprowadź macierzWprowadź nową dokładność:Wprowadź ścieżkę do programu MaximaEpsilon:Równanie %d:Równanie(a):Równanie:Równania:BłądBłąd %dBłąd!Oblicz wyrażenie &nominalneWykonaj wszystkie komórki Ctrl-RWykonaj komórkiWykonaj aktywne lub zaznaczone komórkiWykonaj wszystkie komórki w dokumencieOblicz wszystkie wyrażenie nominalnePrzykładPrzykładowy tekstWyjdź z wxMaximaRozwińRozwiń (tr)Rozwiń wyrażenieRozwiń logarytmyRozwiń wyrażenieRozwiń wyrażenie trygonometryczneEksportujEksportuj dokument do pliku HTML lub pdfLaTeXEksport do HTML zakończył się niepowodzeniem!Eksport do TeX zakończył się niepowodzeniem!WyrażenieWyrażenie(a):Wyrażenie:FaktoryzujFaktoryzuj zespolenieFaktoryzuj wyrażenieFaktoryzuj wyrażenieFaktoryzuj wyrażenie w liczbach GaussaSilnie i funkcja &gammaKrytyczny błądObrazek %d:PlikNie znaleziono plikuPlik, który próbujesz otworzyć nie istniejePlik:ZnajdźZnajdź Ctrl-FZnajdź &granicę...Znajdź minimum...Znajdź pierwiastek...Znajdź minimum wyrażeniaZnajdź granicę wyrażeniaZnajdź pierwiastek wyrażenia w danym przedzialeZnajdź wszystkie pierwiastki wielomianuZnajdź wszystkie pierwiastki wielomianu (bfloat)Znajdź i ZmieńZnajdź i zmieńZnajdź wartości własne macierzyZnajdź wektory własne macierzyZnajdź minimumZnajdź rzeczywiste pierwiastki wielomianuZnajdź pierwiastekZnajdź...Czcionka o stałej szerokości w kontrolkach tekstowychCzcionka używana w dokumencieCzcionka używana do wyrażeń matematycznychCzcionkiFormat:FrancuskiOd:Pełny ekran Alt-EnterFunkcjaNazwa funkcjiFunkcja(e):Funkcja:Funkcje do uproszczeń zespolonychFunkcje do uproszczeń silni i funkcji gammaFunkcje do uproszczeń trygonometrycznychNWDobraz GIF (*.gif)|*.giPodstawowa Matem.Podstawowa Matem. Alt-Shift-MUtwórz macierzGeneruj macierz z wyrazu...Utwórz macierz z tablicy 2DGeneruj macierz z wyrazu lambdaNiemieckiCzęść &urojonaRozwiń w &szeregTransformata Laplace'a wyrażeniaCzęść &rzeczywistaOdwrotna transformata Laplace'a wyrażeniaRozwiń wyrażenie w szereg TayloraCzęść urojona wyrażenia zespolonegoCzęść rzeczywista wyrażenia zespolonegoGreckiGreckie stałeSiatka:plik HTML (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Wysokość:PomocUkryj wszystkie Alt-Shift--Ukryj wszystkie panelePodkreśl (dpart)HistogramHistogram...HistoriaHistoria Alt-Shift-HKursor pionowy zachowuje się, jak zwykły kursor, ale działa na komórkach. Można go przesuwać za pomocą strzałek. Jednoczesne naciśnięcie Shift pozwala zaznaczać komórki, naciśnięcie Backspace lub Delete (dwukrotnie) usuwa zaznaczone komórki.WęgierskiIC1IC2Jeśli obliczenia trwają zbyt długo, możesz je przerwać wybierając 'Maxima->Przerwij' albo 'Maxima->Uruchom ponownie'ObrazekPliki graficzne (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmZałącz kolumny:NieskończonośćInformacje o kompilacjiWstępne oszacowanie:Warunki początkowe (&1)...Warunki początkowe (&2)...Etykiety wejścioweWstawWstaw komórkę &rozdziału Ctrl-3Wstaw komórkę t&ekstowa Ctrl-1Wstaw komórkę Alt-Shift-CWstaw obrazekWstaw obrazek...Wstaw komórkę &wejściowaWstaw znak końca stronyWstaw komórkę &podrozdziału Ctrl-4Wstaw komórkę &rozdziałuWstaw komórkę &podrozdziałuWstaw komórkę &tytułową Ctrl-2Wstaw komórkę t&ekstowąWstaw komórkę &tytułowaWstaw nową komórkę wejściowąWstaw komórkę nowego rozdziałuWstaw komórkę nowego podrozdziałuWstaw nową komórkę tekstowąWstaw nową komórkę nagłówkaWstaw znak końca stronyWstaw obrazekCałka/Suma:CałkujCałkuj (risch)Całkuj wyrażenieCałkuj wyrażenie używając algorytmu RuschaCałkuj...PrzerwijPrzerwij bieżące obliczeniaBłędna lokalizacja programu Maxima. Wprowadź ponownie ścieżkę do programu Maxima.Odwrotna Transformata Laplace'aOdwrotna Transformata &Laplace'aWłoskiKursywaJapońskiUżywaj znak procentu dla zmiennych specjalnych: %e, %i, itp.NWWJęzyk używany w GUI wxMaximyJęzyk:Laplace&Transformata Laplace'a...Najmniejsza wspólna wielokrotność...Metoda najmniejszych kwadratówMetoda najmniejszych kwadratów...GranicaGranica...Regresja liniowa...Lista:WczytajWczytaj pakietWczytaj plik używając polecenia batchWczytaj pakiet MaximyWczytaj styl z plikuDolna granica:Mapuj macierz...Utwórz &listę...Utwórz listęUtwórz listę z wyrażeniaWykonaj podstawienie w wyrażeniuMapujMapuj funkcję do listyMapuj funkcję do macierzyCzcionka matematyczna:MacierzMapuj macierzNazwa macierzy:Macierz:Maxima&Pomoc Maxima F1Maxima wejścieMaxima wykonuje obliczeniaPakiet Maxima (*.mac)|*.mac|Pakiet Maxima (*.mac)|*.mac|Pakiet Lispa (*.lisp)|*.lisp|Wszystkie|*Maxima zakończyła działanieMaxima program:Zapytania MaximyUruchomiono Maximę. Oczekiwanie na połączenie...Maxima używa ':' jako operatora przypisania ('a : 3;') a ':=' do definiowania funkcji ('f(x):=x^2;').Wersja Maximy: Średnia...Średnia:Mediana...Scal komórkiMetoda:ModuloNazwa:NowyNowy Ctrl-NNowy dokumentNowa wartość:Nowa zmienna:Następne polecenie Alt-DownNie znaleziono!Nieprawidłowy wymiar macierzy!Nieprawidłowa liczba równań!Nie połączono.st. licznikaIlość równań:LiczbyOKStara wartość:Stara zmienna:Kursy OnlineOtwórzOtwórz ostatnieOtwórz dokumentOtwórz nowe oknoOtwórz dokumentOtwórz macierzOtwieranie plikuOpcjeOpcje:Komórki nieaktualneIdentyfikatory wyjśćPrzybliżenie &Pade...PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPrzybliżenie PadePrzybliżenie Pade szeregu TayloraPodział stronyPaneleWykres parametrycznyParsowanie wyjścia&Ułamek prostyUłamek prostyCzęści dokumentu nie zostaną wczytane poprawnieWklejWklej Ctrl-VWklej ze schowkaWklej tekst ze schowkaDiagram kołowy...Skonfiguruj wxMaxime 'Edycja->Preferencje'.Uruchom ponownie wxMaxime, aby zmiany zaczęły obowiązywaćWykres &2D...Wykres &3D...&Format wykresuWykres 2DWykres 2D...Wykres 2D...Wykres 3DWykres 3D...Wykres 3D...Format wykresuUtwórz wykres dwuwymiarowyUtwórz wykres trójwymiarowyZapisz wykres do pliku:Punkty:PolskiWielomian 1:Wielomian 2:Portugalski (Brazylia)Plik Postscript (*.eps)|*.eps|Wszystkie|*DokładnośćPoprzenie polecenie Alt-UpDrukujDrukuj dokumentIloczynWczytaj macierz...Przetwarzanie wyników zwróconych przez MaximeOczekiwanie na wejścieWywołaj następne polecenie z historiiWywołaj poprzednie polecenie z historiiForma algebraicznaRedukcja (tr)Redukuj wyrażenie trygonometryczneUsuń wszytskie komórki wyjścioweUsuń wyjście z wszystkich komórek wejściowychZastąpiono %d razy.Zgłoś błądUruchom ponownie MaximeCałkuj metodą Rischa...Pierwiastki &wielomianiuPierwiastki wielomianiu (bfloat)Wiersze:RosyjskiPrzykład 1:Przykład 2:Próbka:ZapiszZapisz animację...Zapisz jakoZapisz jako... Shift-Ctrl-SZapisz obrazek...Zapisz zaznaczenie jako obrazekZapisz zaznaczenie jako obrazek...Zapisz animację do plikuZapisać zmiany przed wyjściem?Zapisać zmiany?Zapisz dokumentZapisz dokument jakoZapisz układ paneliZapisz układ paneli pomiędzy sesjami.Zapisz wykres do plikuZapisz zaznaczenie z dokumentu jako obrazekZapisz zaznaczenie do plikuZapisz plik ze stylemZapisz rozmiar/położenie okna wxMaximyZapisz rozmiar/położenie okna wxMaximyWykres punktowyWykres punktowy....RozdziałKomórka rozdziałuZaznacz wszystkoZaznacz wszystko Ctrl-AWybierz program MaximaWybierz stałąZaznacz wszystkoWybierz format podawania wynikówZaznaczając część wyniku i klikając prawym klawiszem myszki na zaznaczenia wyświetla menu kontekstowe z listą funkcji, które można zastosować do zaznaczenia.ZaznaczenieSzeregiSzeregi...Uruchomiono serwerUstaw &dokładnośćUstaw przybliżenieUstaw dokładność bigfloatUstaw czcionkę o stałej szerokości w kontrolkach tekstowych.Ustaw format wykresówUstaw powiększenie na 100%Ustaw powiększenie na 120%Ustaw powiększenie na 150%Ustaw powiększenie na 200%Ustaw powiększenie na 300%Ustaw powiększenie na 80%Ustawienia obliczeń moduloPokaż &definicje...Pokaż &funkcje&WskazówkaPokaż &zmiennąPokaż pomoc MaximyPokaż szablon Ctrl-Shift-KPokaż wskazówkęPokaż wszystkie polecenia podobne do:Pokaż przykład na polecenia:Pokaż przykład użyciaPokaż wszystkie polecenia podobne doPokaż zdefiniowane przez użytkownika funkcjePokaż zdefiniowane przez użytkownika zmiennePokaż definicję funkcjiPokaż szablon funkcjiPokazuj długie wyrażeniaPokazuj długie wyrażenia w dokumentach wxMaximyPokaż definicję funkcji:UprośćUprość &PierwiastkiUprość (r)Uprość (tr)Uprość wyrażenieUprość wyrażenie zawierające silnieUprość wyrażenie zawierające pierwiastkiUprość wyrażenie wymierneUprość sumęUprość wyrażenie trygonometrycznewxMaxima od wersji 0.8.2 potrafi wstawiać obrazki do dokumentu, opcja 'Edycja->Wstaw obrazek...'. Aby obrazek zapisywał się wewnątrz dokumentu należy używać formatu 'wxMaxima XML'Rozwiązania:RozwiążRozwiąż &układ równań ...Rozwiąż układ równań &liniowychRozwiąż &RRZRozwiąż (to_poly)...Rozwiąż RRZRozwiąż RRZ z Trans. Laplace'aRozwiąż RRZ...Rozwiąż układ równańRozwiąż układ równań algebraicznychNałóż warunek brzegowy na RRZ drugiego rzęduRozwiąż równanie(a)Rozwiąż równanie(a) z użyciem to_poly_solverNałóż warunki początkowe na RRZ pierwszego rzęduNałóż warunki początkowe na RRZ drugiego rzęduRozwiąż układ liniowyRozwiąż układ równań liniowychRozwiąż równanie różniczkowe zwyczajne maksymalnie rzędu 2Rozwiąż układ liniowych równań różniczkowych przy pomocy transformaty Laplace'aRozwiąż...HiszpańskiSzczególneSzczególne stałeUruchom AnimacjeUruchom animacjeNie udało się uruchomić MaximyUruchamianie Maximy...Nie udało się uruchomić serweraUruchomianie serweru na porcie %dStatystykaStatystyka Alt-Shift-SZatrzymaj animacjeNapisyWyglądStylePodrozdziałKomórka podrozdziałuPodstaw...PodstawPodstaw...SumaInformacja o systemieSzereg Taylora:TellratTekstKomórka tekstowaTło komórki tekstowejDomyślny port używany do komunikacji między Maxima i wxMaximaIstnieje wiele materiałów na temat Maximy i wxMaximy. Odwiedź http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials aby dowiedzieć się więcej o tym jak używać wxMaximy i MaximyWystąpił błąd w wygenerowanym pliku XML! Proszę zgłosić ten błądWystąpił błąd podczas eksportowania do pliku GIF! Upewnij się, że pakiet ImageMagick jest zainstalowany a wxMaxima potrafi odnaleźć program convert. Znaczniki:Stopień:Wskazówki niedostępne!TytułKomórka tytułuKomórki tytułowa, rozdziału i podrozdziału mogą być zwinięte, żeby ukryć ich zawartość. Do zwinięcia/rozwinięcia wystarczy klikniecie na prostokąt obok komórki. Shift-kliknięcie rozwija/zwija wszystkie poziomy komórki.To &BigfloatWartość &zmiennoprzecinkowaWartość zmiennoprzecinkowaAby narysować wykres w biegunowym układzie współrzędnych wybierz 'set polar' w okienku 'Opcje' okna 'Wykres 2D'. W podobny sposób wykresy 3D możesz kreślić w układzie sferycznym lub cylindrycznym.Aby objąć w nawias całe wyrażenia, zaznacz je a następnie wciśnij '(' albo ')' zależnie od tego po której jego stronie znajduje się kursorJeśli chcesz zapisać rozmiar i położenie okna wxMaximy, tak aby przy kolejnym uruchomieniu znajdowało się ono w tym samym miejscu i miało taką samą wielkość, wybierz 'Edycja->Preferencje'.Zacznij używać wxMaxima po prostu wprowadzając swoje polecenie. Program automatycznie wstawi komórke wejściową. Do uruchomienia obliczeń naciśnij Shift-Enter.Do:Wł/wył tryb &algebraicznyWł/wył wyjście &numeryczneWł/wył &czas wykonaniaWł/wył tryb algebraicznyWł/wył widok pełnoekranowyWł/wył wyjście numerycznePasek narzędzi Alt-Shift-TIkony pasku narzędziPrzetłumaczono przez:Transponuj macierzTutorialeTyp:UkraińskiPodkreślenieCofnij Ctrl-ZCofnij ostatnią zmianęWsparcie UnicodeGórna granica:Użyj algorytmu GosperUżywaj kropki jako znaku mnożenia (zamiast *)Używaj czcionek jsMathWartość:Zmienna(e):Zmienna:ZmienneZmienne:Wariancja...OstrzeżenieWitaj w wxMaxima. Polskie tłumaczenie w wesji rozwojowej, proszę zgłaszać błędy.Gdy wybierasz pewne jednoargumentowe funkcje z menu programu wxMaxima ich domyślnym argumentem jest '%'. Jeśli chcesz aby było nim inne wyrażenie, wystarczy że wpiszesz je w linii wejścia przed wybraniem funkcji z menu lub zaznaczysz w konsoli wxMaximy.Szerokość:Automatycznie zamyka nawiasy w polach tekstowych.Napisany przezZmienna '%' przechowuje ostatnie wyjście. Do poprzednich wyjść można odwoływać się za pośrednictwem zmiennych '%on' gdzie n to numer wyjścia.Możesz obliczyć wszystkie wyrażenia w dokumencie wybierając 'Edycja->Komórka->Wykonaj wszystkie komórki'. Zostaną one obliczone w kolejności w jakiej pojawiają się w dokumencieAby uzyskać informację na temat danej funkcji Maximy zaznacz ją a następnie naciśnij F1. Odpowiednie hasło pomocy zostanie znalezione automatycznie.Możesz ukryć wyjście wyrażenia w dowolnej komórce klikając na trójkąt w lewym górnym rogu komórki.Istnieje wiele typów komórek, które możesz umieszczać w swoim dokumencie wybierając menu 'Komórka'. Jedynie komórka wyjściowa może zostać wykonana (obliczona). Inne typy służą do wprowadzania komentarzy oraz logicznego podziału dokumentuMożesz zaznaczyć kilka komórek albo myszką (kliknij na prostokąt i lub na nawiasy obok komórki i przeciągnij), albo za pomocą Shift+ strałki góra/dól w trybie kursoru poziomego. To się przydaje, jeżeli chceszusunąć lub powtórzyć obliczenia w zaznaczonych komórkach.Masz wersję %s. Numer wersji bierzącej to %s. Nacisnij OK zeby przejść do strony wxMaxima.Wprowadzone zmiany zostaną utracone, jężeli nie zostaną zapisane.Masz najnowszą wersję wxMaxima.Przybliż Alt-IOddal Alt-OPowiększ o 10%Pomniejsz o 10%Powiększenie ustawione na[ nie zapisane ][ nie zapisane* ]antysymetrycznaobu strondomyślnydiagonalnazwykławbudowanylewej stronyukryte linieskala logarytmicznamatrix[i,j]:nieprawej stronysymetrycznanie zapisanebeznazwybeznazwy %dwxMaximawxMaxima %s wxMaxima preferencjewxMaxima nie potrafi odnaleźć Maximy Skonfiguruj program wxMaxima 'Edycjja->Preferencje'. Następnie uruchom Maximę 'Maxima->Restart'.Nie odnaleziono plików pomocy. Popraw instalację programu wxMaxima.Nie znaleziono plików ze wskazówkami Popraw instalację programu wxMaxima.wxMaxima nie mogła uruchomić serwera. Sprawdź swoje ustawienia sieciowe i spróbuj ponownie.Domyślnie wxMaxima uzupełnia okna dialogowe (np. 'RRC->Całka'). Przeważnie jedno z nich zostaje uzupełnione przez zmienną '%'. Jeśli chcesz uzupełnić je innym wyrażeniem wystarczy, że wpiszesz je w linii wejścia lub zaznaczysz w konsoli.Dokument wxMaximaDokument wxMaxima (*.wxm)|*.wxm|xml dokument wxMaxima (*.wxmx)|*.wxmx|Plik wsadowy Maxima (*.mac)|*.macDokument wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxNapotkano błąd przy uruchamianiu wxMaximyIkona wxMaximawxMaxima jest graficznym interfejsem MAXIMA bazującym na wxWidgets.wxMaxima jest graficznym interfejsem Maximy bazującym na wxWidgets.takwxMaxima-13.04.2/locales/._pl.po000644 000765 000024 00000000305 11720647500 016674 0ustar00andrejstaff000000 000000 Mac OS X  2ATTR--com.apple.quarantineq/0001;4f434efb;Firefox;|org.mozilla.firefoxwxMaxima-13.04.2/locales/pl.po000644 000765 000024 00000261465 11720647500 016477 0ustar00andrejstaff000000 000000 # translation to pl_PL # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Rafal Topolnicki , 2008, 2009. # Ihor Rokach , 2012 msgid "" msgstr "" "Project-Id-Version: pl\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: \n" "Last-Translator: Ihor Rokach \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3424 msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Wsparcie Unicode: %s" #: ../src/wxMaxima.cpp:3437 msgid "" "\n" "Lisp: " msgstr "" "\n" " Lisp:" #: ../src/wxMaxima.cpp:3433 msgid "" "\n" "Maxima version: " msgstr "" "\n" " Wersja Maximy:" #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Nie połączono z Maxima!\n" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" "\n" "Nie połączono." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "<< Wyrażenie jest zbyt długie, aby je wyświetlić >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" "został zapisany z użyciem nowszej wersji wxMaximy przez co może nie zostać " "wczytany poprawnie. Zaleca się aktualizację wxMaximy." #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" "został zapisany z użyciem nowszej wersji wxMaximy. Zaleca się aktualizację " "wxMaximy." #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "&Algebra" #: ../src/wxMaximaFrame.cpp:457 msgid "&Apply to List..." msgstr "&Zastosuj do listy ..." #: ../src/wxMaximaFrame.cpp:643 msgid "&Apropos..." msgstr "&Apropos..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "&Plik wsadowy...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:414 msgid "&Boundary Value Problem..." msgstr "Warunek &brzegowy ..." #: ../src/wxMaximaFrame.cpp:654 msgid "&Bug Report" msgstr "Zgłoś &błąd" #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "A&naliza" #: ../src/wxMaximaFrame.cpp:566 msgid "&Canonical Form" msgstr "Postać &kanoniczna" #: ../src/wxMaximaFrame.cpp:439 msgid "&Characteristic Polynomial..." msgstr "Wielomian charakterystyczny ..." #: ../src/wxMaximaFrame.cpp:347 msgid "&Clear Memory" msgstr "&Wyczyść pamięć" #: ../src/wxMaximaFrame.cpp:549 msgid "&Combine Factorials" msgstr "&Połącz silnie " #: ../src/wxMaximaFrame.cpp:592 msgid "&Complex Simplification" msgstr "Uproszczenia &zespolone" #: ../src/wxMaximaFrame.cpp:512 msgid "&Continued Fraction" msgstr "Ułamek ł&ańcuchowy" #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "&Kopiuj\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Całka &oznaczona" #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "&Wyznacznik" #: ../src/wxMaximaFrame.cpp:475 msgid "&Differentiate..." msgstr "&Pochodna..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "&Edycja" # Wyznacz zmienną #: ../src/wxMaximaFrame.cpp:399 msgid "&Eliminate Variable..." msgstr "&Ruguj zmienną" #: ../src/wxMaximaFrame.cpp:434 msgid "&Enter Matrix..." msgstr "&Wprowadź macierz" #: ../src/wxMaximaFrame.cpp:640 msgid "&Example..." msgstr "&Przykład..." #: ../src/wxMaximaFrame.cpp:529 msgid "&Expand Expression" msgstr "&Rozwiń wyrażenie" #: ../src/wxMaximaFrame.cpp:563 msgid "&Expand Trigonometric" msgstr "Rozwiń &trygonometrycznie" #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr "&Exponentialize" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "E&ksportuj" #: ../src/wxMaximaFrame.cpp:524 msgid "&Factor Expression" msgstr "&Faktoryzuj wyrażenie" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Plik" #: ../src/wxMaximaFrame.cpp:382 msgid "&Find Root..." msgstr "Znajdź &pierwiastek" #: ../src/wxMaximaFrame.cpp:428 msgid "&Generate Matrix..." msgstr "&Generuj macierz" #: ../src/wxMaximaFrame.cpp:499 msgid "&Greatest Common Divisor..." msgstr "&Największy wspólny dzielnik" #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "&Pomoc" #: ../src/wxMaximaFrame.cpp:467 msgid "&Integrate..." msgstr "&Całkowanie..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "&Przerwij\tCtrl-." #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "&Przerwij\tCtrl-G" #: ../src/wxMaximaFrame.cpp:436 msgid "&Invert Matrix" msgstr "Macierz &odwrotna" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "&Wczytaj pakiet\tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 msgid "&Map to List..." msgstr "&Mapuj listę" #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:607 msgid "&Modulus Computation..." msgstr "Obliczenia &modulo..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "Nowy\tCtrl-N" #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr "&Numeryczne" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Całkowanie &numeryczne" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Nusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Otwórz\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Otwórz...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&Wykres" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "&Szereg potęgowy" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Drukuj...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Wymierne" #: ../src/wxMaximaFrame.cpp:560 msgid "&Reduce Trigonometric" msgstr "Redukuj &trygonometrycznie" #: ../src/wxMaximaFrame.cpp:346 msgid "&Restart Maxima" msgstr "&Restart Maxima" #: ../src/wxMaximaFrame.cpp:390 msgid "&Roots of Polynomial (Real)" msgstr "Pierwiastki &wielomianiu (rzeczywiste)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "Zapisz\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "&Upraszczanie" #: ../src/wxMaximaFrame.cpp:519 msgid "&Simplify Expression" msgstr "Uprość &wyrażenie" #: ../src/wxMaximaFrame.cpp:546 msgid "&Simplify Factorials" msgstr "Uprość &silnie" #: ../src/wxMaximaFrame.cpp:557 msgid "&Simplify Trigonometric" msgstr "Uprość &trygonometrycznie" #: ../src/wxMaximaFrame.cpp:378 msgid "&Solve..." msgstr "&Rozwiąż..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "&Specjalny" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Szereg &Taylora" #: ../src/wxMaximaFrame.cpp:452 msgid "&Transpose Matrix" msgstr "&Transponuj macierz" #: ../src/wxMaximaFrame.cpp:569 msgid "&Trigonometric Simplification" msgstr "Uproszczenia &trygonometryczne" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "(Używaj domyślnego języka)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- Nieskończoność" #: ../src/wxMaxima.cpp:3488 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Od wxMaxima 0.8.0 został wprowadzony 'kurzor poziomy'. Wygłada jak kreska " "pozioma pomiędzy komórkami. Wskazuje miejsce, w którym mozna wstawić nową " "komorkę poprzez zwykły początek wprowadzania nowego polecenia, wklejanie " "skopiowanej koorki lub uruchomienie polecenia z menu." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Od wxMaxima 0.8.2 został wprowadzony nowy format zapisu dokumentu, który " "pozwala zapisać nie tylko wprowadzony tekst i polecenia ale i wyniki " "obliczeń. Żeby zapisać plik w tym formacie użyj opcji 'XML dokument " "wxMaxima'." #: ../src/wxMaximaFrame.cpp:421 msgid "A&t Value..." msgstr "Wartość wyrażenia" #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr "O" #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr "O wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "Obramowanie aktywnej komórki" #: ../src/wxMaximaFrame.cpp:450 msgid "Ad&joint Matrix" msgstr "Macierz &dołączona" #: ../src/wxMaximaFrame.cpp:604 msgid "Add Algebraic E&quality..." msgstr "Dodaj nierówność algebraiczną" #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr "Dodaj katalogi do zmiennej Path" #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr "Dodaj do zmiennej Path" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr "" #: ../src/wxMaximaFrame.cpp:349 msgid "Add to &Path..." msgstr "Dodaj do zmiennej &Path" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Dodatkowe parametry Maximy (np. -l clisp)." #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "Dodatkowe parametry:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "Wszystkie|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "Animacja" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "Zastosuj" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr "Zastosuj funkcję do listy" #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr "Apropos" #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "Tablica:" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "Pytaj o zapis dokumentów bez nazwy" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr "Dla wartości" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "Warunki brzegowe" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "Wykres słupkowy..." #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Pliki wsadowe (*.bat)|*.bat|Wszystkie*" #: ../src/wxMaxima.cpp:1990 msgid "Batch File" msgstr "Plik wsadowy" #: ../src/Config.cpp:382 msgid "Bold" msgstr "Pogrubienie" #: ../src/wxMaximaFrame.cpp:1019 msgid "Boxplot..." msgstr "Wykres pudełkowy..." #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "Przeglądaj" #: ../src/wxMaximaFrame.cpp:652 msgid "Build &Info" msgstr "Informacje o kompilacji" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Domyślnie Shift-Enter wykonuje aktywną komórkę natomiast Enter wstawia nową " "linię do wyrażenia. Zachowanie to, można zmienić w 'Edycja->Preferencje'." #: ../src/wxMaximaFrame.cpp:472 msgid "C&hange Variable..." msgstr "Zmiana &zmiennych ..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "Preferencje" #: ../src/wxMaximaFrame.cpp:491 msgid "Calculate &Product..." msgstr "Oblicz &iloczyn ..." #: ../src/wxMaximaFrame.cpp:489 msgid "Calculate Su&m..." msgstr "Oblicz &sumę ..." #: ../src/wxMaximaFrame.cpp:629 msgid "Calculate bigfloat value of the last result" msgstr "Oblicz ostatni wynik w podwyższonej precyzji (bigfloat)" #: ../src/wxMaximaFrame.cpp:626 msgid "Calculate float value of the last result" msgstr "Wartość zmiennoprzecinkowa wyrażenia" #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr "Obliczenia modulo:" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr "Oblicz iloczyn" #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr "Oblicz sumę" #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "Brak łączności z serwerem internetowym." #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "" #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "Anuluj" #: ../src/wxMaximaFrame.cpp:962 msgid "Canonical (tr)" msgstr "Postać kanoniczna (tr)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Katalonski" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "&Komórka" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "Obramowanie komórki" #: ../src/wxMaximaFrame.cpp:369 msgid "Change &2d Display" msgstr "Zmień format wyników" #: ../src/wxMaximaFrame.cpp:370 msgid "Change the 2d display algorithm used to display math output" msgstr "Zmień format podawania wyników" #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr "Zmień zmienną" #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr "Zmień zmienną w całce lub sumie" #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr "Char poly" #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "Sprawdź, czy jest nowsza wersja" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Sprawdź najawność nowszej wersji wxMaxima/Maxima." #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "Tradycyjny Chiński" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "Wybierz czcionkę" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Wybierz nowy format wykresów:" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "Klasy:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "&Zamknij\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Zamknij okno" #: ../src/wxMaxima.cpp:3686 msgid "Col. names:" msgstr "Nazwy kolumn:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Kolumny:" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr "Połącz silnie występujące w wyrażeniu - np. 'n*(n-1)! => n!'" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Przecinek oddziela kolejne współrzędne na osi OX" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Przecinek oddziela kolejne współrzędne na osi OY" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Zakomentuj zaznaczenie" #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "Uzupełnij słowo\tCtrl-K" #: ../src/wxMaximaFrame.cpp:292 msgid "Complete word" msgstr "Uzupełnij słowo" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr "Przedstaw wyrażenie w postaci ułamka łańcuchowego" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the adjoint matrix" msgstr "Znajdź macierz dołączoną" #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr "Oblicz wielomian charakterystyczny macierzy" #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr "Oblicz wyznacznik macierzy" #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr "Znajdź największy wspólny dzielnik (NWD)" #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr "Znajdź macierz odwrotną" #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Znajdź najmniejszą wspólną wielokrotność (NWW) (przed użyciem " "wykonaj 'load(functs)')" #: ../src/wxMaxima.cpp:3736 msgid "Condition:" msgstr "Warunek:" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "Plik konfiguracyjny (*.ini)|*.ini" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr "Uwaga na temat konfiguracji" #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr "Preferencje programu wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "Stała" #: ../src/wxMaximaFrame.cpp:534 msgid "Contract Logarithms" msgstr "Zwiń logarytmy" #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Zamień dwumian Newtona, funkcje beta lub gamma na silnie" #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Zamień dwumian Newtona, silnie, funkcję beta na funkcję gamma" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr "Zamień wyrażenie zespolone na postać biegunową" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr "Zamień wyrażenie zespolone na postać alebraiczną" #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Zamień postać wykładniczą liczby zespolonej na postać trygonometryczną" #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr "Zamień logarytm iloczynu na sumę logarytmów" #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr "Zamień sumę logarytmów na logarytm iloczynu" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert to &Factorials" msgstr "Zamień na &silnie" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert to &Gamma" msgstr "Zamień na funkcję &gamma" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert to &Polarform" msgstr "Forma &biegunowa" #: ../src/wxMaximaFrame.cpp:574 msgid "Convert to &Rectform" msgstr "Forma &algebraiczna" #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Uprość wyrażenie trygonometryczne zawierające ułamki." #: ../src/wxMaximaFrame.cpp:590 msgid "Convert trigonometric functions to exponential form" msgstr "Zamień funkcje trygonometryczne i hiperboliczne na eksponencjalne" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "Kopiuj" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Kopiuj jako obrazek" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Kopiuj LaTeX" #: ../src/wxMaximaFrame.cpp:289 msgid "Copy Previous Input\tCtrl-I" msgstr "Kopiuj ostatnie wejście\tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as Image" msgstr "Kopiuj jako obrazek" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as LaTeX" msgstr "Kopiuj jako LaTeX" #: ../src/wxMaximaFrame.cpp:232 msgid "Copy as Text\tCtrl-Shift-C" msgstr "Kopiuj jako tekst\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr "Kopiuj zaznaczenie" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document as an image" msgstr "Kopiuj zaznaczenie z dokumentu jako obrazek" #: ../src/wxMaximaFrame.cpp:233 msgid "Copy selection from document as text" msgstr "Kopiuj zaznaczenie z dokumentu jako tekst" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document in LaTeX format" msgstr "Kopiuj zaznaczenie z dokumentu w formacje LaTeX" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "Utwórz nową komórkę z ostatnim wejściem" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "Kursor" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "Wytnij" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "&Wytnij\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 msgid "Cut selection" msgstr "Wytnij zaznaczenie" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Czeski" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Duński" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 msgid "Data Matrix:" msgstr "Macierz danych:" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Plik z danymi (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "Dane:" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr "Przedstaw wyrażenie w postaci ułamka prostego" #: ../src/Config.cpp:351 msgid "Default" msgstr "Domyślnie" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "Domyślna czcionka:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "Domyślny port:" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "Usuń" #: ../src/wxMaximaFrame.cpp:360 msgid "Delete F&unction..." msgstr "Usuń &funkcję" #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Usuń zaznaczenie" #: ../src/wxMaximaFrame.cpp:362 msgid "Delete V&ariable..." msgstr "Usuń &zmienną" #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr "Usuń funkcję" #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr "Usuń zmienną" #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr "Usuń wszystkie dane z pamięci" #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr "Usuń funkcję(e):" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr "Usuń zmienną(e):" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr "st. mianownika:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Stopień:" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr "Pochodna:" #: ../src/wxMaximaFrame.cpp:1003 msgid "Deviation..." msgstr "Odchylenie..." #: ../src/wxMaximaFrame.cpp:506 msgid "Di&vide Polynomials..." msgstr "Podziel wielomiany..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "Pochodna..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "Pochodna" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr "Oblicz pochodną wyrażenia" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Pochodna..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Z:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Dyskretny" #: ../src/wxMaximaFrame.cpp:372 msgid "Display Te&X Form" msgstr "Wyświetl w formacie Te&X" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr "Format wyświetlania wyników" #: ../src/wxMaximaFrame.cpp:373 msgid "Display last result in TeX form" msgstr "Zapisz ostatni wynik w formacie TeX" #: ../src/wxMaximaFrame.cpp:367 msgid "Display time used for evaluation" msgstr "Wyświetl czas przeprowadzania obliczeń" #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "Podziel" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Podziel komórki" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr "Podziel liczby lub wielomiany" #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "Czy chcesz zapisać wprowadzone zmiany?" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 msgid "Document " msgstr "Dokument " #: ../src/Config.cpp:368 msgid "Document background" msgstr "Tło dokumentu" #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "Nie zapisuj" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "&Równania" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "Wyjście\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr "Wektory własne" #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr "Wartości własne" #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "Wyznacz" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr "Wyznacz zmienną z układu równań" #: ../src/Config.cpp:243 msgid "English" msgstr "Angielski" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 msgid "Enter Data" msgstr "Wprowadź dane" #: ../src/wxMaximaFrame.cpp:1024 msgid "Enter Matrix..." msgstr "Wprowadź macierz..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr "Wprowadź macierz" #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr "Wprowadź równanie do upraszczania racjonalnego:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Wprowadź listę zmiennych oddzielonych przecinkami" #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "Klawisz 'Enter' wykonuje komórki" #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr "Wprowadź macierz" #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr "Wprowadź nową dokładność:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "Wprowadź ścieżkę do programu Maxima" #: ../src/wxMaxima.cpp:3115 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 msgid "Equation %d:" msgstr "Równanie %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr "Równanie(a):" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr "Równanie:" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr "Równania:" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "Błąd" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 msgid "Error %d" msgstr "Błąd %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "Błąd!" #: ../src/wxMaximaFrame.cpp:599 msgid "Evaluate &Noun Forms" msgstr "Oblicz wyrażenie &nominalne" #: ../src/wxMaximaFrame.cpp:284 msgid "Evaluate All Cells\tCtrl-R" msgstr "Wykonaj wszystkie komórki\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 msgid "Evaluate Cell(s)" msgstr "Wykonaj komórki" #: ../src/wxMaximaFrame.cpp:283 msgid "Evaluate active or selected cell(s)" msgstr "Wykonaj aktywne lub zaznaczone komórki" #: ../src/wxMaximaFrame.cpp:285 msgid "Evaluate all cells in the document" msgstr "Wykonaj wszystkie komórki w dokumencie" #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr "Oblicz wszystkie wyrażenie nominalne" #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "Przykład" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr "Przykładowy tekst" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Wyjdź z wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "Rozwiń" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr "Rozwiń (tr)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Rozwiń wyrażenie" #: ../src/wxMaximaFrame.cpp:531 msgid "Expand Logarithms" msgstr "Rozwiń logarytmy" #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr "Rozwiń wyrażenie" #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr "Rozwiń wyrażenie trygonometryczne" #: ../src/wxMaxima.cpp:1951 msgid "Export" msgstr "Eksportuj" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Eksportuj dokument do pliku HTML lub pdfLaTeX" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr "Eksport do HTML zakończył się niepowodzeniem!" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr "Eksport do TeX zakończył się niepowodzeniem!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Wyrażenie" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Wyrażenie(a):" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr "Wyrażenie:" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "Faktoryzuj" #: ../src/wxMaximaFrame.cpp:526 msgid "Factor Complex" msgstr "Faktoryzuj zespolenie" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Faktoryzuj wyrażenie" #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr "Faktoryzuj wyrażenie" #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr "Faktoryzuj wyrażenie w liczbach Gaussa" #: ../src/wxMaximaFrame.cpp:552 msgid "Factorials and &Gamma" msgstr "Silnie i funkcja &gamma" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "Krytyczny błąd" #: ../src/GroupCell.cpp:1263 msgid "Figure %d:" msgstr "Obrazek %d:" #: ../src/main.cpp:107 msgid "File" msgstr "Plik" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "Nie znaleziono pliku" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "Plik, który próbujesz otworzyć nie istnieje" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Plik:" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "Znajdź" #: ../src/wxMaximaFrame.cpp:248 msgid "Find\tCtrl-F" msgstr "Znajdź\tCtrl-F" #: ../src/wxMaximaFrame.cpp:477 msgid "Find &Limit..." msgstr "Znajdź &granicę..." #: ../src/wxMaximaFrame.cpp:480 msgid "Find Minimum..." msgstr "Znajdź minimum..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Znajdź pierwiastek..." #: ../src/wxMaximaFrame.cpp:481 msgid "Find a (unconstrained) minimum of an expression" msgstr "Znajdź minimum wyrażenia" #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr "Znajdź granicę wyrażenia" #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr "Znajdź pierwiastek wyrażenia w danym przedziale" #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr "Znajdź wszystkie pierwiastki wielomianu" #: ../src/wxMaximaFrame.cpp:388 msgid "Find all roots of a polynomial (bfloat)" msgstr "Znajdź wszystkie pierwiastki wielomianu (bfloat)" #: ../src/wxMaxima.cpp:2174 msgid "Find and Replace" msgstr "Znajdź i Zmień" #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 msgid "Find and replace" msgstr "Znajdź i zmień" #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr "Znajdź wartości własne macierzy" #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr "Znajdź wektory własne macierzy" #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "Znajdź minimum" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr "Znajdź rzeczywiste pierwiastki wielomianu" #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "Znajdź pierwiastek" #: ../src/wxMaximaFrame.cpp:794 msgid "Find..." msgstr "Znajdź..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "Czcionka o stałej szerokości w kontrolkach tekstowych" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "Czcionka używana w dokumencie" #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "Czcionka używana do wyrażeń matematycznych" #: ../src/Config.cpp:330 msgid "Fonts" msgstr "Czcionki" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "Format:" #: ../src/Config.cpp:244 msgid "French" msgstr "Francuski" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "Od:" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "Pełny ekran\tAlt-Enter" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "Funkcja" #: ../src/Config.cpp:354 msgid "Function names" msgstr "Nazwa funkcji" #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr "Funkcja(e):" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr "Funkcja:" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr "Funkcje do uproszczeń zespolonych" #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr "Funkcje do uproszczeń silni i funkcji gamma" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr "Funkcje do uproszczeń trygonometrycznych" #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "NWD" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "obraz GIF (*.gif)|*.gi" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Podstawowa Matem." #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "Podstawowa Matem.\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr "Utwórz macierz" #: ../src/wxMaximaFrame.cpp:431 msgid "Generate Matrix from Expression..." msgstr "Generuj macierz z wyrazu..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr "Utwórz macierz z tablicy 2D" #: ../src/wxMaximaFrame.cpp:432 msgid "Generate a matrix from a lambda expression" msgstr "Generuj macierz z wyrazu lambda" #: ../src/Config.cpp:245 msgid "German" msgstr "Niemiecki" #: ../src/wxMaximaFrame.cpp:583 msgid "Get &Imaginary Part" msgstr "Część &urojona" #: ../src/wxMaximaFrame.cpp:483 msgid "Get &Series..." msgstr "Rozwiń w &szereg" #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr "Transformata Laplace'a wyrażenia" #: ../src/wxMaximaFrame.cpp:580 msgid "Get Real P&art" msgstr "Część &rzeczywista" #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr "Odwrotna transformata Laplace'a wyrażenia" #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr "Rozwiń wyrażenie w szereg Taylora" #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr "Część urojona wyrażenia zespolonego" #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr "Część rzeczywista wyrażenia zespolonego" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Grecki" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "Greckie stałe" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Siatka:" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "plik HTML (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr "Wysokość:" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "Pomoc" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "Ukryj wszystkie\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "Ukryj wszystkie panele" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "Podkreśl (dpart)" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "Histogram" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "Histogram..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Historia" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "Historia\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "Kursor pionowy zachowuje się, jak zwykły kursor, ale działa na komórkach. " "Można go przesuwać za pomocą strzałek. Jednoczesne naciśnięcie Shift " "pozwala zaznaczać komórki, naciśnięcie Backspace lub Delete (dwukrotnie) " "usuwa zaznaczone komórki." #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Węgierski" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "IC1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "IC2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Jeśli obliczenia trwają zbyt długo, możesz je przerwać wybierając 'Maxima-" ">Przerwij' albo 'Maxima->Uruchom ponownie'" #: ../src/wxMaximaFrame.cpp:1055 msgid "Image" msgstr "Obrazek" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Pliki graficzne (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "Załącz kolumny:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Nieskończoność" #: ../src/wxMaximaFrame.cpp:653 msgid "Info about Maxima build" msgstr "Informacje o kompilacji" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "Wstępne oszacowanie:" #: ../src/wxMaximaFrame.cpp:408 msgid "Initial Value Problem (&1)..." msgstr "Warunki początkowe (&1)..." #: ../src/wxMaximaFrame.cpp:411 msgid "Initial Value Problem (&2)..." msgstr "Warunki początkowe (&2)..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "Etykiety wejściowe" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Wstaw" #: ../src/wxMaximaFrame.cpp:302 msgid "Insert &Section Cell\tCtrl-3" msgstr "Wstaw komórkę &rozdziału\tCtrl-3" #: ../src/wxMaximaFrame.cpp:298 msgid "Insert &Text Cell\tCtrl-1" msgstr "Wstaw komórkę t&ekstowa \tCtrl-1" #: ../src/wxMaximaFrame.cpp:328 msgid "Insert Cell\tAlt-Shift-C" msgstr "Wstaw komórkę\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4178 msgid "Insert Image" msgstr "Wstaw obrazek" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert Image..." msgstr "Wstaw obrazek..." #: ../src/wxMaximaFrame.cpp:296 msgid "Insert Input &Cell" msgstr "Wstaw komórkę &wejściowa" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Page Break" msgstr "Wstaw znak końca strony" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Wstaw komórkę &podrozdziału\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Wstaw komórkę &rozdziału" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Wstaw komórkę &podrozdziału" #: ../src/wxMaximaFrame.cpp:300 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Wstaw komórkę &tytułową\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Wstaw komórkę t&ekstową" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Wstaw komórkę &tytułowa" #: ../src/wxMaximaFrame.cpp:297 msgid "Insert a new input cell" msgstr "Wstaw nową komórkę wejściową" #: ../src/wxMaximaFrame.cpp:303 msgid "Insert a new section cell" msgstr "Wstaw komórkę nowego rozdziału" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new subsection cell" msgstr "Wstaw komórkę nowego podrozdziału" #: ../src/wxMaximaFrame.cpp:299 msgid "Insert a new text cell" msgstr "Wstaw nową komórkę tekstową" #: ../src/wxMaximaFrame.cpp:301 msgid "Insert a new title cell" msgstr "Wstaw nową komórkę nagłówka" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a page break" msgstr "Wstaw znak końca strony" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert image" msgstr "Wstaw obrazek" #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "Całka/Suma:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "Całkuj" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr "Całkuj (risch)" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr "Całkuj wyrażenie" #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr "Całkuj wyrażenie używając algorytmu Ruscha" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "Całkuj..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "Przerwij" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr "Przerwij bieżące obliczenia" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Błędna lokalizacja programu Maxima.\n" "\n" "Wprowadź ponownie ścieżkę do programu Maxima." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr "Odwrotna Transformata Laplace'a" #: ../src/wxMaximaFrame.cpp:496 msgid "Inverse Laplace T&ransform..." msgstr "Odwrotna Transformata &Laplace'a" #: ../src/Config.cpp:248 msgid "Italian" msgstr "Włoski" #: ../src/Config.cpp:383 msgid "Italic" msgstr "Kursywa" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Japoński" #: ../src/Config.cpp:266 msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Używaj znak procentu dla zmiennych specjalnych: %e, %i, itp." #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "NWW" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "Język używany w GUI wxMaximy" #: ../src/Config.cpp:235 msgid "Language:" msgstr "Język:" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:493 msgid "Laplace &Transform..." msgstr "&Transformata Laplace'a..." #: ../src/wxMaximaFrame.cpp:502 msgid "Least Common Multiple..." msgstr "Najmniejsza wspólna wielokrotność..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "Metoda najmniejszych kwadratów" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "Metoda najmniejszych kwadratów..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "Granica" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr "Granica..." #: ../src/wxMaximaFrame.cpp:1010 msgid "Linear Regression..." msgstr "Regresja liniowa..." #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr "Lista:" #: ../src/Config.cpp:386 msgid "Load" msgstr "Wczytaj" #: ../src/wxMaxima.cpp:1979 msgid "Load Package" msgstr "Wczytaj pakiet" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Wczytaj plik używając polecenia batch" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Wczytaj pakiet Maximy" #: ../src/Config.cpp:1070 msgid "Load style from file" msgstr "Wczytaj styl z pliku" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr "Dolna granica:" #: ../src/wxMaximaFrame.cpp:461 msgid "Ma&p to Matrix..." msgstr "Mapuj macierz..." #: ../src/wxMaximaFrame.cpp:455 msgid "Make &List..." msgstr "Utwórz &listę..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr "Utwórz listę" #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr "Utwórz listę z wyrażenia" #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr "Wykonaj podstawienie w wyrażeniu" #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr "Mapuj" #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr "Mapuj funkcję do listy" #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr "Mapuj funkcję do macierzy" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "Czcionka matematyczna:" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "Macierz" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr "Mapuj macierz" #: ../src/wxMaxima.cpp:3737 msgid "Matrix name:" msgstr "Nazwa macierzy:" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr "Macierz:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 msgid "Maxima &Help\tF1" msgstr "&Pomoc Maxima\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Maxima wejście" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima wykonuje obliczenia" #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr "Pakiet Maxima (*.mac)|*.mac|" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Pakiet Maxima (*.mac)|*.mac|Pakiet Lispa (*.lisp)|*.lisp|Wszystkie|*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr "Maxima zakończyła działanie" #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Maxima program:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Zapytania Maximy" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Uruchomiono Maximę. Oczekiwanie na połączenie..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima używa ':' jako operatora przypisania ('a : 3;') a ':=' do " "definiowania funkcji ('f(x):=x^2;')." #: ../src/wxMaxima.cpp:3484 msgid "Maxima version: " msgstr "Wersja Maximy: " #: ../src/wxMaximaFrame.cpp:1008 msgid "Mean Difference Test..." msgstr "" #: ../src/wxMaximaFrame.cpp:1007 msgid "Mean Test..." msgstr "" #: ../src/wxMaximaFrame.cpp:1000 msgid "Mean..." msgstr "Średnia..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "Średnia:" #: ../src/wxMaximaFrame.cpp:1001 msgid "Median..." msgstr "Mediana..." #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Scal komórki" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Metoda:" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "Modulo" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "Nazwa:" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "Nowy" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "Nowy\tCtrl-N" #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 msgid "New document" msgstr "Nowy dokument" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Nowa wartość:" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr "Nowa zmienna:" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "Następne polecenie\tAlt-Down" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "Nie znaleziono!" #: ../src/wxMaximaFrame.cpp:1009 msgid "Normality Test..." msgstr "" #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr "Nieprawidłowy wymiar macierzy!" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr "Nieprawidłowa liczba równań!" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "Nie połączono." #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr "st. licznika" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr "Ilość równań:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "Liczby" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Stara wartość:" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr "Stara zmienna:" #: ../src/wxMaxima.cpp:3643 msgid "One sample t-test" msgstr "" #: ../src/wxMaximaFrame.cpp:650 msgid "Online tutorials" msgstr "Kursy Online" #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "Otwórz" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Otwórz ostatnie" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Otwórz dokument" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Otwórz nowe okno" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 msgid "Open document" msgstr "Otwórz dokument" #: ../src/wxMaxima.cpp:3704 msgid "Open matrix" msgstr "Otwórz macierz" #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 msgid "Opening file" msgstr "Otwieranie pliku" #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "Opcje" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "Opcje:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "Komórki nieaktualne" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "Identyfikatory wyjść" #: ../src/wxMaximaFrame.cpp:486 msgid "P&ade Approximation..." msgstr "Przybliżenie &Pade..." #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap " "(*.xpm)|*.xpm" # msgid "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm" # msgstr "PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr "Przybliżenie Pade" #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "Przybliżenie Pade szeregu Taylora" #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "Podział strony" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "Panele" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Wykres parametryczny" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "Parsowanie wyjścia" #: ../src/wxMaximaFrame.cpp:509 msgid "Partial &Fractions..." msgstr "&Ułamek prosty" #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr "Ułamek prosty" #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "Części dokumentu nie zostaną wczytane poprawnie" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "Wklej" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "Wklej\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 msgid "Paste from clipboard" msgstr "Wklej ze schowka" #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr "Wklej tekst ze schowka" #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "Diagram kołowy..." #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Skonfiguruj wxMaxime 'Edycja->Preferencje'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Uruchom ponownie wxMaxime, aby zmiany zaczęły obowiązywać" #: ../src/wxMaximaFrame.cpp:613 msgid "Plot &2d..." msgstr "Wykres &2D..." #: ../src/wxMaximaFrame.cpp:615 msgid "Plot &3d..." msgstr "Wykres &3D..." #: ../src/wxMaximaFrame.cpp:617 msgid "Plot &Format..." msgstr "&Format wykresu" #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "Wykres 2D" #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr "Wykres 2D..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "Wykres 2D..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "Wykres 3D" #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr "Wykres 3D..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "Wykres 3D..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr "Format wykresu" #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr "Utwórz wykres dwuwymiarowy" #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr "Utwórz wykres trójwymiarowy" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Zapisz wykres do pliku:" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr "Punkty:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polski" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr "Wielomian 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr "Wielomian 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portugalski (Brazylia)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Plik Postscript (*.eps)|*.eps|Wszystkie|*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "Dokładność" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "Poprzenie polecenie\tAlt-Up" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "Drukuj" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr "Drukuj dokument" #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "Iloczyn" #: ../src/wxMaximaFrame.cpp:1023 msgid "Read Matrix..." msgstr "Wczytaj macierz..." #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "Przetwarzanie wyników zwróconych przez Maxime" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr "Oczekiwanie na wejście" #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "Wywołaj następne polecenie z historii" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "Wywołaj poprzednie polecenie z historii" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr "Forma algebraiczna" #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr "Redukcja (tr)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr "Redukuj wyrażenie trygonometryczne" #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "Usuń wszytskie komórki wyjściowe" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "Usuń wyjście z wszystkich komórek wejściowych" #: ../src/wxMaxima.cpp:2225 msgid "Replaced %d occurences." msgstr "Zastąpiono %d razy." #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr "Zgłoś błąd" #: ../src/wxMaximaFrame.cpp:346 msgid "Restart Maxima" msgstr "Uruchom ponownie Maxime" #: ../src/wxMaximaFrame.cpp:469 msgid "Risch Integration..." msgstr "Całkuj metodą Rischa..." #: ../src/wxMaximaFrame.cpp:384 msgid "Roots of &Polynomial" msgstr "Pierwiastki &wielomianiu" #: ../src/wxMaximaFrame.cpp:387 msgid "Roots of Polynomial (bfloat)" msgstr "Pierwiastki wielomianiu (bfloat)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Wiersze:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Rosyjski" #: ../src/wxMaxima.cpp:3656 msgid "Sample 1:" msgstr "Przykład 1:" #: ../src/wxMaxima.cpp:3656 msgid "Sample 2:" msgstr "Przykład 2:" #: ../src/wxMaxima.cpp:3642 msgid "Sample:" msgstr "Próbka:" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "Zapisz" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Zapisz animację..." #: ../src/wxMaxima.cpp:1840 msgid "Save As" msgstr "Zapisz jako" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Zapisz jako...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Zapisz obrazek..." #: ../src/wxMaxima.cpp:2089 msgid "Save Selection to Image" msgstr "Zapisz zaznaczenie jako obrazek" #: ../src/wxMaximaFrame.cpp:253 msgid "Save Selection to Image..." msgstr "Zapisz zaznaczenie jako obrazek..." #: ../src/wxMaxima.cpp:3984 msgid "Save animation to file" msgstr "Zapisz animację do pliku" #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "Zapisać zmiany przed wyjściem?" #: ../src/wxMaxima.cpp:4432 msgid "Save changes?" msgstr "Zapisać zmiany?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 msgid "Save document" msgstr "Zapisz dokument" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Zapisz dokument jako" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "Zapisz układ paneli" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "Zapisz układ paneli pomiędzy sesjami." #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "Zapisz wykres do pliku" #: ../src/wxMaximaFrame.cpp:254 msgid "Save selection from document to an image file" msgstr "Zapisz zaznaczenie z dokumentu jako obrazek" #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr "Zapisz zaznaczenie do pliku" #: ../src/Config.cpp:1062 msgid "Save style to file" msgstr "Zapisz plik ze stylem" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "Zapisz rozmiar/położenie okna wxMaximy" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "Zapisz rozmiar/położenie okna wxMaximy" #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "Wykres punktowy" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "Wykres punktowy...." #: ../src/wxMaximaFrame.cpp:1054 msgid "Section" msgstr "Rozdział" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "Komórka rozdziału" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Zaznacz wszystko" #: ../src/wxMaximaFrame.cpp:250 msgid "Select All\tCtrl-A" msgstr "Zaznacz wszystko\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "Wybierz program Maxima" #: ../src/wxMaxima.cpp:3740 msgid "Select Subsample" msgstr "" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "Wybierz stałą" #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr "Zaznacz wszystko" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr "Wybierz format podawania wyników" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Zaznaczając część wyniku i klikając prawym klawiszem myszki na zaznaczenia " "wyświetla menu kontekstowe z listą funkcji, które można zastosować " "do zaznaczenia." #: ../src/Config.cpp:372 msgid "Selection" msgstr "Zaznaczenie" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "Szeregi" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "Szeregi..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Uruchomiono serwer" #: ../src/wxMaximaFrame.cpp:631 msgid "Set &Precision..." msgstr "Ustaw &dokładność" #: ../src/wxMaximaFrame.cpp:271 msgid "Set Zoom" msgstr "Ustaw przybliżenie" #: ../src/wxMaximaFrame.cpp:632 msgid "Set bigfloat precision" msgstr "Ustaw dokładność bigfloat" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "Ustaw czcionkę o stałej szerokości w kontrolkach tekstowych." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr "Ustaw format wykresów" #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "Ustaw powiększenie na 100%" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "Ustaw powiększenie na 120%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "Ustaw powiększenie na 150%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "Ustaw powiększenie na 200%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "Ustaw powiększenie na 300%" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "Ustaw powiększenie na 80%" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr "Ustawienia obliczeń modulo" #: ../src/wxMaximaFrame.cpp:355 msgid "Show &Definition..." msgstr "Pokaż &definicje..." #: ../src/wxMaximaFrame.cpp:353 msgid "Show &Functions" msgstr "Pokaż &funkcje" #: ../src/wxMaximaFrame.cpp:646 msgid "Show &Tips..." msgstr "&Wskazówka" #: ../src/wxMaximaFrame.cpp:358 msgid "Show &Variables" msgstr "Pokaż &zmienną" #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 msgid "Show Maxima help" msgstr "Pokaż pomoc Maximy" #: ../src/wxMaximaFrame.cpp:293 msgid "Show Template\tCtrl-Shift-K" msgstr "Pokaż szablon\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr "Pokaż wskazówkę" #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr "Pokaż wszystkie polecenia podobne do:" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr "Pokaż przykład na polecenia:" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr "Pokaż przykład użycia" #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr "Pokaż wszystkie polecenia podobne do" #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr "Pokaż zdefiniowane przez użytkownika funkcje" #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr "Pokaż zdefiniowane przez użytkownika zmienne" #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr "Pokaż definicję funkcji" #: ../src/wxMaximaFrame.cpp:294 msgid "Show function template" msgstr "Pokaż szablon funkcji" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "Pokazuj długie wyrażenia" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "Pokazuj długie wyrażenia w dokumentach wxMaximy" #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr "Pokaż definicję funkcji:" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "Uprość" #: ../src/wxMaximaFrame.cpp:521 msgid "Simplify &Radicals" msgstr "Uprość &Pierwiastki" #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr "Uprość (r)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr "Uprość (tr)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Uprość wyrażenie" #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr "Uprość wyrażenie zawierające silnie" #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr "Uprość wyrażenie zawierające pierwiastki" #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr "Uprość wyrażenie wymierne" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Uprość sumę" #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr "Uprość wyrażenie trygonometryczne" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "wxMaxima od wersji 0.8.2 potrafi wstawiać obrazki do dokumentu, opcja " "'Edycja->Wstaw obrazek...'. Aby obrazek zapisywał się wewnątrz dokumentu " "należy używać formatu 'wxMaxima XML'" #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr "Rozwiązania:" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "Rozwiąż" #: ../src/wxMaximaFrame.cpp:396 msgid "Solve &Algebraic System..." msgstr "Rozwiąż &układ równań ..." #: ../src/wxMaximaFrame.cpp:393 msgid "Solve &Linear System..." msgstr "Rozwiąż układ równań &liniowych" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &ODE..." msgstr "Rozwiąż &RRZ" #: ../src/wxMaximaFrame.cpp:380 msgid "Solve (to_poly)..." msgstr "Rozwiąż (to_poly)..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr "Rozwiąż RRZ" #: ../src/wxMaximaFrame.cpp:418 msgid "Solve ODE with Lapla&ce..." msgstr "Rozwiąż RRZ z Trans. Laplace'a" #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr "Rozwiąż RRZ..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr "Rozwiąż układ równań" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr "Rozwiąż układ równań algebraicznych" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr "Nałóż warunek brzegowy na RRZ drugiego rzędu" #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr "Rozwiąż równanie(a)" #: ../src/wxMaximaFrame.cpp:381 msgid "Solve equation(s) with to_poly_solver" msgstr "Rozwiąż równanie(a) z użyciem to_poly_solver" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr "Nałóż warunki początkowe na RRZ pierwszego rzędu" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr "Nałóż warunki początkowe na RRZ drugiego rzędu" #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr "Rozwiąż układ liniowy" #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr "Rozwiąż układ równań liniowych" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Rozwiąż równanie różniczkowe zwyczajne maksymalnie rzędu 2" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "" "Rozwiąż układ liniowych równań różniczkowych przy pomocy transformaty " "Laplace'a" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "Rozwiąż..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Hiszpański" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "Szczególne" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "Szczególne stałe" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Uruchom Animacje" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr "Uruchom animacje" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "Nie udało się uruchomić Maximy" #: ../src/wxMaxima.cpp:725 msgid "Starting Maxima..." msgstr "Uruchamianie Maximy..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Nie udało się uruchomić serwera" #: ../src/wxMaxima.cpp:628 msgid "Starting server on port %d" msgstr "Uruchomianie serweru na porcie %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Statystyka" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "Statystyka\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "Zatrzymaj animacje" #: ../src/Config.cpp:357 msgid "Strings" msgstr "Napisy" #: ../src/Config.cpp:99 msgid "Style" msgstr "Wygląd" #: ../src/Config.cpp:331 msgid "Styles" msgstr "Style" #: ../src/wxMaximaFrame.cpp:1028 msgid "Subsample..." msgstr "" #: ../src/wxMaximaFrame.cpp:1053 msgid "Subsection" msgstr "Podrozdział" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "Komórka podrozdziału" #: ../src/wxMaximaFrame.cpp:961 msgid "Subst..." msgstr "Podstaw..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "Podstaw" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "Podstaw..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "Suma" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "Informacja o systemie" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr "Szereg Taylora:" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "Tekst" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "Komórka tekstowa" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "Tło komórki tekstowej" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Domyślny port używany do komunikacji między Maxima i wxMaxima" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Istnieje wiele materiałów na temat Maximy i wxMaximy. Odwiedź http://" "wxmaxima.sourceforge.net/wiki/index.php/Tutorials aby dowiedzieć się więcej " "o tym jak używać wxMaximy i Maximy" #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Wystąpił błąd w wygenerowanym pliku XML!\n" "\n" "Proszę zgłosić ten błąd" #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Wystąpił błąd podczas eksportowania do pliku GIF!\n" "\n" "Upewnij się, że pakiet ImageMagick jest zainstalowany a wxMaxima potrafi " "odnaleźć program convert. " #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Znaczniki:" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr "Stopień:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Wskazówki niedostępne!" #: ../src/wxMaximaFrame.cpp:1052 msgid "Title" msgstr "Tytuł" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "Komórka tytułu" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Komórki tytułowa, rozdziału i podrozdziału mogą być zwinięte, żeby ukryć ich " "zawartość. Do zwinięcia/rozwinięcia wystarczy klikniecie na prostokąt obok " "komórki. Shift-kliknięcie rozwija/zwija wszystkie poziomy komórki." #: ../src/wxMaximaFrame.cpp:628 msgid "To &Bigfloat" msgstr "To &Bigfloat" #: ../src/wxMaximaFrame.cpp:625 msgid "To &Float" msgstr "Wartość &zmiennoprzecinkowa" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "Wartość zmiennoprzecinkowa" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Aby narysować wykres w biegunowym układzie współrzędnych wybierz 'set polar' " "w okienku 'Opcje' okna 'Wykres 2D'. W podobny sposób wykresy 3D możesz " "kreślić w układzie sferycznym lub cylindrycznym." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Aby objąć w nawias całe wyrażenia, zaznacz je a następnie wciśnij '(' albo " "')' zależnie od tego po której jego stronie znajduje się kursor" #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Jeśli chcesz zapisać rozmiar i położenie okna wxMaximy, tak aby przy " "kolejnym uruchomieniu znajdowało się ono w tym samym miejscu i miało taką " "samą wielkość, wybierz 'Edycja->Preferencje'." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Zacznij używać wxMaxima po prostu wprowadzając swoje polecenie. Program " "automatycznie wstawi komórke wejściową. Do uruchomienia obliczeń naciśnij " "Shift-Enter." #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "Do:" #: ../src/wxMaximaFrame.cpp:602 msgid "Toggle &Algebraic Flag" msgstr "Wł/wył tryb &algebraiczny" #: ../src/wxMaximaFrame.cpp:623 msgid "Toggle &Numeric Output" msgstr "Wł/wył wyjście &numeryczne" #: ../src/wxMaximaFrame.cpp:366 msgid "Toggle &Time Display" msgstr "Wł/wył &czas wykonania" #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr "Wł/wył tryb algebraiczny" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "Wł/wył widok pełnoekranowy" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr "Wł/wył wyjście numeryczne" #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "Pasek narzędzi\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "Ikony pasku narzędzi" #: ../src/wxMaxima.cpp:3369 msgid "Translated by" msgstr "Przetłumaczono przez:" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr "Transponuj macierz" #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "Tutoriale" #: ../src/wxMaxima.cpp:3658 msgid "Two sample t-test" msgstr "" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Typ:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ukraiński" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "Podkreślenie" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "Cofnij\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Cofnij ostatnią zmianę" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "Wsparcie Unicode" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr "Górna granica:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "Użyj algorytmu Gosper" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "Używaj kropki jako znaku mnożenia (zamiast *)" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "Używaj czcionek jsMath" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr "Wartość:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr "Zmienna(e):" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "Zmienna:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "Zmienne" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr "Zmienne:" #: ../src/wxMaximaFrame.cpp:1002 msgid "Variance..." msgstr "Wariancja..." #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "Ostrzeżenie" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "" "Witaj w wxMaxima. Polskie tłumaczenie w wesji rozwojowej, proszę zgłaszać " "błędy." #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Gdy wybierasz pewne jednoargumentowe funkcje z menu programu wxMaxima ich " "domyślnym argumentem jest '%'. Jeśli chcesz aby było nim inne wyrażenie, " "wystarczy że wpiszesz je w linii wejścia przed wybraniem funkcji z menu lub " "zaznaczysz w konsoli wxMaximy." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr "Szerokość:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "Automatycznie zamyka nawiasy w polach tekstowych." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "Napisany przez" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Zmienna '%' przechowuje ostatnie wyjście. Do poprzednich wyjść można " "odwoływać się za pośrednictwem zmiennych '%on' gdzie n to numer wyjścia." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Możesz obliczyć wszystkie wyrażenia w dokumencie wybierając 'Edycja->Komórka-" ">Wykonaj wszystkie komórki'. Zostaną one obliczone w kolejności w jakiej " "pojawiają się w dokumencie" #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Aby uzyskać informację na temat danej funkcji Maximy zaznacz ją a następnie " "naciśnij F1. Odpowiednie hasło pomocy zostanie znalezione automatycznie." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Możesz ukryć wyjście wyrażenia w dowolnej komórce klikając na trójkąt w " "lewym górnym rogu komórki." #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Istnieje wiele typów komórek, które możesz umieszczać w swoim dokumencie " "wybierając menu 'Komórka'. Jedynie komórka wyjściowa może zostać wykonana " "(obliczona). Inne typy służą do wprowadzania komentarzy oraz logicznego " "podziału dokumentu" #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Możesz zaznaczyć kilka komórek albo myszką (kliknij na prostokąt i lub " "na nawiasy obok komórki i przeciągnij), albo za pomocą Shift+ strałki " "góra/dól w trybie kursoru poziomego. To się przydaje, jeżeli chcesz" "usunąć lub powtórzyć obliczenia w zaznaczonych komórkach." #: ../src/wxMaxima.cpp:4348 msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Masz wersję %s. Numer wersji bierzącej to %s.\n" "\n" "Nacisnij OK zeby przejść do strony wxMaxima." #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "Wprowadzone zmiany zostaną utracone, jężeli nie zostaną zapisane." #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "Masz najnowszą wersję wxMaxima." #: ../src/wxMaximaFrame.cpp:258 msgid "Zoom &In\tAlt-I" msgstr "Przybliż \tAlt-I" #: ../src/wxMaximaFrame.cpp:260 msgid "Zoom Ou&t\tAlt-O" msgstr "Oddal\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "Powiększ o 10%" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "Pomniejsz o 10%" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "Powiększenie ustawione na" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ nie zapisane ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ nie zapisane* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antysymetryczna" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "obu stron" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "domyślny" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonalna" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "zwykła" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "wbudowany" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "lewej strony" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "ukryte linie" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "skala logarytmiczna" #: ../src/wxMaxima.cpp:2690 msgid "matrix[i,j]:" msgstr "matrix[i,j]:" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "nie" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "prawej strony" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "symetryczna" #: ../src/wxMaxima.cpp:4403 msgid "unsaved" msgstr "nie zapisane" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr "beznazwy" #: ../src/main.cpp:182 msgid "untitled %d" msgstr "beznazwy %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "wxMaxima preferencje" #: ../src/wxMaxima.cpp:1420 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima nie potrafi odnaleźć Maximy\n" "\n" "Skonfiguruj program wxMaxima 'Edycjja->Preferencje'.\n" "Następnie uruchom Maximę 'Maxima->Restart'." #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "Nie odnaleziono plików pomocy.\n" "\n" "Popraw instalację programu wxMaxima." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "Nie znaleziono plików ze wskazówkami\n" "\n" "Popraw instalację programu wxMaxima." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima nie mogła uruchomić serwera.\n" "\n" "Sprawdź swoje ustawienia sieciowe\n" "i spróbuj ponownie." #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "Domyślnie wxMaxima uzupełnia okna dialogowe (np. 'RRC->Całka'). Przeważnie " "jedno z nich zostaje uzupełnione przez zmienną '%'. Jeśli chcesz uzupełnić " "je innym wyrażeniem wystarczy, że wpiszesz je w linii wejścia lub zaznaczysz " "w konsoli." #: ../src/wxMaxima.cpp:1675 msgid "wxMaxima document" msgstr "Dokument wxMaxima" #: ../src/wxMaxima.cpp:1842 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "Dokument wxMaxima (*.wxm)|*.wxm|xml dokument wxMaxima (*.wxmx)|*.wxmx|Plik " "wsadowy Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "Dokument wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "Napotkano błąd przy uruchamianiu wxMaximy" #: ../src/wxMaxima.cpp:3367 msgid "wxMaxima icon" msgstr "Ikona wxMaxima" #: ../src/wxMaxima.cpp:3355 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima jest graficznym interfejsem MAXIMA bazującym na wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima jest graficznym interfejsem Maximy bazującym na wxWidgets." #: ../src/wxMaxima.cpp:3427 msgid "yes" msgstr "tak" #, fuzzy #~ msgid "&Cell" #~ msgstr "Komórka" #~ msgid "&New Window\tCtrl-N" #~ msgstr "Nowe okno\tCtrl-N" #~ msgid "Close document?" #~ msgstr "Zamknąć dokument?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "Dokument nie jest zapisany!\n" #~ "\n" #~ "Zamknąć bieżący dokument i stracić wszystkie zmiany?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "Dokument nie jest zapisany!\n" #~ "\n" #~ "Czy chcesz wyjść z wxMaximy i stracić wszystkie zmiany?" #~ msgid "Maxima options" #~ msgstr "Opcje programy Maxima" #~ msgid "Quit?" #~ msgstr "Wyjść?" #~ msgid "wxMaxima options" #~ msgstr "wxMaxima preferencje" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima jest graficznym interfejsem dla programu Maxima \n" #~ "komputerowego systememu obliczeń symbolicznych" #~ msgid "<< Nothing to display >>" #~ msgstr "<< Nic do wyświetlenia >>" #~ msgid "Functions and macros" #~ msgstr "Funkcje i makra" #~ msgid "Labels" #~ msgstr "Etykiety" #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "Kopiuj zaznaczenie zrobione w dokumecie do schowka" #~ msgid "Copy to clipboard on select" #~ msgstr "Kopiuj do schowka przy zaznaczaniu" #~ msgid "Input" #~ msgstr "Wejście" #~ msgid "Save document as ..." #~ msgstr "Zapisz dokument jako ..." #~ msgid "Show Maxima header" #~ msgstr "Pokaż nagłówek Maximy" #~ msgid "Show initial header with Maxima system information." #~ msgstr "Pokazuj przy starcie nagłówek Maximy o systemie i kompilacji" #~ msgid "Delete selection" #~ msgstr "Usuń zaznaczenie" #~ msgid "To &Float\tCtrl-F" #~ msgstr "&Wartość\tCtrl-F" wxMaxima-13.04.2/locales/pt_BR.mo000644 000765 000024 00000164540 12073007213 017054 0ustar00andrejstaff000000 000000  |0@A)AAkAsAAA&AgAJ?BBB BBB B BBC &C4CHC`C tCC C CCCCC CC D#D 3D>DQD WDeDyDD DDDDDDE E $E0E9EPE WEdEtE zEE EEEE E EEF&F >FHFQF`FrFFF F FFG hHuH{HHHHHH'H!I11IcIzI IIIII IIII II J$J )J4J ;JGJ7K KKVKlK+~K(KKKK"L+LJLQL`LhL nL{L;LL"L LM2MLM `MlMM M M MM#MMMN.N CN%QNwN1N#N#N O@,O mOxOOOOO8OAP(SP'|PHP1P1QQQhQzQQ>Q3QR R +R6RQR mR {RRR(R$R,S%-S&SSzSS S SSS S1SS0S!T )T 7TETLT`TqTTTTTT TT U UU2U :UHUaU rU }UUUU UU UV:!V \VfV zV V V V V V/VV VWW.$W(SW|W WW(WW W W X XXX$X+X@XZX#kX"X%XX X XX YY Y2YGYgY*nYYY YY YYYZZ(/ZXZ nZ zZZZ&ZZZ ZZZ Z/[3[)Q[{['[[[[\ \,\ L\V\^\"z\5\\\\\\] ] ] )]$3]7X]3]]]] ]]^"^,B^*o^^^^+^^3^,3_,`_'____;_ ```/`>` P` Z`g`o`` camaqa~uaa@a;bLbUbmbbb bbbbc c*c:cMc_c~cccccccd5dLddd xd d ddd)d d deQ#eueeeee4eee ff&fy#Uy2yyy%y0y1zGz [z8|zAzz{{{"{2{B{a{t{{ {{{{{{ { {|| | (|6| :|F|U|]| b|l|D||B}u};~B~I~d~ j~u~ > KU^`mqʁ  + >HZ ` j u -̂   ) 3 >JRf,& S^wl)Uڈ10'b ‰ ω ۉ  ! &3 <IL R\d my D*Cobeό.5&d aa]Pa+ޏ0(|YR֐ )3G!P"r ۑ.= T ^l| Ғ  (;Lf mzΓ  2 9G Xby ” + I V`r  ˕֕З"+ I-j6 8@H*Q|&̙ "*>Od#v ͛ߛ12 S\qzL# /J8f$ĝ !"*&M&tǞ)ٞ3%Q w E ' 3K ak=E276Tn9á:8Rg E=(/ BOnѣ)( .5,d+Ĥ ͤۤ 8J0Qåԥ#6M c p ~  ئ &."Ux4     ( 5B2K~4¨80GZ,t  ɩ ԩ 1$D&i3Ī̪ݪ -#Ei2rī   $7-N| -Ĭ +@8R$2+4D[&r&+Ү *$E=jůگ '687oİ˰ݰ +&)R|/ޱ79(4b-Ų˲ݲC(06Ql }  ô̴дԴ]<d'!!=Q$Y ~ʶܶ%5R"pǷ!" ,Jj)Ը d1#͹ֹ߹C,*0[ck˺ Һܺ4$Fk ɻ$ /,Ly¼ڼ?4t'aӽ5$In  ƾ ˾׾ $A Y z Ϳֿ ٿ" (06gz  i. #86o u &;;Wgw  &=D M [i(  -*M*x  "')Q p|  !-IZw$*/Z-z.>Ri0 Q   &,/SJ g ("Dg!#56"l /.#Hl* ">N*j7,=<Q';E P\en  :Kah p ~ E/u=0n  "3; N\ k wGoL/Hh     ):W gq7   ,2H6 FR0`-7)!0BQa pz   *EYY<nj2)(\aa\rCm(DlktEk0yUNCJv^Tc?@B,Al N00 q^z=q_d/> d! 9S\6 uGgf "KL{ *<8L(d1$s)`+$]n{D?Mc\%(4B;%~.IKn3+j] *).@x| "FBsg|sO rz p =Ye&'mu'-?2X R!l}A<T}#,yPK`j5Oog UoY7yw5&wp1hLQ~2P23 /TMwXhOv`fa/>CG8aGV3tuMxWZ^DRtYE:Qi XV:$7-x>|Jip[=Zk&E#~' aZSeb}-r9%U,7jF1H*"We4oH8Ih@ 6bNfSJz{Ib []vWq!m_Fc[Qi9VRn4\;#:6A_;.  <+)5HP wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy Previous Output Ctrl-UCopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCreate a new cell with previous outputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGalicianGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help CTRL+?Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPreferences... CTRL+,Previous Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformRedo Ctrl-Shift-ZRedo last changeReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: wxMaxima Report-Msgid-Bugs-To: POT-Creation-Date: 2012-11-15 15:28-0200 PO-Revision-Date: 2012-11-15 15:29-0200 Last-Translator: Eduardo M Kalinowski Language-Team: LANGUAGE Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wxWidgets: %d.%d.%d Suporte a Unicode: %s Lisp: Versão do Maxima: Não conectado ao Maxima! Não conectado. << Expressão longa demais para ser exibida! >> foi salvo com uma versão mais nova do wxMaxima e talvez não seja carregado corretamente. Por favor atualize seu wxMaxima. foi salvo com uma versão mais nova do wxMaxima. Por favor atualize seu wxMaxima.Ál&gebra&Aplicar a lista...&AproposCarregar arquivo &batch... Ctrl-BProblema de valor de &fronteira...Relatar &bug&CálculoForma &canônicaPolinômio característico...&Limpar memória&Combinar fatoriaisSimplificação &complexaFração &contínua&Copiar Ctrl-CIntegração &definida&Demoivre&Determinante&Diferenciar...&Editar&Eliminar variável...&Introduzir matriz...&Exemplo...&Expandir expressão&Expandir trigonométricas&Exponencializar&Exportar...&Fatorar expressão&ArquivoEncontrar &raiz...&Gerar matriz...Máximo &divisor comum...Aj&uda&Integrar...&Interromper Ctrl-.&Interromper Ctrl-G&Inverter matriz&Carregar pacote... Ctrl-L&Mapear a lista...&MaximaCálculo com &módulo...&Novo Ctrl-N&NuméricoIntegração &numérica&Nusum&Abrir Ctrl-O&Abrir... Ctrl-OG&ráficoSéries de &potências&Imprimir... Ctrl-P&Racional&Reduzir trigonometricas&Reiniciar Maxima&Raízes do polinômio (real)&Salvar Ctrl-S&Simplificar&Simplificar expressão&Simplificar fatoriais&Simplificar trigonométricas&Resolver...E&specialSérie de &Taylor&Transpor matrizSimplificação &trigonométrica&pm3d(Usar idioma padrão)- Infinito
Lisp: Um 'cursor horizontal' foi introduzido no wxMaxima 0.8.0. Ele é mostrado como uma linha horizontal entre células. Ele mostra onde uma nova célula vai aparecer se você digitar ou colar texto, ou se executar um comando do menu.Um novo formato de documento foi introduzido no wxMaxima 0.8.2 que salva não só a entrada e os comentários textuais, mas também as saídas dos cálculos. Quando salvar o documento, selecione o formato 'Documento XML do wxMaxima'.Valor no pon&to...SobreSobre o wxMaximaMarcador da célula ativaMatriz ad&juntaAdicionar &igualdade algébrica...Adicionar um diretório ao caminho de buscaAdicionar diretório ao caminho:Adicionar igualdade ao simplificador racionalAdicionar ao &caminho...Parâmetros adicionais para o Maxima (p.ex. -l clisp).Parâmetros adicionais:Todos|*AnimaçãoAplicarAplicar função a uma listaAproposMatriz:Arte porPedir salvamento de documentos sem títuloValor no pontoCC2Gráfico de barras...Arquivos de lote (*.bat)|*.bat|Todos|*Arquivo batch (de lote)NegritoGráfico de caixa...Procurar&Informações do buildPor padrão Shift-Enter é usado para avaliar comandos, e Enter é usado para entrada de múltiplas linhas. Ese comportamento pode ser alterado na janela 'Editar->Configurações' marcando 'Enter calcula células'. Essa opção inverte as ações das duas teclas.&Mudar variável...C&onfiguraçõesCalcular &produto...Calcular &soma...Valor bigfloat do último resultadoValor float do último resultadoCalcular módulo:Calcular produtosCalcular somasNão é possível se conectar com o servidor web.Não foi possível baixar informação de versão.CancelarForma canônica (tr)CatalãoCé&lulaMarcador da célulaAlterar exibição &2dAlterar a algoritmo de exibição 2d usado para mostrar a saída matemáticaMudar variávelMudar variável em integral ou somaPolinômio característicoProcurar por atualizaçõesVerificar se existe uma nova versão do wxMaxima/Maxima.Chinês (tradicional)Escolher fonteInforme novo formato para gráficos:Classes:Fechar Ctrl-WFechar janelaNomes das colunas:Colunas:Combinar fatoriais numa expressãoCoordenadas x separadas por vírgulas.Coordenadas y separadas por vírgulas.Comentar seleçãoCompletar palavra Ctrl-KCompletar palavraCalcular a fração contínua de um valorCalcular a matriz adjuntaCalcular o polinômio característico de uma matrizCalcular o determinante de uma matrizCalcular o máximo divisor comumCalcular a inversa de uma matrizCalcular o mínimo múltiplo comum (faça load(functs) antes de usar)Condição:Arquivo de configuração (*.ini)|*.iniAviso da configuraçãoConfigurar o wxMaximaConstanteContrair logaritmosConverter binômios e as funções beta e gama para fatoriaisConverter binômios, fatoriais e a função beta para a função gamaConverter expressões complexas para a forma polarConverter expressões complexas para a forma retangularConverter função exponencial de argumento imaginário para a forma trigonométricaConverter logaritmo de um produto para soma de logaritmosConverter soma de logaritmos para logaritmos de um produtoConverter para &fatoriaisConverter para &gamaConverter para forma &polarConverter para forma &retangularConverter expressão trigonométrica para forma canônica quasilinearConverter funções trigonométricas para a forma exponencialCopiarCopiar como imagemCopiar LaTeXCopiar entrada anterior Ctrl-ICopiar saída anterior Ctrl-UCopiar como imagemCopiar como LaTeX&Copiar como texto Ctrl-Shift-CCopiar seleçãoCopiar seleção do documento como imagemCopiar seleção do documento como textoCopiar seleção do documento no formato LaTeXCria uma nova célula com a entrada anteriorCria uma nova célula com a saída anteriorCursorRecortarCortar Ctrl-XCortar seleçãoTchecoDinamarquêsMatriz de dados:Arquivo de dados (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtDados:Decompor função racional em frações parciaisPadrãoFonte padrão:Porta padrão:ApagarApagar f&unção...Apagar seleção&Apagar variável...Apagar uma funçãoApagar uma variávelApagar todos os valores da memóriaApagar função(ões):Apagar variável(is):Grau denom.:Grau máximo:Derivada:Desvio...Di&vidir polinômios...Derivar...DiferenciarDiferenciar expressãoDiferenciar...Direção:Gráfico discretoMostar forma Te&XAlgoritmo de exibiçãoExibir último resultado na forma Te&XExibir tempo usado para execuçãoDividirDividir célulaDividir números ou polinômiosVocê quer salvar as mudanças feitas no documento "Documento Fundo do documentoNão salvarE&quaçõesSai&r Ctrl-QAutov&etoresAuto&valoresEliminarEliminar uma variável de um sistema de equaçõesInglêsInforme os dados&Introduzir matriz...Introduza uma matrizInforme uma equação para simplificação racional:Informa uma lista de variáveis separadas por vírgulas.Enter calcula célulasInforme uma matrizInforme a nova precisão:Informe o caminho para o executável Maxima.Epsilon:Equação %d:Equação(ões):Equação:Equações:ErroErro %dErro!Avaliar formas substa&ntivasAvaliar todas as células Ctrl-RAvaliar célula(s)Avaliar célula ativa ou selecionadaAvaliar todas as células no documentoAvaliar todas as formas substa&ntivas na expressãoExemploTexto de exemploSair do wxMaximaExpandirExpandir (tr)Expandir expressãoExpandir logaritmosExpandir uma expressãoExpandir expressão trigonométricaExportarExportar documento para o formato HTML ou pdfLaTeXExportação para HTML falhou!Exportação para TeX falhou!ExpressãoExpressão(ões):Expressão:FatorarFatorar complexoFatorar expressãoFatorar uma expressãoFatorar uma expressão em números gaussianosFatoriais e &gamaErro fatalFigura %d:ArquivoArquivo não encontradoO arquivo que você tentou abrir não existe.Arquivo:LocalizarLocalizar Ctrl-FEncontrar &limite...Encontrar mínimo...Encontrar raiz...Encontrar um mínimo (sem restrição) de uma expressãoEncontrar o limite de uma expressãoEncontrar uma raíz de uma equação num intervaloEncontrar todas as raízes de um polinômioEncontrar todas as raízes de um polinômio (bfloat)Localizar e substituirLocalizar e substituirEncontrar os autovalores de uma matrizEncontrar os autovetores de uma matrizEncontrar mínimoEncontrar as raízes reais de um polinômioEncontrar raizEncontrar...Fonte monoespaçada nos controles de textoFonte usada para exibir o documento.Fonte usada para exibir caracteres matemáticos no documento.FontesFormato:FrancêsDe:Tela cheia Alt-EnterFunçãoNomes de funçõesFunção(ões):Função:Funções para simplificação complexaFunções para simplificar fatoriais e a função gamaFunções para simplificar expressões trigonométricasMDCImagem GIF (*.gif)|*.gifGalegoMatemática GeralMatemática Geral Alt-Shift-MGerar matrizGerar matriz da expressão...Gerar uma matriz de uma array bidimensionalGerar uma matriz de uma expressão lambdaAlemãoObter parte &imagináriaObter &série...Obter transformada de Laplace de uma expressãoObter parte re&alObter transformada inversa de Laplace de uma expressãoObter série de Taylor ou de potências de uma expressãoObter a parte imaginária de uma expressão complexaObter a parte eral de uma expressão complexaGregoConstantes gregasGrade:Arquivo HTML (*.html)|*.html|Arquivo pdfLaTeX (*.tex)|*.tex|Todos|*Altura:AjudaEsconder todos Alt-Shift--Esconder todos os painéisDestaque (dpart)HistogramaHistograma...HistóricoHistórico Alt-Shift-HO cursor horizontal funciona como um cursor normal, mas ele opera em células: pressione as setas para cima ou para baixo para movê-lo; segure Shift enquanto move para selecionar células; pressione Backspace ou Delete duas vezes apaga a célula próxima ao cursor.HúngaroCI1CI2Se seu cálculo está demorando de mais para executar, você pode tentar os menus 'Maxima->Interromper' ou 'Maxima->Reiniciar o Maxima'.ImagemImagens (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmIncluir colunas:InfinitoInformações sobre a versão do maximaEstimativas iniciais:Problema de valor inicial (&1)...Problema de valor inicial (&2)...Rótulos de entradaInserirInserir célula de &seleção Ctrl-3Inserir célula de &texto Ctrl-1Inserir Célula Alt-Shift-CInserir imagemInserir imagem...Nova &célula de entradaInserir quebra de páginaInserir célula de s&ubseção Ctrl-4Inserir célula de seleçãoInserir célula de subseçãoInserir célula de tít&ulo Ctrl-2Inserir célula de textoInserir célula de títuloInserir nova célula de entradaInserir nova célula de seleçãoInserir nova célula de subseçãoInserir nova célula de textoInserir nova célula de títuloInserir uma quebra de páginaInserir imagemIntegral/soma:IntegrarIntegrar (risch)Integrar expressãoIntegrar expressão com o algoritmo RischIntegrar...InterromperInterromper cálculo atualEntrada inválida para o programa Maxima. Por favor informe o caminho do programa Maxima novamente.Inversa de LaplaceT&ransformada inversa de Laplace...ItalianoItálicoJaponêsManter símbolo de percentual com símbolos especiais: %e, %i, etc.MMCIdioma usada para a interface do wxMaxima.Idioma:Laplace&Transformada de Laplace...Mínimo múltiplo comum...Mínimos quadradosMínimos quadrados...LimiteLimite...Regressão linear...Lista:CarregarCarregar pacoteCarregar um arquivo do Maxima usando o comando batchCarregar um arquivo de pacote MaximaLer estilo de um arquivoLimite inferior:Ma&pear a uma matriz...Criar &lista...Criar listaCriar lista de uma expressãoFazer substituição numa expressãoMapearMapear função a uma listaMapear função a uma matrizParêntesis aos pares nos controles de textoFonte matemática:MatrizMapear a matrizNome da matriz:Matriz:Maxima&Ajuda do Maxima CTRL+?&Ajuda do Maxima F1Entrada do MaximaMaxima está calculandoPacote Maxima (*.mac)|*.macPacote Maxima (*.mac)|*.mac|Pacote Lisp (*.lisp)|*.lisp|Todos|*Maxima terminado.Programa Maxima:Questões do MaximaMaxima iniciado. Aguardando conexão...O Maxima usa ':' para atribuir valores ('a : 3;') e ':=' para definir funções ('f(x) := x^2;').Versão do Maxima: Teste de diferença entre médias...Teste de média...Média...Média:Mediana...Mesclar célulasMétodo:MóduloNome:NovoNovo Ctrl-NNovo documentoValor novo:Nova variável:Próximo comando Alt-DownNenhuma correspondência encontrada!Teste de normalidade...Dimensão inválida para matriz!Número de equações inválido!Não conectado.Grau num.:Número de equações:NúmerosOKValor antigo:Variável antiga:Teste t com uma amostraTutoriais onlineAbrirAbrir recenteAbrir uma célula quando o Maxima espera entradaAbrir um documentoAbrir uma nova janelaAbrir documentoAbrir matrizAbrindo arquivoOpçõesOpções:Células desatualizadasRótulos de saídaAproximação de P&adé...Imagem PNG (*.png)|*.png|Imagem JPEG (*.jpg)|*.jpg|Bitmap do Windows (*.bmp)|*.bmp|Pixmap X (*.xpm)|*.xpmAproximação de PadéAproximação de Padé de uma série de TaylorQuebra de páginaPainéisGráfico paramétricoInterpretando saída&Frações parciais...Frações parciaisPartes do documento não serão carregadas corretamente!ColarColar Ctrl-VColar da área de transferênciaColar texto da área de transferênciaGráfico de torta...Queira configurar o wxMaxima com 'Editar->Configurações'.Queira reiniciar o wxMaxima para as mudanças terem efeito!Gráfico &2d...Gráfico &3d...&Formato do gráfico...Gráfico 2DGráfico 2D...Gráfico 2d...Gráfico 3DGráfico 3D...Gráfico 3d...Formato do gráficoGráfico bidimensionalGráfico tridimensionalGráfico para arquivo:Ponto:PolonêsPolinômio 1:Polinômio 2:Português (Brasileiro)Arquivo Postscript (*.eps)|*.eps|Todos|*PrecisãoPreferências... CTRL+,Comando anterior Alt-UpImprimirImprimir documentoProdutoLer matriz...Lendo saída do MaximaPronto para entrada do usuárioRecuperar o próximo comando do históricoRecuperar o comando anterior do históricoForma retDesfazer Ctrl-Shift-ZDesfazer última alteraçãoReduzir (tr)Reduzir expressão trigonométricaRemover todas as saídasRemover saídas das células de entradaSubstituídas %d ocorrências.Relatar bugReiniciar MaximaIntegração Risch...Raízes de &polinômioRaízes do polinômio (bfloat)Linas:RussoAmostra 1:Amostra 2:Amostra:SalvarSalvar animação...Salvar comoSalvar como... Shift-Ctrl-SSalvar imagem...Salvar seleção para imagemSalvar seleção para imagem...Salvar animação para arquivoSalvar alterações antes de fechar?Salvar mudanças?Salvar documentoSalvar documento comoSalver layout dos painéisSalvar layout dos painéis entre sessões.Salvar gráfico para um arquivoSalvar seleção do documento para uma imagemSalvar seleção para arquivoSalvar estilo para um arquivoSalvar posição/tamanho da janela do wxMaximaSalvar posição/tamanho da janela do wxMaxima entre sessões.Gráfico de dispersãoGráfico de dispersão...SeçãoSelecionar célulaSelecionar tudoSelecionar tudo Ctrl-ASelecione o programa MaximaSelecione a subamostraSelecione uma constanteSelecionar tudoSelecione o algoritmo de exibição de fórmulasSelecionar uma parte da saída e clicar com o botão direito na seleção traz um menu com funções convenientes que operam na seleção.SeleçãoSérieSérie...Servidor iniciadoAjustar &precisão...Ajustar zoomAjustar a precisão de ponto flutuanteUsa fonte monoespaçada nos controles de texto.Ajustar formato do gráficoDefinir zoom em 100%Definir zoom em 120%Definir zoom em 150%Definir zoom em 200%Definir zoom em 300%Definir zoom em 80%Configurar valores em pontos para resolver EDO com transformada de LaplaceConfigurar cálculos com móduloMostar &definição...Mostrar &funções&Mostar dicas...Mostrar &variáveisMostrar ajuda do MaximaExibir modelo Ctrl-Shift-KMostrar uma dicaMostrar todos os comandos semelhantes a:Mostrar um exemplo para o comando:Mostrar um exemplo de usoMostrar os comandos semelhantes aMostrar funções definidasMostrar variáveis definidasMostrar definição de uma funçãoMostrar modelo de funçãoMostrar expressões longasMostrar expressões grandes no documento do wxMaxima.Mostrar a definição da função:SimplificarSimplificar &radicaisSimplificar (r)Simplificar (tr)Simplificar expressãoSimplificar uma expressão envolvendo fatoriaisSimplificar uma expressão envolvendo radicaisSimplificar uma expressão racionalSimplificar a somaSimplificar uma expressão trigonométricaDesde o wxMaxima 0.8.2 você pode inserir imagens nos documentos. Use o menu 'Célula->Inserir imagem...'. Note que você precisa salvar o documento no formato 'Documento XML do wxMaxima' para que a imagem seja salva junto com o documento.Solução:ResolverResolver sistema &algébrico...Resolver sistema &linear...Resolver ED&O...Resolver (to_poly)...Resolver EDO ...Resolver EDO com Laplace...Resolver EDO...Resolver sistema algébricoResolver sistema de equações algébricasResolver problema de contorno para EDO de segunda ordemResolver equação(ões)Resolver equação(ões) como to_poly_solverResolver problema de valor inicial para EDO de primeira ordemResolver problema de valor inicial para EDO de segunda ordemResolver sistema linearResolver sistema de equações linearesResolver equação diferencial ordinário de grau máximo 2Resolver equação diferencial ordinário com transformada de LaplaceResolver...EspanholEspecialConstantes especiaisIniciar animaçãoIniciar animaçãoFalha ao iniciar o MaximaIniciando Maxima...Falha ao iniciar o servidorIniciando servidor na porta %dEstatísticasEstatísticas Alt-Shift-SParar animaçãoCadeias de caracteresEstiloEstilosSubamostra...SubseçãoCélula de subseçãoSubstituir...SubstituirSubstituir...SomaInformações de sistemaSérie de Taylor:TellratTextoCélula de textoFundo da célula de textoA porta padrão usada para comunicação entre o Maxima e o wxMaxima.Há vários recursos sobre o Maxima e o wxMaxima na internet. Visite http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials para mais informações sobre o uso do wxMaxima e do Maxima.Houve um erro no XML gerado! Favor relatar isso como um bug.Houve um erro na exportação para GIF! Certifique-se de que o ImageMagick está instalado e o wxMaxima pode encontrar o programa "convert".Marcações:Vezes:Dicas não disponíveis, desculpe!TítuloCélula de títuloCélulas de título, seção e subseção podem ser recolhidas para ocultar seu conteúdo. Para recolher ou expandir, clique no quadrado próximo à celula. Se você segurar Shift enquanto clica, todos os subníveis daquela célula também serão recolhidos/expandidos.Para &bigfloatPara &floatPara floatPara fazer gráficos em coordenadas polares, selecione 'Polar' em Opções na janela de gráficos bidimensionais. Você também pode fazer gráficos em coordenadas esféricas e cilíndricas em 3D.Para inserir parêntesis ao redor de uma expressão, selecione-a e pressione '(' ou ')', dependende de onde você quer que o cursor apareça depois.Para salvar o tamanho e posição da janela do wxMaxima entre sessões, use a janela 'Maxima->Configurações'.Para iniciar a usar o wxMaxima, digite o seu comando. Uma célula de entrada deve aparecer. Aperte Shift-Enter para executar seu comando.Até:Alternar flag &algébricoAlternar saída &numéricaAlternar exibição do &tempoAlternar flag algébricoAlternar edição em tela cheiaAlternar saída numéricaBarra de ferramentas Alt-Shift-TÍcones da barra de ferramentasTraduzido porTransposta de uma matrizTutoriaisTeste t com duas amostrasTipo:UcranianoSublinhado&Desfazer Ctrl-ZDesfazer última alteraçãoSuporte UnicodeAtualizarLimite superior:User algoritmo GosperUsar um ponto centralizado para indicar multiplicaçãoUsar fontes do jsMathValor:Variável(is):Variável:VariáveisVariáveis:Variância...AvisoBem-vindo ao wxMaximaAo aplicar funções com um argumento a partir dos menus, o argumento padrão é '%'. Para aplicar a função a um outro valor, selecione-o do documento antes de executar o comando do menu.Largura:Escrever parêntesis aos pares nos controles de texto.Escrito porVocê pode acessar a última saída com a variável '%'. Você pode acessar a saída de comandos anteriores usando a variável '%on' onde n é o número da saída.Você pode avaliar todo o documento usando o menu 'Célula->Avaliar todas as células' ou a tecla de atalho correspondente. As células serão avalidas na ordem em que aparecem no documento.Você pode obter ajuda sobre uma função do Maxima selecionando-a ou clicando no nome da função e apertando F1. O wxMaxima vai pesquisar no índice da ajuda pela palavra selecionada ou pela palavra onde está o cursor.Você pode esconder a saída das células clicando no triângulo no lado esquerdo das células. Isso funciona também em células de texto.Você pode inserir diferentes tipos de 'células' num documento do wxMaxima usando o menu 'Célula'. Note que apenas 'células de entrada' são avaliadas, as outras são usadas para comentar ou estruturar seus cálculos.Você pode selecionar vários células com o mouse - clique e arraste desde algum ponto entre células ou dos marcadores à esquerda - ou com o teclado - segure Shift enquanto move o cursor horizontal - e então operar na seleção. Isso é útil quando você quer apagar ou calcular múltiplas células.Você tem a versão %s. A versão atual é %s. Selecione OK para visitar a página do wxMaxima.Suas mudanças serão perdidas se você não as salvar.Sua versão do wxMaxima está atualizada.Aprox&imar Alt-IAfas&tar Alt-OAproximar em 10%Afastar em 10%Zoom definido em [ não salvo ][ não salvo* ]antisimétricabilateralpadrãodiagonalgeralembutidoesquerdalinhas escondidasescala logarítmicamatriz[i,j]:nãodireitasimétricanão salvosem títulosem título %dwxMaximawxMaxima %s Configuração do wxMaximaO wxMaxima não pôde encontrar o Maxima! Queira configurar o wxMaxima com 'Editar->Configurações. Então inicie o Maxima com 'Maxima->Reiniciar maxima'.O wxMaxima não pôde encontrar os arquivos de ajuda. Queira verificar sua instalação.O wxMaxima não pôde encontrar os arquivos de dicas. Queira verificar sua instalação.O wxMaxima não pôde iniciar o servidor. Verifique se você tem suporte a rede habilitado e tente novamente!As janelas do wxMaxima têm valores padrão para as entradas, um dos quais é '%'. Se você selecionou algo no documento, a seleção será usada no lugar de '%'.Documento do wxMaximaDocumento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|Arquivo batch Maxima (*.mac)|*.macDocumento do wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmxo wxMaxima encontrou um erro carregando Ícone do wxMaximaO wxMaxima é uma interface para o sistema de álgebra computacional MAXIMA baseada no wxWidgets.O wxMaxima é uma interface baseada no wxWidgets para o sistema de álgebra computacional MAXIMA.simwxMaxima-13.04.2/locales/pt_BR.po000644 000765 000024 00000261131 12055375305 017063 0ustar00andrejstaff000000 000000 # wxMaxima Brazilian Portuguese po translation. # Copyright (C) 2006-2012 Eduardo M Kalinowski # This file is distributed under the same license as the wxMaxima package. # Eduardo M Kalinowski , 2006-2012. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: wxMaxima\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-11-15 15:28-0200\n" "PO-Revision-Date: 2012-11-15 15:29-0200\n" "Last-Translator: Eduardo M Kalinowski \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3433 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Suporte a Unicode: %s" #: ../src/wxMaxima.cpp:3446 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp: " #: ../src/wxMaxima.cpp:3442 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Versão do Maxima: " #: ../src/wxMaxima.cpp:4084 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "Não conectado ao Maxima!\n" #: ../src/wxMaxima.cpp:3444 msgid "" "\n" "Not connected." msgstr "" "\n" "Não conectado." #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << Expressão longa demais para ser exibida! >>" #: ../src/wxMaxima.cpp:1087 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " foi salvo com uma versão mais nova do wxMaxima e talvez não seja carregado " "corretamente. Por favor atualize seu wxMaxima." #: ../src/wxMaxima.cpp:1079 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" " foi salvo com uma versão mais nova do wxMaxima. Por favor atualize seu " "wxMaxima." #: ../src/wxMaximaFrame.cpp:473 msgid "&Algebra" msgstr "Ál&gebra" #: ../src/wxMaximaFrame.cpp:467 msgid "&Apply to List..." msgstr "&Aplicar a lista..." #: ../src/wxMaximaFrame.cpp:658 msgid "&Apropos..." msgstr "&Apropos" #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "Carregar arquivo &batch...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:424 msgid "&Boundary Value Problem..." msgstr "Problema de valor de &fronteira..." #: ../src/wxMaximaFrame.cpp:669 msgid "&Bug Report" msgstr "Relatar &bug" #: ../src/wxMaximaFrame.cpp:525 msgid "&Calculus" msgstr "&Cálculo" #: ../src/wxMaximaFrame.cpp:576 msgid "&Canonical Form" msgstr "Forma &canônica" #: ../src/wxMaximaFrame.cpp:449 msgid "&Characteristic Polynomial..." msgstr "Polinômio característico..." #: ../src/wxMaximaFrame.cpp:357 msgid "&Clear Memory" msgstr "&Limpar memória" #: ../src/wxMaximaFrame.cpp:559 msgid "&Combine Factorials" msgstr "&Combinar fatoriais" #: ../src/wxMaximaFrame.cpp:602 msgid "&Complex Simplification" msgstr "Simplificação &complexa" #: ../src/wxMaximaFrame.cpp:522 msgid "&Continued Fraction" msgstr "Fração &contínua" #: ../src/wxMaximaFrame.cpp:233 msgid "&Copy\tCtrl-C" msgstr "&Copiar\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "Integração &definida" #: ../src/wxMaximaFrame.cpp:596 msgid "&Demoivre" msgstr "&Demoivre" #: ../src/wxMaximaFrame.cpp:452 msgid "&Determinant" msgstr "&Determinante" #: ../src/wxMaximaFrame.cpp:485 msgid "&Differentiate..." msgstr "&Diferenciar..." #: ../src/wxMaximaFrame.cpp:286 msgid "&Edit" msgstr "&Editar" #: ../src/wxMaximaFrame.cpp:409 msgid "&Eliminate Variable..." msgstr "&Eliminar variável..." #: ../src/wxMaximaFrame.cpp:444 msgid "&Enter Matrix..." msgstr "&Introduzir matriz..." #: ../src/wxMaximaFrame.cpp:655 msgid "&Example..." msgstr "&Exemplo..." #: ../src/wxMaximaFrame.cpp:539 msgid "&Expand Expression" msgstr "&Expandir expressão" #: ../src/wxMaximaFrame.cpp:573 msgid "&Expand Trigonometric" msgstr "&Expandir trigonométricas" #: ../src/wxMaximaFrame.cpp:599 msgid "&Exponentialize" msgstr "&Exponencializar" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "&Exportar..." #: ../src/wxMaximaFrame.cpp:534 msgid "&Factor Expression" msgstr "&Fatorar expressão" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "&Arquivo" #: ../src/wxMaximaFrame.cpp:392 msgid "&Find Root..." msgstr "Encontrar &raiz..." #: ../src/wxMaximaFrame.cpp:438 msgid "&Generate Matrix..." msgstr "&Gerar matriz..." #: ../src/wxMaximaFrame.cpp:509 msgid "&Greatest Common Divisor..." msgstr "Máximo &divisor comum..." #: ../src/wxMaximaFrame.cpp:685 msgid "&Help" msgstr "Aj&uda" #: ../src/wxMaximaFrame.cpp:477 msgid "&Integrate..." msgstr "&Integrar..." #: ../src/wxMaximaFrame.cpp:348 msgid "&Interrupt\tCtrl-." msgstr "&Interromper\tCtrl-." #: ../src/wxMaximaFrame.cpp:352 msgid "&Interrupt\tCtrl-G" msgstr "&Interromper\tCtrl-G" #: ../src/wxMaximaFrame.cpp:446 msgid "&Invert Matrix" msgstr "&Inverter matriz" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "&Carregar pacote...\tCtrl-L" #: ../src/wxMaximaFrame.cpp:469 msgid "&Map to List..." msgstr "&Mapear a lista..." #: ../src/wxMaximaFrame.cpp:384 msgid "&Maxima" msgstr "&Maxima" #: ../src/wxMaximaFrame.cpp:617 msgid "&Modulus Computation..." msgstr "Cálculo com &módulo..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "&Novo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:644 msgid "&Numeric" msgstr "&Numérico" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "Integração &numérica" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "&Nusum" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "&Abrir\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "&Abrir...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:629 msgid "&Plot" msgstr "G&ráfico" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "Séries de &potências" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "&Imprimir...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "&Racional" #: ../src/wxMaximaFrame.cpp:570 msgid "&Reduce Trigonometric" msgstr "&Reduzir trigonometricas" #: ../src/wxMaximaFrame.cpp:356 msgid "&Restart Maxima" msgstr "&Reiniciar Maxima" #: ../src/wxMaximaFrame.cpp:400 msgid "&Roots of Polynomial (Real)" msgstr "&Raízes do polinômio (real)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "&Salvar\tCtrl-S" #: ../src/wxMaximaFrame.cpp:619 ../src/SumWiz.cpp:42 msgid "&Simplify" msgstr "&Simplificar" #: ../src/wxMaximaFrame.cpp:529 msgid "&Simplify Expression" msgstr "&Simplificar expressão" #: ../src/wxMaximaFrame.cpp:556 msgid "&Simplify Factorials" msgstr "&Simplificar fatoriais" #: ../src/wxMaximaFrame.cpp:567 msgid "&Simplify Trigonometric" msgstr "&Simplificar trigonométricas" #: ../src/wxMaximaFrame.cpp:388 msgid "&Solve..." msgstr "&Resolver..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "E&special" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Série de &Taylor" #: ../src/wxMaximaFrame.cpp:462 msgid "&Transpose Matrix" msgstr "&Transpor matriz" #: ../src/wxMaximaFrame.cpp:579 msgid "&Trigonometric Simplification" msgstr "Simplificação &trigonométrica" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:239 msgid "(Use default language)" msgstr "(Usar idioma padrão)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "- Infinito" #: ../src/wxMaxima.cpp:3497 msgid "
Lisp: " msgstr "
Lisp: " #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "Um 'cursor horizontal' foi introduzido no wxMaxima 0.8.0. Ele é mostrado " "como uma linha horizontal entre células. Ele mostra onde uma nova célula vai " "aparecer se você digitar ou colar texto, ou se executar um comando do menu." #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "Um novo formato de documento foi introduzido no wxMaxima 0.8.2 que salva não " "só a entrada e os comentários textuais, mas também as saídas dos cálculos. " "Quando salvar o documento, selecione o formato 'Documento XML do wxMaxima'." #: ../src/wxMaximaFrame.cpp:431 msgid "A&t Value..." msgstr "Valor no pon&to..." #: ../src/wxMaximaFrame.cpp:680 ../src/wxMaxima.cpp:3499 msgid "About" msgstr "Sobre" #: ../src/wxMaximaFrame.cpp:682 ../src/wxMaximaFrame.cpp:684 msgid "About wxMaxima" msgstr "Sobre o wxMaxima" #: ../src/Config.cpp:372 msgid "Active cell bracket" msgstr "Marcador da célula ativa" #: ../src/wxMaximaFrame.cpp:460 msgid "Ad&joint Matrix" msgstr "Matriz ad&junta" #: ../src/wxMaximaFrame.cpp:614 msgid "Add Algebraic E&quality..." msgstr "Adicionar &igualdade algébrica..." #: ../src/wxMaximaFrame.cpp:360 msgid "Add a directory to search path" msgstr "Adicionar um diretório ao caminho de busca" #: ../src/wxMaxima.cpp:2300 msgid "Add dir to path:" msgstr "Adicionar diretório ao caminho:" #: ../src/wxMaximaFrame.cpp:615 msgid "Add equality to the rational simplifier" msgstr "Adicionar igualdade ao simplificador racional" #: ../src/wxMaximaFrame.cpp:359 msgid "Add to &Path..." msgstr "Adicionar ao &caminho..." #: ../src/Config.cpp:123 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Parâmetros adicionais para o Maxima (p.ex. -l clisp)." #: ../src/Config.cpp:309 msgid "Additional parameters:" msgstr "Parâmetros adicionais:" #: ../src/Config.cpp:481 msgid "All|*" msgstr "Todos|*" #: ../src/wxMaximaFrame.cpp:819 msgid "Animation" msgstr "Animação" #: ../src/wxMaxima.cpp:2753 msgid "Apply" msgstr "Aplicar" #: ../src/wxMaximaFrame.cpp:468 msgid "Apply function to a list" msgstr "Aplicar função a uma lista" #: ../src/wxMaxima.cpp:3529 msgid "Apropos" msgstr "Apropos" #: ../src/wxMaxima.cpp:2679 msgid "Array:" msgstr "Matriz:" #: ../src/wxMaxima.cpp:3375 msgid "Artwork by" msgstr "Arte por" #: ../src/Config.cpp:270 msgid "Ask to save untitled documents" msgstr "Pedir salvamento de documentos sem título" #: ../src/wxMaxima.cpp:2565 msgid "At value" msgstr "Valor no ponto" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2472 msgid "BC2" msgstr "CC2" #: ../src/wxMaximaFrame.cpp:1032 msgid "Barsplot..." msgstr "Gráfico de barras..." #: ../src/Config.cpp:476 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "Arquivos de lote (*.bat)|*.bat|Todos|*" #: ../src/wxMaxima.cpp:1995 msgid "Batch File" msgstr "Arquivo batch (de lote)" #: ../src/Config.cpp:384 msgid "Bold" msgstr "Negrito" #: ../src/wxMaximaFrame.cpp:1034 msgid "Boxplot..." msgstr "Gráfico de caixa..." #: ../src/Plot3dWiz.cpp:124 ../src/Plot2dWiz.cpp:122 msgid "Browse" msgstr "Procurar" #: ../src/wxMaximaFrame.cpp:667 msgid "Build &Info" msgstr "&Informações do build" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "Por padrão Shift-Enter é usado para avaliar comandos, e Enter é usado para " "entrada de múltiplas linhas. Ese comportamento pode ser alterado na janela " "'Editar->Configurações' marcando 'Enter calcula células'. Essa opção inverte " "as ações das duas teclas." #: ../src/wxMaximaFrame.cpp:482 msgid "C&hange Variable..." msgstr "&Mudar variável..." #: ../src/wxMaximaFrame.cpp:283 msgid "C&onfigure" msgstr "C&onfigurações" #: ../src/wxMaximaFrame.cpp:501 msgid "Calculate &Product..." msgstr "Calcular &produto..." #: ../src/wxMaximaFrame.cpp:499 msgid "Calculate Su&m..." msgstr "Calcular &soma..." #: ../src/wxMaximaFrame.cpp:639 msgid "Calculate bigfloat value of the last result" msgstr "Valor bigfloat do último resultado" #: ../src/wxMaximaFrame.cpp:636 msgid "Calculate float value of the last result" msgstr "Valor float do último resultado" #: ../src/wxMaxima.cpp:2886 msgid "Calculate modulus:" msgstr "Calcular módulo:" #: ../src/wxMaximaFrame.cpp:502 msgid "Calculate products" msgstr "Calcular produtos" #: ../src/wxMaximaFrame.cpp:500 msgid "Calculate sums" msgstr "Calcular somas" #: ../src/wxMaxima.cpp:4340 msgid "Can not connect to the web server." msgstr "Não é possível se conectar com o servidor web." #: ../src/wxMaxima.cpp:4385 msgid "Can not download version info." msgstr "Não foi possível baixar informação de versão." #: ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/BC2Wiz.cpp:44 ../src/BC2Wiz.cpp:46 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/wxMaxima.cpp:4442 #: ../src/PlotFormatWiz.cpp:41 ../src/PlotFormatWiz.cpp:43 #: ../src/Plot3dWiz.cpp:103 ../src/Plot3dWiz.cpp:105 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/SubstituteWiz.cpp:40 #: ../src/SubstituteWiz.cpp:42 ../src/Gen1Wiz.cpp:34 ../src/Gen1Wiz.cpp:36 #: ../src/Plot2dWiz.cpp:101 ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 #: ../src/Plot2dWiz.cpp:563 ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 #: ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 ../src/Gen4Wiz.cpp:55 #: ../src/Gen4Wiz.cpp:57 ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 msgid "Cancel" msgstr "Cancelar" #: ../src/wxMaximaFrame.cpp:977 msgid "Canonical (tr)" msgstr "Forma canônica (tr)" #: ../src/Config.cpp:240 msgid "Catalan" msgstr "Catalão" #: ../src/wxMaximaFrame.cpp:326 msgid "Ce&ll" msgstr "Cé&lula" #: ../src/Config.cpp:371 msgid "Cell bracket" msgstr "Marcador da célula" #: ../src/wxMaximaFrame.cpp:379 msgid "Change &2d Display" msgstr "Alterar exibição &2d" #: ../src/wxMaximaFrame.cpp:380 msgid "Change the 2d display algorithm used to display math output" msgstr "" "Alterar a algoritmo de exibição 2d usado para mostrar a saída matemática" #: ../src/wxMaxima.cpp:2910 msgid "Change variable" msgstr "Mudar variável" #: ../src/wxMaximaFrame.cpp:483 msgid "Change variable in integral or sum" msgstr "Mudar variável em integral ou soma" #: ../src/wxMaxima.cpp:2666 msgid "Char poly" msgstr "Polinômio característico" #: ../src/wxMaximaFrame.cpp:672 msgid "Check for Updates" msgstr "Procurar por atualizações" #: ../src/wxMaximaFrame.cpp:673 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "Verificar se existe uma nova versão do wxMaxima/Maxima." #: ../src/Config.cpp:241 msgid "Chinese traditional" msgstr "Chinês (tradicional)" #: ../src/Config.cpp:347 ../src/Config.cpp:349 ../src/Config.cpp:378 msgid "Choose font" msgstr "Escolher fonte" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "Informe novo formato para gráficos:" #: ../src/wxMaxima.cpp:3573 ../src/wxMaxima.cpp:3587 msgid "Classes:" msgstr "Classes:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "Fechar\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "Fechar janela" #: ../src/wxMaxima.cpp:3695 msgid "Col. names:" msgstr "Nomes das colunas:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "Colunas:" #: ../src/wxMaximaFrame.cpp:560 msgid "Combine factorials in an expression" msgstr "Combinar fatoriais numa expressão" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "Coordenadas x separadas por vírgulas." #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "Coordenadas y separadas por vírgulas." #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "Comentar seleção" #: ../src/wxMaximaFrame.cpp:301 msgid "Complete Word\tCtrl-K" msgstr "Completar palavra\tCtrl-K" #: ../src/wxMaximaFrame.cpp:302 msgid "Complete word" msgstr "Completar palavra" #: ../src/wxMaximaFrame.cpp:523 msgid "Compute continued fraction of a value" msgstr "Calcular a fração contínua de um valor" #: ../src/wxMaximaFrame.cpp:461 msgid "Compute the adjoint matrix" msgstr "Calcular a matriz adjunta" #: ../src/wxMaximaFrame.cpp:450 msgid "Compute the characteristic polynomial of a matrix" msgstr "Calcular o polinômio característico de uma matriz" #: ../src/wxMaximaFrame.cpp:453 msgid "Compute the determinant of a matrix" msgstr "Calcular o determinante de uma matriz" #: ../src/wxMaximaFrame.cpp:510 msgid "Compute the greatest common divisor" msgstr "Calcular o máximo divisor comum" #: ../src/wxMaximaFrame.cpp:447 msgid "Compute the inverse of a matrix" msgstr "Calcular a inversa de uma matriz" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "Calcular o mínimo múltiplo comum (faça load(functs) antes de usar)" #: ../src/wxMaxima.cpp:3745 msgid "Condition:" msgstr "Condição:" #: ../src/Config.cpp:1068 ../src/Config.cpp:1076 msgid "Config file (*.ini)|*.ini" msgstr "Arquivo de configuração (*.ini)|*.ini" #: ../src/Config.cpp:937 msgid "Configuration warning" msgstr "Aviso da configuração" #: ../src/wxMaximaFrame.cpp:281 ../src/wxMaximaFrame.cpp:284 #: ../src/wxMaximaFrame.cpp:726 ../src/wxMaximaFrame.cpp:794 msgid "Configure wxMaxima" msgstr "Configurar o wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/SeriesWiz.cpp:109 #: ../src/IntegrateWiz.cpp:219 ../src/IntegrateWiz.cpp:238 msgid "Constant" msgstr "Constante" #: ../src/wxMaximaFrame.cpp:544 msgid "Contract Logarithms" msgstr "Contrair logaritmos" #: ../src/wxMaximaFrame.cpp:551 msgid "Convert binomials, beta and gamma function to factorials" msgstr "Converter binômios e as funções beta e gama para fatoriais" #: ../src/wxMaximaFrame.cpp:554 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "Converter binômios, fatoriais e a função beta para a função gama" #: ../src/wxMaximaFrame.cpp:588 msgid "Convert complex expression to polar form" msgstr "Converter expressões complexas para a forma polar" #: ../src/wxMaximaFrame.cpp:585 msgid "Convert complex expression to rect form" msgstr "Converter expressões complexas para a forma retangular" #: ../src/wxMaximaFrame.cpp:597 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" "Converter função exponencial de argumento imaginário para a forma " "trigonométrica" #: ../src/wxMaximaFrame.cpp:542 msgid "Convert logarithm of product to sum of logarithms" msgstr "Converter logaritmo de um produto para soma de logaritmos" #: ../src/wxMaximaFrame.cpp:545 msgid "Convert sum of logarithms to logarithm of product" msgstr "Converter soma de logaritmos para logaritmos de um produto" #: ../src/wxMaximaFrame.cpp:550 msgid "Convert to &Factorials" msgstr "Converter para &fatoriais" #: ../src/wxMaximaFrame.cpp:553 msgid "Convert to &Gamma" msgstr "Converter para &gama" #: ../src/wxMaximaFrame.cpp:587 msgid "Convert to &Polarform" msgstr "Converter para forma &polar" #: ../src/wxMaximaFrame.cpp:584 msgid "Convert to &Rectform" msgstr "Converter para forma &retangular" #: ../src/wxMaximaFrame.cpp:577 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "Converter expressão trigonométrica para forma canônica quasilinear" #: ../src/wxMaximaFrame.cpp:600 msgid "Convert trigonometric functions to exponential form" msgstr "Converter funções trigonométricas para a forma exponencial" #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:800 #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 msgid "Copy" msgstr "Copiar" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "Copiar como imagem" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "Copiar LaTeX" #: ../src/wxMaximaFrame.cpp:297 msgid "Copy Previous Input\tCtrl-I" msgstr "Copiar entrada anterior\tCtrl-I" #: ../src/wxMaximaFrame.cpp:299 msgid "Copy Previous Output\tCtrl-U" msgstr "Copiar saída anterior\tCtrl-U" #: ../src/wxMaximaFrame.cpp:242 msgid "Copy as Image" msgstr "Copiar como imagem" #: ../src/wxMaximaFrame.cpp:238 msgid "Copy as LaTeX" msgstr "Copiar como LaTeX" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as Text\tCtrl-Shift-C" msgstr "&Copiar como texto\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:234 ../src/wxMaximaFrame.cpp:733 #: ../src/wxMaximaFrame.cpp:803 msgid "Copy selection" msgstr "Copiar seleção" #: ../src/wxMaximaFrame.cpp:243 msgid "Copy selection from document as an image" msgstr "Copiar seleção do documento como imagem" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document as text" msgstr "Copiar seleção do documento como texto" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy selection from document in LaTeX format" msgstr "Copiar seleção do documento no formato LaTeX" #: ../src/wxMaximaFrame.cpp:298 msgid "Create a new cell with previous input" msgstr "Cria uma nova célula com a entrada anterior" #: ../src/wxMaximaFrame.cpp:300 msgid "Create a new cell with previous output" msgstr "Cria uma nova célula com a saída anterior" #: ../src/Config.cpp:373 msgid "Cursor" msgstr "Cursor" #: ../src/wxMaximaFrame.cpp:728 ../src/wxMaximaFrame.cpp:796 #: ../src/MathCtrl.cpp:731 msgid "Cut" msgstr "Recortar" #: ../src/wxMaximaFrame.cpp:230 msgid "Cut\tCtrl-X" msgstr "Cortar\tCtrl-X" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:730 #: ../src/wxMaximaFrame.cpp:799 msgid "Cut selection" msgstr "Cortar seleção" #: ../src/Config.cpp:242 msgid "Czech" msgstr "Tcheco" #: ../src/Config.cpp:243 msgid "Danish" msgstr "Dinamarquês" #: ../src/wxMaxima.cpp:3688 ../src/wxMaxima.cpp:3695 ../src/wxMaxima.cpp:3745 msgid "Data Matrix:" msgstr "Matriz de dados:" #: ../src/wxMaxima.cpp:3715 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "Arquivo de dados (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3573 ../src/wxMaxima.cpp:3587 ../src/wxMaxima.cpp:3601 #: ../src/wxMaxima.cpp:3608 ../src/wxMaxima.cpp:3615 ../src/wxMaxima.cpp:3623 #: ../src/wxMaxima.cpp:3630 ../src/wxMaxima.cpp:3637 ../src/wxMaxima.cpp:3644 #: ../src/wxMaxima.cpp:3680 msgid "Data:" msgstr "Dados:" #: ../src/wxMaximaFrame.cpp:520 msgid "Decompose rational function to partial fractions" msgstr "Decompor função racional em frações parciais" #: ../src/Config.cpp:353 msgid "Default" msgstr "Padrão" #: ../src/Config.cpp:346 msgid "Default font:" msgstr "Fonte padrão:" #: ../src/Config.cpp:259 msgid "Default port:" msgstr "Porta padrão:" #: ../src/wxMaxima.cpp:2318 ../src/wxMaxima.cpp:2327 msgid "Delete" msgstr "Apagar" #: ../src/wxMaximaFrame.cpp:370 msgid "Delete F&unction..." msgstr "Apagar f&unção..." #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "Apagar seleção" #: ../src/wxMaximaFrame.cpp:372 msgid "Delete V&ariable..." msgstr "&Apagar variável..." #: ../src/wxMaximaFrame.cpp:371 msgid "Delete a function" msgstr "Apagar uma função" #: ../src/wxMaximaFrame.cpp:373 msgid "Delete a variable" msgstr "Apagar uma variável" #: ../src/wxMaximaFrame.cpp:358 msgid "Delete all values from memory" msgstr "Apagar todos os valores da memória" #: ../src/wxMaxima.cpp:2327 msgid "Delete function(s):" msgstr "Apagar função(ões):" #: ../src/wxMaxima.cpp:2318 msgid "Delete variable(s):" msgstr "Apagar variável(is):" #: ../src/wxMaxima.cpp:2926 msgid "Denom. deg:" msgstr "Grau denom.:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "Grau máximo:" #: ../src/wxMaxima.cpp:2456 msgid "Derivative:" msgstr "Derivada:" #: ../src/wxMaximaFrame.cpp:1018 msgid "Deviation..." msgstr "Desvio..." #: ../src/wxMaximaFrame.cpp:516 msgid "Di&vide Polynomials..." msgstr "Di&vidir polinômios..." #: ../src/wxMaximaFrame.cpp:983 msgid "Diff..." msgstr "Derivar..." #: ../src/wxMaxima.cpp:3069 ../src/wxMaxima.cpp:3912 msgid "Differentiate" msgstr "Diferenciar" #: ../src/wxMaximaFrame.cpp:486 msgid "Differentiate expression" msgstr "Diferenciar expressão" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "Diferenciar..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "Direção:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "Gráfico discreto" #: ../src/wxMaximaFrame.cpp:382 msgid "Display Te&X Form" msgstr "Mostar forma Te&X" #: ../src/wxMaxima.cpp:2267 msgid "Display algorithm" msgstr "Algoritmo de exibição" #: ../src/wxMaximaFrame.cpp:383 msgid "Display last result in TeX form" msgstr "Exibir último resultado na forma Te&X" #: ../src/wxMaximaFrame.cpp:377 msgid "Display time used for evaluation" msgstr "Exibir tempo usado para execução" #: ../src/wxMaxima.cpp:2976 msgid "Divide" msgstr "Dividir" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "Dividir célula" #: ../src/wxMaximaFrame.cpp:517 msgid "Divide numbers or polynomials" msgstr "Dividir números ou polinômios" #: ../src/wxMaxima.cpp:4437 ../src/wxMaxima.cpp:4449 msgid "Do you want to save the changes you made in the document \"" msgstr "Você quer salvar as mudanças feitas no documento \"" #: ../src/wxMaxima.cpp:1078 ../src/wxMaxima.cpp:1086 msgid "Document " msgstr "Documento " #: ../src/Config.cpp:370 msgid "Document background" msgstr "Fundo do documento" #: ../src/wxMaxima.cpp:4442 msgid "Don't save" msgstr "Não salvar" #: ../src/wxMaximaFrame.cpp:434 msgid "E&quations" msgstr "E&quações" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "Sai&r\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:457 msgid "Eige&nvectors" msgstr "Autov&etores" #: ../src/wxMaximaFrame.cpp:455 msgid "Eigen&values" msgstr "Auto&valores" #: ../src/wxMaxima.cpp:2487 msgid "Eliminate" msgstr "Eliminar" #: ../src/wxMaximaFrame.cpp:410 msgid "Eliminate a variable from a system of equations" msgstr "Eliminar uma variável de um sistema de equações" #: ../src/Config.cpp:244 msgid "English" msgstr "Inglês" #: ../src/wxMaxima.cpp:3601 ../src/wxMaxima.cpp:3608 ../src/wxMaxima.cpp:3615 #: ../src/wxMaxima.cpp:3623 ../src/wxMaxima.cpp:3630 ../src/wxMaxima.cpp:3637 #: ../src/wxMaxima.cpp:3644 ../src/wxMaxima.cpp:3680 ../src/wxMaxima.cpp:3688 msgid "Enter Data" msgstr "Informe os dados" #: ../src/wxMaximaFrame.cpp:1039 msgid "Enter Matrix..." msgstr "&Introduzir matriz..." #: ../src/wxMaximaFrame.cpp:445 msgid "Enter a matrix" msgstr "Introduza uma matriz" #: ../src/wxMaxima.cpp:2877 msgid "Enter an equation for rational simplification:" msgstr "Informe uma equação para simplificação racional:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "Informa uma lista de variáveis separadas por vírgulas." #: ../src/Config.cpp:269 msgid "Enter evaluates cells" msgstr "Enter calcula células" #: ../src/wxMaxima.cpp:2649 msgid "Enter matrix" msgstr "Informe uma matriz" #: ../src/wxMaxima.cpp:3251 msgid "Enter new precision:" msgstr "Informe a nova precisão:" #: ../src/Config.cpp:122 msgid "Enter the path to the Maxima executable." msgstr "Informe o caminho para o executável Maxima." #: ../src/wxMaxima.cpp:3123 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "Equação %d:" #: ../src/wxMaxima.cpp:2375 ../src/wxMaxima.cpp:2389 ../src/wxMaxima.cpp:2548 #: ../src/wxMaxima.cpp:3865 msgid "Equation(s):" msgstr "Equação(ões):" #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:2424 ../src/wxMaxima.cpp:2908 #: ../src/wxMaxima.cpp:3696 ../src/wxMaxima.cpp:3879 msgid "Equation:" msgstr "Equação:" #: ../src/wxMaxima.cpp:2485 msgid "Equations:" msgstr "Equações:" #: ../src/ImgCell.cpp:101 ../src/wxMaxima.cpp:395 ../src/wxMaxima.cpp:976 #: ../src/wxMaxima.cpp:987 ../src/wxMaxima.cpp:1046 ../src/wxMaxima.cpp:1058 #: ../src/wxMaxima.cpp:1080 ../src/wxMaxima.cpp:1502 ../src/wxMaxima.cpp:1598 #: ../src/wxMaxima.cpp:4084 ../src/wxMaxima.cpp:4340 ../src/wxMaxima.cpp:4385 #: ../src/Config.cpp:490 msgid "Error" msgstr "Erro" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "Erro %d" #: ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:1975 ../src/wxMaxima.cpp:2508 #: ../src/wxMaxima.cpp:2532 ../src/wxMaxima.cpp:2643 msgid "Error!" msgstr "Erro!" #: ../src/wxMaximaFrame.cpp:609 msgid "Evaluate &Noun Forms" msgstr "Avaliar formas substa&ntivas" #: ../src/wxMaximaFrame.cpp:292 msgid "Evaluate All Cells\tCtrl-R" msgstr "Avaliar todas as células\tCtrl-R" #: ../src/wxMaximaFrame.cpp:290 ../src/MathCtrl.cpp:681 msgid "Evaluate Cell(s)" msgstr "Avaliar célula(s)" #: ../src/wxMaximaFrame.cpp:291 msgid "Evaluate active or selected cell(s)" msgstr "Avaliar célula ativa ou selecionada" #: ../src/wxMaximaFrame.cpp:293 msgid "Evaluate all cells in the document" msgstr "Avaliar todas as células no documento" #: ../src/wxMaximaFrame.cpp:610 msgid "Evaluate all noun forms in expression" msgstr "Avaliar todas as formas substa&ntivas na expressão" #: ../src/wxMaxima.cpp:3516 msgid "Example" msgstr "Exemplo" #: ../src/Config.cpp:1022 ../src/Config.cpp:1114 msgid "Example text" msgstr "Texto de exemplo" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "Sair do wxMaxima" #: ../src/wxMaximaFrame.cpp:974 msgid "Expand" msgstr "Expandir" #: ../src/wxMaximaFrame.cpp:979 msgid "Expand (tr)" msgstr "Expandir (tr)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "Expandir expressão" #: ../src/wxMaximaFrame.cpp:541 msgid "Expand Logarithms" msgstr "Expandir logaritmos" #: ../src/wxMaximaFrame.cpp:540 msgid "Expand an expression" msgstr "Expandir uma expressão" #: ../src/wxMaximaFrame.cpp:574 msgid "Expand trigonometric expression" msgstr "Expandir expressão trigonométrica" #: ../src/wxMaxima.cpp:1956 msgid "Export" msgstr "Exportar" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "Exportar documento para o formato HTML ou pdfLaTeX" #: ../src/wxMaxima.cpp:1975 msgid "Exporting to HTML failed!" msgstr "Exportação para HTML falhou!" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to TeX failed!" msgstr "Exportação para TeX falhou!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "Expressão" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "Expressão(ões):" #: ../src/SumWiz.cpp:30 ../src/LimitWiz.cpp:26 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2563 ../src/wxMaxima.cpp:2733 ../src/wxMaxima.cpp:2989 #: ../src/wxMaxima.cpp:3004 ../src/wxMaxima.cpp:3033 ../src/wxMaxima.cpp:3050 #: ../src/wxMaxima.cpp:3067 ../src/wxMaxima.cpp:3120 ../src/wxMaxima.cpp:3155 #: ../src/wxMaxima.cpp:3910 ../src/SubstituteWiz.cpp:27 #: ../src/IntegrateWiz.cpp:36 msgid "Expression:" msgstr "Expressão:" #: ../src/wxMaximaFrame.cpp:973 msgid "Factor" msgstr "Fatorar" #: ../src/wxMaximaFrame.cpp:536 msgid "Factor Complex" msgstr "Fatorar complexo" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "Fatorar expressão" #: ../src/wxMaximaFrame.cpp:535 msgid "Factor an expression" msgstr "Fatorar uma expressão" #: ../src/wxMaximaFrame.cpp:537 msgid "Factor an expression in Gaussian numbers" msgstr "Fatorar uma expressão em números gaussianos" #: ../src/wxMaximaFrame.cpp:562 msgid "Factorials and &Gamma" msgstr "Fatoriais e &gama" #: ../src/wxMaxima.cpp:256 msgid "Fatal error" msgstr "Erro fatal" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "Figura %d:" #: ../src/main.cpp:107 msgid "File" msgstr "Arquivo" #: ../src/wxMaxima.cpp:4033 msgid "File not found" msgstr "Arquivo não encontrado" #: ../src/wxMaxima.cpp:4033 msgid "File you tried to open does not exist." msgstr "O arquivo que você tentou abrir não existe." #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "Arquivo:" #: ../src/wxMaximaFrame.cpp:738 msgid "Find" msgstr "Localizar" #: ../src/wxMaximaFrame.cpp:251 msgid "Find\tCtrl-F" msgstr "Localizar\tCtrl-F" #: ../src/wxMaximaFrame.cpp:487 msgid "Find &Limit..." msgstr "Encontrar &limite..." #: ../src/wxMaximaFrame.cpp:490 msgid "Find Minimum..." msgstr "Encontrar mínimo..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "Encontrar raiz..." #: ../src/wxMaximaFrame.cpp:491 msgid "Find a (unconstrained) minimum of an expression" msgstr "Encontrar um mínimo (sem restrição) de uma expressão" #: ../src/wxMaximaFrame.cpp:488 msgid "Find a limit of an expression" msgstr "Encontrar o limite de uma expressão" #: ../src/wxMaximaFrame.cpp:393 msgid "Find a root of an equation on an interval" msgstr "Encontrar uma raíz de uma equação num intervalo" #: ../src/wxMaximaFrame.cpp:395 msgid "Find all roots of a polynomial" msgstr "Encontrar todas as raízes de um polinômio" #: ../src/wxMaximaFrame.cpp:398 msgid "Find all roots of a polynomial (bfloat)" msgstr "Encontrar todas as raízes de um polinômio (bfloat)" #: ../src/wxMaxima.cpp:2182 msgid "Find and Replace" msgstr "Localizar e substituir" #: ../src/wxMaximaFrame.cpp:251 ../src/wxMaximaFrame.cpp:740 #: ../src/wxMaximaFrame.cpp:812 msgid "Find and replace" msgstr "Localizar e substituir" #: ../src/wxMaximaFrame.cpp:456 msgid "Find eigenvalues of a matrix" msgstr "Encontrar os autovalores de uma matriz" #: ../src/wxMaximaFrame.cpp:458 msgid "Find eigenvectors of a matrix" msgstr "Encontrar os autovetores de uma matriz" #: ../src/wxMaxima.cpp:3125 msgid "Find minimum" msgstr "Encontrar mínimo" #: ../src/wxMaximaFrame.cpp:401 msgid "Find real roots of a polynomial" msgstr "Encontrar as raízes reais de um polinômio" #: ../src/wxMaxima.cpp:2408 ../src/wxMaxima.cpp:3882 msgid "Find root" msgstr "Encontrar raiz" #: ../src/wxMaximaFrame.cpp:809 msgid "Find..." msgstr "Encontrar..." #: ../src/Config.cpp:265 msgid "Fixed font in text controls" msgstr "Fonte monoespaçada nos controles de texto" #: ../src/Config.cpp:131 msgid "Font used for display in document." msgstr "Fonte usada para exibir o documento." #: ../src/Config.cpp:132 msgid "Font used for displaying math characters in document." msgstr "Fonte usada para exibir caracteres matemáticos no documento." #: ../src/Config.cpp:332 msgid "Fonts" msgstr "Fontes" #: ../src/Plot3dWiz.cpp:69 ../src/Plot2dWiz.cpp:70 msgid "Format:" msgstr "Formato:" #: ../src/Config.cpp:245 msgid "French" msgstr "Francês" #: ../src/SumWiz.cpp:36 ../src/wxMaxima.cpp:2734 ../src/wxMaxima.cpp:3155 #: ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 ../src/Plot2dWiz.cpp:49 #: ../src/Plot2dWiz.cpp:59 ../src/Plot2dWiz.cpp:548 ../src/IntegrateWiz.cpp:43 msgid "From:" msgstr "De:" #: ../src/wxMaximaFrame.cpp:275 msgid "Full Screen\tAlt-Enter" msgstr "Tela cheia\tAlt-Enter" #: ../src/wxMaxima.cpp:2289 msgid "Function" msgstr "Função" #: ../src/Config.cpp:356 msgid "Function names" msgstr "Nomes de funções" #: ../src/wxMaxima.cpp:2548 msgid "Function(s):" msgstr "Função(ões):" #: ../src/wxMaxima.cpp:2424 ../src/wxMaxima.cpp:2615 ../src/wxMaxima.cpp:2718 #: ../src/wxMaxima.cpp:2751 msgid "Function:" msgstr "Função:" #: ../src/wxMaximaFrame.cpp:604 msgid "Functions for complex simplification" msgstr "Funções para simplificação complexa" #: ../src/wxMaximaFrame.cpp:564 msgid "Functions for simplifying factorials and gamma function" msgstr "Funções para simplificar fatoriais e a função gama" #: ../src/wxMaximaFrame.cpp:581 msgid "Functions for simplifying trigonometric expressions" msgstr "Funções para simplificar expressões trigonométricas" #: ../src/wxMaxima.cpp:2961 msgid "GCD" msgstr "MDC" #: ../src/wxMaxima.cpp:3995 msgid "GIF image (*.gif)|*.gif" msgstr "Imagem GIF (*.gif)|*.gif" #: ../src/Config.cpp:246 msgid "Galician" msgstr "Galego" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "Matemática Geral" #: ../src/wxMaximaFrame.cpp:335 msgid "General Math\tAlt-Shift-M" msgstr "Matemática Geral\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2681 ../src/wxMaxima.cpp:2700 msgid "Generate Matrix" msgstr "Gerar matriz" #: ../src/wxMaximaFrame.cpp:441 msgid "Generate Matrix from Expression..." msgstr "Gerar matriz da expressão..." #: ../src/wxMaximaFrame.cpp:439 msgid "Generate a matrix from a 2-dimensional array" msgstr "Gerar uma matriz de uma array bidimensional" #: ../src/wxMaximaFrame.cpp:442 msgid "Generate a matrix from a lambda expression" msgstr "Gerar uma matriz de uma expressão lambda" #: ../src/Config.cpp:247 msgid "German" msgstr "Alemão" #: ../src/wxMaximaFrame.cpp:593 msgid "Get &Imaginary Part" msgstr "Obter parte &imaginária" #: ../src/wxMaximaFrame.cpp:493 msgid "Get &Series..." msgstr "Obter &série..." #: ../src/wxMaximaFrame.cpp:504 msgid "Get Laplace transformation of an expression" msgstr "Obter transformada de Laplace de uma expressão" #: ../src/wxMaximaFrame.cpp:590 msgid "Get Real P&art" msgstr "Obter parte re&al" #: ../src/wxMaximaFrame.cpp:507 msgid "Get inverse Laplace transformation of an expression" msgstr "Obter transformada inversa de Laplace de uma expressão" #: ../src/wxMaximaFrame.cpp:494 msgid "Get the Taylor or power series of expression" msgstr "Obter série de Taylor ou de potências de uma expressão" #: ../src/wxMaximaFrame.cpp:594 msgid "Get the imaginary part of complex expression" msgstr "Obter a parte imaginária de uma expressão complexa" #: ../src/wxMaximaFrame.cpp:591 msgid "Get the real part of complex expression" msgstr "Obter a parte eral de uma expressão complexa" #: ../src/Config.cpp:248 msgid "Greek" msgstr "Grego" #: ../src/Config.cpp:358 msgid "Greek constants" msgstr "Constantes gregas" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "Grade:" #: ../src/wxMaxima.cpp:1958 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "Arquivo HTML (*.html)|*.html|Arquivo pdfLaTeX (*.tex)|*.tex|Todos|*" #: ../src/wxMaxima.cpp:2679 ../src/wxMaxima.cpp:2698 msgid "Height:" msgstr "Altura:" #: ../src/wxMaximaFrame.cpp:757 ../src/wxMaximaFrame.cpp:830 msgid "Help" msgstr "Ajuda" #: ../src/wxMaximaFrame.cpp:333 msgid "Hide All\tAlt-Shift--" msgstr "Esconder todos\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:333 msgid "Hide all panes" msgstr "Esconder todos os painéis" #: ../src/Config.cpp:364 msgid "Highlight (dpart)" msgstr "Destaque (dpart)" #: ../src/wxMaxima.cpp:3574 msgid "Histogram" msgstr "Histograma" #: ../src/wxMaximaFrame.cpp:1030 msgid "Histogram..." msgstr "Histograma..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "Histórico" #: ../src/wxMaximaFrame.cpp:337 msgid "History\tAlt-Shift-H" msgstr "Histórico\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "O cursor horizontal funciona como um cursor normal, mas ele opera em " "células: pressione as setas para cima ou para baixo para movê-lo; segure " "Shift enquanto move para selecionar células; pressione Backspace ou Delete " "duas vezes apaga a célula próxima ao cursor." #: ../src/Config.cpp:249 msgid "Hungarian" msgstr "Húngaro" #: ../src/wxMaxima.cpp:2442 msgid "IC1" msgstr "CI1" #: ../src/wxMaxima.cpp:2458 msgid "IC2" msgstr "CI2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "Se seu cálculo está demorando de mais para executar, você pode tentar os " "menus 'Maxima->Interromper' ou 'Maxima->Reiniciar o Maxima'." #: ../src/wxMaximaFrame.cpp:1070 msgid "Image" msgstr "Imagem" #: ../src/wxMaxima.cpp:4192 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "Imagens (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3746 msgid "Include columns:" msgstr "Incluir colunas:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "Infinito" #: ../src/wxMaximaFrame.cpp:668 msgid "Info about Maxima build" msgstr "Informações sobre a versão do maxima" #: ../src/wxMaxima.cpp:3122 msgid "Initial Estimates:" msgstr "Estimativas iniciais:" #: ../src/wxMaximaFrame.cpp:418 msgid "Initial Value Problem (&1)..." msgstr "Problema de valor inicial (&1)..." #: ../src/wxMaximaFrame.cpp:421 msgid "Initial Value Problem (&2)..." msgstr "Problema de valor inicial (&2)..." #: ../src/Config.cpp:361 msgid "Input labels" msgstr "Rótulos de entrada" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "Inserir" #: ../src/wxMaximaFrame.cpp:312 msgid "Insert &Section Cell\tCtrl-3" msgstr "Inserir célula de &seleção\tCtrl-3" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert &Text Cell\tCtrl-1" msgstr "Inserir célula de &texto\tCtrl-1" #: ../src/wxMaximaFrame.cpp:338 msgid "Insert Cell\tAlt-Shift-C" msgstr "Inserir Célula\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4190 msgid "Insert Image" msgstr "Inserir imagem" #: ../src/wxMaximaFrame.cpp:318 msgid "Insert Image..." msgstr "Inserir imagem..." #: ../src/wxMaximaFrame.cpp:306 msgid "Insert Input &Cell" msgstr "Nova &célula de entrada" #: ../src/wxMaximaFrame.cpp:316 msgid "Insert Page Break" msgstr "Inserir quebra de página" #: ../src/wxMaximaFrame.cpp:314 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "Inserir célula de s&ubseção\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "Inserir célula de seleção" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "Inserir célula de subseção" #: ../src/wxMaximaFrame.cpp:310 msgid "Insert T&itle Cell\tCtrl-2" msgstr "Inserir célula de tít&ulo\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "Inserir célula de texto" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "Inserir célula de título" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a new input cell" msgstr "Inserir nova célula de entrada" #: ../src/wxMaximaFrame.cpp:313 msgid "Insert a new section cell" msgstr "Inserir nova célula de seleção" #: ../src/wxMaximaFrame.cpp:315 msgid "Insert a new subsection cell" msgstr "Inserir nova célula de subseção" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert a new text cell" msgstr "Inserir nova célula de texto" #: ../src/wxMaximaFrame.cpp:311 msgid "Insert a new title cell" msgstr "Inserir nova célula de título" #: ../src/wxMaximaFrame.cpp:317 msgid "Insert a page break" msgstr "Inserir uma quebra de página" #: ../src/wxMaximaFrame.cpp:319 msgid "Insert image" msgstr "Inserir imagem" #: ../src/wxMaxima.cpp:2907 msgid "Integral/Sum:" msgstr "Integral/soma:" #: ../src/wxMaxima.cpp:3020 ../src/wxMaxima.cpp:3897 #: ../src/IntegrateWiz.cpp:72 msgid "Integrate" msgstr "Integrar" #: ../src/wxMaxima.cpp:3006 msgid "Integrate (risch)" msgstr "Integrar (risch)" #: ../src/wxMaximaFrame.cpp:478 msgid "Integrate expression" msgstr "Integrar expressão" #: ../src/wxMaximaFrame.cpp:480 msgid "Integrate expression with Risch algorithm" msgstr "Integrar expressão com o algoritmo Risch" #: ../src/wxMaximaFrame.cpp:984 ../src/MathCtrl.cpp:709 msgid "Integrate..." msgstr "Integrar..." #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:814 msgid "Interrupt" msgstr "Interromper" #: ../src/wxMaximaFrame.cpp:349 ../src/wxMaximaFrame.cpp:353 #: ../src/wxMaximaFrame.cpp:744 ../src/wxMaximaFrame.cpp:817 msgid "Interrupt current computation" msgstr "Interromper cálculo atual" #: ../src/Config.cpp:489 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "Entrada inválida para o programa Maxima.\n" "\n" "Por favor informe o caminho do programa Maxima novamente." #: ../src/wxMaxima.cpp:3052 msgid "Inverse Laplace" msgstr "Inversa de Laplace" #: ../src/wxMaximaFrame.cpp:506 msgid "Inverse Laplace T&ransform..." msgstr "T&ransformada inversa de Laplace..." #: ../src/Config.cpp:250 msgid "Italian" msgstr "Italiano" #: ../src/Config.cpp:385 msgid "Italic" msgstr "Itálico" #: ../src/Config.cpp:251 msgid "Japanese" msgstr "Japonês" #: ../src/Config.cpp:268 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "Manter símbolo de percentual com símbolos especiais: %e, %i, etc." #: ../src/wxMaxima.cpp:2946 msgid "LCM" msgstr "MMC" #: ../src/Config.cpp:129 msgid "Language used for wxMaxima GUI." msgstr "Idioma usada para a interface do wxMaxima." #: ../src/Config.cpp:236 msgid "Language:" msgstr "Idioma:" #: ../src/wxMaxima.cpp:3035 msgid "Laplace" msgstr "Laplace" #: ../src/wxMaximaFrame.cpp:503 msgid "Laplace &Transform..." msgstr "&Transformada de Laplace..." #: ../src/wxMaximaFrame.cpp:512 msgid "Least Common Multiple..." msgstr "Mínimo múltiplo comum..." #: ../src/wxMaxima.cpp:3698 msgid "Least Squares Fit" msgstr "Mínimos quadrados" #: ../src/wxMaximaFrame.cpp:1026 msgid "Least Squares Fit..." msgstr "Mínimos quadrados..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3107 msgid "Limit" msgstr "Limite" #: ../src/wxMaximaFrame.cpp:985 msgid "Limit..." msgstr "Limite..." #: ../src/wxMaximaFrame.cpp:1025 msgid "Linear Regression..." msgstr "Regressão linear..." #: ../src/wxMaxima.cpp:2718 ../src/wxMaxima.cpp:2751 msgid "List:" msgstr "Lista:" #: ../src/Config.cpp:388 msgid "Load" msgstr "Carregar" #: ../src/wxMaxima.cpp:1984 msgid "Load Package" msgstr "Carregar pacote" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "Carregar um arquivo do Maxima usando o comando batch" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "Carregar um arquivo de pacote Maxima" #: ../src/Config.cpp:1074 msgid "Load style from file" msgstr "Ler estilo de um arquivo" #: ../src/wxMaxima.cpp:2406 ../src/wxMaxima.cpp:3880 msgid "Lower bound:" msgstr "Limite inferior:" #: ../src/wxMaximaFrame.cpp:471 msgid "Ma&p to Matrix..." msgstr "Ma&pear a uma matriz..." #: ../src/wxMaximaFrame.cpp:465 msgid "Make &List..." msgstr "Criar &lista..." #: ../src/wxMaxima.cpp:2736 msgid "Make list" msgstr "Criar lista" #: ../src/wxMaximaFrame.cpp:466 msgid "Make list from expression" msgstr "Criar lista de uma expressão" #: ../src/wxMaximaFrame.cpp:607 msgid "Make substitution in expression" msgstr "Fazer substituição numa expressão" #: ../src/wxMaxima.cpp:2720 msgid "Map" msgstr "Mapear" #: ../src/wxMaximaFrame.cpp:470 msgid "Map function to a list" msgstr "Mapear função a uma lista" #: ../src/wxMaximaFrame.cpp:472 msgid "Map function to a matrix" msgstr "Mapear função a uma matriz" #: ../src/Config.cpp:264 msgid "Match parenthesis in text controls" msgstr "Parêntesis aos pares nos controles de texto" #: ../src/Config.cpp:348 msgid "Math font:" msgstr "Fonte matemática:" #: ../src/wxMaxima.cpp:2631 msgid "Matrix" msgstr "Matriz" #: ../src/wxMaxima.cpp:2617 msgid "Matrix map" msgstr "Mapear a matriz" #: ../src/wxMaxima.cpp:3746 msgid "Matrix name:" msgstr "Nome da matriz:" #: ../src/wxMaxima.cpp:2615 ../src/wxMaxima.cpp:2664 msgid "Matrix:" msgstr "Matriz:" #: ../src/Config.cpp:99 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:649 msgid "Maxima &Help\tCTRL+?" msgstr "&Ajuda do Maxima\tCTRL+?" #: ../src/wxMaximaFrame.cpp:652 msgid "Maxima &Help\tF1" msgstr "&Ajuda do Maxima\tF1" #: ../src/Config.cpp:360 msgid "Maxima input" msgstr "Entrada do Maxima" #: ../src/wxMaxima.cpp:467 msgid "Maxima is calculating" msgstr "Maxima está calculando" #: ../src/wxMaxima.cpp:1997 msgid "Maxima package (*.mac)|*.mac" msgstr "Pacote Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1986 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Pacote Maxima (*.mac)|*.mac|Pacote Lisp (*.lisp)|*.lisp|Todos|*" #: ../src/wxMaxima.cpp:776 msgid "Maxima process terminated." msgstr "Maxima terminado." #: ../src/Config.cpp:306 msgid "Maxima program:" msgstr "Programa Maxima:" #: ../src/Config.cpp:362 msgid "Maxima questions" msgstr "Questões do Maxima" #: ../src/wxMaxima.cpp:731 msgid "Maxima started. Waiting for connection..." msgstr "Maxima iniciado. Aguardando conexão..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "O Maxima usa ':' para atribuir valores ('a : 3;') e ':=' para definir " "funções ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3493 msgid "Maxima version: " msgstr "Versão do Maxima: " #: ../src/wxMaximaFrame.cpp:1023 msgid "Mean Difference Test..." msgstr "Teste de diferença entre médias..." #: ../src/wxMaximaFrame.cpp:1022 msgid "Mean Test..." msgstr "Teste de média..." #: ../src/wxMaximaFrame.cpp:1015 msgid "Mean..." msgstr "Média..." #: ../src/wxMaxima.cpp:3651 msgid "Mean:" msgstr "Média:" #: ../src/wxMaximaFrame.cpp:1016 msgid "Median..." msgstr "Mediana..." #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "Mesclar células" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "Método:" #: ../src/wxMaxima.cpp:2887 msgid "Modulus" msgstr "Módulo" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2679 ../src/wxMaxima.cpp:2698 msgid "Name:" msgstr "Nome:" #: ../src/wxMaximaFrame.cpp:708 ../src/wxMaximaFrame.cpp:771 msgid "New" msgstr "Novo" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "Novo\tCtrl-N" #: ../src/wxMaximaFrame.cpp:710 ../src/wxMaximaFrame.cpp:774 msgid "New document" msgstr "Novo documento" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "Valor novo:" #: ../src/wxMaxima.cpp:2908 ../src/wxMaxima.cpp:3034 ../src/wxMaxima.cpp:3051 msgid "New variable:" msgstr "Nova variável:" #: ../src/wxMaximaFrame.cpp:323 msgid "Next Command\tAlt-Down" msgstr "Próximo comando\tAlt-Down" #: ../src/wxMaxima.cpp:2210 ../src/wxMaxima.cpp:2226 msgid "No matches found!" msgstr "Nenhuma correspondência encontrada!" #: ../src/wxMaximaFrame.cpp:1024 msgid "Normality Test..." msgstr "Teste de normalidade..." #: ../src/wxMaxima.cpp:2643 msgid "Not a valid matrix dimension!" msgstr "Dimensão inválida para matriz!" #: ../src/wxMaxima.cpp:2508 ../src/wxMaxima.cpp:2532 msgid "Not a valid number of equations!" msgstr "Número de equações inválido!" #: ../src/wxMaxima.cpp:3495 msgid "Not connected." msgstr "Não conectado." #: ../src/wxMaxima.cpp:2925 msgid "Num. deg:" msgstr "Grau num.:" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Number of equations:" msgstr "Número de equações:" #: ../src/Config.cpp:355 msgid "Numbers" msgstr "Números" #: ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/BC2Wiz.cpp:43 ../src/BC2Wiz.cpp:47 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/PlotFormatWiz.cpp:40 #: ../src/PlotFormatWiz.cpp:44 ../src/Plot3dWiz.cpp:102 #: ../src/Plot3dWiz.cpp:106 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/Gen1Wiz.cpp:33 ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 #: ../src/Plot2dWiz.cpp:104 ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 #: ../src/Plot2dWiz.cpp:655 ../src/Plot2dWiz.cpp:659 #: ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 ../src/Gen4Wiz.cpp:54 #: ../src/Gen4Wiz.cpp:58 ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "Valor antigo:" #: ../src/wxMaxima.cpp:2907 ../src/wxMaxima.cpp:3033 ../src/wxMaxima.cpp:3050 msgid "Old variable:" msgstr "Variável antiga:" #: ../src/wxMaxima.cpp:3652 msgid "One sample t-test" msgstr "Teste t com uma amostra" #: ../src/wxMaximaFrame.cpp:665 msgid "Online tutorials" msgstr "Tutoriais online" #: ../src/wxMaximaFrame.cpp:712 ../src/wxMaximaFrame.cpp:776 #: ../src/main.cpp:202 ../src/wxMaxima.cpp:1931 ../src/Config.cpp:308 msgid "Open" msgstr "Abrir" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "Abrir recente" #: ../src/Config.cpp:271 msgid "Open a cell when Maxima expects input" msgstr "Abrir uma célula quando o Maxima espera entrada" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "Abrir um documento" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "Abrir uma nova janela" #: ../src/wxMaximaFrame.cpp:714 ../src/wxMaximaFrame.cpp:779 msgid "Open document" msgstr "Abrir documento" #: ../src/wxMaxima.cpp:3713 msgid "Open matrix" msgstr "Abrir matriz" #: ../src/wxMaxima.cpp:965 ../src/wxMaxima.cpp:1032 msgid "Opening file" msgstr "Abrindo arquivo" #: ../src/wxMaximaFrame.cpp:724 ../src/wxMaximaFrame.cpp:791 #: ../src/Config.cpp:98 msgid "Options" msgstr "Opções" #: ../src/Plot3dWiz.cpp:80 ../src/Plot2dWiz.cpp:81 msgid "Options:" msgstr "Opções:" #: ../src/Config.cpp:375 msgid "Outdated cells" msgstr "Células desatualizadas" #: ../src/Config.cpp:363 msgid "Output labels" msgstr "Rótulos de saída" #: ../src/wxMaximaFrame.cpp:496 msgid "P&ade Approximation..." msgstr "Aproximação de P&adé..." #: ../src/wxMaxima.cpp:2100 ../src/wxMaxima.cpp:3979 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "Imagem PNG (*.png)|*.png|Imagem JPEG (*.jpg)|*.jpg|Bitmap do Windows (*.bmp)|" "*.bmp|Pixmap X (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2927 msgid "Pade approximation" msgstr "Aproximação de Padé" #: ../src/wxMaximaFrame.cpp:497 msgid "Pade approximation of a Taylor series" msgstr "Aproximação de Padé de uma série de Taylor" #: ../src/wxMaximaFrame.cpp:1071 msgid "Pagebreak" msgstr "Quebra de página" #: ../src/wxMaximaFrame.cpp:341 msgid "Panes" msgstr "Painéis" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "Gráfico paramétrico" #: ../src/wxMaxima.cpp:320 msgid "Parsing output" msgstr "Interpretando saída" #: ../src/wxMaximaFrame.cpp:519 msgid "Partial &Fractions..." msgstr "&Frações parciais..." #: ../src/wxMaxima.cpp:2991 msgid "Partial fractions" msgstr "Frações parciais" #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1155 msgid "Parts of the document will not be loaded correctly!" msgstr "Partes do documento não serão carregadas corretamente!" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:804 #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 msgid "Paste" msgstr "Colar" #: ../src/wxMaximaFrame.cpp:246 msgid "Paste\tCtrl-V" msgstr "Colar\tCtrl-V" #: ../src/wxMaximaFrame.cpp:736 ../src/wxMaximaFrame.cpp:807 msgid "Paste from clipboard" msgstr "Colar da área de transferência" #: ../src/wxMaximaFrame.cpp:247 msgid "Paste text from clipboard" msgstr "Colar texto da área de transferência" #: ../src/wxMaximaFrame.cpp:1033 msgid "Piechart..." msgstr "Gráfico de torta..." #: ../src/wxMaxima.cpp:1427 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "Queira configurar o wxMaxima com 'Editar->Configurações'." #: ../src/Config.cpp:936 msgid "Please restart wxMaxima for changes to take effect!" msgstr "Queira reiniciar o wxMaxima para as mudanças terem efeito!" #: ../src/wxMaximaFrame.cpp:623 msgid "Plot &2d..." msgstr "Gráfico &2d..." #: ../src/wxMaximaFrame.cpp:625 msgid "Plot &3d..." msgstr "Gráfico &3d..." #: ../src/wxMaximaFrame.cpp:627 msgid "Plot &Format..." msgstr "&Formato do gráfico..." #: ../src/wxMaxima.cpp:3198 ../src/wxMaxima.cpp:3948 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr "Gráfico 2D" #: ../src/wxMaximaFrame.cpp:987 msgid "Plot 2D..." msgstr "Gráfico 2D..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "Gráfico 2d..." #: ../src/wxMaxima.cpp:3184 ../src/wxMaxima.cpp:3961 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "Gráfico 3D" #: ../src/wxMaximaFrame.cpp:988 msgid "Plot 3D..." msgstr "Gráfico 3D..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "Gráfico 3d..." #: ../src/wxMaxima.cpp:3211 msgid "Plot format" msgstr "Formato do gráfico" #: ../src/wxMaximaFrame.cpp:624 msgid "Plot in 2 dimensions" msgstr "Gráfico bidimensional" #: ../src/wxMaximaFrame.cpp:626 msgid "Plot in 3 dimensions" msgstr "Gráfico tridimensional" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "Gráfico para arquivo:" #: ../src/LimitWiz.cpp:32 ../src/SeriesWiz.cpp:38 ../src/BC2Wiz.cpp:29 #: ../src/BC2Wiz.cpp:35 ../src/wxMaxima.cpp:2440 ../src/wxMaxima.cpp:2455 #: ../src/wxMaxima.cpp:2563 msgid "Point:" msgstr "Ponto:" #: ../src/Config.cpp:252 msgid "Polish" msgstr "Polonês" #: ../src/wxMaxima.cpp:2944 ../src/wxMaxima.cpp:2959 ../src/wxMaxima.cpp:2974 msgid "Polynomial 1:" msgstr "Polinômio 1:" #: ../src/wxMaxima.cpp:2944 ../src/wxMaxima.cpp:2959 ../src/wxMaxima.cpp:2974 msgid "Polynomial 2:" msgstr "Polinômio 2:" #: ../src/Config.cpp:253 msgid "Portuguese (Brazilian)" msgstr "Português (Brasileiro)" #: ../src/Plot3dWiz.cpp:461 ../src/Plot2dWiz.cpp:515 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Arquivo Postscript (*.eps)|*.eps|Todos|*" #: ../src/wxMaxima.cpp:3251 msgid "Precision" msgstr "Precisão" #: ../src/wxMaximaFrame.cpp:280 msgid "Preferences...\tCTRL+," msgstr "Preferências...\tCTRL+," #: ../src/wxMaximaFrame.cpp:321 msgid "Previous Command\tAlt-Up" msgstr "Comando anterior\tAlt-Up" #: ../src/wxMaximaFrame.cpp:720 ../src/wxMaximaFrame.cpp:786 msgid "Print" msgstr "Imprimir" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:722 #: ../src/wxMaximaFrame.cpp:789 msgid "Print document" msgstr "Imprimir documento" #: ../src/wxMaxima.cpp:3157 msgid "Product" msgstr "Produto" #: ../src/wxMaximaFrame.cpp:1038 msgid "Read Matrix..." msgstr "Ler matriz..." #: ../src/wxMaxima.cpp:551 msgid "Reading Maxima output" msgstr "Lendo saída do Maxima" #: ../src/wxMaxima.cpp:364 ../src/wxMaxima.cpp:822 ../src/wxMaxima.cpp:955 #: ../src/wxMaxima.cpp:977 ../src/wxMaxima.cpp:988 ../src/wxMaxima.cpp:1025 #: ../src/wxMaxima.cpp:1048 ../src/wxMaxima.cpp:1060 ../src/wxMaxima.cpp:1081 #: ../src/wxMaxima.cpp:1127 ../src/wxMaxima.cpp:1347 ../src/wxMaxima.cpp:1368 msgid "Ready for user input" msgstr "Pronto para entrada do usuário" #: ../src/wxMaximaFrame.cpp:324 msgid "Recall next command from history" msgstr "Recuperar o próximo comando do histórico" #: ../src/wxMaximaFrame.cpp:322 msgid "Recall previous command from history" msgstr "Recuperar o comando anterior do histórico" #: ../src/wxMaximaFrame.cpp:975 msgid "Rectform" msgstr "Forma ret" #: ../src/wxMaximaFrame.cpp:226 msgid "Redo\tCtrl-Shift-Z" msgstr "Desfazer\tCtrl-Shift-Z" #: ../src/wxMaximaFrame.cpp:227 msgid "Redo last change" msgstr "Desfazer última alteração" #: ../src/wxMaximaFrame.cpp:980 msgid "Reduce (tr)" msgstr "Reduzir (tr)" #: ../src/wxMaximaFrame.cpp:571 msgid "Reduce trigonometric expression" msgstr "Reduzir expressão trigonométrica" #: ../src/wxMaximaFrame.cpp:294 msgid "Remove All Output" msgstr "Remover todas as saídas" #: ../src/wxMaximaFrame.cpp:295 msgid "Remove output from input cells" msgstr "Remover saídas das células de entrada" #: ../src/wxMaxima.cpp:2233 #, c-format msgid "Replaced %d occurences." msgstr "Substituídas %d ocorrências." #: ../src/wxMaximaFrame.cpp:670 msgid "Report bug" msgstr "Relatar bug" #: ../src/wxMaximaFrame.cpp:356 msgid "Restart Maxima" msgstr "Reiniciar Maxima" #: ../src/wxMaximaFrame.cpp:479 msgid "Risch Integration..." msgstr "Integração Risch..." #: ../src/wxMaximaFrame.cpp:394 msgid "Roots of &Polynomial" msgstr "Raízes de &polinômio" #: ../src/wxMaximaFrame.cpp:397 msgid "Roots of Polynomial (bfloat)" msgstr "Raízes do polinômio (bfloat)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "Linas:" #: ../src/Config.cpp:254 msgid "Russian" msgstr "Russo" #: ../src/wxMaxima.cpp:3665 msgid "Sample 1:" msgstr "Amostra 1:" #: ../src/wxMaxima.cpp:3665 msgid "Sample 2:" msgstr "Amostra 2:" #: ../src/wxMaxima.cpp:3651 msgid "Sample:" msgstr "Amostra:" #: ../src/wxMaximaFrame.cpp:715 ../src/wxMaximaFrame.cpp:780 #: ../src/wxMaxima.cpp:4442 ../src/Config.cpp:389 msgid "Save" msgstr "Salvar" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "Salvar animação..." #: ../src/wxMaxima.cpp:1845 msgid "Save As" msgstr "Salvar como" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "Salvar como...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "Salvar imagem..." #: ../src/wxMaxima.cpp:2098 msgid "Save Selection to Image" msgstr "Salvar seleção para imagem" #: ../src/wxMaximaFrame.cpp:256 msgid "Save Selection to Image..." msgstr "Salvar seleção para imagem..." #: ../src/wxMaxima.cpp:3993 msgid "Save animation to file" msgstr "Salvar animação para arquivo" #: ../src/wxMaxima.cpp:4454 msgid "Save changes before closing?" msgstr "Salvar alterações antes de fechar?" #: ../src/wxMaxima.cpp:4455 msgid "Save changes?" msgstr "Salvar mudanças?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:717 #: ../src/wxMaximaFrame.cpp:783 msgid "Save document" msgstr "Salvar documento" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "Salvar documento como" #: ../src/Config.cpp:263 msgid "Save panes layout" msgstr "Salver layout dos painéis" #: ../src/Config.cpp:126 msgid "Save panes layout between sessions." msgstr "Salvar layout dos painéis entre sessões." #: ../src/Plot3dWiz.cpp:459 ../src/Plot2dWiz.cpp:513 msgid "Save plot to file" msgstr "Salvar gráfico para um arquivo" #: ../src/wxMaximaFrame.cpp:257 msgid "Save selection from document to an image file" msgstr "Salvar seleção do documento para uma imagem" #: ../src/wxMaxima.cpp:3977 msgid "Save selection to file" msgstr "Salvar seleção para arquivo" #: ../src/Config.cpp:1066 msgid "Save style to file" msgstr "Salvar estilo para um arquivo" #: ../src/Config.cpp:262 msgid "Save wxMaxima window size/position" msgstr "Salvar posição/tamanho da janela do wxMaxima" #: ../src/Config.cpp:125 msgid "Save wxMaxima window size/position between sessions." msgstr "Salvar posição/tamanho da janela do wxMaxima entre sessões." #: ../src/wxMaxima.cpp:3588 msgid "Scatterplot" msgstr "Gráfico de dispersão" #: ../src/wxMaximaFrame.cpp:1031 msgid "Scatterplot..." msgstr "Gráfico de dispersão..." #: ../src/wxMaximaFrame.cpp:1069 msgid "Section" msgstr "Seção" #: ../src/Config.cpp:367 msgid "Section cell" msgstr "Selecionar célula" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "Selecionar tudo" #: ../src/wxMaximaFrame.cpp:253 msgid "Select All\tCtrl-A" msgstr "Selecionar tudo\tCtrl-A" #: ../src/Config.cpp:474 ../src/Config.cpp:479 msgid "Select Maxima program" msgstr "Selecione o programa Maxima" #: ../src/wxMaxima.cpp:3749 msgid "Select Subsample" msgstr "Selecione a subamostra" #: ../src/LimitWiz.cpp:134 ../src/SeriesWiz.cpp:108 #: ../src/IntegrateWiz.cpp:218 ../src/IntegrateWiz.cpp:237 msgid "Select a constant" msgstr "Selecione uma constante" #: ../src/wxMaximaFrame.cpp:254 msgid "Select all" msgstr "Selecionar tudo" #: ../src/wxMaxima.cpp:2266 msgid "Select math display algorithm" msgstr "Selecione o algoritmo de exibição de fórmulas" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "Selecionar uma parte da saída e clicar com o botão direito na seleção traz " "um menu com funções convenientes que operam na seleção." #: ../src/Config.cpp:374 msgid "Selection" msgstr "Seleção" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3093 msgid "Series" msgstr "Série" #: ../src/wxMaximaFrame.cpp:986 msgid "Series..." msgstr "Série..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "Servidor iniciado" #: ../src/wxMaximaFrame.cpp:641 msgid "Set &Precision..." msgstr "Ajustar &precisão..." #: ../src/wxMaximaFrame.cpp:274 msgid "Set Zoom" msgstr "Ajustar zoom" #: ../src/wxMaximaFrame.cpp:642 msgid "Set bigfloat precision" msgstr "Ajustar a precisão de ponto flutuante" #: ../src/Config.cpp:130 msgid "Set fixed font in text controls." msgstr "Usa fonte monoespaçada nos controles de texto." #: ../src/wxMaximaFrame.cpp:628 msgid "Set plot format" msgstr "Ajustar formato do gráfico" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 100%" msgstr "Definir zoom em 100%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 120%" msgstr "Definir zoom em 120%" #: ../src/wxMaximaFrame.cpp:270 msgid "Set zoom to 150%" msgstr "Definir zoom em 150%" #: ../src/wxMaximaFrame.cpp:271 msgid "Set zoom to 200%" msgstr "Definir zoom em 200%" #: ../src/wxMaximaFrame.cpp:272 msgid "Set zoom to 300%" msgstr "Definir zoom em 300%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 80%" msgstr "Definir zoom em 80%" #: ../src/wxMaximaFrame.cpp:432 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" "Configurar valores em pontos para resolver EDO com transformada de Laplace" #: ../src/wxMaximaFrame.cpp:618 msgid "Setup modulus computation" msgstr "Configurar cálculos com módulo" #: ../src/wxMaximaFrame.cpp:365 msgid "Show &Definition..." msgstr "Mostar &definição..." #: ../src/wxMaximaFrame.cpp:363 msgid "Show &Functions" msgstr "Mostrar &funções" #: ../src/wxMaximaFrame.cpp:661 msgid "Show &Tips..." msgstr "&Mostar dicas..." #: ../src/wxMaximaFrame.cpp:368 msgid "Show &Variables" msgstr "Mostrar &variáveis" #: ../src/wxMaximaFrame.cpp:650 ../src/wxMaximaFrame.cpp:653 #: ../src/wxMaximaFrame.cpp:759 ../src/wxMaximaFrame.cpp:833 msgid "Show Maxima help" msgstr "Mostrar ajuda do Maxima" #: ../src/wxMaximaFrame.cpp:303 msgid "Show Template\tCtrl-Shift-K" msgstr "Exibir modelo\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:662 msgid "Show a tip" msgstr "Mostrar uma dica" #: ../src/wxMaxima.cpp:3529 msgid "Show all commands similar to:" msgstr "Mostrar todos os comandos semelhantes a:" #: ../src/wxMaxima.cpp:3516 msgid "Show an example for the command:" msgstr "Mostrar um exemplo para o comando:" #: ../src/wxMaximaFrame.cpp:656 msgid "Show an example of usage" msgstr "Mostrar um exemplo de uso" #: ../src/wxMaximaFrame.cpp:659 msgid "Show commands similar to" msgstr "Mostrar os comandos semelhantes a" #: ../src/wxMaximaFrame.cpp:364 msgid "Show defined functions" msgstr "Mostrar funções definidas" #: ../src/wxMaximaFrame.cpp:369 msgid "Show defined variables" msgstr "Mostrar variáveis definidas" #: ../src/wxMaximaFrame.cpp:366 msgid "Show definition of a function" msgstr "Mostrar definição de uma função" #: ../src/wxMaximaFrame.cpp:304 msgid "Show function template" msgstr "Mostrar modelo de função" #: ../src/Config.cpp:266 msgid "Show long expressions" msgstr "Mostrar expressões longas" #: ../src/Config.cpp:128 msgid "Show long expressions in wxMaxima document." msgstr "Mostrar expressões grandes no documento do wxMaxima." #: ../src/wxMaxima.cpp:2288 msgid "Show the definition of function:" msgstr "Mostrar a definição da função:" #: ../src/wxMaximaFrame.cpp:971 msgid "Simplify" msgstr "Simplificar" #: ../src/wxMaximaFrame.cpp:531 msgid "Simplify &Radicals" msgstr "Simplificar &radicais" #: ../src/wxMaximaFrame.cpp:972 msgid "Simplify (r)" msgstr "Simplificar (r)" #: ../src/wxMaximaFrame.cpp:978 msgid "Simplify (tr)" msgstr "Simplificar (tr)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "Simplificar expressão" #: ../src/wxMaximaFrame.cpp:557 msgid "Simplify an expression containing factorials" msgstr "Simplificar uma expressão envolvendo fatoriais" #: ../src/wxMaximaFrame.cpp:532 msgid "Simplify expression containing radicals" msgstr "Simplificar uma expressão envolvendo radicais" #: ../src/wxMaximaFrame.cpp:530 msgid "Simplify rational expression" msgstr "Simplificar uma expressão racional" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "Simplificar a soma" #: ../src/wxMaximaFrame.cpp:568 msgid "Simplify trigonometric expression" msgstr "Simplificar uma expressão trigonométrica" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "Desde o wxMaxima 0.8.2 você pode inserir imagens nos documentos. Use o menu " "'Célula->Inserir imagem...'. Note que você precisa salvar o documento no " "formato 'Documento XML do wxMaxima' para que a imagem seja salva junto com o " "documento." #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2440 ../src/wxMaxima.cpp:2455 msgid "Solution:" msgstr "Solução:" #: ../src/wxMaxima.cpp:2376 ../src/wxMaxima.cpp:2390 ../src/wxMaxima.cpp:3866 msgid "Solve" msgstr "Resolver" #: ../src/wxMaximaFrame.cpp:406 msgid "Solve &Algebraic System..." msgstr "Resolver sistema &algébrico..." #: ../src/wxMaximaFrame.cpp:403 msgid "Solve &Linear System..." msgstr "Resolver sistema &linear..." #: ../src/wxMaximaFrame.cpp:414 msgid "Solve &ODE..." msgstr "Resolver ED&O..." #: ../src/wxMaximaFrame.cpp:390 msgid "Solve (to_poly)..." msgstr "Resolver (to_poly)..." #: ../src/wxMaxima.cpp:2426 ../src/wxMaxima.cpp:2550 msgid "Solve ODE" msgstr "Resolver EDO ..." #: ../src/wxMaximaFrame.cpp:428 msgid "Solve ODE with Lapla&ce..." msgstr "Resolver EDO com Laplace..." #: ../src/wxMaximaFrame.cpp:982 msgid "Solve ODE..." msgstr "Resolver EDO..." #: ../src/wxMaxima.cpp:2501 ../src/wxMaxima.cpp:2512 msgid "Solve algebraic system" msgstr "Resolver sistema algébrico" #: ../src/wxMaximaFrame.cpp:407 msgid "Solve algebraic system of equations" msgstr "Resolver sistema de equações algébricas" #: ../src/wxMaximaFrame.cpp:425 msgid "Solve boundary value problem for second degree ODE" msgstr "Resolver problema de contorno para EDO de segunda ordem" #: ../src/wxMaximaFrame.cpp:389 msgid "Solve equation(s)" msgstr "Resolver equação(ões)" #: ../src/wxMaximaFrame.cpp:391 msgid "Solve equation(s) with to_poly_solver" msgstr "Resolver equação(ões) como to_poly_solver" #: ../src/wxMaximaFrame.cpp:419 msgid "Solve initial value problem for first degree ODE" msgstr "Resolver problema de valor inicial para EDO de primeira ordem" #: ../src/wxMaximaFrame.cpp:422 msgid "Solve initial value problem for second degree ODE" msgstr "Resolver problema de valor inicial para EDO de segunda ordem" #: ../src/wxMaxima.cpp:2525 ../src/wxMaxima.cpp:2536 msgid "Solve linear system" msgstr "Resolver sistema linear" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve linear system of equations" msgstr "Resolver sistema de equações lineares" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "Resolver equação diferencial ordinário de grau máximo 2" #: ../src/wxMaximaFrame.cpp:429 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "Resolver equação diferencial ordinário com transformada de Laplace" #: ../src/wxMaximaFrame.cpp:981 ../src/MathCtrl.cpp:701 msgid "Solve..." msgstr "Resolver..." #: ../src/Config.cpp:255 msgid "Spanish" msgstr "Espanhol" #: ../src/LimitWiz.cpp:35 ../src/SeriesWiz.cpp:41 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 msgid "Special" msgstr "Especial" #: ../src/Config.cpp:357 msgid "Special constants" msgstr "Constantes especiais" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "Iniciar animação" #: ../src/wxMaximaFrame.cpp:746 ../src/wxMaximaFrame.cpp:748 msgid "Start animation" msgstr "Iniciar animação" #: ../src/wxMaxima.cpp:265 msgid "Starting Maxima process failed" msgstr "Falha ao iniciar o Maxima" #: ../src/wxMaxima.cpp:728 msgid "Starting Maxima..." msgstr "Iniciando Maxima..." #: ../src/wxMaxima.cpp:263 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "Falha ao iniciar o servidor" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "Iniciando servidor na porta %d" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "Estatísticas" #: ../src/wxMaximaFrame.cpp:336 msgid "Statistics\tAlt-Shift-S" msgstr "Estatísticas\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:749 ../src/wxMaximaFrame.cpp:751 #: ../src/wxMaximaFrame.cpp:822 msgid "Stop animation" msgstr "Parar animação" #: ../src/Config.cpp:359 msgid "Strings" msgstr "Cadeias de caracteres" #: ../src/Config.cpp:100 msgid "Style" msgstr "Estilo" #: ../src/Config.cpp:333 msgid "Styles" msgstr "Estilos" #: ../src/wxMaximaFrame.cpp:1043 msgid "Subsample..." msgstr "Subamostra..." #: ../src/wxMaximaFrame.cpp:1068 msgid "Subsection" msgstr "Subseção" #: ../src/Config.cpp:366 msgid "Subsection cell" msgstr "Célula de subseção" #: ../src/wxMaximaFrame.cpp:976 msgid "Subst..." msgstr "Substituir..." #: ../src/wxMaxima.cpp:2338 ../src/wxMaxima.cpp:3935 #: ../src/SubstituteWiz.cpp:53 msgid "Substitute" msgstr "Substituir" #: ../src/wxMaximaFrame.cpp:606 ../src/MathCtrl.cpp:707 msgid "Substitute..." msgstr "Substituir..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3141 msgid "Sum" msgstr "Soma" #: ../src/wxMaxima.cpp:3365 msgid "System info" msgstr "Informações de sistema" #: ../src/wxMaxima.cpp:2925 msgid "Taylor series:" msgstr "Série de Taylor:" #: ../src/wxMaxima.cpp:2878 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1066 msgid "Text" msgstr "Texto" #: ../src/Config.cpp:365 msgid "Text cell" msgstr "Célula de texto" #: ../src/Config.cpp:369 msgid "Text cell background" msgstr "Fundo da célula de texto" #: ../src/Config.cpp:134 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "A porta padrão usada para comunicação entre o Maxima e o wxMaxima." #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "Há vários recursos sobre o Maxima e o wxMaxima na internet. Visite http://" "wxmaxima.sourceforge.net/wiki/index.php/Tutorials para mais informações " "sobre o uso do wxMaxima e do Maxima." #: ../src/wxMaxima.cpp:394 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "Houve um erro no XML gerado!\n" "\n" "Favor relatar isso como um bug." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "Houve um erro na exportação para GIF!\n" "\n" "Certifique-se de que o ImageMagick está instalado e o wxMaxima pode " "encontrar o programa \"convert\"." #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "Marcações:" #: ../src/wxMaxima.cpp:3068 ../src/wxMaxima.cpp:3911 msgid "Times:" msgstr "Vezes:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "Dicas não disponíveis, desculpe!" #: ../src/wxMaximaFrame.cpp:1067 msgid "Title" msgstr "Título" #: ../src/Config.cpp:368 msgid "Title cell" msgstr "Célula de título" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "Células de título, seção e subseção podem ser recolhidas para ocultar seu " "conteúdo. Para recolher ou expandir, clique no quadrado próximo à celula. Se " "você segurar Shift enquanto clica, todos os subníveis daquela célula também " "serão recolhidos/expandidos." #: ../src/wxMaximaFrame.cpp:638 msgid "To &Bigfloat" msgstr "Para &bigfloat" #: ../src/wxMaximaFrame.cpp:635 msgid "To &Float" msgstr "Para &float" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "Para float" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "Para fazer gráficos em coordenadas polares, selecione 'Polar' em Opções na " "janela de gráficos bidimensionais. Você também pode fazer gráficos em " "coordenadas esféricas e cilíndricas em 3D." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "Para inserir parêntesis ao redor de uma expressão, selecione-a e pressione " "'(' ou ')', dependende de onde você quer que o cursor apareça depois." #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "Para salvar o tamanho e posição da janela do wxMaxima entre sessões, use a " "janela 'Maxima->Configurações'." #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "Para iniciar a usar o wxMaxima, digite o seu comando. Uma célula de entrada " "deve aparecer. Aperte Shift-Enter para executar seu comando." #: ../src/SumWiz.cpp:39 ../src/wxMaxima.cpp:2734 ../src/wxMaxima.cpp:3156 #: ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 ../src/Plot2dWiz.cpp:52 #: ../src/Plot2dWiz.cpp:62 ../src/Plot2dWiz.cpp:551 ../src/IntegrateWiz.cpp:47 msgid "To:" msgstr "Até:" #: ../src/wxMaximaFrame.cpp:612 msgid "Toggle &Algebraic Flag" msgstr "Alternar flag &algébrico" #: ../src/wxMaximaFrame.cpp:633 msgid "Toggle &Numeric Output" msgstr "Alternar saída &numérica" #: ../src/wxMaximaFrame.cpp:376 msgid "Toggle &Time Display" msgstr "Alternar exibição do &tempo" #: ../src/wxMaximaFrame.cpp:613 msgid "Toggle algebraic flag" msgstr "Alternar flag algébrico" #: ../src/wxMaximaFrame.cpp:276 msgid "Toggle full screen editing" msgstr "Alternar edição em tela cheia" #: ../src/wxMaximaFrame.cpp:634 msgid "Toggle numeric output" msgstr "Alternar saída numérica" #: ../src/wxMaximaFrame.cpp:340 msgid "Toolbar\tAlt-Shift-T" msgstr "Barra de ferramentas\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3377 msgid "Toolbar icons" msgstr "Ícones da barra de ferramentas" #: ../src/wxMaxima.cpp:3378 msgid "Translated by" msgstr "Traduzido por" #: ../src/wxMaximaFrame.cpp:463 msgid "Transpose a matrix" msgstr "Transposta de uma matriz" #: ../src/wxMaximaFrame.cpp:664 msgid "Tutorials" msgstr "Tutoriais" #: ../src/wxMaxima.cpp:3667 msgid "Two sample t-test" msgstr "Teste t com duas amostras" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "Tipo:" #: ../src/Config.cpp:256 msgid "Ukrainian" msgstr "Ucraniano" #: ../src/Config.cpp:386 msgid "Underlined" msgstr "Sublinhado" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "&Desfazer\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "Desfazer última alteração" #: ../src/wxMaxima.cpp:3367 msgid "Unicode Support" msgstr "Suporte Unicode" #: ../src/wxMaxima.cpp:4369 ../src/wxMaxima.cpp:4376 msgid "Upgrade" msgstr "Atualizar" #: ../src/wxMaxima.cpp:2406 ../src/wxMaxima.cpp:3880 msgid "Upper bound:" msgstr "Limite superior:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "User algoritmo Gosper" #: ../src/Config.cpp:133 ../src/Config.cpp:267 msgid "Use centered dot character for multiplication" msgstr "Usar um ponto centralizado para indicar multiplicação" #: ../src/Config.cpp:350 msgid "Use jsMath fonts" msgstr "Usar fontes do jsMath" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2440 #: ../src/wxMaxima.cpp:2456 ../src/wxMaxima.cpp:2564 msgid "Value:" msgstr "Valor:" #: ../src/wxMaxima.cpp:2375 ../src/wxMaxima.cpp:2389 ../src/wxMaxima.cpp:3067 #: ../src/wxMaxima.cpp:3865 ../src/wxMaxima.cpp:3910 msgid "Variable(s):" msgstr "Variável(is):" #: ../src/SumWiz.cpp:33 ../src/LimitWiz.cpp:29 ../src/SeriesWiz.cpp:35 #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:2424 ../src/wxMaxima.cpp:2664 #: ../src/wxMaxima.cpp:2733 ../src/wxMaxima.cpp:2989 ../src/wxMaxima.cpp:3004 #: ../src/wxMaxima.cpp:3155 ../src/wxMaxima.cpp:3879 ../src/Plot3dWiz.cpp:43 #: ../src/Plot3dWiz.cpp:52 ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 #: ../src/Plot2dWiz.cpp:545 ../src/IntegrateWiz.cpp:39 msgid "Variable:" msgstr "Variável:" #: ../src/Config.cpp:354 msgid "Variables" msgstr "Variáveis" #: ../src/wxMaxima.cpp:2486 ../src/wxMaxima.cpp:3121 ../src/wxMaxima.cpp:3696 #: ../src/SystemWiz.cpp:72 msgid "Variables:" msgstr "Variáveis:" #: ../src/wxMaximaFrame.cpp:1017 msgid "Variance..." msgstr "Variância..." #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1088 ../src/wxMaxima.cpp:1155 #: ../src/wxMaxima.cpp:1425 msgid "Warning" msgstr "Aviso" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "Bem-vindo ao wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "Ao aplicar funções com um argumento a partir dos menus, o argumento padrão é " "'%'. Para aplicar a função a um outro valor, selecione-o do documento antes " "de executar o comando do menu." #: ../src/wxMaxima.cpp:2679 ../src/wxMaxima.cpp:2698 msgid "Width:" msgstr "Largura:" #: ../src/Config.cpp:127 msgid "Write matching parenthesis in text controls." msgstr "Escrever parêntesis aos pares nos controles de texto." #: ../src/wxMaxima.cpp:3374 msgid "Written by" msgstr "Escrito por" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "Você pode acessar a última saída com a variável '%'. Você pode acessar a " "saída de comandos anteriores usando a variável '%on' onde n é o número da " "saída." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "Você pode avaliar todo o documento usando o menu 'Célula->Avaliar todas as " "células' ou a tecla de atalho correspondente. As células serão avalidas na " "ordem em que aparecem no documento." #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "Você pode obter ajuda sobre uma função do Maxima selecionando-a ou clicando " "no nome da função e apertando F1. O wxMaxima vai pesquisar no índice da " "ajuda pela palavra selecionada ou pela palavra onde está o cursor." #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "Você pode esconder a saída das células clicando no triângulo no lado " "esquerdo das células. Isso funciona também em células de texto." #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "Você pode inserir diferentes tipos de 'células' num documento do wxMaxima " "usando o menu 'Célula'. Note que apenas 'células de entrada' são avaliadas, " "as outras são usadas para comentar ou estruturar seus cálculos." #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "Você pode selecionar vários células com o mouse - clique e arraste desde " "algum ponto entre células ou dos marcadores à esquerda - ou com o teclado - " "segure Shift enquanto move o cursor horizontal - e então operar na seleção. " "Isso é útil quando você quer apagar ou calcular múltiplas células." #: ../src/wxMaxima.cpp:4366 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "Você tem a versão %s. A versão atual é %s.\n" "\n" "Selecione OK para visitar a página do wxMaxima." #: ../src/wxMaxima.cpp:4441 ../src/wxMaxima.cpp:4448 msgid "Your changes will be lost if you don't save them." msgstr "Suas mudanças serão perdidas se você não as salvar." #: ../src/wxMaxima.cpp:4376 msgid "Your version of wxMaxima is up to date." msgstr "Sua versão do wxMaxima está atualizada." #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom &In\tAlt-I" msgstr "Aprox&imar\tAlt-I" #: ../src/wxMaximaFrame.cpp:263 msgid "Zoom Ou&t\tAlt-O" msgstr "Afas&tar\tAlt-O" #: ../src/wxMaximaFrame.cpp:262 msgid "Zoom in 10%" msgstr "Aproximar em 10%" #: ../src/wxMaximaFrame.cpp:264 msgid "Zoom out 10%" msgstr "Afastar em 10%" #: ../src/wxMaxima.cpp:2124 ../src/wxMaxima.cpp:2132 msgid "Zoom set to " msgstr "Zoom definido em " #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4229 msgid "[ unsaved ]" msgstr "[ não salvo ]" #: ../src/wxMaxima.cpp:4231 msgid "[ unsaved* ]" msgstr "[ não salvo* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "antisimétrica" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "bilateral" #: ../src/Plot3dWiz.cpp:72 ../src/Plot3dWiz.cpp:388 ../src/Plot2dWiz.cpp:73 #: ../src/Plot2dWiz.cpp:398 msgid "default" msgstr "padrão" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "diagonal" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "geral" #: ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 ../src/Plot3dWiz.cpp:388 #: ../src/Plot3dWiz.cpp:419 ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 #: ../src/Plot2dWiz.cpp:398 ../src/Plot2dWiz.cpp:431 msgid "inline" msgstr "embutido" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "esquerda" #: ../src/EditorCell.cpp:331 msgid "lines hidden" msgstr "linhas escondidas" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "escala logarítmica" #: ../src/wxMaxima.cpp:2698 msgid "matrix[i,j]:" msgstr "matriz[i,j]:" #: ../src/wxMaxima.cpp:3438 msgid "no" msgstr "não" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "direita" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "simétrica" #: ../src/wxMaxima.cpp:4426 msgid "unsaved" msgstr "não salvo" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1840 #: ../src/wxMaxima.cpp:1953 msgid "untitled" msgstr "sem título" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "sem título %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3449 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4229 #: ../src/wxMaxima.cpp:4231 ../src/wxMaxima.cpp:4240 ../src/wxMaxima.cpp:4243 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:91 ../src/Config.cpp:120 msgid "wxMaxima configuration" msgstr "Configuração do wxMaxima" #: ../src/wxMaxima.cpp:1423 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "O wxMaxima não pôde encontrar o Maxima!\n" "\n" "Queira configurar o wxMaxima com 'Editar->Configurações.\n" "Então inicie o Maxima com 'Maxima->Reiniciar maxima'." #: ../src/wxMaxima.cpp:1596 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "O wxMaxima não pôde encontrar os arquivos de ajuda.\n" "\n" "Queira verificar sua instalação." #: ../src/wxMaxima.cpp:1500 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "O wxMaxima não pôde encontrar os arquivos de dicas.\n" "\n" "Queira verificar sua instalação." #: ../src/wxMaxima.cpp:253 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "O wxMaxima não pôde iniciar o servidor.\n" "\n" "Verifique se você tem suporte a rede\n" "habilitado e tente novamente!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "As janelas do wxMaxima têm valores padrão para as entradas, um dos quais é " "'%'. Se você selecionou algo no documento, a seleção será usada no lugar de " "'%'." #: ../src/wxMaxima.cpp:1678 msgid "wxMaxima document" msgstr "Documento do wxMaxima" #: ../src/wxMaxima.cpp:1847 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "Documento wxMaxima (*.wxm)|*.wxm|Documento xml wxMaxima (*.wxmx)|*.wxmx|" "Arquivo batch Maxima (*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1933 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "Documento do wxMaxima (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:976 ../src/wxMaxima.cpp:987 ../src/wxMaxima.cpp:1046 #: ../src/wxMaxima.cpp:1058 msgid "wxMaxima encountered an error loading " msgstr "o wxMaxima encontrou um erro carregando " #: ../src/wxMaxima.cpp:3376 msgid "wxMaxima icon" msgstr "Ícone do wxMaxima" #: ../src/wxMaxima.cpp:3364 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "O wxMaxima é uma interface para o sistema de álgebra computacional MAXIMA " "baseada no wxWidgets." #: ../src/wxMaxima.cpp:3430 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "O wxMaxima é uma interface baseada no wxWidgets para o sistema de álgebra " "computacional MAXIMA." #: ../src/wxMaxima.cpp:3436 msgid "yes" msgstr "sim" wxMaxima-13.04.2/locales/ru.mo000644 000765 000024 00000061224 11710501376 016475 0ustar00andrejstaff000000 000000 q ,&  ) 3@ V `ms      & 0 9 H N e k z  '     ! !)!-!K!P! W!b!u!!!!"! ! !!#!"2"%P"1v"#"#""@#Q#g#z#8#A#(#''$HO$1$1$>$;%@%O% S%0^%% % %%%%%%& $&0& 7&C& K&Y& r& }&&&& & & & & &/&/'7'.F'(u' '' ' ' ' ''''%(+( 3( @(N( U(a(v((( (( (((( ) 4)@)E)K))i))))) *)*/*7*>*D*M* \* i*$s*7*3*++,+E++L+3x+,+,+',.,>,;D,,, ,,,, , ,,,), - -&-D-T-\-c-g- ----- - ----.."3.V. ].h.p..?...)/W8/// / // / /000 "0 -0;0@0H0dQ00%0001 1 &1311M1311 11 1 111 22$2 +2 92G2#^2 222222 22 223 33#3":34]33 333 33 34:4Y4 s4~4 444455;5 Q5r5 {5 5,5'556!6 ;6E6 K6 U6b6#y62660617E7 Y78z7A77788 808G8b8j8p8 w8 88888D8B889?9F9a9`9]:a:w::: : : ::: : : : ;;;,;,3;`; ; < < $</<7<@<H<O<T< Z<d<m< v<<D<C<b#=a===!&?H?P?W?i?? ?? ?????@ @@(@A@V@e@ n@|@@ @ @ @@ @ @ @!A'A6CAzAAA AA AAA"A BB B$B6BMB]BfB)zBB BB!B0B0(CYC,yCC#CCQDVDqD DKDRD4-E6bESE6E6$FM[F FFFF/F GG3GFGNG^GqGGGGG GGGH )H6H HHVH]H wH HHH H)H H H-I01IbIqI I I I II II4IJ JJ-J6JFJ%YJJJ JJ J JJ*J(K9K>KDK#[KK"K!K!K*K*L1L 9LELIL QL_LhL'qL1L2LLM%M8M AM)bM>M-M3M-NAN<HNNN NNNNN NNN1N-O>OGOcO OOO)OOOO OOO P"P!=P_P$uP%P.PPP QQ1Q;LQQQ$QiQBRIRPR`RrRRRRRRRRRS SpSSSS S SSST:!T8\TTTTTTTUU*U1U :U EUPU#iUUUU UU UU%UV!V)V 1V;VSV*oV:VV VVWWW1-W_WEzWWW!WX2XPXkX XXXX Y YY"/Y RY sYY&YYY Y YY'Z/:ZjZ:Z:ZZ![A0[Pr[ [ [ [[[\*\E\L\R\ X\ c\q\ w\\\E\E\ ] +]5]U]f^^^ ^^^ ^ ^^_ %_ /_ ;_ G_ R_^_m__?__q``` ` ` `` ``` ` `a aaS/aUaTae.b omGjXUq\r?nwaJ`&10l?` $44#>u cb6Vtf=T_QHV%{;*U]Ddk 5W 9 bI1"&2kZq:IO3<7gn0JfNT3*,yS!2W8/@< +[(|8hHPElANO-Ed@;iSRG_: x~P6Rojp#]->aKM),Y/ FALQ$B"YL!zKF i^e^%MC'[ (Cgh BDce}7Z5p.X)9+sv\'.=m << Expression too long to display! >>&Algebra&Calculus&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Edit&Exponentialize&File&Help&Interrupt Ctrl-.&Interrupt Ctrl-G&Maxima&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Plot&Power series&Rational&Save Ctrl-S&Simplify&Special&Taylor series&pm3d(Use default language)AboutAbout wxMaximaAdd a directory to search pathAdd dir to path:Add equality to the rational simplifierAdditional parameters:All|*AnimationApplyApply function to a listAproposAt valueBC2Bat files (*.bat)|*.bat|All|*BoldBrowseC&onfigureCalculate modulus:Calculate productsCalculate sumsCancelChange variableChange variable in integral or sumChar polyChoose fontColumns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesCompute continued fraction of a valueCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Configuration warningConfigure wxMaximaConstantConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert trigonometric expression to canonical quasilinear formCopyCopy selectionCutCut Ctrl-XDecompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Diff...DifferentiateDifferentiate expressionDirection:Discrete plotDisplay algorithmDivideDivide numbers or polynomialsE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter matrixEnter new precision:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand an expressionExpand trigonometric expressionExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor an expressionFactor an expression in Gaussian numbersFatal errorFileFile:Find a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind eigenvalues of a matrixFind eigenvectors of a matrixFind real roots of a polynomialFixed font in text controlsFontsFormat:FrenchFrom:FunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGenerate MatrixGenerate a matrix from a 2-dimensional arrayGermanGet Laplace transformation of an expressionGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHungarianIC1IC2InsertIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInverse LaplaceItalianItalicLCMLanguage used for wxMaxima GUI.Language:LaplaceLimitLimit...List:Lower bound:Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMatrixMatrix mapMatrix:Maxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Method:ModulusNew value:New variable:Not a valid matrix dimension!Not a valid number of equations!Num. deg:Number of equations:NumbersOKOld value:Old variable:OpenOptionsOptions:PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesParametric plotParsing outputPartial fractionsPastePaste Ctrl-VPaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot 2DPlot 2D...Plot 3DPlot 3D...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrintPrint documentProductReady for user inputRectformReduce (tr)Reduce trigonometric expressionReport bugRows:RussianSaveSave plot to fileSave selection to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.Select a constantSelect allSelect math display algorithmSeriesSeries...Server startedSet fixed font in text controls.Set plot formatSetup atvalues for solving ODE with Laplace transformationSetup modulus computationShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow long expressionsShow the definition of function:SimplifySimplify (r)Simplify (tr)Simplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve ODESolve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart animationStarting server failedStarting server on port %dStringsStyleStylesSubstituteSubstitute...SumTaylor series:TellratTextThe default port used for communication between Maxima and wxMaxima.There was an error in generated XML! Please report this as a bug.Ticks:Times:Tips not available, sorry!To plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To:Toggle algebraic flagToggle numeric outputTranspose a matrixType:UkrainianUnderlinedUpper bound:Use Gosper algorithmValue:Variable(s):Variable:VariablesVariables:WarningWelcome to wxMaximaWidth:Write matching parenthesis in text controls.You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.[ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftrightsymmetricuntitledwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.Project-Id-Version: wxMaxima Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2009-01-23 11:53+0300 Last-Translator: Alexey Beshenov MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); << ! >> Ctrl-C Ctrl- Ctrl-Maxima Ctrl-N (nusum) Ctrl-O& Ctrl-S pm3d( ) wxMaxima : :|* BC2 (*.bat)|*.bat||* : : x-, y-, ( load(functs) ) wxMaxima , - - , - - Ctrl-X : : () (): :::... : Ctrl-Q , . : %d:::: %d! (noun) wxMaxima () HTML ! TeX !():: : :: :: - :HTML- (*.html)|*.html| pdfLaTeX (*.tex)|*.tex||*:12/: () ... , wxMaxima.: ...: : :Maxima Maxima (*.mac)|*.mac Maxima (*.mac)|*.mac| Lisp (*.lisp)|*.lisp||* Maxima . Maxima:Maxima . ...Maxima ':' ('a : 3;') ':=' ('f(x) := x^2;').: : : ! ! : :OK : ::PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm - Ctrl-V wxMaxima '->'. wxMaxima, ! ... ... :: 1: 2: () Postscript (*.eps)|*.eps||* . (.) : wxMaxima wxMaxima ӣ ... ... . , : : , : (.) (.) : ... () ... %d... :Tellrat, Maxima wxMaxima. XML! , . :: , ! , ' ' ' '. . wxMaxima '->': algebraic : : :::: wxMaxima: . '%'. '%on', n - .[ ][ * ] wxMaximawxMaxima %s wxMaximawxMaxima . .wxMaxima . .wxMaxima . !wxMaxima - Maxima, wxWidgets.wxMaxima-13.04.2/locales/ru.po000644 000765 000024 00000315005 11705765322 016506 0ustar00andrejstaff000000 000000 # wxMaxima Russian po translation. # # Copyright (c) Vadim V. Zhytnikov , 2006, 2007. # Copyright (c) Sergey Semerikov , 2007. # Copyright (c) Alexey Beshenov , 2008, 2009. # # This file is distributed under the same license as the wxMaxima package. msgid "" msgstr "" "Project-Id-Version: wxMaxima\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-09-10 23:07+0200\n" "PO-Revision-Date: 2009-01-23 11:53+0300\n" "Last-Translator: Alexey Beshenov \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=KOI8-R\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../src/wxMaxima.cpp:3424 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" #: ../src/wxMaxima.cpp:3437 #, fuzzy msgid "" "\n" "Lisp: " msgstr ":" #: ../src/wxMaxima.cpp:3433 #, fuzzy msgid "" "\n" "Maxima version: " msgstr " Maxima" #: ../src/wxMaxima.cpp:4075 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" #: ../src/wxMaxima.cpp:3435 msgid "" "\n" "Not connected." msgstr "" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << ! >>" #: ../src/wxMaxima.cpp:1084 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" #: ../src/wxMaxima.cpp:1076 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" #: ../src/wxMaximaFrame.cpp:463 msgid "&Algebra" msgstr "" #: ../src/wxMaximaFrame.cpp:457 #, fuzzy msgid "&Apply to List..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:643 #, fuzzy msgid "&Apropos..." msgstr " " #: ../src/wxMaximaFrame.cpp:206 #, fuzzy msgid "&Batch File...\tCtrl-B" msgstr " \tCtrl-S" #: ../src/wxMaximaFrame.cpp:414 #, fuzzy msgid "&Boundary Value Problem..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:654 #, fuzzy msgid "&Bug Report" msgstr " " #: ../src/wxMaximaFrame.cpp:515 msgid "&Calculus" msgstr "" #: ../src/wxMaximaFrame.cpp:566 #, fuzzy msgid "&Canonical Form" msgstr " " #: ../src/wxMaximaFrame.cpp:439 #, fuzzy msgid "&Characteristic Polynomial..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:347 #, fuzzy msgid "&Clear Memory" msgstr " " #: ../src/wxMaximaFrame.cpp:549 #, fuzzy msgid "&Combine Factorials" msgstr " " #: ../src/wxMaximaFrame.cpp:592 #, fuzzy msgid "&Complex Simplification" msgstr " " #: ../src/wxMaximaFrame.cpp:512 #, fuzzy msgid "&Continued Fraction" msgstr " " #: ../src/wxMaximaFrame.cpp:230 msgid "&Copy\tCtrl-C" msgstr "\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr " " #: ../src/wxMaximaFrame.cpp:586 msgid "&Demoivre" msgstr " " #: ../src/wxMaximaFrame.cpp:442 msgid "&Determinant" msgstr "" #: ../src/wxMaximaFrame.cpp:475 #, fuzzy msgid "&Differentiate..." msgstr "..." #: ../src/wxMaximaFrame.cpp:278 msgid "&Edit" msgstr "" #: ../src/wxMaximaFrame.cpp:399 #, fuzzy msgid "&Eliminate Variable..." msgstr "& ..." #: ../src/wxMaximaFrame.cpp:434 #, fuzzy msgid "&Enter Matrix..." msgstr "& ..." #: ../src/wxMaximaFrame.cpp:640 #, fuzzy msgid "&Example..." msgstr "" #: ../src/wxMaximaFrame.cpp:529 #, fuzzy msgid "&Expand Expression" msgstr " " #: ../src/wxMaximaFrame.cpp:563 #, fuzzy msgid "&Expand Trigonometric" msgstr " " #: ../src/wxMaximaFrame.cpp:589 msgid "&Exponentialize" msgstr " " #: ../src/wxMaximaFrame.cpp:208 #, fuzzy msgid "&Export..." msgstr "" #: ../src/wxMaximaFrame.cpp:524 #, fuzzy msgid "&Factor Expression" msgstr " " #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "" #: ../src/wxMaximaFrame.cpp:382 #, fuzzy msgid "&Find Root..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:428 #, fuzzy msgid "&Generate Matrix..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:499 #, fuzzy msgid "&Greatest Common Divisor..." msgstr "& ..." #: ../src/wxMaximaFrame.cpp:670 msgid "&Help" msgstr "" #: ../src/wxMaximaFrame.cpp:467 #, fuzzy msgid "&Integrate..." msgstr "&..." #: ../src/wxMaximaFrame.cpp:338 msgid "&Interrupt\tCtrl-." msgstr "\tCtrl- " #: ../src/wxMaximaFrame.cpp:342 msgid "&Interrupt\tCtrl-G" msgstr "\tCtrl-" #: ../src/wxMaximaFrame.cpp:436 #, fuzzy msgid "&Invert Matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:204 #, fuzzy msgid "&Load Package...\tCtrl-L" msgstr " \tCtrl-L" #: ../src/wxMaximaFrame.cpp:459 #, fuzzy msgid "&Map to List..." msgstr "& ..." #: ../src/wxMaximaFrame.cpp:374 msgid "&Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:607 #, fuzzy msgid "&Modulus Computation..." msgstr " &..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "\tCtrl-N " #: ../src/wxMaximaFrame.cpp:634 msgid "&Numeric" msgstr " " #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr " " #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr " (nusum)" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 #, fuzzy msgid "&Open...\tCtrl-O" msgstr "\tCtrl-O" #: ../src/wxMaximaFrame.cpp:619 msgid "&Plot" msgstr "&" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr " " #: ../src/wxMaximaFrame.cpp:212 #, fuzzy msgid "&Print...\tCtrl-P" msgstr "\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr " " #: ../src/wxMaximaFrame.cpp:560 #, fuzzy msgid "&Reduce Trigonometric" msgstr " " #: ../src/wxMaximaFrame.cpp:346 #, fuzzy msgid "&Restart Maxima" msgstr " maxima" #: ../src/wxMaximaFrame.cpp:390 #, fuzzy msgid "&Roots of Polynomial (Real)" msgstr " ()" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:609 msgid "&Simplify" msgstr "" #: ../src/wxMaximaFrame.cpp:519 #, fuzzy msgid "&Simplify Expression" msgstr " " #: ../src/wxMaximaFrame.cpp:546 #, fuzzy msgid "&Simplify Factorials" msgstr " " #: ../src/wxMaximaFrame.cpp:557 #, fuzzy msgid "&Simplify Trigonometric" msgstr " " #: ../src/wxMaximaFrame.cpp:378 #, fuzzy msgid "&Solve..." msgstr "&..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr " " #: ../src/wxMaximaFrame.cpp:452 #, fuzzy msgid "&Transpose Matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:569 #, fuzzy msgid "&Trigonometric Simplification" msgstr " " #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "pm3d" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "( )" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "" #: ../src/wxMaxima.cpp:3488 #, fuzzy msgid "
Lisp: " msgstr ":" #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" #: ../src/wxMaximaFrame.cpp:421 #, fuzzy msgid "A&t Value..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:665 ../src/wxMaxima.cpp:3490 msgid "About" msgstr " " #: ../src/wxMaximaFrame.cpp:667 ../src/wxMaximaFrame.cpp:669 msgid "About wxMaxima" msgstr " wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "" #: ../src/wxMaximaFrame.cpp:450 #, fuzzy msgid "Ad&joint Matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:604 #, fuzzy msgid "Add Algebraic E&quality..." msgstr " & ..." #: ../src/wxMaximaFrame.cpp:350 msgid "Add a directory to search path" msgstr " " #: ../src/wxMaxima.cpp:2292 msgid "Add dir to path:" msgstr " :" #: ../src/wxMaximaFrame.cpp:605 msgid "Add equality to the rational simplifier" msgstr " " #: ../src/wxMaximaFrame.cpp:349 #, fuzzy msgid "Add to &Path..." msgstr " " #: ../src/Config.cpp:122 #, fuzzy msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr " maxima (, -l clisp)" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr " :" #: ../src/Config.cpp:479 msgid "All|*" msgstr "|*" #: ../src/wxMaximaFrame.cpp:804 msgid "Animation" msgstr "" #: ../src/wxMaxima.cpp:2745 msgid "Apply" msgstr "" #: ../src/wxMaximaFrame.cpp:458 msgid "Apply function to a list" msgstr " " #: ../src/wxMaxima.cpp:3520 msgid "Apropos" msgstr " " #: ../src/wxMaxima.cpp:2671 msgid "Array:" msgstr "" #: ../src/wxMaxima.cpp:3366 msgid "Artwork by" msgstr "" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "" #: ../src/wxMaxima.cpp:2557 msgid "At value" msgstr " " #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2464 msgid "BC2" msgstr "BC2" #: ../src/wxMaximaFrame.cpp:1017 msgid "Barsplot..." msgstr "" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr " (*.bat)|*.bat||*" #: ../src/wxMaxima.cpp:1990 #, fuzzy msgid "Batch File" msgstr " \tCtrl-S" #: ../src/Config.cpp:382 msgid "Bold" msgstr "" #: ../src/wxMaximaFrame.cpp:1019 #, fuzzy msgid "Boxplot..." msgstr "" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "" #: ../src/wxMaximaFrame.cpp:652 #, fuzzy msgid "Build &Info" msgstr " " #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" #: ../src/wxMaximaFrame.cpp:472 #, fuzzy msgid "C&hange Variable..." msgstr "& ..." #: ../src/wxMaximaFrame.cpp:276 msgid "C&onfigure" msgstr "" #: ../src/wxMaximaFrame.cpp:491 #, fuzzy msgid "Calculate &Product..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:489 #, fuzzy msgid "Calculate Su&m..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:629 #, fuzzy msgid "Calculate bigfloat value of the last result" msgstr " " #: ../src/wxMaximaFrame.cpp:626 #, fuzzy msgid "Calculate float value of the last result" msgstr " " #: ../src/wxMaxima.cpp:2878 msgid "Calculate modulus:" msgstr " :" #: ../src/wxMaximaFrame.cpp:492 msgid "Calculate products" msgstr " " #: ../src/wxMaximaFrame.cpp:490 msgid "Calculate sums" msgstr " " #: ../src/wxMaxima.cpp:4322 msgid "Can not connect to the web server." msgstr "" #: ../src/wxMaxima.cpp:4367 msgid "Can not download version info." msgstr "" #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/wxMaxima.cpp:4419 ../src/Plot2dWiz.cpp:101 #: ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 #: ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 ../src/Plot3dWiz.cpp:103 #: ../src/Plot3dWiz.cpp:105 msgid "Cancel" msgstr "" #: ../src/wxMaximaFrame.cpp:962 #, fuzzy msgid "Canonical (tr)" msgstr " " #: ../src/Config.cpp:239 #, fuzzy msgid "Catalan" msgstr "" #: ../src/wxMaximaFrame.cpp:316 msgid "Ce&ll" msgstr "" #: ../src/Config.cpp:369 #, fuzzy msgid "Cell bracket" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:369 #, fuzzy msgid "Change &2d Display" msgstr " " #: ../src/wxMaximaFrame.cpp:370 #, fuzzy msgid "Change the 2d display algorithm used to display math output" msgstr " , ." #: ../src/wxMaxima.cpp:2902 msgid "Change variable" msgstr " " #: ../src/wxMaximaFrame.cpp:473 msgid "Change variable in integral or sum" msgstr " " #: ../src/wxMaxima.cpp:2658 msgid "Char poly" msgstr " " #: ../src/wxMaximaFrame.cpp:657 msgid "Check for Updates" msgstr "" #: ../src/wxMaximaFrame.cpp:658 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "" #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr " " #: ../src/PlotFormatWiz.cpp:27 #, fuzzy msgid "Choose new plot format:" msgstr " :" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 msgid "Classes:" msgstr "" #: ../src/wxMaximaFrame.cpp:197 #, fuzzy msgid "Close\tCtrl-W" msgstr "\tCtrl-C" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3686 #, fuzzy msgid "Col. names:" msgstr ":" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr ":" #: ../src/wxMaximaFrame.cpp:550 msgid "Combine factorials in an expression" msgstr " " #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr " x-, " #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr " y-, " #: ../src/MathCtrl.cpp:738 #, fuzzy msgid "Comment Selection" msgstr " " #: ../src/wxMaximaFrame.cpp:291 msgid "Complete Word\tCtrl-K" msgstr "" #: ../src/wxMaximaFrame.cpp:292 #, fuzzy msgid "Complete word" msgstr "-" #: ../src/wxMaximaFrame.cpp:513 msgid "Compute continued fraction of a value" msgstr " " #: ../src/wxMaximaFrame.cpp:451 #, fuzzy msgid "Compute the adjoint matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:440 msgid "Compute the characteristic polynomial of a matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:443 msgid "Compute the determinant of a matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:500 msgid "Compute the greatest common divisor" msgstr " " #: ../src/wxMaximaFrame.cpp:437 msgid "Compute the inverse of a matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:503 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "" " ( load(functs) " ")" #: ../src/wxMaxima.cpp:3736 #, fuzzy msgid "Condition:" msgstr "" #: ../src/Config.cpp:1064 ../src/Config.cpp:1072 msgid "Config file (*.ini)|*.ini" msgstr "" #: ../src/Config.cpp:933 msgid "Configuration warning" msgstr " " #: ../src/wxMaximaFrame.cpp:277 ../src/wxMaximaFrame.cpp:711 #: ../src/wxMaximaFrame.cpp:779 msgid "Configure wxMaxima" msgstr " wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "" #: ../src/wxMaximaFrame.cpp:534 #, fuzzy msgid "Contract Logarithms" msgstr " " #: ../src/wxMaximaFrame.cpp:541 msgid "Convert binomials, beta and gamma function to factorials" msgstr "" " , - - " #: ../src/wxMaximaFrame.cpp:544 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "" " , - -" "" #: ../src/wxMaximaFrame.cpp:578 msgid "Convert complex expression to polar form" msgstr " " #: ../src/wxMaximaFrame.cpp:575 msgid "Convert complex expression to rect form" msgstr " " #: ../src/wxMaximaFrame.cpp:587 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" " " " " #: ../src/wxMaximaFrame.cpp:532 msgid "Convert logarithm of product to sum of logarithms" msgstr " " #: ../src/wxMaximaFrame.cpp:535 msgid "Convert sum of logarithms to logarithm of product" msgstr " " #: ../src/wxMaximaFrame.cpp:540 #, fuzzy msgid "Convert to &Factorials" msgstr " " #: ../src/wxMaximaFrame.cpp:543 #, fuzzy msgid "Convert to &Gamma" msgstr " -" #: ../src/wxMaximaFrame.cpp:577 #, fuzzy msgid "Convert to &Polarform" msgstr " " #: ../src/wxMaximaFrame.cpp:574 #, fuzzy msgid "Convert to &Rectform" msgstr " " #: ../src/wxMaximaFrame.cpp:567 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "" " " #: ../src/wxMaximaFrame.cpp:590 #, fuzzy msgid "Convert trigonometric functions to exponential form" msgstr "" " " #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:716 #: ../src/wxMaximaFrame.cpp:785 msgid "Copy" msgstr "" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 #, fuzzy msgid "Copy As Image" msgstr " " #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 #, fuzzy msgid "Copy LaTeX" msgstr " TeX" #: ../src/wxMaximaFrame.cpp:289 #, fuzzy msgid "Copy Previous Input\tCtrl-I" msgstr " \tCtrl-I" #: ../src/wxMaximaFrame.cpp:239 #, fuzzy msgid "Copy as Image" msgstr " " #: ../src/wxMaximaFrame.cpp:235 #, fuzzy msgid "Copy as LaTeX" msgstr " TeX" #: ../src/wxMaximaFrame.cpp:232 #, fuzzy msgid "Copy as Text\tCtrl-Shift-C" msgstr " \tCtrl-Shift-R" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:718 #: ../src/wxMaximaFrame.cpp:788 msgid "Copy selection" msgstr " " #: ../src/wxMaximaFrame.cpp:240 #, fuzzy msgid "Copy selection from document as an image" msgstr " " #: ../src/wxMaximaFrame.cpp:233 #, fuzzy msgid "Copy selection from document as text" msgstr " " #: ../src/wxMaximaFrame.cpp:236 #, fuzzy msgid "Copy selection from document in LaTeX format" msgstr " TeX" #: ../src/wxMaximaFrame.cpp:290 msgid "Create a new cell with previous input" msgstr "" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:781 msgid "Cut" msgstr "" #: ../src/wxMaximaFrame.cpp:227 msgid "Cut\tCtrl-X" msgstr "\tCtrl-X" #: ../src/wxMaximaFrame.cpp:228 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:784 #, fuzzy msgid "Cut selection" msgstr " " #: ../src/Config.cpp:241 msgid "Czech" msgstr "" #: ../src/Config.cpp:242 #, fuzzy msgid "Danish" msgstr "" #: ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3686 ../src/wxMaxima.cpp:3736 #, fuzzy msgid "Data Matrix:" msgstr ":" #: ../src/wxMaxima.cpp:3706 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "" #: ../src/wxMaxima.cpp:3564 ../src/wxMaxima.cpp:3578 ../src/wxMaxima.cpp:3592 #: ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 ../src/wxMaxima.cpp:3635 #: ../src/wxMaxima.cpp:3671 msgid "Data:" msgstr "" #: ../src/wxMaximaFrame.cpp:510 msgid "Decompose rational function to partial fractions" msgstr " " #: ../src/Config.cpp:351 msgid "Default" msgstr " " #: ../src/Config.cpp:344 msgid "Default font:" msgstr " :" #: ../src/Config.cpp:257 msgid "Default port:" msgstr " :" #: ../src/wxMaxima.cpp:2310 ../src/wxMaxima.cpp:2319 msgid "Delete" msgstr "" #: ../src/wxMaximaFrame.cpp:360 #, fuzzy msgid "Delete F&unction..." msgstr " " #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 #, fuzzy msgid "Delete Selection" msgstr " " #: ../src/wxMaximaFrame.cpp:362 #, fuzzy msgid "Delete V&ariable..." msgstr " " #: ../src/wxMaximaFrame.cpp:361 msgid "Delete a function" msgstr " " #: ../src/wxMaximaFrame.cpp:363 msgid "Delete a variable" msgstr " " #: ../src/wxMaximaFrame.cpp:348 msgid "Delete all values from memory" msgstr " " #: ../src/wxMaxima.cpp:2319 msgid "Delete function(s):" msgstr " ()" #: ../src/wxMaxima.cpp:2310 msgid "Delete variable(s):" msgstr " ():" #: ../src/wxMaxima.cpp:2918 msgid "Denom. deg:" msgstr " :" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr ":" #: ../src/wxMaxima.cpp:2448 msgid "Derivative:" msgstr ":" #: ../src/wxMaximaFrame.cpp:1003 #, fuzzy msgid "Deviation..." msgstr "" #: ../src/wxMaximaFrame.cpp:506 #, fuzzy msgid "Di&vide Polynomials..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:968 msgid "Diff..." msgstr "..." #: ../src/wxMaxima.cpp:3061 ../src/wxMaxima.cpp:3903 msgid "Differentiate" msgstr "" #: ../src/wxMaximaFrame.cpp:476 msgid "Differentiate expression" msgstr " " #: ../src/MathCtrl.cpp:710 #, fuzzy msgid "Differentiate..." msgstr "..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr ":" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr " " #: ../src/wxMaximaFrame.cpp:372 #, fuzzy msgid "Display Te&X Form" msgstr " TeX" #: ../src/wxMaxima.cpp:2259 msgid "Display algorithm" msgstr " " #: ../src/wxMaximaFrame.cpp:373 #, fuzzy msgid "Display last result in TeX form" msgstr " TeX" #: ../src/wxMaximaFrame.cpp:367 #, fuzzy msgid "Display time used for evaluation" msgstr " " #: ../src/wxMaxima.cpp:2968 msgid "Divide" msgstr "" #: ../src/MathCtrl.cpp:740 #, fuzzy msgid "Divide Cell" msgstr "" #: ../src/wxMaximaFrame.cpp:507 msgid "Divide numbers or polynomials" msgstr " " #: ../src/wxMaxima.cpp:4414 ../src/wxMaxima.cpp:4426 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1075 ../src/wxMaxima.cpp:1083 #, fuzzy msgid "Document " msgstr " " #: ../src/Config.cpp:368 #, fuzzy msgid "Document background" msgstr " " #: ../src/wxMaxima.cpp:4419 msgid "Don't save" msgstr "" #: ../src/wxMaximaFrame.cpp:424 msgid "E&quations" msgstr "" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:447 msgid "Eige&nvectors" msgstr " " #: ../src/wxMaximaFrame.cpp:445 msgid "Eigen&values" msgstr " " #: ../src/wxMaxima.cpp:2479 msgid "Eliminate" msgstr "" #: ../src/wxMaximaFrame.cpp:400 msgid "Eliminate a variable from a system of equations" msgstr " " #: ../src/Config.cpp:243 msgid "English" msgstr "" #: ../src/wxMaxima.cpp:3592 ../src/wxMaxima.cpp:3599 ../src/wxMaxima.cpp:3606 #: ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3621 ../src/wxMaxima.cpp:3628 #: ../src/wxMaxima.cpp:3635 ../src/wxMaxima.cpp:3671 ../src/wxMaxima.cpp:3679 #, fuzzy msgid "Enter Data" msgstr " " #: ../src/wxMaximaFrame.cpp:1024 #, fuzzy msgid "Enter Matrix..." msgstr "& ..." #: ../src/wxMaximaFrame.cpp:435 msgid "Enter a matrix" msgstr " " #: ../src/wxMaxima.cpp:2869 msgid "Enter an equation for rational simplification:" msgstr " " #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr " , ." #: ../src/Config.cpp:267 #, fuzzy msgid "Enter evaluates cells" msgstr " " #: ../src/wxMaxima.cpp:2641 msgid "Enter matrix" msgstr " " #: ../src/wxMaxima.cpp:3242 msgid "Enter new precision:" msgstr " :" #: ../src/Config.cpp:121 #, fuzzy msgid "Enter the path to the Maxima executable." msgstr " maxima." #: ../src/wxMaxima.cpp:3115 #, fuzzy msgid "Epsilon:" msgstr ":" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr " %d:" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2540 #: ../src/wxMaxima.cpp:3856 msgid "Equation(s):" msgstr ":" #: ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2900 #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3870 msgid "Equation:" msgstr ":" #: ../src/wxMaxima.cpp:2477 msgid "Equations:" msgstr ":" #: ../src/ImgCell.cpp:101 ../src/Config.cpp:488 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1499 #: ../src/wxMaxima.cpp:1595 ../src/wxMaxima.cpp:4075 ../src/wxMaxima.cpp:4322 #: ../src/wxMaxima.cpp:4367 msgid "Error" msgstr "" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr " %d" #: ../src/wxMaxima.cpp:1965 ../src/wxMaxima.cpp:1970 ../src/wxMaxima.cpp:2500 #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2635 msgid "Error!" msgstr "!" #: ../src/wxMaximaFrame.cpp:599 #, fuzzy msgid "Evaluate &Noun Forms" msgstr " (noun) " #: ../src/wxMaximaFrame.cpp:284 #, fuzzy msgid "Evaluate All Cells\tCtrl-R" msgstr " \tCtrl-Shift-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:282 #, fuzzy msgid "Evaluate Cell(s)" msgstr " " #: ../src/wxMaximaFrame.cpp:283 #, fuzzy msgid "Evaluate active or selected cell(s)" msgstr " " #: ../src/wxMaximaFrame.cpp:285 #, fuzzy msgid "Evaluate all cells in the document" msgstr " " #: ../src/wxMaximaFrame.cpp:600 msgid "Evaluate all noun forms in expression" msgstr " (noun) " #: ../src/wxMaxima.cpp:3507 msgid "Example" msgstr "" #: ../src/Config.cpp:1018 ../src/Config.cpp:1110 msgid "Example text" msgstr " " #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr " wxMaxima" #: ../src/wxMaximaFrame.cpp:959 msgid "Expand" msgstr "" #: ../src/wxMaximaFrame.cpp:964 msgid "Expand (tr)" msgstr " ()" #: ../src/MathCtrl.cpp:706 #, fuzzy msgid "Expand Expression" msgstr " " #: ../src/wxMaximaFrame.cpp:531 #, fuzzy msgid "Expand Logarithms" msgstr " " #: ../src/wxMaximaFrame.cpp:530 msgid "Expand an expression" msgstr " " #: ../src/wxMaximaFrame.cpp:564 msgid "Expand trigonometric expression" msgstr " " #: ../src/wxMaxima.cpp:1951 #, fuzzy msgid "Export" msgstr "" #: ../src/wxMaximaFrame.cpp:209 #, fuzzy msgid "Export document to a HTML or pdfLaTeX file" msgstr " HTML-" #: ../src/wxMaxima.cpp:1970 msgid "Exporting to HTML failed!" msgstr " HTML !" #: ../src/wxMaxima.cpp:1965 msgid "Exporting to TeX failed!" msgstr " TeX !" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "():" #: ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 ../src/IntegrateWiz.cpp:36 #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 #: ../src/wxMaxima.cpp:2555 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 #: ../src/wxMaxima.cpp:3059 ../src/wxMaxima.cpp:3112 ../src/wxMaxima.cpp:3147 #: ../src/wxMaxima.cpp:3901 msgid "Expression:" msgstr ":" #: ../src/wxMaximaFrame.cpp:958 msgid "Factor" msgstr "" #: ../src/wxMaximaFrame.cpp:526 #, fuzzy msgid "Factor Complex" msgstr " " #: ../src/MathCtrl.cpp:705 #, fuzzy msgid "Factor Expression" msgstr " " #: ../src/wxMaximaFrame.cpp:525 msgid "Factor an expression" msgstr " " #: ../src/wxMaximaFrame.cpp:527 msgid "Factor an expression in Gaussian numbers" msgstr " " #: ../src/wxMaximaFrame.cpp:552 #, fuzzy msgid "Factorials and &Gamma" msgstr " -" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr " " #: ../src/GroupCell.cpp:1263 #, fuzzy, c-format msgid "Figure %d:" msgstr "" #: ../src/main.cpp:107 msgid "File" msgstr "" #: ../src/wxMaxima.cpp:4024 msgid "File not found" msgstr "" #: ../src/wxMaxima.cpp:4024 msgid "File you tried to open does not exist." msgstr "" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr ":" #: ../src/wxMaximaFrame.cpp:723 msgid "Find" msgstr "" #: ../src/wxMaximaFrame.cpp:248 #, fuzzy msgid "Find\tCtrl-F" msgstr "\tCtrl-C" #: ../src/wxMaximaFrame.cpp:477 #, fuzzy msgid "Find &Limit..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:480 #, fuzzy msgid "Find Minimum..." msgstr " &..." #: ../src/MathCtrl.cpp:702 #, fuzzy msgid "Find Root..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:481 #, fuzzy msgid "Find a (unconstrained) minimum of an expression" msgstr " " #: ../src/wxMaximaFrame.cpp:478 msgid "Find a limit of an expression" msgstr " " #: ../src/wxMaximaFrame.cpp:383 msgid "Find a root of an equation on an interval" msgstr " " #: ../src/wxMaximaFrame.cpp:385 msgid "Find all roots of a polynomial" msgstr " " #: ../src/wxMaximaFrame.cpp:388 #, fuzzy msgid "Find all roots of a polynomial (bfloat)" msgstr " " #: ../src/wxMaxima.cpp:2174 #, fuzzy msgid "Find and Replace" msgstr " " #: ../src/wxMaximaFrame.cpp:248 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:797 #, fuzzy msgid "Find and replace" msgstr " " #: ../src/wxMaximaFrame.cpp:446 msgid "Find eigenvalues of a matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:448 msgid "Find eigenvectors of a matrix" msgstr " " #: ../src/wxMaxima.cpp:3117 msgid "Find minimum" msgstr "" #: ../src/wxMaximaFrame.cpp:391 msgid "Find real roots of a polynomial" msgstr " " #: ../src/wxMaxima.cpp:2400 ../src/wxMaxima.cpp:3873 msgid "Find root" msgstr "" #: ../src/wxMaximaFrame.cpp:794 #, fuzzy msgid "Find..." msgstr " ..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr " " #: ../src/Config.cpp:130 #, fuzzy msgid "Font used for display in document." msgstr ", ." #: ../src/Config.cpp:131 #, fuzzy msgid "Font used for displaying math characters in document." msgstr " ." #: ../src/Config.cpp:330 msgid "Fonts" msgstr "" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr ":" #: ../src/Config.cpp:244 msgid "French" msgstr "" #: ../src/SumWiz.cpp:36 ../src/IntegrateWiz.cpp:43 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3147 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr ":" #: ../src/wxMaximaFrame.cpp:272 msgid "Full Screen\tAlt-Enter" msgstr "" #: ../src/wxMaxima.cpp:2281 msgid "Function" msgstr "" #: ../src/Config.cpp:354 msgid "Function names" msgstr " " #: ../src/wxMaxima.cpp:2540 msgid "Function(s):" msgstr ":" #: ../src/wxMaxima.cpp:2416 ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2710 #: ../src/wxMaxima.cpp:2743 msgid "Function:" msgstr ":" #: ../src/wxMaximaFrame.cpp:594 msgid "Functions for complex simplification" msgstr " " #: ../src/wxMaximaFrame.cpp:554 msgid "Functions for simplifying factorials and gamma function" msgstr " -" #: ../src/wxMaximaFrame.cpp:571 msgid "Functions for simplifying trigonometric expressions" msgstr " " #: ../src/wxMaxima.cpp:2953 msgid "GCD" msgstr "" #: ../src/wxMaxima.cpp:3986 msgid "GIF image (*.gif)|*.gif" msgstr "" #: ../src/wxMaximaFrame.cpp:133 #, fuzzy msgid "General Math" msgstr " " #: ../src/wxMaximaFrame.cpp:325 msgid "General Math\tAlt-Shift-M" msgstr "" #: ../src/wxMaxima.cpp:2673 ../src/wxMaxima.cpp:2692 msgid "Generate Matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:431 #, fuzzy msgid "Generate Matrix from Expression..." msgstr " &..." #: ../src/wxMaximaFrame.cpp:429 msgid "Generate a matrix from a 2-dimensional array" msgstr " " #: ../src/wxMaximaFrame.cpp:432 #, fuzzy msgid "Generate a matrix from a lambda expression" msgstr " " #: ../src/Config.cpp:245 msgid "German" msgstr "" #: ../src/wxMaximaFrame.cpp:583 #, fuzzy msgid "Get &Imaginary Part" msgstr " " #: ../src/wxMaximaFrame.cpp:483 #, fuzzy msgid "Get &Series..." msgstr " ... " #: ../src/wxMaximaFrame.cpp:494 msgid "Get Laplace transformation of an expression" msgstr " " #: ../src/wxMaximaFrame.cpp:580 #, fuzzy msgid "Get Real P&art" msgstr " " #: ../src/wxMaximaFrame.cpp:497 msgid "Get inverse Laplace transformation of an expression" msgstr " " #: ../src/wxMaximaFrame.cpp:484 msgid "Get the Taylor or power series of expression" msgstr " " #: ../src/wxMaximaFrame.cpp:584 msgid "Get the imaginary part of complex expression" msgstr " " #: ../src/wxMaximaFrame.cpp:581 msgid "Get the real part of complex expression" msgstr " " #: ../src/Config.cpp:246 #, fuzzy msgid "Greek" msgstr " " #: ../src/Config.cpp:356 msgid "Greek constants" msgstr " " #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr ":" #: ../src/wxMaxima.cpp:1953 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "HTML- (*.html)|*.html| pdfLaTeX (*.tex)|*.tex||*" #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Height:" msgstr ":" #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Help" msgstr "" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide All\tAlt-Shift--" msgstr "" #: ../src/wxMaximaFrame.cpp:323 msgid "Hide all panes" msgstr "" #: ../src/Config.cpp:362 #, fuzzy msgid "Highlight (dpart)" msgstr "" #: ../src/wxMaxima.cpp:3565 msgid "Histogram" msgstr "" #: ../src/wxMaximaFrame.cpp:1015 msgid "Histogram..." msgstr "" #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "" #: ../src/wxMaximaFrame.cpp:327 msgid "History\tAlt-Shift-H" msgstr "" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "" #: ../src/wxMaxima.cpp:2434 msgid "IC1" msgstr "1" #: ../src/wxMaxima.cpp:2450 msgid "IC2" msgstr "2" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" #: ../src/wxMaximaFrame.cpp:1055 #, fuzzy msgid "Image" msgstr "" #: ../src/wxMaxima.cpp:4180 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "" #: ../src/wxMaxima.cpp:3737 msgid "Include columns:" msgstr "" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "" #: ../src/wxMaximaFrame.cpp:653 #, fuzzy msgid "Info about Maxima build" msgstr " Maxima" #: ../src/wxMaxima.cpp:3114 msgid "Initial Estimates:" msgstr "" #: ../src/wxMaximaFrame.cpp:408 #, fuzzy msgid "Initial Value Problem (&1)..." msgstr " (&1) ..." #: ../src/wxMaximaFrame.cpp:411 #, fuzzy msgid "Initial Value Problem (&2)..." msgstr " (&2) ..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "" #: ../src/wxMaximaFrame.cpp:302 #, fuzzy msgid "Insert &Section Cell\tCtrl-3" msgstr " &\tCtrl-F6" #: ../src/wxMaximaFrame.cpp:298 #, fuzzy msgid "Insert &Text Cell\tCtrl-1" msgstr " &\tCtrl-F6" #: ../src/wxMaximaFrame.cpp:328 #, fuzzy msgid "Insert Cell\tAlt-Shift-C" msgstr " \tCtrl-Shift-R" #: ../src/wxMaxima.cpp:4178 #, fuzzy msgid "Insert Image" msgstr " " #: ../src/wxMaximaFrame.cpp:308 #, fuzzy msgid "Insert Image..." msgstr "..." #: ../src/wxMaximaFrame.cpp:296 #, fuzzy msgid "Insert Input &Cell" msgstr " &\tCtrl-F6" #: ../src/wxMaximaFrame.cpp:306 #, fuzzy msgid "Insert Page Break" msgstr " " #: ../src/wxMaximaFrame.cpp:304 #, fuzzy msgid "Insert S&ubsection Cell\tCtrl-4" msgstr " &\tCtrl-F6" #: ../src/MathCtrl.cpp:724 #, fuzzy msgid "Insert Section Cell" msgstr " &\tCtrl-F6" #: ../src/MathCtrl.cpp:725 #, fuzzy msgid "Insert Subsection Cell" msgstr " &\tCtrl-F6" #: ../src/wxMaximaFrame.cpp:300 #, fuzzy msgid "Insert T&itle Cell\tCtrl-2" msgstr " &\tCtrl-F6" #: ../src/MathCtrl.cpp:722 #, fuzzy msgid "Insert Text Cell" msgstr " &\tCtrl-F6" #: ../src/MathCtrl.cpp:723 #, fuzzy msgid "Insert Title Cell" msgstr " &\tCtrl-F6" #: ../src/wxMaximaFrame.cpp:297 #, fuzzy msgid "Insert a new input cell" msgstr " " #: ../src/wxMaximaFrame.cpp:303 #, fuzzy msgid "Insert a new section cell" msgstr " " #: ../src/wxMaximaFrame.cpp:305 #, fuzzy msgid "Insert a new subsection cell" msgstr " " #: ../src/wxMaximaFrame.cpp:299 #, fuzzy msgid "Insert a new text cell" msgstr " " #: ../src/wxMaximaFrame.cpp:301 #, fuzzy msgid "Insert a new title cell" msgstr " " #: ../src/wxMaximaFrame.cpp:307 #, fuzzy msgid "Insert a page break" msgstr " " #: ../src/wxMaximaFrame.cpp:309 #, fuzzy msgid "Insert image" msgstr " " #: ../src/wxMaxima.cpp:2899 msgid "Integral/Sum:" msgstr "/:" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3012 #: ../src/wxMaxima.cpp:3888 msgid "Integrate" msgstr "" #: ../src/wxMaxima.cpp:2998 msgid "Integrate (risch)" msgstr " ()" #: ../src/wxMaximaFrame.cpp:468 msgid "Integrate expression" msgstr " " #: ../src/wxMaximaFrame.cpp:470 msgid "Integrate expression with Risch algorithm" msgstr " " #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:969 msgid "Integrate..." msgstr "..." #: ../src/wxMaximaFrame.cpp:727 ../src/wxMaximaFrame.cpp:799 msgid "Interrupt" msgstr "" #: ../src/wxMaximaFrame.cpp:339 ../src/wxMaximaFrame.cpp:343 #: ../src/wxMaximaFrame.cpp:729 ../src/wxMaximaFrame.cpp:802 msgid "Interrupt current computation" msgstr " " #: ../src/Config.cpp:487 #, fuzzy msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" " maxima.\n" "\n" ", maxima ." #: ../src/wxMaxima.cpp:3044 msgid "Inverse Laplace" msgstr " " #: ../src/wxMaximaFrame.cpp:496 #, fuzzy msgid "Inverse Laplace T&ransform..." msgstr " ..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "" #: ../src/Config.cpp:383 msgid "Italic" msgstr "" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "" #: ../src/wxMaxima.cpp:2938 msgid "LCM" msgstr "" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr ", wxMaxima." #: ../src/Config.cpp:235 msgid "Language:" msgstr ":" #: ../src/wxMaxima.cpp:3027 msgid "Laplace" msgstr " " #: ../src/wxMaximaFrame.cpp:493 #, fuzzy msgid "Laplace &Transform..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:502 #, fuzzy msgid "Least Common Multiple..." msgstr " ..." #: ../src/wxMaxima.cpp:3689 msgid "Least Squares Fit" msgstr "" #: ../src/wxMaximaFrame.cpp:1011 msgid "Least Squares Fit..." msgstr "" #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3099 msgid "Limit" msgstr "" #: ../src/wxMaximaFrame.cpp:970 msgid "Limit..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:1010 #, fuzzy msgid "Linear Regression..." msgstr " " #: ../src/wxMaxima.cpp:2710 ../src/wxMaxima.cpp:2743 msgid "List:" msgstr ":" #: ../src/Config.cpp:386 msgid "Load" msgstr "" #: ../src/wxMaxima.cpp:1979 #, fuzzy msgid "Load Package" msgstr " \tCtrl-L" #: ../src/wxMaximaFrame.cpp:207 #, fuzzy msgid "Load a Maxima file using the batch command" msgstr " maxima batch" #: ../src/wxMaximaFrame.cpp:205 #, fuzzy msgid "Load a Maxima package file" msgstr " Maxima" #: ../src/Config.cpp:1070 #, fuzzy msgid "Load style from file" msgstr " " #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Lower bound:" msgstr " :" #: ../src/wxMaximaFrame.cpp:461 #, fuzzy msgid "Ma&p to Matrix..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:455 #, fuzzy msgid "Make &List..." msgstr " ..." #: ../src/wxMaxima.cpp:2728 msgid "Make list" msgstr " " #: ../src/wxMaximaFrame.cpp:456 msgid "Make list from expression" msgstr " " #: ../src/wxMaximaFrame.cpp:597 msgid "Make substitution in expression" msgstr " " #: ../src/wxMaxima.cpp:2712 msgid "Map" msgstr " " #: ../src/wxMaximaFrame.cpp:460 msgid "Map function to a list" msgstr " " #: ../src/wxMaximaFrame.cpp:462 msgid "Map function to a matrix" msgstr " " #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr " " #: ../src/Config.cpp:346 #, fuzzy msgid "Math font:" msgstr " :" #: ../src/wxMaxima.cpp:2623 msgid "Matrix" msgstr "" #: ../src/wxMaxima.cpp:2609 msgid "Matrix map" msgstr " " #: ../src/wxMaxima.cpp:3737 #, fuzzy msgid "Matrix name:" msgstr ":" #: ../src/wxMaxima.cpp:2607 ../src/wxMaxima.cpp:2656 msgid "Matrix:" msgstr ":" #: ../src/Config.cpp:98 #, fuzzy msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:638 #, fuzzy msgid "Maxima &Help\tF1" msgstr " Maxima\tF1" #: ../src/Config.cpp:358 #, fuzzy msgid "Maxima input" msgstr " wxMaxima" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "Maxima " #: ../src/wxMaxima.cpp:1992 msgid "Maxima package (*.mac)|*.mac" msgstr " Maxima (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1981 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr " Maxima (*.mac)|*.mac| Lisp (*.lisp)|*.lisp||*" #: ../src/wxMaxima.cpp:773 msgid "Maxima process terminated." msgstr " Maxima ." #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr " Maxima:" #: ../src/Config.cpp:360 #, fuzzy msgid "Maxima questions" msgstr " Maxima" #: ../src/wxMaxima.cpp:728 msgid "Maxima started. Waiting for connection..." msgstr "Maxima . ..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima ':' ('a : 3;') ':=' " " ('f(x) := x^2;')." #: ../src/wxMaxima.cpp:3484 #, fuzzy msgid "Maxima version: " msgstr " Maxima" #: ../src/wxMaximaFrame.cpp:1008 #, fuzzy msgid "Mean Difference Test..." msgstr "..." #: ../src/wxMaximaFrame.cpp:1007 #, fuzzy msgid "Mean Test..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:1000 #, fuzzy msgid "Mean..." msgstr " ..." #: ../src/wxMaxima.cpp:3642 msgid "Mean:" msgstr "" #: ../src/wxMaximaFrame.cpp:1001 #, fuzzy msgid "Median..." msgstr " ..." #: ../src/MathCtrl.cpp:684 #, fuzzy msgid "Merge Cells" msgstr "& " #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr ":" #: ../src/wxMaxima.cpp:2879 msgid "Modulus" msgstr "" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Name:" msgstr "" #: ../src/wxMaximaFrame.cpp:693 ../src/wxMaximaFrame.cpp:756 msgid "New" msgstr "" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 #, fuzzy msgid "New\tCtrl-N" msgstr "\tCtrl-N " #: ../src/wxMaximaFrame.cpp:695 ../src/wxMaximaFrame.cpp:759 #, fuzzy msgid "New document" msgstr " " #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr " :" #: ../src/wxMaxima.cpp:2900 ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3043 msgid "New variable:" msgstr " :" #: ../src/wxMaximaFrame.cpp:313 msgid "Next Command\tAlt-Down" msgstr "" #: ../src/wxMaxima.cpp:2202 ../src/wxMaxima.cpp:2218 msgid "No matches found!" msgstr "" #: ../src/wxMaximaFrame.cpp:1009 #, fuzzy msgid "Normality Test..." msgstr " ..." #: ../src/wxMaxima.cpp:2635 msgid "Not a valid matrix dimension!" msgstr " !" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2524 msgid "Not a valid number of equations!" msgstr " !" #: ../src/wxMaxima.cpp:3486 msgid "Not connected." msgstr "" #: ../src/wxMaxima.cpp:2917 msgid "Num. deg:" msgstr " :" #: ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:2516 msgid "Number of equations:" msgstr " :" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "" #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/LimitWiz.cpp:50 #: ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 msgid "OK" msgstr "OK" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr " :" #: ../src/wxMaxima.cpp:2899 ../src/wxMaxima.cpp:3025 ../src/wxMaxima.cpp:3042 msgid "Old variable:" msgstr " :" #: ../src/wxMaxima.cpp:3643 #, fuzzy msgid "One sample t-test" msgstr " " #: ../src/wxMaximaFrame.cpp:650 #, fuzzy msgid "Online tutorials" msgstr " " #: ../src/wxMaximaFrame.cpp:697 ../src/wxMaximaFrame.cpp:761 #: ../src/main.cpp:202 ../src/Config.cpp:306 ../src/wxMaxima.cpp:1926 msgid "Open" msgstr "" #: ../src/wxMaximaFrame.cpp:194 #, fuzzy msgid "Open Recent" msgstr " " #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 #, fuzzy msgid "Open a document" msgstr " " #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "" #: ../src/wxMaximaFrame.cpp:699 ../src/wxMaximaFrame.cpp:764 #, fuzzy msgid "Open document" msgstr " " #: ../src/wxMaxima.cpp:3704 #, fuzzy msgid "Open matrix" msgstr " " #: ../src/wxMaxima.cpp:962 ../src/wxMaxima.cpp:1029 #, fuzzy msgid "Opening file" msgstr " " #: ../src/wxMaximaFrame.cpp:709 ../src/wxMaximaFrame.cpp:776 #: ../src/Config.cpp:97 msgid "Options" msgstr "" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr ":" #: ../src/Config.cpp:373 #, fuzzy msgid "Outdated cells" msgstr " " #: ../src/Config.cpp:361 msgid "Output labels" msgstr "" #: ../src/wxMaximaFrame.cpp:486 #, fuzzy msgid "P&ade Approximation..." msgstr " ..." #: ../src/wxMaxima.cpp:2091 ../src/wxMaxima.cpp:3970 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows bitmap " "(*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2919 msgid "Pade approximation" msgstr " " #: ../src/wxMaximaFrame.cpp:487 msgid "Pade approximation of a Taylor series" msgstr "- " #: ../src/wxMaximaFrame.cpp:1056 msgid "Pagebreak" msgstr "" #: ../src/wxMaximaFrame.cpp:331 msgid "Panes" msgstr "" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr " " #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr " " #: ../src/wxMaximaFrame.cpp:509 #, fuzzy msgid "Partial &Fractions..." msgstr " ..." #: ../src/wxMaxima.cpp:2983 msgid "Partial fractions" msgstr " " #: ../src/wxMaxima.cpp:1152 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:719 ../src/wxMaximaFrame.cpp:789 msgid "Paste" msgstr "" #: ../src/wxMaximaFrame.cpp:243 msgid "Paste\tCtrl-V" msgstr "\tCtrl-V" #: ../src/wxMaximaFrame.cpp:721 ../src/wxMaximaFrame.cpp:792 #, fuzzy msgid "Paste from clipboard" msgstr " " #: ../src/wxMaximaFrame.cpp:244 msgid "Paste text from clipboard" msgstr " " #: ../src/wxMaximaFrame.cpp:1018 msgid "Piechart..." msgstr "" #: ../src/wxMaxima.cpp:1424 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr " wxMaxima '->'." #: ../src/Config.cpp:932 msgid "Please restart wxMaxima for changes to take effect!" msgstr " wxMaxima, !" #: ../src/wxMaximaFrame.cpp:613 #, fuzzy msgid "Plot &2d..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:615 #, fuzzy msgid "Plot &3d..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:617 #, fuzzy msgid "Plot &Format..." msgstr " ..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3939 ../src/Plot2dWiz.cpp:116 #: ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 msgid "Plot 2D" msgstr " " #: ../src/wxMaximaFrame.cpp:972 msgid "Plot 2D..." msgstr " ..." #: ../src/MathCtrl.cpp:712 #, fuzzy msgid "Plot 2d..." msgstr " ..." #: ../src/wxMaxima.cpp:3176 ../src/wxMaxima.cpp:3952 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr " " #: ../src/wxMaximaFrame.cpp:973 msgid "Plot 3D..." msgstr " ..." #: ../src/MathCtrl.cpp:713 #, fuzzy msgid "Plot 3d..." msgstr " ..." #: ../src/wxMaxima.cpp:3203 msgid "Plot format" msgstr " " #: ../src/wxMaximaFrame.cpp:614 msgid "Plot in 2 dimensions" msgstr " " #: ../src/wxMaximaFrame.cpp:616 msgid "Plot in 3 dimensions" msgstr " " #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr " :" #: ../src/LimitWiz.cpp:32 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 #: ../src/wxMaxima.cpp:2555 msgid "Point:" msgstr ":" #: ../src/Config.cpp:250 msgid "Polish" msgstr "" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 1:" msgstr " 1:" #: ../src/wxMaxima.cpp:2936 ../src/wxMaxima.cpp:2951 ../src/wxMaxima.cpp:2966 msgid "Polynomial 2:" msgstr " 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr " ()" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr " Postscript (*.eps)|*.eps||*" #: ../src/wxMaxima.cpp:3242 msgid "Precision" msgstr "" #: ../src/wxMaximaFrame.cpp:311 msgid "Previous Command\tAlt-Up" msgstr "" #: ../src/wxMaximaFrame.cpp:705 ../src/wxMaximaFrame.cpp:771 msgid "Print" msgstr "" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:707 #: ../src/wxMaximaFrame.cpp:774 msgid "Print document" msgstr " " #: ../src/wxMaxima.cpp:3149 msgid "Product" msgstr "" #: ../src/wxMaximaFrame.cpp:1023 #, fuzzy msgid "Read Matrix..." msgstr "& ..." #: ../src/wxMaxima.cpp:549 #, fuzzy msgid "Reading Maxima output" msgstr " Maxima" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:819 ../src/wxMaxima.cpp:952 #: ../src/wxMaxima.cpp:974 ../src/wxMaxima.cpp:985 ../src/wxMaxima.cpp:1022 #: ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 ../src/wxMaxima.cpp:1078 #: ../src/wxMaxima.cpp:1124 ../src/wxMaxima.cpp:1344 ../src/wxMaxima.cpp:1365 msgid "Ready for user input" msgstr " " #: ../src/wxMaximaFrame.cpp:314 msgid "Recall next command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:312 msgid "Recall previous command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:960 msgid "Rectform" msgstr ". " #: ../src/wxMaximaFrame.cpp:965 msgid "Reduce (tr)" msgstr " (.)" #: ../src/wxMaximaFrame.cpp:561 msgid "Reduce trigonometric expression" msgstr " " #: ../src/wxMaximaFrame.cpp:286 msgid "Remove All Output" msgstr "" #: ../src/wxMaximaFrame.cpp:287 msgid "Remove output from input cells" msgstr "" #: ../src/wxMaxima.cpp:2225 #, c-format msgid "Replaced %d occurences." msgstr "" #: ../src/wxMaximaFrame.cpp:655 msgid "Report bug" msgstr " " #: ../src/wxMaximaFrame.cpp:346 #, fuzzy msgid "Restart Maxima" msgstr " Maxima" #: ../src/wxMaximaFrame.cpp:469 #, fuzzy msgid "Risch Integration..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:384 #, fuzzy msgid "Roots of &Polynomial" msgstr " " #: ../src/wxMaximaFrame.cpp:387 #, fuzzy msgid "Roots of Polynomial (bfloat)" msgstr " ()" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr ":" #: ../src/Config.cpp:252 msgid "Russian" msgstr "" #: ../src/wxMaxima.cpp:3656 #, fuzzy msgid "Sample 1:" msgstr "" #: ../src/wxMaxima.cpp:3656 #, fuzzy msgid "Sample 2:" msgstr "" #: ../src/wxMaxima.cpp:3642 #, fuzzy msgid "Sample:" msgstr "" #: ../src/wxMaximaFrame.cpp:700 ../src/wxMaximaFrame.cpp:765 #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4419 msgid "Save" msgstr "" #: ../src/MathCtrl.cpp:663 #, fuzzy msgid "Save Animation..." msgstr " ..." #: ../src/wxMaxima.cpp:1840 #, fuzzy msgid "Save As" msgstr " " #: ../src/wxMaximaFrame.cpp:202 #, fuzzy msgid "Save As...\tShift-Ctrl-S" msgstr "\tCtrl-S" #: ../src/MathCtrl.cpp:661 #, fuzzy msgid "Save Image..." msgstr " " #: ../src/wxMaxima.cpp:2089 #, fuzzy msgid "Save Selection to Image" msgstr " " #: ../src/wxMaximaFrame.cpp:253 #, fuzzy msgid "Save Selection to Image..." msgstr " " #: ../src/wxMaxima.cpp:3984 #, fuzzy msgid "Save animation to file" msgstr " " #: ../src/wxMaxima.cpp:4431 msgid "Save changes before closing?" msgstr "" #: ../src/wxMaxima.cpp:4432 #, fuzzy msgid "Save changes?" msgstr " " #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:702 #: ../src/wxMaximaFrame.cpp:768 #, fuzzy msgid "Save document" msgstr " ?" #: ../src/wxMaximaFrame.cpp:203 #, fuzzy msgid "Save document as" msgstr " ?" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "" #: ../src/Config.cpp:125 #, fuzzy msgid "Save panes layout between sessions." msgstr " wxMaxima " #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr " " #: ../src/wxMaximaFrame.cpp:254 #, fuzzy msgid "Save selection from document to an image file" msgstr " " #: ../src/wxMaxima.cpp:3968 msgid "Save selection to file" msgstr " " #: ../src/Config.cpp:1062 #, fuzzy msgid "Save style to file" msgstr " " #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr " wxMaxima" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr " wxMaxima " #: ../src/wxMaxima.cpp:3579 msgid "Scatterplot" msgstr "" #: ../src/wxMaximaFrame.cpp:1016 msgid "Scatterplot..." msgstr "" #: ../src/wxMaximaFrame.cpp:1054 #, fuzzy msgid "Section" msgstr " " #: ../src/Config.cpp:365 #, fuzzy msgid "Section cell" msgstr " ӣ" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 #, fuzzy msgid "Select All" msgstr " ӣ" #: ../src/wxMaximaFrame.cpp:250 #, fuzzy msgid "Select All\tCtrl-A" msgstr " ӣ\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 #, fuzzy msgid "Select Maxima program" msgstr " Maxima" #: ../src/wxMaxima.cpp:3740 #, fuzzy msgid "Select Subsample" msgstr " ӣ" #: ../src/LimitWiz.cpp:134 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr " " #: ../src/wxMaximaFrame.cpp:251 msgid "Select all" msgstr " ӣ" #: ../src/wxMaxima.cpp:2258 msgid "Select math display algorithm" msgstr " " #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" #: ../src/Config.cpp:372 #, fuzzy msgid "Selection" msgstr " " #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3085 msgid "Series" msgstr "" #: ../src/wxMaximaFrame.cpp:971 msgid "Series..." msgstr "..." #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr " ..." #: ../src/wxMaximaFrame.cpp:631 #, fuzzy msgid "Set &Precision..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:271 #, fuzzy msgid "Set Zoom" msgstr " " #: ../src/wxMaximaFrame.cpp:632 #, fuzzy msgid "Set bigfloat precision" msgstr " " #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr " ." #: ../src/wxMaximaFrame.cpp:618 msgid "Set plot format" msgstr " " #: ../src/wxMaximaFrame.cpp:265 msgid "Set zoom to 100%" msgstr "" #: ../src/wxMaximaFrame.cpp:266 msgid "Set zoom to 120%" msgstr "" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 150%" msgstr "" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 200%" msgstr "" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 300%" msgstr "" #: ../src/wxMaximaFrame.cpp:264 msgid "Set zoom to 80%" msgstr "" #: ../src/wxMaximaFrame.cpp:422 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr " " #: ../src/wxMaximaFrame.cpp:608 msgid "Setup modulus computation" msgstr " " #: ../src/wxMaximaFrame.cpp:355 #, fuzzy msgid "Show &Definition..." msgstr " " #: ../src/wxMaximaFrame.cpp:353 #, fuzzy msgid "Show &Functions" msgstr " " #: ../src/wxMaximaFrame.cpp:646 #, fuzzy msgid "Show &Tips..." msgstr " " #: ../src/wxMaximaFrame.cpp:358 #, fuzzy msgid "Show &Variables" msgstr " " #: ../src/wxMaximaFrame.cpp:639 ../src/wxMaximaFrame.cpp:744 #: ../src/wxMaximaFrame.cpp:818 #, fuzzy msgid "Show Maxima help" msgstr " Maxima" #: ../src/wxMaximaFrame.cpp:293 #, fuzzy msgid "Show Template\tCtrl-Shift-K" msgstr " \tCtrl-Shift-R" #: ../src/wxMaximaFrame.cpp:647 msgid "Show a tip" msgstr " " #: ../src/wxMaxima.cpp:3520 msgid "Show all commands similar to:" msgstr " , :" #: ../src/wxMaxima.cpp:3507 msgid "Show an example for the command:" msgstr " :" #: ../src/wxMaximaFrame.cpp:641 msgid "Show an example of usage" msgstr " " #: ../src/wxMaximaFrame.cpp:644 msgid "Show commands similar to" msgstr " , " #: ../src/wxMaximaFrame.cpp:354 msgid "Show defined functions" msgstr " " #: ../src/wxMaximaFrame.cpp:359 msgid "Show defined variables" msgstr " " #: ../src/wxMaximaFrame.cpp:356 msgid "Show definition of a function" msgstr " " #: ../src/wxMaximaFrame.cpp:294 #, fuzzy msgid "Show function template" msgstr " " #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr " " #: ../src/Config.cpp:127 #, fuzzy msgid "Show long expressions in wxMaxima document." msgstr " wxMaxima." #: ../src/wxMaxima.cpp:2280 msgid "Show the definition of function:" msgstr " :" #: ../src/wxMaximaFrame.cpp:956 msgid "Simplify" msgstr "" #: ../src/wxMaximaFrame.cpp:521 #, fuzzy msgid "Simplify &Radicals" msgstr " " #: ../src/wxMaximaFrame.cpp:957 msgid "Simplify (r)" msgstr " (.)" #: ../src/wxMaximaFrame.cpp:963 msgid "Simplify (tr)" msgstr " (.)" #: ../src/MathCtrl.cpp:704 #, fuzzy msgid "Simplify Expression" msgstr " " #: ../src/wxMaximaFrame.cpp:547 msgid "Simplify an expression containing factorials" msgstr " " #: ../src/wxMaximaFrame.cpp:522 msgid "Simplify expression containing radicals" msgstr " " #: ../src/wxMaximaFrame.cpp:520 msgid "Simplify rational expression" msgstr " " #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr " " #: ../src/wxMaximaFrame.cpp:558 msgid "Simplify trigonometric expression" msgstr " " #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2447 msgid "Solution:" msgstr ":" #: ../src/wxMaxima.cpp:2368 ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:3857 msgid "Solve" msgstr "" #: ../src/wxMaximaFrame.cpp:396 #, fuzzy msgid "Solve &Algebraic System..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:393 #, fuzzy msgid "Solve &Linear System..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:404 #, fuzzy msgid "Solve &ODE..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:380 #, fuzzy msgid "Solve (to_poly)..." msgstr " ..." #: ../src/wxMaxima.cpp:2418 ../src/wxMaxima.cpp:2542 msgid "Solve ODE" msgstr " " #: ../src/wxMaximaFrame.cpp:418 #, fuzzy msgid "Solve ODE with Lapla&ce..." msgstr " ..." #: ../src/wxMaximaFrame.cpp:967 msgid "Solve ODE..." msgstr " ..." #: ../src/wxMaxima.cpp:2493 ../src/wxMaxima.cpp:2504 msgid "Solve algebraic system" msgstr " " #: ../src/wxMaximaFrame.cpp:397 msgid "Solve algebraic system of equations" msgstr " " #: ../src/wxMaximaFrame.cpp:415 msgid "Solve boundary value problem for second degree ODE" msgstr " " #: ../src/wxMaximaFrame.cpp:379 msgid "Solve equation(s)" msgstr " ()" #: ../src/wxMaximaFrame.cpp:381 #, fuzzy msgid "Solve equation(s) with to_poly_solver" msgstr " ()" #: ../src/wxMaximaFrame.cpp:409 msgid "Solve initial value problem for first degree ODE" msgstr " " #: ../src/wxMaximaFrame.cpp:412 msgid "Solve initial value problem for second degree ODE" msgstr " " #: ../src/wxMaxima.cpp:2517 ../src/wxMaxima.cpp:2528 msgid "Solve linear system" msgstr " " #: ../src/wxMaximaFrame.cpp:394 msgid "Solve linear system of equations" msgstr " " #: ../src/wxMaximaFrame.cpp:405 msgid "Solve ordinary differential equation of maximum degree 2" msgstr " " #: ../src/wxMaximaFrame.cpp:419 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "" " " "" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:966 msgid "Solve..." msgstr "..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "" #: ../src/LimitWiz.cpp:35 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "" #: ../src/Config.cpp:355 msgid "Special constants" msgstr " " #: ../src/MathCtrl.cpp:664 #, fuzzy msgid "Start Animation" msgstr " " #: ../src/wxMaximaFrame.cpp:731 ../src/wxMaximaFrame.cpp:733 msgid "Start animation" msgstr " " #: ../src/wxMaxima.cpp:264 #, fuzzy msgid "Starting Maxima process failed" msgstr " Maxima" #: ../src/wxMaxima.cpp:725 #, fuzzy msgid "Starting Maxima..." msgstr " Maxima..." #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr " " #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr " %d" #: ../src/wxMaximaFrame.cpp:123 #, fuzzy msgid "Statistics" msgstr "" #: ../src/wxMaximaFrame.cpp:326 msgid "Statistics\tAlt-Shift-S" msgstr "" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:807 msgid "Stop animation" msgstr "" #: ../src/Config.cpp:357 msgid "Strings" msgstr "" #: ../src/Config.cpp:99 msgid "Style" msgstr "" #: ../src/Config.cpp:331 msgid "Styles" msgstr "" #: ../src/wxMaximaFrame.cpp:1028 #, fuzzy msgid "Subsample..." msgstr "" #: ../src/wxMaximaFrame.cpp:1053 #, fuzzy msgid "Subsection" msgstr " " #: ../src/Config.cpp:364 #, fuzzy msgid "Subsection cell" msgstr " ӣ" #: ../src/wxMaximaFrame.cpp:961 #, fuzzy msgid "Subst..." msgstr "..." #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2330 #: ../src/wxMaxima.cpp:3926 msgid "Substitute" msgstr "" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:596 msgid "Substitute..." msgstr "..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3133 msgid "Sum" msgstr "" #: ../src/wxMaxima.cpp:3356 msgid "System info" msgstr "" #: ../src/wxMaxima.cpp:2917 msgid "Taylor series:" msgstr " :" #: ../src/wxMaxima.cpp:2870 msgid "Tellrat" msgstr "Tellrat" #: ../src/wxMaximaFrame.cpp:1051 msgid "Text" msgstr "" #: ../src/Config.cpp:363 #, fuzzy msgid "Text cell" msgstr "& " #: ../src/Config.cpp:367 #, fuzzy msgid "Text cell background" msgstr " " #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr ", Maxima wxMaxima." #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" " XML!\n" "\n" ", ." #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr " :" #: ../src/wxMaxima.cpp:3060 ../src/wxMaxima.cpp:3902 msgid "Times:" msgstr ":" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr " , !" #: ../src/wxMaximaFrame.cpp:1052 #, fuzzy msgid "Title" msgstr "" #: ../src/Config.cpp:366 #, fuzzy msgid "Title cell" msgstr " " #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" #: ../src/wxMaximaFrame.cpp:628 #, fuzzy msgid "To &Bigfloat" msgstr " " #: ../src/wxMaximaFrame.cpp:625 #, fuzzy msgid "To &Float" msgstr " " #: ../src/MathCtrl.cpp:699 #, fuzzy msgid "To Float" msgstr " " #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" " , ' " "' ' '. " " ." #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" " wxMaxima " " '->'" #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" #: ../src/SumWiz.cpp:39 ../src/IntegrateWiz.cpp:47 ../src/wxMaxima.cpp:2726 #: ../src/wxMaxima.cpp:3148 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr ":" #: ../src/wxMaximaFrame.cpp:602 #, fuzzy msgid "Toggle &Algebraic Flag" msgstr " algebraic" #: ../src/wxMaximaFrame.cpp:623 #, fuzzy msgid "Toggle &Numeric Output" msgstr " numeric" #: ../src/wxMaximaFrame.cpp:366 #, fuzzy msgid "Toggle &Time Display" msgstr " " #: ../src/wxMaximaFrame.cpp:603 msgid "Toggle algebraic flag" msgstr " algebraic" #: ../src/wxMaximaFrame.cpp:273 msgid "Toggle full screen editing" msgstr "" #: ../src/wxMaximaFrame.cpp:624 msgid "Toggle numeric output" msgstr " " #: ../src/wxMaximaFrame.cpp:330 msgid "Toolbar\tAlt-Shift-T" msgstr "" #: ../src/wxMaxima.cpp:3368 msgid "Toolbar icons" msgstr "" #: ../src/wxMaxima.cpp:3369 #, fuzzy msgid "Translated by" msgstr "-" #: ../src/wxMaximaFrame.cpp:453 msgid "Transpose a matrix" msgstr " " #: ../src/wxMaximaFrame.cpp:649 msgid "Tutorials" msgstr "" #: ../src/wxMaxima.cpp:3658 #, fuzzy msgid "Two sample t-test" msgstr " " #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr ":" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "" #: ../src/wxMaximaFrame.cpp:223 #, fuzzy msgid "Undo\tCtrl-Z" msgstr "\tCtrl-C" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "" #: ../src/wxMaxima.cpp:3358 msgid "Unicode Support" msgstr "" #: ../src/wxMaxima.cpp:4351 ../src/wxMaxima.cpp:4358 msgid "Upgrade" msgstr "" #: ../src/wxMaxima.cpp:2398 ../src/wxMaxima.cpp:3871 msgid "Upper bound:" msgstr " :" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr " " #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2432 #: ../src/wxMaxima.cpp:2448 ../src/wxMaxima.cpp:2556 msgid "Value:" msgstr ":" #: ../src/wxMaxima.cpp:2367 ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:3059 #: ../src/wxMaxima.cpp:3856 ../src/wxMaxima.cpp:3901 msgid "Variable(s):" msgstr ":" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/IntegrateWiz.cpp:39 #: ../src/SeriesWiz.cpp:35 ../src/wxMaxima.cpp:2397 ../src/wxMaxima.cpp:2416 #: ../src/wxMaxima.cpp:2656 ../src/wxMaxima.cpp:2725 ../src/wxMaxima.cpp:2981 #: ../src/wxMaxima.cpp:2996 ../src/wxMaxima.cpp:3147 ../src/wxMaxima.cpp:3870 #: ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 #: ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr ":" #: ../src/Config.cpp:352 msgid "Variables" msgstr "" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2478 ../src/wxMaxima.cpp:3113 #: ../src/wxMaxima.cpp:3687 msgid "Variables:" msgstr ":" #: ../src/wxMaximaFrame.cpp:1002 #, fuzzy msgid "Variance..." msgstr ":" #: ../src/wxMaxima.cpp:1085 ../src/wxMaxima.cpp:1152 ../src/wxMaxima.cpp:1422 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr " wxMaxima" #: ../data/tips.txt:20 #, fuzzy msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" " , " " '%'. , " " ţ . " " ()." #: ../src/wxMaxima.cpp:2671 ../src/wxMaxima.cpp:2690 msgid "Width:" msgstr ":" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr " ." #: ../src/wxMaxima.cpp:3365 msgid "Written by" msgstr "" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" " '%'. " " '%on', n - " "." #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" #: ../src/wxMaxima.cpp:4348 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" #: ../src/wxMaxima.cpp:4418 ../src/wxMaxima.cpp:4425 msgid "Your changes will be lost if you don't save them." msgstr "" #: ../src/wxMaxima.cpp:4358 msgid "Your version of wxMaxima is up to date." msgstr "" #: ../src/wxMaximaFrame.cpp:258 #, fuzzy msgid "Zoom &In\tAlt-I" msgstr "\tAlt-I" #: ../src/wxMaximaFrame.cpp:260 #, fuzzy msgid "Zoom Ou&t\tAlt-O" msgstr "\tAlt-O" #: ../src/wxMaximaFrame.cpp:259 msgid "Zoom in 10%" msgstr "" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom out 10%" msgstr "" #: ../src/wxMaxima.cpp:2116 ../src/wxMaxima.cpp:2124 msgid "Zoom set to " msgstr "" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 msgid "[ unsaved ]" msgstr "[ ]" #: ../src/wxMaxima.cpp:4213 msgid "[ unsaved* ]" msgstr "[ * ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr " " #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "" #: ../src/EditorCell.cpp:332 msgid "lines hidden" msgstr "" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "" #: ../src/wxMaxima.cpp:2690 #, fuzzy msgid "matrix[i,j]:" msgstr " :" #: ../src/wxMaxima.cpp:3429 msgid "no" msgstr "" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "" #: ../src/wxMaxima.cpp:4403 #, fuzzy msgid "unsaved" msgstr "[ ]" #: ../src/wxMaximaFrame.cpp:95 ../src/wxMaxima.cpp:1835 #: ../src/wxMaxima.cpp:1948 msgid "untitled" msgstr " " #: ../src/main.cpp:182 #, fuzzy, c-format msgid "untitled %d" msgstr " " #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3440 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaximaFrame.cpp:93 ../src/wxMaxima.cpp:4211 #: ../src/wxMaxima.cpp:4213 ../src/wxMaxima.cpp:4222 ../src/wxMaxima.cpp:4225 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s" #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr " wxMaxima" #: ../src/wxMaxima.cpp:1420 #, fuzzy msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima maxima!\n" "\n" " '->' Maxima , " " 'Maxima-> Maxima'" #: ../src/wxMaxima.cpp:1593 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima .\n" "\n" " ." #: ../src/wxMaxima.cpp:1497 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima .\n" "\n" " ." #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima .\n" "\n" " \n" " !" #: ../data/tips.txt:18 #, fuzzy msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" " wxMaxima , " " '%'. , " " ." #: ../src/wxMaxima.cpp:1675 #, fuzzy msgid "wxMaxima document" msgstr " wxMaxima" #: ../src/wxMaxima.cpp:1842 #, fuzzy msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr " wxMaxima (*.wxm)|*.wxm| Maxima (*.mac)|*.mac||*" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1928 #, fuzzy msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr " wxMaxima (*.wxm)|*.wxm" #: ../src/wxMaxima.cpp:973 ../src/wxMaxima.cpp:984 ../src/wxMaxima.cpp:1043 #: ../src/wxMaxima.cpp:1055 msgid "wxMaxima encountered an error loading " msgstr "" #: ../src/wxMaxima.cpp:3367 #, fuzzy msgid "wxMaxima icon" msgstr " wxMaxima" #: ../src/wxMaxima.cpp:3355 #, fuzzy msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" "wxMaxima - " "Maxima, wxWidgets." #: ../src/wxMaxima.cpp:3421 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" "wxMaxima - " "Maxima, wxWidgets." #: ../src/wxMaxima.cpp:3427 #, fuzzy msgid "yes" msgstr "" #, fuzzy #~ msgid "&New Window\tCtrl-N" #~ msgstr "\tCtrl-N " #~ msgid "Close document?" #~ msgstr " ?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ " !\n" #~ "\n" #~ " ?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ " !\n" #~ "\n" #~ " wxMaxima ?" #~ msgid "Maxima options" #~ msgstr " Maxima" #~ msgid "Quit?" #~ msgstr "?" #~ msgid "wxMaxima options" #~ msgstr " wxMaxima" #~ msgid "" #~ "wxMaxima is a graphical user interface for the\n" #~ "computer algebra system Maxima based on wxWidgets." #~ msgstr "" #~ "wxMaxima - \n" #~ " Maxima, wxWidgets." #, fuzzy #~ msgid "<< Nothing to display >>" #~ msgstr " << ! >>" #, fuzzy #~ msgid "Functions and macros" #~ msgstr " " #, fuzzy #~ msgid "Inspector" #~ msgstr "" #~ msgid "Labels" #~ msgstr "" #, fuzzy #~ msgid "Copy selection to clipboard when selection is made in document." #~ msgstr "" #~ " ." #~ msgid "Copy to clipboard on select" #~ msgstr " " #~ msgid "Input" #~ msgstr "" #~ msgid "Show Maxima header" #~ msgstr " Maxima" #~ msgid "Show initial header with Maxima system information." #~ msgstr " Maxima." #~ msgid "Adjustment for the size of greek font." #~ msgstr " ." #~ msgid "Adjustment:" #~ msgstr ":" #~ msgid "Basic" #~ msgstr "" #~ msgid "Button panel:" #~ msgstr ":" #, fuzzy #~ msgid "Copy selected cell(s)" #~ msgstr " " #, fuzzy #~ msgid "Cut Cell(s)\tCtrl-Shift-X" #~ msgstr " \tCtrl-Shift-R" #~ msgid "Decrease fontsize in document" #~ msgstr " " #, fuzzy #~ msgid "Delete selected cell(s)" #~ msgstr " " #~ msgid "Delete selection" #~ msgstr " " #, fuzzy #~ msgid "Font used for displaying unicode glyphs in document." #~ msgstr " ." #~ msgid "Full" #~ msgstr "" #~ msgid "Increase fontsize in document" #~ msgstr " " #, fuzzy #~ msgid "Insert input cell" #~ msgstr " " #~ msgid "Insert input group" #~ msgstr " " #~ msgid "Insert text" #~ msgstr " " #, fuzzy #~ msgid "New T&itle Cell\tCtrl-Shift-F6" #~ msgstr " &\tCtrl-Shift-F6" #~ msgid "Off" #~ msgstr "" #, fuzzy #~ msgid "Paste cell(s) to document" #~ msgstr " " #~ msgid "Product..." #~ msgstr " ..." #~ msgid "Select file to open" #~ msgstr " " #~ msgid "Sum..." #~ msgstr "..." #, fuzzy #~ msgid "To &Float\tCtrl-F" #~ msgstr " \tCtrl-F" #~ msgid "Unicode glyphs:" #~ msgstr " :" #~ msgid "Use greek font to display greek characters." #~ msgstr " " #~ msgid "Use greek font:" #~ msgstr " :" #~ msgid "untitled.wxm" #~ msgstr "untitled.wxm" #~ msgid "wxMaxima session (*.wxm)|*.wxm" #~ msgstr " wxMaxima (*.wxm)|*.wxm" #~ msgid "aquamarine" #~ msgstr "" #~ msgid "black" #~ msgstr "" #~ msgid "blue" #~ msgstr "" #~ msgid "blue violet" #~ msgstr "-" #~ msgid "brown" #~ msgstr "" #~ msgid "cadet blue" #~ msgstr " " #~ msgid "coral" #~ msgstr "" #~ msgid "cornflower blue" #~ msgstr "" #~ msgid "cyan" #~ msgstr "" #~ msgid "dark green" #~ msgstr "-" #~ msgid "dark grey" #~ msgstr "-" #~ msgid "dark olive green" #~ msgstr "-" #~ msgid "dark orchid" #~ msgstr " " #~ msgid "dark slate blue" #~ msgstr " -" #~ msgid "dark slate grey" #~ msgstr " " #~ msgid "dark turquoise" #~ msgstr "-" #~ msgid "dim grey" #~ msgstr "-" #~ msgid "firebrick" #~ msgstr "" #~ msgid "forest green" #~ msgstr " " #~ msgid "gold" #~ msgstr "" #~ msgid "goldenrod" #~ msgstr "" #~ msgid "green" #~ msgstr "" #~ msgid "green yellow" #~ msgstr "-" #~ msgid "grey" #~ msgstr "" #~ msgid "khaki" #~ msgstr "" #~ msgid "light blue" #~ msgstr "-" #~ msgid "light grey" #~ msgstr "-" #~ msgid "light steel blue" #~ msgstr "-" #~ msgid "lime green" #~ msgstr " " #~ msgid "maroon" #~ msgstr "" #~ msgid "medium aquamarine" #~ msgstr " " #~ msgid "medium blue" #~ msgstr " " #~ msgid "medium forrest green" #~ msgstr " " #~ msgid "medium goldenrod" #~ msgstr " " #~ msgid "medium orchid" #~ msgstr " " #~ msgid "medium sea green" #~ msgstr " " #~ msgid "medium slate blue" #~ msgstr " -" #~ msgid "medium spring green" #~ msgstr " " #~ msgid "medium turquoise" #~ msgstr " " #~ msgid "medium violet red" #~ msgstr " -" #~ msgid "midnight blue" #~ msgstr " " #~ msgid "navy" #~ msgstr "" #~ msgid "orange" #~ msgstr "" #~ msgid "orange red" #~ msgstr "-" #~ msgid "orchid" #~ msgstr "" #~ msgid "pale green" #~ msgstr "-" #~ msgid "pink" #~ msgstr "" #~ msgid "plum" #~ msgstr "" #~ msgid "purple" #~ msgstr "" #~ msgid "red" #~ msgstr "" #~ msgid "salmon" #~ msgstr "" #~ msgid "sea green" #~ msgstr " " #~ msgid "sienna" #~ msgstr "" #~ msgid "sky blue" #~ msgstr "-" #~ msgid "spring green" #~ msgstr " " #~ msgid "steel blue" #~ msgstr "" #~ msgid "tan" #~ msgstr "-" #~ msgid "thistle" #~ msgstr "" #~ msgid "turquoise" #~ msgstr "" #~ msgid "violet" #~ msgstr "" #~ msgid "wheat" #~ msgstr "" #~ msgid "white" #~ msgstr "" #~ msgid "yellow" #~ msgstr "" #~ msgid "yellow green" #~ msgstr "-" #~ msgid " << Unfold >>" #~ msgstr "<< >>" #~ msgid "Background" #~ msgstr "" #~ msgid "Copy cells" #~ msgstr " " #~ msgid "Cut selection from document" #~ msgstr " " #~ msgid "Evaluate cell\tShift-Enter" #~ msgstr " \tShift-Enter" #~ msgid "Export to HTML file" #~ msgstr " HTML-" #~ msgid "Hidden groups" #~ msgstr " " #~ msgid "Integrate ..." #~ msgstr " ..." #~ msgid "Main prompts" #~ msgstr " " #~ msgid "Open session from a file" #~ msgstr " " #~ msgid "Other prompts" #~ msgstr " " #~ msgid "Save session" #~ msgstr " " #~ msgid "Save session to a file" #~ msgstr " " #~ msgid "Save to file" #~ msgstr " " #~ msgid "Select package to load" #~ msgstr " " #~ msgid "Substitute ..." #~ msgstr " ..." #~ msgid "wxMaxima session" #~ msgstr " wxMaxima" #~ msgid "&Copy" #~ msgstr "" #~ msgid "&Describe\tCtrl-H" #~ msgstr " (describe)\tCtrl-H" #~ msgid "&Edit input\tCtrl-E" #~ msgstr " \tCtrl-E" #~ msgid "&Input\tF7" #~ msgstr "\tF7" #~ msgid "&Monitor file" #~ msgstr " " #~ msgid "&Re-evaluate input\tCtrl-R" #~ msgstr " \tCtrl-R" #, fuzzy #~ msgid "&Read file" #~ msgstr " " #~ msgid "&Text\tF6" #~ msgstr "\tF6" #~ msgid "" #~ "All|*|Maxima package (*.mac)|*.mac|Demo file (*.dem)|*.dem|Lisp file (*." #~ "lisp)|*.lisp" #~ msgstr "" #~ "|*| Maxima (*.mac)|*.mac|- (*.dem)|*.dem|Lisp- (*." #~ "lisp)|*.lisp" #~ msgid "Autoload a file when it is updated" #~ msgstr " " #~ msgid "C&lear screen" #~ msgstr " " #, fuzzy #~ msgid "Copy input" #~ msgstr " " #, fuzzy #~ msgid "Copy input from console" #~ msgstr " " #~ msgid "Copy selection from console to input line" #~ msgstr " " #, fuzzy #~ msgid "Copy to input" #~ msgstr " \tF4" #~ msgid "Delete selected input/output group" #~ msgstr " /" #~ msgid "Delete the contents of console." #~ msgstr " ." #~ msgid "Describe" #~ msgstr "" #~ msgid "Edit input" #~ msgstr " " #~ msgid "Edit selected input" #~ msgstr " " #~ msgid "Edit text" #~ msgstr " " #~ msgid "Enter command" #~ msgstr " " #, fuzzy #~ msgid "Go to input\tCtrl-Shift-D" #~ msgstr "\tCtrl-Shift-F6" #~ msgid "Go to input\tF4" #~ msgstr " \tF4" #~ msgid "Go to output window\tF3" #~ msgstr " \tF3" #~ msgid "I&nsert" #~ msgstr "" #~ msgid "INPUT:" #~ msgstr ":" #~ msgid "" #~ "If you want to input more than one line at a time, use the 'Multiline " #~ "input' button at the right of the input line." #~ msgstr "" #~ " , " #~ "' ' " #~ msgid "Insert new input before selected input" #~ msgstr " " #~ msgid "Insert section before selected input" #~ msgstr " " #~ msgid "Insert text before selected input" #~ msgstr " " #~ msgid "Insert title before selected input" #~ msgstr " " #~ msgid "" #~ "Instead of typing a long pathname of a file to input line, you can select " #~ "that file using 'File->Select file'." #~ msgstr "" #~ " , , " #~ " '-> '." #~ msgid "Multiline input" #~ msgstr " " #~ msgid "Open multiline input dialog" #~ msgstr " " #, fuzzy #~ msgid "Paste input" #~ msgstr " " #, fuzzy #~ msgid "Paste input to console" #~ msgstr " !" #, fuzzy #~ msgid "Re-evaluate all\tCtrl-Shift-R" #~ msgstr " \tCtrl-R" #, fuzzy #~ msgid "Re-evaluate all input" #~ msgstr " " #~ msgid "Re-evaluate input" #~ msgstr " " #, fuzzy #~ msgid "Read file from command line" #~ msgstr " " #~ msgid "Select &file" #~ msgstr " " #~ msgid "Select a file" #~ msgstr " " #~ msgid "Select a file (copy filename to input line)" #~ msgstr " ( )" #, fuzzy #~ msgid "Select last input\tCtrl-D" #~ msgstr " \tF2" #~ msgid "Select last input\tF2" #~ msgstr " \tF2" #, fuzzy #~ msgid "Select last input in the colsole!" #~ msgstr " !" #~ msgid "Select last input in the console!" #~ msgstr " !" #, fuzzy #~ msgid "Selection to input\tCtrl-Shift-E" #~ msgstr " \tF5" #~ msgid "Selection to input\tF5" #~ msgstr " \tF5" #~ msgid "Set focus to the input line" #~ msgstr " " #~ msgid "Set focus to the output window" #~ msgstr " " #~ msgid "Show the description of a command" #~ msgstr " " #~ msgid "Show the description of command/variable:" #~ msgstr " :" #~ msgid "" #~ "To enter a matrix A, type 'A : ' to input line and select 'Algebra->Enter " #~ "matrix' from menus." #~ msgstr "" #~ " , , 'A:' " #~ " '-> ' ." #~ msgid "" #~ "To put parenthesis around an expression you previously typed into the " #~ "input line, select the expression with mouse and then type '('." #~ msgstr "" #~ " , " #~ " '('." #~ msgid "" #~ "To repeat a long command you previously entered in the input line, type " #~ "in the first few letters to the input line and then pres tab key." #~ msgstr "" #~ " , " #~ " ." #~ msgid "" #~ "You can delete output/input group if you select the input label and " #~ "choose 'Edit->Delete selection' from menus." #~ msgstr "" #~ " / " #~ " '-> ' ." #~ msgid "" #~ "You can hide the output by clicking on the output label. Clicking on the " #~ "input label hides input and output. Clicking on the label again, shows " #~ "hidden expressions." #~ msgstr "" #~ " " #~ ". , . " #~ " ." #~ msgid "" #~ "You can load a file into maxima by dragging it from a file browser to the " #~ "console window." #~ msgstr "" #~ " Maxima " #~ " ." #~ msgid "" #~ "You can load files into maxima if you drop them on the console window. " #~ "You can select a custom function for loading your file. If your custom " #~ "function is 'A:read_matrix(%file%, csv)', then %file% will be replaced " #~ "with the filename of your file." #~ msgstr "" #~ " Maxima, . " #~ " . , " #~ ", 'A:read_matrix(%file%, csv)', " #~ "%file% ." #~ msgid "" #~ "You can select the output of maxima in wxMaxima console with mouse and " #~ "copy it to the clipboard with 'Edit->copy'." #~ msgstr "" #~ " Maxima wxMaxima " #~ " '->'." #~ msgid "" #~ "You can use the maxima tex command to print the expression in TeX form. " #~ "Then you can copy it to text editor to include it in you paper." #~ msgstr "" #~ " TeX tex. " #~ " " #~ " ." #~ msgid "" #~ "wxMaxima has nice plot dialogs. If you want to modify previous plot " #~ "commands, access them using command history and then push the plot button." #~ msgstr "" #~ "wxMaxima . " #~ " , " #~ ", , ''." #~ msgid "" #~ "wxMaxima's input line has command history available using up and down " #~ "keys and command completion based on previous input available using the " #~ "tab key." #~ msgstr "" #~ " wxMaxima , " #~ " /, , " #~ " , ." #~ msgid "Apply function:" #~ msgstr " :" #~ msgid "At point:" #~ msgstr " :" #~ msgid "Char poly of:" #~ msgstr " :" #~ msgid "Comment out" #~ msgstr "" #~ msgid "Copy &text" #~ msgstr " " #~ msgid "Copy selection from console (including linebreaks)" #~ msgstr " ( )" #~ msgid "From array:" #~ msgstr " :" #~ msgid "From equations:" #~ msgstr " :" #~ msgid "Integrate:" #~ msgstr ":" #~ msgid "Limit of:" #~ msgstr " :" #~ msgid "Map function:" #~ msgstr " :" #~ msgid "Product:" #~ msgstr ":" #~ msgid "Solve &numerically ..." #~ msgstr " ..." #~ msgid "Solve equation(s):" #~ msgstr " ():" #~ msgid "Solve equation:" #~ msgstr " :" #~ msgid "Solve numerically" #~ msgstr " " #~ msgid "Solve numerically ..." #~ msgstr " ..." #~ msgid "Substitute:" #~ msgstr ":" #~ msgid "Substitution" #~ msgstr "" #~ msgid "Sum of:" #~ msgstr ":" #~ msgid "Uncomment" #~ msgstr "" #~ msgid "Unfold" #~ msgstr "" #~ msgid "Unfold all folded groups" #~ msgstr " " #~ msgid "Use &Taylor series" #~ msgstr " " #~ msgid "around:" #~ msgstr " :" #~ msgid "by variable:" #~ msgstr " :" #~ msgid "change var:" #~ msgstr " :" #~ msgid "eliminate variables:" #~ msgstr " :" #~ msgid "equation:" #~ msgstr ":" #~ msgid "for function(s):" #~ msgstr " ()" #~ msgid "for variable(s):" #~ msgstr " ():" #~ msgid "from expression:" #~ msgstr " :" #~ msgid "function:" #~ msgstr ":" #~ msgid "goes to:" #~ msgstr " " #~ msgid "in variable:" #~ msgstr " :" #~ msgid "in:" #~ msgstr ":" #~ msgid "the value is:" #~ msgstr ":" #~ msgid "variable" #~ msgstr "" #~ msgid "variable:" #~ msgstr ":" #~ msgid "when variable:" #~ msgstr " :" #~ msgid "with:" #~ msgstr ":" #~ msgid "" #~ "wxMaxima is a wxWidgets interface for the\n" #~ "computer algebra system MAXIMA.\n" #~ "\n" #~ "Version: %s.\n" #~ "License: GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #~ msgstr "" #~ "wxMaxima - " #~ "Maxima, wxWidgets.\n" #~ "\n" #~ ": %s.\n" #~ ": GPL.\n" #~ "\n" #~ "%s\n" #~ "%s" #, fuzzy #~ msgid "wxMaxima session (*.wxm)|*.wxm|Maxima batch file (*mac)|*.mac|All|*" #~ msgstr " wxMaxima (*.wxm)|*.wxm" #~ msgid "Maxima session (*.wxm)|*.wxm" #~ msgstr " Maxima (*.wxm)|*.wxm" #~ msgid "Send ranges to &gnuplot" #~ msgstr " gnuplot" #~ msgid "Font family:" #~ msgstr " :" #~ msgid "Font size in console window." #~ msgstr " ." #~ msgid "Font size:" #~ msgstr " :" #~ msgid "Parametric" #~ msgstr "" wxMaxima-13.04.2/locales/uk.mo000644 000765 000024 00000054125 11710501376 016470 0ustar00andrejstaff000000 000000 B, <&  )3 I S`fv|     %+:Y'j "5DK"[ ~ #%1##U#y@'80Ai('H1E 1w >    0!1! 9! G!U!\!n!!!!! !! !""" :" E" R" `" m"/w"""."(" ### 8# E#O#U#%\## # ## #### $$ !$-$4$(I$ r$~$)$$$% %@%\%b%j%q%$z%7%3% &&,&L&+S&3&,&,&' '5'E'K'P'T'X' _'i'{')' ' ''''((( 2(<(D(J( S(](w(((("(( ()?)V)q)))W)* * )*J*_*g*j*o*w*d**%*+.+=+O+U+1o+3++ ++ + +,, 1, ?, M,[,#r, ,,,,,, ,, --- -%-7-"N-4q-- --- -- .".:2.m. .. ...//1/O/ e// / /,/'//0!-0 O0Y0 _0 i0v0#0200001'1Y1 m181A1 222"242K2f2n2t2 {2 22222D2B2<3C3^3`3Z4p444 4 44 4 4 444,515 5 5 5556 666 6(616 :6G6D^6C6b6aJ7C78 99939 K9 U9`9v9{999999999 : : ':1:%6: \: i:!v::2::: ;; ,;7;!;;];d; m;z;;; ;;$;; <<<.9<.h<$<*<<%=)=DD=== =G=M >-[>0>I>.?.3?Ab? ???-??@@3@<@M@]@}@@@@@@@AA"A +A8AGA WA#aA AA,A*AAB B *B4BMVM hMuMMMM1MMIM GNhN!zNNNNN O"O>OVO sO}OO&O$OOP P7P @PKPZPlP'P2PP3P3.QbQ#}QCQMQ 3R AR KRURjRRRRR R RR RRR9RC&S jSwSSt6TTTTT U UU7U?UFU NU8wUUNV_V nV{V VV VVV V VV VVRVSNWUW\WoaA"KNzTYnC<E3)~LJjVX!W# U; +4* ?*&^%&9fH+]  /gb;v24F%GA_88BI/thOp7:m5.@0cBr <9=3}[-u D@yq 7w|ex(,\2 d.iP=!s6:-# 5$l6?)(ZSRQkM">{`1>'10 $ ,' << Expression too long to display! >>&Algebra&Calculus&Definite integration&Demoivre&Determinant&Edit&Exponentialize&File&Help&Interrupt Ctrl-G&Maxima&Numeric&Numerical integration&Nusum&Open Ctrl-O&Power series&Rational&Save Ctrl-S&Simplify&Special&pm3d(Use default language)AboutAbout wxMaximaAdd a directory to search pathAdd dir to path:Add equality to the rational simplifierAdditional parameters:All|*ApplyApply function to a listAproposBC2Bat files (*.bat)|*.bat|All|*BoldBrowseC&onfigureCalculate modulus:Calculate productsCalculate sumsCancelChange variableChange variable in integral or sumChar polyChoose fontColumns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesCompute continued fraction of a valueCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Configuration warningConfigure wxMaximaConstantConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert trigonometric expression to canonical quasilinear formCopyCopy selectionCutDecompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Diff...DifferentiateDifferentiate expressionDiscrete plotDisplay algorithmDivideDivide numbers or polynomialsE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter matrixEnter new precision:Equation %d:Equation:ErrorError!Evaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand an expressionExpand trigonometric expressionExporting to HTML failed!ExpressionExpression(s):Expression:FactorFactor an expressionFactor an expression in Gaussian numbersFatal errorFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind eigenvalues of a matrixFind eigenvectors of a matrixFind real roots of a polynomialFixed font in text controlsFontsFormat:FrenchFunctionFunctions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGenerate MatrixGenerate a matrix from a 2-dimensional arrayGermanGet Laplace transformation of an expressionGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreek constantsGrid:HelpIC1IC2InsertIntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInverse LaplaceItalianItalicLCMLanguage used for wxMaxima GUI.Language:LaplaceLimitLimit...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMatrixMatrix mapMaxima is calculatingMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').ModulusNot a valid matrix dimension!Not a valid number of equations!Number of equations:NumbersOKOpenOptionsOptions:PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesParametric plotParsing outputPartial fractionsPastePaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot 2DPlot 2D...Plot 3DPlot 3D...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Polynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrintPrint documentProductReady for user inputRectformReduce (tr)Reduce trigonometric expressionReport bugRows:RussianSaveSave plot to fileSave selection to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.Select a constantSelect allSelect math display algorithmSeriesSeries...Server startedSet fixed font in text controls.Set plot formatSetup atvalues for solving ODE with Laplace transformationSetup modulus computationShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow long expressionsShow the definition of function:SimplifySimplify (r)Simplify (tr)Simplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve ODESolve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStarting server failedStarting server on port %dStringsStyleStylesSubstituteSubstitute...SumTaylor series:TellratTextThe default port used for communication between Maxima and wxMaxima.There was an error in generated XML! Please report this as a bug.Ticks:Tips not available, sorry!To plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.Toggle algebraic flagToggle numeric outputTranspose a matrixType:UkrainianUnderlinedUse Gosper algorithmVariable:VariablesVariables:WarningWelcome to wxMaximaWrite matching parenthesis in text controls.You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.[ unsaved ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftrightsymmetricuntitledwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.Project-Id-Version: wxMaxima Report-Msgid-Bugs-To: POT-Creation-Date: 2011-09-10 23:07+0200 PO-Revision-Date: 2007-05-02 20:23+0300 Last-Translator: Sergey Semerikov Language-Team: Ukrainian Language: uk MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-U Content-Transfer-Encoding: 8bit << ! >>̦ צ Ctrl-MaximaΦ (nusum) Ctrl-O æ Ctrl-Spm3d( ) wxMaxima Ҧ Ҧ : ҦΦ æ ڦצ :Ӧ|* æ BC2Φ (*.bat)|*.bat|Ӧ|* : ͦ ͦͦ ͦ ̦ ͦ ̦¦ æ:' Ҧ ڦĦ x-, Ħ Ħ y-, Ħ Ҧ ̦ æ æ ¦ Ц Ħ Ц (load(functs) ) wxMaxima ¦ͦΦ Ʀæ, - -æ Ҧ ¦ͦΦ Ʀæ, Ҧ -æ -æ æ ͦ ͦ Φ ڦ̦Φ ЦЦ ĦҦ æ æ Ԧ : : æ ͦ Ӧ 'Ԧ æ(æ) ͦ(Φ):æ...ææ ƦӦ ̦Ȧ Ctrl-QΦ Φ ͦ Ҧ̦ Ħ Ҧ æ Ħ ͦ, Ħ . Ħ Φ: %d::! Ӧ Φ (noun) ڦ Ȧ wxMaxima () HTML !():: Ҧ Ҧ ̦ Ӧ Φ ̦ Φ æ Φ æ ĦΦ Φ ̦ :ææ æ Ҧ̦ -ææ ڦ ͦ Ħ ˦ :צ12 () ... Φ ̦ Ӧ wxMaxima.: ... צ Ц ڦ Ԧ æ Ԧ æ Ԧ æצ Ԧ æMaxima դ Maxima (*.mac)|*.mac| Lisp (*.lisp)|*.lisp|Ӧ|* Maxima . Maxima:Maxima . '...Maxima դ ':' Ϥ ('a : 3;') ':=' æ ('f(x) := x^2;').צ ͦΦ æ!צ Ҧ! Ҧ:OKææ:PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmæ -æ Ʀ̦ Ԧ ͦ wxMaxima '->'. צæ ͦ wxMaxima Ҧ !Ʀ 2DƦ 2D...Ʀ 3DƦ 3D... Ʀͦ Ʀͦ Ʀ Ʀ :̦ 1:̦ 2: (̦)Postscript (*.eps)|*.eps|Ӧ|*Φ . () צ :Ӧ Ʀ Ħ ̦ ͦ צ wxMaxima' ͦ צ wxMaxima ͦ Ӧ. Ħ Ӧ צ... ... Ʀ . Ʀ ' Ц Ӧ , ĦΦ : : , ĦΦ Φ æ Φ ͦΦ æ Ǧ æ: () () , ͦ Ҧ , ͦ æ :'' ' ...' ' Ҧ' ' Ҧ' ' ' ̦Φ ' ̦Φ Ҧ' æ Ҧ ' æ Ҧ '...æΦ %d̦... :Tellrat ' Maxima wxMaxima XML! , . : Φ, ! Ʀ , Ҧ 'set polar' æ Ħ 'Ʀ 2D'. 3D Φ ̦Φ . ͦ צ wxMaxima ' צ Ӧ Ӧ '->' algebraic : ͦ:ͦΦͦΦ: wxMaxima צצΦ . '%'. - '%on', n - .[ ]Φ Ħ̦ wxMaximawxMaxima %sƦæ wxMaximawxMaxima צ. צ Φ .wxMaxima Ц. צ Φ .wxMaxima . צ Φ !wxMaxima - Ʀ ̦ Maxima צ wxWidgets.wxMaxima-13.04.2/locales/wxMaxima.pot000644 000765 000024 00000204354 11705763414 020043 0ustar00andrejstaff000000 000000 # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-19 10:49+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/wxMaxima.cpp:3432 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" #: ../src/wxMaxima.cpp:3445 msgid "" "\n" "Lisp: " msgstr "" #: ../src/wxMaxima.cpp:3441 msgid "" "\n" "Maxima version: " msgstr "" #: ../src/wxMaxima.cpp:4083 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" #: ../src/wxMaxima.cpp:3443 msgid "" "\n" "Not connected." msgstr "" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr "" #: ../src/wxMaxima.cpp:1088 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" #: ../src/wxMaxima.cpp:1080 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr "" #: ../src/wxMaximaFrame.cpp:471 msgid "&Algebra" msgstr "" #: ../src/wxMaximaFrame.cpp:465 msgid "&Apply to List..." msgstr "" #: ../src/wxMaximaFrame.cpp:656 msgid "&Apropos..." msgstr "" #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "" #: ../src/wxMaximaFrame.cpp:422 msgid "&Boundary Value Problem..." msgstr "" #: ../src/wxMaximaFrame.cpp:667 msgid "&Bug Report" msgstr "" #: ../src/wxMaximaFrame.cpp:523 msgid "&Calculus" msgstr "" #: ../src/wxMaximaFrame.cpp:574 msgid "&Canonical Form" msgstr "" #: ../src/wxMaximaFrame.cpp:447 msgid "&Characteristic Polynomial..." msgstr "" #: ../src/wxMaximaFrame.cpp:355 msgid "&Clear Memory" msgstr "" #: ../src/wxMaximaFrame.cpp:557 msgid "&Combine Factorials" msgstr "" #: ../src/wxMaximaFrame.cpp:600 msgid "&Complex Simplification" msgstr "" #: ../src/wxMaximaFrame.cpp:520 msgid "&Continued Fraction" msgstr "" #: ../src/wxMaximaFrame.cpp:233 msgid "&Copy\tCtrl-C" msgstr "" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "" #: ../src/wxMaximaFrame.cpp:594 msgid "&Demoivre" msgstr "" #: ../src/wxMaximaFrame.cpp:450 msgid "&Determinant" msgstr "" #: ../src/wxMaximaFrame.cpp:483 msgid "&Differentiate..." msgstr "" #: ../src/wxMaximaFrame.cpp:286 msgid "&Edit" msgstr "" #: ../src/wxMaximaFrame.cpp:407 msgid "&Eliminate Variable..." msgstr "" #: ../src/wxMaximaFrame.cpp:442 msgid "&Enter Matrix..." msgstr "" #: ../src/wxMaximaFrame.cpp:653 msgid "&Example..." msgstr "" #: ../src/wxMaximaFrame.cpp:537 msgid "&Expand Expression" msgstr "" #: ../src/wxMaximaFrame.cpp:571 msgid "&Expand Trigonometric" msgstr "" #: ../src/wxMaximaFrame.cpp:597 msgid "&Exponentialize" msgstr "" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "" #: ../src/wxMaximaFrame.cpp:532 msgid "&Factor Expression" msgstr "" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "" #: ../src/wxMaximaFrame.cpp:390 msgid "&Find Root..." msgstr "" #: ../src/wxMaximaFrame.cpp:436 msgid "&Generate Matrix..." msgstr "" #: ../src/wxMaximaFrame.cpp:507 msgid "&Greatest Common Divisor..." msgstr "" #: ../src/wxMaximaFrame.cpp:683 msgid "&Help" msgstr "" #: ../src/wxMaximaFrame.cpp:475 msgid "&Integrate..." msgstr "" #: ../src/wxMaximaFrame.cpp:346 msgid "&Interrupt\tCtrl-." msgstr "" #: ../src/wxMaximaFrame.cpp:350 msgid "&Interrupt\tCtrl-G" msgstr "" #: ../src/wxMaximaFrame.cpp:444 msgid "&Invert Matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "" #: ../src/wxMaximaFrame.cpp:467 msgid "&Map to List..." msgstr "" #: ../src/wxMaximaFrame.cpp:382 msgid "&Maxima" msgstr "" #: ../src/wxMaximaFrame.cpp:615 msgid "&Modulus Computation..." msgstr "" #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "" #: ../src/wxMaximaFrame.cpp:642 msgid "&Numeric" msgstr "" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "" #: ../src/wxMaximaFrame.cpp:627 msgid "&Plot" msgstr "" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "" #: ../src/wxMaximaFrame.cpp:568 msgid "&Reduce Trigonometric" msgstr "" #: ../src/wxMaximaFrame.cpp:354 msgid "&Restart Maxima" msgstr "" #: ../src/wxMaximaFrame.cpp:398 msgid "&Roots of Polynomial (Real)" msgstr "" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:617 msgid "&Simplify" msgstr "" #: ../src/wxMaximaFrame.cpp:527 msgid "&Simplify Expression" msgstr "" #: ../src/wxMaximaFrame.cpp:554 msgid "&Simplify Factorials" msgstr "" #: ../src/wxMaximaFrame.cpp:565 msgid "&Simplify Trigonometric" msgstr "" #: ../src/wxMaximaFrame.cpp:386 msgid "&Solve..." msgstr "" #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "" #: ../src/wxMaximaFrame.cpp:460 msgid "&Transpose Matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:577 msgid "&Trigonometric Simplification" msgstr "" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "" #: ../src/IntegrateWiz.cpp:217 ../src/IntegrateWiz.cpp:228 #: ../src/IntegrateWiz.cpp:236 ../src/IntegrateWiz.cpp:247 #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 msgid "- Infinity" msgstr "" #: ../src/wxMaxima.cpp:3496 msgid "
Lisp: " msgstr "" #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" #: ../src/wxMaximaFrame.cpp:429 msgid "A&t Value..." msgstr "" #: ../src/wxMaxima.cpp:3498 ../src/wxMaximaFrame.cpp:678 msgid "About" msgstr "" #: ../src/wxMaximaFrame.cpp:680 ../src/wxMaximaFrame.cpp:682 msgid "About wxMaxima" msgstr "" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "" #: ../src/wxMaximaFrame.cpp:458 msgid "Ad&joint Matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:612 msgid "Add Algebraic E&quality..." msgstr "" #: ../src/wxMaximaFrame.cpp:358 msgid "Add a directory to search path" msgstr "" #: ../src/wxMaxima.cpp:2299 msgid "Add dir to path:" msgstr "" #: ../src/wxMaximaFrame.cpp:613 msgid "Add equality to the rational simplifier" msgstr "" #: ../src/wxMaximaFrame.cpp:357 msgid "Add to &Path..." msgstr "" #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "" #: ../src/Config.cpp:479 msgid "All|*" msgstr "" #: ../src/wxMaximaFrame.cpp:817 msgid "Animation" msgstr "" #: ../src/wxMaxima.cpp:2752 msgid "Apply" msgstr "" #: ../src/wxMaximaFrame.cpp:466 msgid "Apply function to a list" msgstr "" #: ../src/wxMaxima.cpp:3528 msgid "Apropos" msgstr "" #: ../src/wxMaxima.cpp:2678 msgid "Array:" msgstr "" #: ../src/wxMaxima.cpp:3374 msgid "Artwork by" msgstr "" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "" #: ../src/wxMaxima.cpp:2564 msgid "At value" msgstr "" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2471 msgid "BC2" msgstr "" #: ../src/wxMaximaFrame.cpp:1030 msgid "Barsplot..." msgstr "" #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "" #: ../src/wxMaxima.cpp:1994 msgid "Batch File" msgstr "" #: ../src/Config.cpp:382 msgid "Bold" msgstr "" #: ../src/wxMaximaFrame.cpp:1032 msgid "Boxplot..." msgstr "" #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "" #: ../src/wxMaximaFrame.cpp:665 msgid "Build &Info" msgstr "" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" #: ../src/wxMaximaFrame.cpp:480 msgid "C&hange Variable..." msgstr "" #: ../src/wxMaximaFrame.cpp:283 msgid "C&onfigure" msgstr "" #: ../src/wxMaximaFrame.cpp:499 msgid "Calculate &Product..." msgstr "" #: ../src/wxMaximaFrame.cpp:497 msgid "Calculate Su&m..." msgstr "" #: ../src/wxMaximaFrame.cpp:637 msgid "Calculate bigfloat value of the last result" msgstr "" #: ../src/wxMaximaFrame.cpp:634 msgid "Calculate float value of the last result" msgstr "" #: ../src/wxMaxima.cpp:2885 msgid "Calculate modulus:" msgstr "" #: ../src/wxMaximaFrame.cpp:500 msgid "Calculate products" msgstr "" #: ../src/wxMaximaFrame.cpp:498 msgid "Calculate sums" msgstr "" #: ../src/wxMaxima.cpp:4330 msgid "Can not connect to the web server." msgstr "" #: ../src/wxMaxima.cpp:4375 msgid "Can not download version info." msgstr "" #: ../src/BC2Wiz.cpp:44 ../src/BC2Wiz.cpp:46 ../src/Gen1Wiz.cpp:34 #: ../src/Gen1Wiz.cpp:36 ../src/Gen2Wiz.cpp:42 ../src/Gen2Wiz.cpp:44 #: ../src/Gen3Wiz.cpp:49 ../src/Gen3Wiz.cpp:51 ../src/Gen4Wiz.cpp:55 #: ../src/Gen4Wiz.cpp:57 ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/LimitWiz.cpp:51 ../src/LimitWiz.cpp:53 ../src/MatWiz.cpp:39 #: ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 ../src/MatWiz.cpp:190 #: ../src/Plot2dWiz.cpp:101 ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 #: ../src/Plot2dWiz.cpp:563 ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 #: ../src/Plot3dWiz.cpp:103 ../src/Plot3dWiz.cpp:105 #: ../src/PlotFormatWiz.cpp:41 ../src/PlotFormatWiz.cpp:43 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/SubstituteWiz.cpp:40 #: ../src/SubstituteWiz.cpp:42 ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/wxMaxima.cpp:4432 msgid "Cancel" msgstr "" #: ../src/wxMaximaFrame.cpp:975 msgid "Canonical (tr)" msgstr "" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "" #: ../src/wxMaximaFrame.cpp:324 msgid "Ce&ll" msgstr "" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "" #: ../src/wxMaximaFrame.cpp:377 msgid "Change &2d Display" msgstr "" #: ../src/wxMaximaFrame.cpp:378 msgid "Change the 2d display algorithm used to display math output" msgstr "" #: ../src/wxMaxima.cpp:2909 msgid "Change variable" msgstr "" #: ../src/wxMaximaFrame.cpp:481 msgid "Change variable in integral or sum" msgstr "" #: ../src/wxMaxima.cpp:2665 msgid "Char poly" msgstr "" #: ../src/wxMaximaFrame.cpp:670 msgid "Check for Updates" msgstr "" #: ../src/wxMaximaFrame.cpp:671 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "" #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "" #: ../src/wxMaxima.cpp:3572 ../src/wxMaxima.cpp:3586 msgid "Classes:" msgstr "" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "" #: ../src/wxMaxima.cpp:3694 msgid "Col. names:" msgstr "" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "" #: ../src/wxMaximaFrame.cpp:558 msgid "Combine factorials in an expression" msgstr "" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "" #: ../src/wxMaximaFrame.cpp:299 msgid "Complete Word\tCtrl-K" msgstr "" #: ../src/wxMaximaFrame.cpp:300 msgid "Complete word" msgstr "" #: ../src/wxMaximaFrame.cpp:521 msgid "Compute continued fraction of a value" msgstr "" #: ../src/wxMaximaFrame.cpp:459 msgid "Compute the adjoint matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:448 msgid "Compute the characteristic polynomial of a matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the determinant of a matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:508 msgid "Compute the greatest common divisor" msgstr "" #: ../src/wxMaximaFrame.cpp:445 msgid "Compute the inverse of a matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:511 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "" #: ../src/wxMaxima.cpp:3744 msgid "Condition:" msgstr "" #: ../src/Config.cpp:1066 ../src/Config.cpp:1074 msgid "Config file (*.ini)|*.ini" msgstr "" #: ../src/Config.cpp:935 msgid "Configuration warning" msgstr "" #: ../src/wxMaximaFrame.cpp:281 ../src/wxMaximaFrame.cpp:284 #: ../src/wxMaximaFrame.cpp:724 ../src/wxMaximaFrame.cpp:792 msgid "Configure wxMaxima" msgstr "" #: ../src/IntegrateWiz.cpp:219 ../src/IntegrateWiz.cpp:238 #: ../src/LimitWiz.cpp:135 ../src/SeriesWiz.cpp:109 msgid "Constant" msgstr "" #: ../src/wxMaximaFrame.cpp:542 msgid "Contract Logarithms" msgstr "" #: ../src/wxMaximaFrame.cpp:549 msgid "Convert binomials, beta and gamma function to factorials" msgstr "" #: ../src/wxMaximaFrame.cpp:552 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "" #: ../src/wxMaximaFrame.cpp:586 msgid "Convert complex expression to polar form" msgstr "" #: ../src/wxMaximaFrame.cpp:583 msgid "Convert complex expression to rect form" msgstr "" #: ../src/wxMaximaFrame.cpp:595 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert logarithm of product to sum of logarithms" msgstr "" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert sum of logarithms to logarithm of product" msgstr "" #: ../src/wxMaximaFrame.cpp:548 msgid "Convert to &Factorials" msgstr "" #: ../src/wxMaximaFrame.cpp:551 msgid "Convert to &Gamma" msgstr "" #: ../src/wxMaximaFrame.cpp:585 msgid "Convert to &Polarform" msgstr "" #: ../src/wxMaximaFrame.cpp:582 msgid "Convert to &Rectform" msgstr "" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "" #: ../src/wxMaximaFrame.cpp:598 msgid "Convert trigonometric functions to exponential form" msgstr "" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:729 #: ../src/wxMaximaFrame.cpp:798 msgid "Copy" msgstr "" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "" #: ../src/wxMaximaFrame.cpp:297 msgid "Copy Previous Input\tCtrl-I" msgstr "" #: ../src/wxMaximaFrame.cpp:242 msgid "Copy as Image" msgstr "" #: ../src/wxMaximaFrame.cpp:238 msgid "Copy as LaTeX" msgstr "" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as Text\tCtrl-Shift-C" msgstr "" #: ../src/wxMaximaFrame.cpp:234 ../src/wxMaximaFrame.cpp:731 #: ../src/wxMaximaFrame.cpp:801 msgid "Copy selection" msgstr "" #: ../src/wxMaximaFrame.cpp:243 msgid "Copy selection from document as an image" msgstr "" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document as text" msgstr "" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy selection from document in LaTeX format" msgstr "" #: ../src/wxMaximaFrame.cpp:298 msgid "Create a new cell with previous input" msgstr "" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:726 #: ../src/wxMaximaFrame.cpp:794 msgid "Cut" msgstr "" #: ../src/wxMaximaFrame.cpp:230 msgid "Cut\tCtrl-X" msgstr "" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:728 #: ../src/wxMaximaFrame.cpp:797 msgid "Cut selection" msgstr "" #: ../src/Config.cpp:241 msgid "Czech" msgstr "" #: ../src/Config.cpp:242 msgid "Danish" msgstr "" #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3694 ../src/wxMaxima.cpp:3744 msgid "Data Matrix:" msgstr "" #: ../src/wxMaxima.cpp:3714 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "" #: ../src/wxMaxima.cpp:3572 ../src/wxMaxima.cpp:3586 ../src/wxMaxima.cpp:3600 #: ../src/wxMaxima.cpp:3607 ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3622 #: ../src/wxMaxima.cpp:3629 ../src/wxMaxima.cpp:3636 ../src/wxMaxima.cpp:3643 #: ../src/wxMaxima.cpp:3679 msgid "Data:" msgstr "" #: ../src/wxMaximaFrame.cpp:518 msgid "Decompose rational function to partial fractions" msgstr "" #: ../src/Config.cpp:351 msgid "Default" msgstr "" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "" #: ../src/wxMaxima.cpp:2317 ../src/wxMaxima.cpp:2326 msgid "Delete" msgstr "" #: ../src/wxMaximaFrame.cpp:368 msgid "Delete F&unction..." msgstr "" #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "" #: ../src/wxMaximaFrame.cpp:370 msgid "Delete V&ariable..." msgstr "" #: ../src/wxMaximaFrame.cpp:369 msgid "Delete a function" msgstr "" #: ../src/wxMaximaFrame.cpp:371 msgid "Delete a variable" msgstr "" #: ../src/wxMaximaFrame.cpp:356 msgid "Delete all values from memory" msgstr "" #: ../src/wxMaxima.cpp:2326 msgid "Delete function(s):" msgstr "" #: ../src/wxMaxima.cpp:2317 msgid "Delete variable(s):" msgstr "" #: ../src/wxMaxima.cpp:2925 msgid "Denom. deg:" msgstr "" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "" #: ../src/wxMaxima.cpp:2455 msgid "Derivative:" msgstr "" #: ../src/wxMaximaFrame.cpp:1016 msgid "Deviation..." msgstr "" #: ../src/wxMaximaFrame.cpp:514 msgid "Di&vide Polynomials..." msgstr "" #: ../src/wxMaximaFrame.cpp:981 msgid "Diff..." msgstr "" #: ../src/wxMaxima.cpp:3068 ../src/wxMaxima.cpp:3911 msgid "Differentiate" msgstr "" #: ../src/wxMaximaFrame.cpp:484 msgid "Differentiate expression" msgstr "" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "" #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "" #: ../src/wxMaximaFrame.cpp:380 msgid "Display Te&X Form" msgstr "" #: ../src/wxMaxima.cpp:2266 msgid "Display algorithm" msgstr "" #: ../src/wxMaximaFrame.cpp:381 msgid "Display last result in TeX form" msgstr "" #: ../src/wxMaximaFrame.cpp:375 msgid "Display time used for evaluation" msgstr "" #: ../src/wxMaxima.cpp:2975 msgid "Divide" msgstr "" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "" #: ../src/wxMaximaFrame.cpp:515 msgid "Divide numbers or polynomials" msgstr "" #: ../src/wxMaxima.cpp:4427 ../src/wxMaxima.cpp:4439 msgid "Do you want to save the changes you made in the document \"" msgstr "" #: ../src/wxMaxima.cpp:1079 ../src/wxMaxima.cpp:1087 msgid "Document " msgstr "" #: ../src/Config.cpp:368 msgid "Document background" msgstr "" #: ../src/wxMaxima.cpp:4432 msgid "Don't save" msgstr "" #: ../src/wxMaximaFrame.cpp:432 msgid "E&quations" msgstr "" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "" #: ../src/wxMaximaFrame.cpp:455 msgid "Eige&nvectors" msgstr "" #: ../src/wxMaximaFrame.cpp:453 msgid "Eigen&values" msgstr "" #: ../src/wxMaxima.cpp:2486 msgid "Eliminate" msgstr "" #: ../src/wxMaximaFrame.cpp:408 msgid "Eliminate a variable from a system of equations" msgstr "" #: ../src/Config.cpp:243 msgid "English" msgstr "" #: ../src/wxMaxima.cpp:3600 ../src/wxMaxima.cpp:3607 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3622 ../src/wxMaxima.cpp:3629 ../src/wxMaxima.cpp:3636 #: ../src/wxMaxima.cpp:3643 ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3687 msgid "Enter Data" msgstr "" #: ../src/wxMaximaFrame.cpp:1037 msgid "Enter Matrix..." msgstr "" #: ../src/wxMaximaFrame.cpp:443 msgid "Enter a matrix" msgstr "" #: ../src/wxMaxima.cpp:2876 msgid "Enter an equation for rational simplification:" msgstr "" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "" #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "" #: ../src/wxMaxima.cpp:2648 msgid "Enter matrix" msgstr "" #: ../src/wxMaxima.cpp:3250 msgid "Enter new precision:" msgstr "" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "" #: ../src/wxMaxima.cpp:3122 msgid "Epsilon:" msgstr "" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "" #: ../src/wxMaxima.cpp:2374 ../src/wxMaxima.cpp:2388 ../src/wxMaxima.cpp:2547 #: ../src/wxMaxima.cpp:3864 msgid "Equation(s):" msgstr "" #: ../src/wxMaxima.cpp:2404 ../src/wxMaxima.cpp:2423 ../src/wxMaxima.cpp:2907 #: ../src/wxMaxima.cpp:3695 ../src/wxMaxima.cpp:3878 msgid "Equation:" msgstr "" #: ../src/wxMaxima.cpp:2484 msgid "Equations:" msgstr "" #: ../src/Config.cpp:488 ../src/ImgCell.cpp:101 ../src/wxMaxima.cpp:393 #: ../src/wxMaxima.cpp:977 ../src/wxMaxima.cpp:988 ../src/wxMaxima.cpp:1047 #: ../src/wxMaxima.cpp:1059 ../src/wxMaxima.cpp:1081 ../src/wxMaxima.cpp:1503 #: ../src/wxMaxima.cpp:1599 ../src/wxMaxima.cpp:4083 ../src/wxMaxima.cpp:4330 #: ../src/wxMaxima.cpp:4375 msgid "Error" msgstr "" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "" #: ../src/wxMaxima.cpp:1969 ../src/wxMaxima.cpp:1974 ../src/wxMaxima.cpp:2507 #: ../src/wxMaxima.cpp:2531 ../src/wxMaxima.cpp:2642 msgid "Error!" msgstr "" #: ../src/wxMaximaFrame.cpp:607 msgid "Evaluate &Noun Forms" msgstr "" #: ../src/wxMaximaFrame.cpp:292 msgid "Evaluate All Cells\tCtrl-R" msgstr "" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:290 msgid "Evaluate Cell(s)" msgstr "" #: ../src/wxMaximaFrame.cpp:291 msgid "Evaluate active or selected cell(s)" msgstr "" #: ../src/wxMaximaFrame.cpp:293 msgid "Evaluate all cells in the document" msgstr "" #: ../src/wxMaximaFrame.cpp:608 msgid "Evaluate all noun forms in expression" msgstr "" #: ../src/wxMaxima.cpp:3515 msgid "Example" msgstr "" #: ../src/Config.cpp:1020 ../src/Config.cpp:1112 msgid "Example text" msgstr "" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "" #: ../src/wxMaximaFrame.cpp:972 msgid "Expand" msgstr "" #: ../src/wxMaximaFrame.cpp:977 msgid "Expand (tr)" msgstr "" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "" #: ../src/wxMaximaFrame.cpp:539 msgid "Expand Logarithms" msgstr "" #: ../src/wxMaximaFrame.cpp:538 msgid "Expand an expression" msgstr "" #: ../src/wxMaximaFrame.cpp:572 msgid "Expand trigonometric expression" msgstr "" #: ../src/wxMaxima.cpp:1955 msgid "Export" msgstr "" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "" #: ../src/wxMaxima.cpp:1974 msgid "Exporting to HTML failed!" msgstr "" #: ../src/wxMaxima.cpp:1969 msgid "Exporting to TeX failed!" msgstr "" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "" #: ../src/IntegrateWiz.cpp:36 ../src/LimitWiz.cpp:26 ../src/SeriesWiz.cpp:32 #: ../src/SubstituteWiz.cpp:27 ../src/SumWiz.cpp:30 ../src/wxMaxima.cpp:2562 #: ../src/wxMaxima.cpp:2732 ../src/wxMaxima.cpp:2988 ../src/wxMaxima.cpp:3003 #: ../src/wxMaxima.cpp:3032 ../src/wxMaxima.cpp:3049 ../src/wxMaxima.cpp:3066 #: ../src/wxMaxima.cpp:3119 ../src/wxMaxima.cpp:3154 ../src/wxMaxima.cpp:3909 msgid "Expression:" msgstr "" #: ../src/wxMaximaFrame.cpp:971 msgid "Factor" msgstr "" #: ../src/wxMaximaFrame.cpp:534 msgid "Factor Complex" msgstr "" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "" #: ../src/wxMaximaFrame.cpp:533 msgid "Factor an expression" msgstr "" #: ../src/wxMaximaFrame.cpp:535 msgid "Factor an expression in Gaussian numbers" msgstr "" #: ../src/wxMaximaFrame.cpp:560 msgid "Factorials and &Gamma" msgstr "" #: ../src/wxMaxima.cpp:255 msgid "Fatal error" msgstr "" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "" #: ../src/main.cpp:107 msgid "File" msgstr "" #: ../src/wxMaxima.cpp:4032 msgid "File not found" msgstr "" #: ../src/wxMaxima.cpp:4032 msgid "File you tried to open does not exist." msgstr "" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "" #: ../src/wxMaximaFrame.cpp:736 msgid "Find" msgstr "" #: ../src/wxMaximaFrame.cpp:251 msgid "Find\tCtrl-F" msgstr "" #: ../src/wxMaximaFrame.cpp:485 msgid "Find &Limit..." msgstr "" #: ../src/wxMaximaFrame.cpp:488 msgid "Find Minimum..." msgstr "" #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "" #: ../src/wxMaximaFrame.cpp:489 msgid "Find a (unconstrained) minimum of an expression" msgstr "" #: ../src/wxMaximaFrame.cpp:486 msgid "Find a limit of an expression" msgstr "" #: ../src/wxMaximaFrame.cpp:391 msgid "Find a root of an equation on an interval" msgstr "" #: ../src/wxMaximaFrame.cpp:393 msgid "Find all roots of a polynomial" msgstr "" #: ../src/wxMaximaFrame.cpp:396 msgid "Find all roots of a polynomial (bfloat)" msgstr "" #: ../src/wxMaxima.cpp:2181 msgid "Find and Replace" msgstr "" #: ../src/wxMaximaFrame.cpp:251 ../src/wxMaximaFrame.cpp:738 #: ../src/wxMaximaFrame.cpp:810 msgid "Find and replace" msgstr "" #: ../src/wxMaximaFrame.cpp:454 msgid "Find eigenvalues of a matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:456 msgid "Find eigenvectors of a matrix" msgstr "" #: ../src/wxMaxima.cpp:3124 msgid "Find minimum" msgstr "" #: ../src/wxMaximaFrame.cpp:399 msgid "Find real roots of a polynomial" msgstr "" #: ../src/wxMaxima.cpp:2407 ../src/wxMaxima.cpp:3881 msgid "Find root" msgstr "" #: ../src/wxMaximaFrame.cpp:807 msgid "Find..." msgstr "" #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "" #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "" #: ../src/Config.cpp:330 msgid "Fonts" msgstr "" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "" #: ../src/Config.cpp:244 msgid "French" msgstr "" #: ../src/IntegrateWiz.cpp:43 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 #: ../src/SumWiz.cpp:36 ../src/wxMaxima.cpp:2733 ../src/wxMaxima.cpp:3154 msgid "From:" msgstr "" #: ../src/wxMaximaFrame.cpp:275 msgid "Full Screen\tAlt-Enter" msgstr "" #: ../src/wxMaxima.cpp:2288 msgid "Function" msgstr "" #: ../src/Config.cpp:354 msgid "Function names" msgstr "" #: ../src/wxMaxima.cpp:2547 msgid "Function(s):" msgstr "" #: ../src/wxMaxima.cpp:2423 ../src/wxMaxima.cpp:2614 ../src/wxMaxima.cpp:2717 #: ../src/wxMaxima.cpp:2750 msgid "Function:" msgstr "" #: ../src/wxMaximaFrame.cpp:602 msgid "Functions for complex simplification" msgstr "" #: ../src/wxMaximaFrame.cpp:562 msgid "Functions for simplifying factorials and gamma function" msgstr "" #: ../src/wxMaximaFrame.cpp:579 msgid "Functions for simplifying trigonometric expressions" msgstr "" #: ../src/wxMaxima.cpp:2960 msgid "GCD" msgstr "" #: ../src/wxMaxima.cpp:3994 msgid "GIF image (*.gif)|*.gif" msgstr "" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "" #: ../src/wxMaximaFrame.cpp:333 msgid "General Math\tAlt-Shift-M" msgstr "" #: ../src/wxMaxima.cpp:2680 ../src/wxMaxima.cpp:2699 msgid "Generate Matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:439 msgid "Generate Matrix from Expression..." msgstr "" #: ../src/wxMaximaFrame.cpp:437 msgid "Generate a matrix from a 2-dimensional array" msgstr "" #: ../src/wxMaximaFrame.cpp:440 msgid "Generate a matrix from a lambda expression" msgstr "" #: ../src/Config.cpp:245 msgid "German" msgstr "" #: ../src/wxMaximaFrame.cpp:591 msgid "Get &Imaginary Part" msgstr "" #: ../src/wxMaximaFrame.cpp:491 msgid "Get &Series..." msgstr "" #: ../src/wxMaximaFrame.cpp:502 msgid "Get Laplace transformation of an expression" msgstr "" #: ../src/wxMaximaFrame.cpp:588 msgid "Get Real P&art" msgstr "" #: ../src/wxMaximaFrame.cpp:505 msgid "Get inverse Laplace transformation of an expression" msgstr "" #: ../src/wxMaximaFrame.cpp:492 msgid "Get the Taylor or power series of expression" msgstr "" #: ../src/wxMaximaFrame.cpp:592 msgid "Get the imaginary part of complex expression" msgstr "" #: ../src/wxMaximaFrame.cpp:589 msgid "Get the real part of complex expression" msgstr "" #: ../src/Config.cpp:246 msgid "Greek" msgstr "" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "" #: ../src/wxMaxima.cpp:1957 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "" #: ../src/wxMaxima.cpp:2678 ../src/wxMaxima.cpp:2697 msgid "Height:" msgstr "" #: ../src/wxMaximaFrame.cpp:755 ../src/wxMaximaFrame.cpp:828 msgid "Help" msgstr "" #: ../src/wxMaximaFrame.cpp:331 msgid "Hide All\tAlt-Shift--" msgstr "" #: ../src/wxMaximaFrame.cpp:331 msgid "Hide all panes" msgstr "" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "" #: ../src/wxMaxima.cpp:3573 msgid "Histogram" msgstr "" #: ../src/wxMaximaFrame.cpp:1028 msgid "Histogram..." msgstr "" #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "" #: ../src/wxMaximaFrame.cpp:335 msgid "History\tAlt-Shift-H" msgstr "" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "" #: ../src/wxMaxima.cpp:2441 msgid "IC1" msgstr "" #: ../src/wxMaxima.cpp:2457 msgid "IC2" msgstr "" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" #: ../src/wxMaximaFrame.cpp:1068 msgid "Image" msgstr "" #: ../src/wxMaxima.cpp:4188 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "" #: ../src/wxMaxima.cpp:3745 msgid "Include columns:" msgstr "" #: ../src/IntegrateWiz.cpp:216 ../src/IntegrateWiz.cpp:226 #: ../src/IntegrateWiz.cpp:235 ../src/IntegrateWiz.cpp:245 #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 msgid "Infinity" msgstr "" #: ../src/wxMaximaFrame.cpp:666 msgid "Info about Maxima build" msgstr "" #: ../src/wxMaxima.cpp:3121 msgid "Initial Estimates:" msgstr "" #: ../src/wxMaximaFrame.cpp:416 msgid "Initial Value Problem (&1)..." msgstr "" #: ../src/wxMaximaFrame.cpp:419 msgid "Initial Value Problem (&2)..." msgstr "" #: ../src/Config.cpp:359 msgid "Input labels" msgstr "" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "" #: ../src/wxMaximaFrame.cpp:310 msgid "Insert &Section Cell\tCtrl-3" msgstr "" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert &Text Cell\tCtrl-1" msgstr "" #: ../src/wxMaximaFrame.cpp:336 msgid "Insert Cell\tAlt-Shift-C" msgstr "" #: ../src/wxMaxima.cpp:4186 msgid "Insert Image" msgstr "" #: ../src/wxMaximaFrame.cpp:316 msgid "Insert Image..." msgstr "" #: ../src/wxMaximaFrame.cpp:304 msgid "Insert Input &Cell" msgstr "" #: ../src/wxMaximaFrame.cpp:314 msgid "Insert Page Break" msgstr "" #: ../src/wxMaximaFrame.cpp:312 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert T&itle Cell\tCtrl-2" msgstr "" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new input cell" msgstr "" #: ../src/wxMaximaFrame.cpp:311 msgid "Insert a new section cell" msgstr "" #: ../src/wxMaximaFrame.cpp:313 msgid "Insert a new subsection cell" msgstr "" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a new text cell" msgstr "" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert a new title cell" msgstr "" #: ../src/wxMaximaFrame.cpp:315 msgid "Insert a page break" msgstr "" #: ../src/wxMaximaFrame.cpp:317 msgid "Insert image" msgstr "" #: ../src/wxMaxima.cpp:2906 msgid "Integral/Sum:" msgstr "" #: ../src/IntegrateWiz.cpp:72 ../src/wxMaxima.cpp:3019 #: ../src/wxMaxima.cpp:3896 msgid "Integrate" msgstr "" #: ../src/wxMaxima.cpp:3005 msgid "Integrate (risch)" msgstr "" #: ../src/wxMaximaFrame.cpp:476 msgid "Integrate expression" msgstr "" #: ../src/wxMaximaFrame.cpp:478 msgid "Integrate expression with Risch algorithm" msgstr "" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:982 msgid "Integrate..." msgstr "" #: ../src/wxMaximaFrame.cpp:740 ../src/wxMaximaFrame.cpp:812 msgid "Interrupt" msgstr "" #: ../src/wxMaximaFrame.cpp:347 ../src/wxMaximaFrame.cpp:351 #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Interrupt current computation" msgstr "" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" #: ../src/wxMaxima.cpp:3051 msgid "Inverse Laplace" msgstr "" #: ../src/wxMaximaFrame.cpp:504 msgid "Inverse Laplace T&ransform..." msgstr "" #: ../src/Config.cpp:248 msgid "Italian" msgstr "" #: ../src/Config.cpp:383 msgid "Italic" msgstr "" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "" #: ../src/wxMaxima.cpp:2945 msgid "LCM" msgstr "" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "" #: ../src/Config.cpp:235 msgid "Language:" msgstr "" #: ../src/wxMaxima.cpp:3034 msgid "Laplace" msgstr "" #: ../src/wxMaximaFrame.cpp:501 msgid "Laplace &Transform..." msgstr "" #: ../src/wxMaximaFrame.cpp:510 msgid "Least Common Multiple..." msgstr "" #: ../src/wxMaxima.cpp:3697 msgid "Least Squares Fit" msgstr "" #: ../src/wxMaximaFrame.cpp:1024 msgid "Least Squares Fit..." msgstr "" #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3106 msgid "Limit" msgstr "" #: ../src/wxMaximaFrame.cpp:983 msgid "Limit..." msgstr "" #: ../src/wxMaximaFrame.cpp:1023 msgid "Linear Regression..." msgstr "" #: ../src/wxMaxima.cpp:2717 ../src/wxMaxima.cpp:2750 msgid "List:" msgstr "" #: ../src/Config.cpp:386 msgid "Load" msgstr "" #: ../src/wxMaxima.cpp:1983 msgid "Load Package" msgstr "" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "" #: ../src/Config.cpp:1072 msgid "Load style from file" msgstr "" #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:3879 msgid "Lower bound:" msgstr "" #: ../src/wxMaximaFrame.cpp:469 msgid "Ma&p to Matrix..." msgstr "" #: ../src/wxMaximaFrame.cpp:463 msgid "Make &List..." msgstr "" #: ../src/wxMaxima.cpp:2735 msgid "Make list" msgstr "" #: ../src/wxMaximaFrame.cpp:464 msgid "Make list from expression" msgstr "" #: ../src/wxMaximaFrame.cpp:605 msgid "Make substitution in expression" msgstr "" #: ../src/wxMaxima.cpp:2719 msgid "Map" msgstr "" #: ../src/wxMaximaFrame.cpp:468 msgid "Map function to a list" msgstr "" #: ../src/wxMaximaFrame.cpp:470 msgid "Map function to a matrix" msgstr "" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "" #: ../src/wxMaxima.cpp:2630 msgid "Matrix" msgstr "" #: ../src/wxMaxima.cpp:2616 msgid "Matrix map" msgstr "" #: ../src/wxMaxima.cpp:3745 msgid "Matrix name:" msgstr "" #: ../src/wxMaxima.cpp:2614 ../src/wxMaxima.cpp:2663 msgid "Matrix:" msgstr "" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "" #: ../src/wxMaximaFrame.cpp:647 msgid "Maxima &Help\tCTRL+?" msgstr "" #: ../src/wxMaximaFrame.cpp:650 msgid "Maxima &Help\tF1" msgstr "" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "" #: ../src/wxMaxima.cpp:465 msgid "Maxima is calculating" msgstr "" #: ../src/wxMaxima.cpp:1996 msgid "Maxima package (*.mac)|*.mac" msgstr "" #: ../src/wxMaxima.cpp:1985 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "" #: ../src/wxMaxima.cpp:777 msgid "Maxima process terminated." msgstr "" #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "" #: ../src/wxMaxima.cpp:732 msgid "Maxima started. Waiting for connection..." msgstr "" #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" #: ../src/wxMaxima.cpp:3492 msgid "Maxima version: " msgstr "" #: ../src/wxMaximaFrame.cpp:1021 msgid "Mean Difference Test..." msgstr "" #: ../src/wxMaximaFrame.cpp:1020 msgid "Mean Test..." msgstr "" #: ../src/wxMaximaFrame.cpp:1013 msgid "Mean..." msgstr "" #: ../src/wxMaxima.cpp:3650 msgid "Mean:" msgstr "" #: ../src/wxMaximaFrame.cpp:1014 msgid "Median..." msgstr "" #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "" #: ../src/wxMaxima.cpp:2886 msgid "Modulus" msgstr "" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2678 ../src/wxMaxima.cpp:2697 msgid "Name:" msgstr "" #: ../src/wxMaximaFrame.cpp:706 ../src/wxMaximaFrame.cpp:769 msgid "New" msgstr "" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "" #: ../src/wxMaximaFrame.cpp:708 ../src/wxMaximaFrame.cpp:772 msgid "New document" msgstr "" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "" #: ../src/wxMaxima.cpp:2907 ../src/wxMaxima.cpp:3033 ../src/wxMaxima.cpp:3050 msgid "New variable:" msgstr "" #: ../src/wxMaximaFrame.cpp:321 msgid "Next Command\tAlt-Down" msgstr "" #: ../src/wxMaxima.cpp:2209 ../src/wxMaxima.cpp:2225 msgid "No matches found!" msgstr "" #: ../src/wxMaximaFrame.cpp:1022 msgid "Normality Test..." msgstr "" #: ../src/wxMaxima.cpp:2642 msgid "Not a valid matrix dimension!" msgstr "" #: ../src/wxMaxima.cpp:2507 ../src/wxMaxima.cpp:2531 msgid "Not a valid number of equations!" msgstr "" #: ../src/wxMaxima.cpp:3494 msgid "Not connected." msgstr "" #: ../src/wxMaxima.cpp:2924 msgid "Num. deg:" msgstr "" #: ../src/wxMaxima.cpp:2499 ../src/wxMaxima.cpp:2523 msgid "Number of equations:" msgstr "" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "" #: ../src/BC2Wiz.cpp:43 ../src/BC2Wiz.cpp:47 ../src/Gen1Wiz.cpp:33 #: ../src/Gen1Wiz.cpp:37 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/Gen4Wiz.cpp:54 #: ../src/Gen4Wiz.cpp:58 ../src/IntegrateWiz.cpp:58 ../src/IntegrateWiz.cpp:62 #: ../src/LimitWiz.cpp:50 ../src/LimitWiz.cpp:54 ../src/MatWiz.cpp:38 #: ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 ../src/MatWiz.cpp:191 #: ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 ../src/Plot2dWiz.cpp:560 #: ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 ../src/Plot2dWiz.cpp:659 #: ../src/Plot3dWiz.cpp:102 ../src/Plot3dWiz.cpp:106 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/SubstituteWiz.cpp:39 #: ../src/SubstituteWiz.cpp:43 ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 msgid "OK" msgstr "" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "" #: ../src/wxMaxima.cpp:2906 ../src/wxMaxima.cpp:3032 ../src/wxMaxima.cpp:3049 msgid "Old variable:" msgstr "" #: ../src/wxMaxima.cpp:3651 msgid "One sample t-test" msgstr "" #: ../src/wxMaximaFrame.cpp:663 msgid "Online tutorials" msgstr "" #: ../src/Config.cpp:306 ../src/main.cpp:202 ../src/wxMaxima.cpp:1930 #: ../src/wxMaximaFrame.cpp:710 ../src/wxMaximaFrame.cpp:774 msgid "Open" msgstr "" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "" #: ../src/wxMaximaFrame.cpp:712 ../src/wxMaximaFrame.cpp:777 msgid "Open document" msgstr "" #: ../src/wxMaxima.cpp:3712 msgid "Open matrix" msgstr "" #: ../src/wxMaxima.cpp:966 ../src/wxMaxima.cpp:1033 msgid "Opening file" msgstr "" #: ../src/Config.cpp:97 ../src/wxMaximaFrame.cpp:722 #: ../src/wxMaximaFrame.cpp:789 msgid "Options" msgstr "" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "" #: ../src/wxMaximaFrame.cpp:494 msgid "P&ade Approximation..." msgstr "" #: ../src/wxMaxima.cpp:2099 ../src/wxMaxima.cpp:3978 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" #: ../src/wxMaxima.cpp:2926 msgid "Pade approximation" msgstr "" #: ../src/wxMaximaFrame.cpp:495 msgid "Pade approximation of a Taylor series" msgstr "" #: ../src/wxMaximaFrame.cpp:1069 msgid "Pagebreak" msgstr "" #: ../src/wxMaximaFrame.cpp:339 msgid "Panes" msgstr "" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "" #: ../src/wxMaxima.cpp:318 msgid "Parsing output" msgstr "" #: ../src/wxMaximaFrame.cpp:517 msgid "Partial &Fractions..." msgstr "" #: ../src/wxMaxima.cpp:2990 msgid "Partial fractions" msgstr "" #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1156 msgid "Parts of the document will not be loaded correctly!" msgstr "" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:732 ../src/wxMaximaFrame.cpp:802 msgid "Paste" msgstr "" #: ../src/wxMaximaFrame.cpp:246 msgid "Paste\tCtrl-V" msgstr "" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:805 msgid "Paste from clipboard" msgstr "" #: ../src/wxMaximaFrame.cpp:247 msgid "Paste text from clipboard" msgstr "" #: ../src/wxMaximaFrame.cpp:1031 msgid "Piechart..." msgstr "" #: ../src/wxMaxima.cpp:1428 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "" #: ../src/Config.cpp:934 msgid "Please restart wxMaxima for changes to take effect!" msgstr "" #: ../src/wxMaximaFrame.cpp:621 msgid "Plot &2d..." msgstr "" #: ../src/wxMaximaFrame.cpp:623 msgid "Plot &3d..." msgstr "" #: ../src/wxMaximaFrame.cpp:625 msgid "Plot &Format..." msgstr "" #: ../src/Plot2dWiz.cpp:116 ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 #: ../src/wxMaxima.cpp:3197 ../src/wxMaxima.cpp:3947 msgid "Plot 2D" msgstr "" #: ../src/wxMaximaFrame.cpp:985 msgid "Plot 2D..." msgstr "" #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "" #: ../src/Plot3dWiz.cpp:118 ../src/wxMaxima.cpp:3183 ../src/wxMaxima.cpp:3960 msgid "Plot 3D" msgstr "" #: ../src/wxMaximaFrame.cpp:986 msgid "Plot 3D..." msgstr "" #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "" #: ../src/wxMaxima.cpp:3210 msgid "Plot format" msgstr "" #: ../src/wxMaximaFrame.cpp:622 msgid "Plot in 2 dimensions" msgstr "" #: ../src/wxMaximaFrame.cpp:624 msgid "Plot in 3 dimensions" msgstr "" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "" #: ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 ../src/LimitWiz.cpp:32 #: ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2439 ../src/wxMaxima.cpp:2454 #: ../src/wxMaxima.cpp:2562 msgid "Point:" msgstr "" #: ../src/Config.cpp:250 msgid "Polish" msgstr "" #: ../src/wxMaxima.cpp:2943 ../src/wxMaxima.cpp:2958 ../src/wxMaxima.cpp:2973 msgid "Polynomial 1:" msgstr "" #: ../src/wxMaxima.cpp:2943 ../src/wxMaxima.cpp:2958 ../src/wxMaxima.cpp:2973 msgid "Polynomial 2:" msgstr "" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "" #: ../src/wxMaxima.cpp:3250 msgid "Precision" msgstr "" #: ../src/wxMaximaFrame.cpp:280 msgid "Preferences...\tCTRL+," msgstr "" #: ../src/wxMaximaFrame.cpp:319 msgid "Previous Command\tAlt-Up" msgstr "" #: ../src/wxMaximaFrame.cpp:718 ../src/wxMaximaFrame.cpp:784 msgid "Print" msgstr "" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:720 #: ../src/wxMaximaFrame.cpp:787 msgid "Print document" msgstr "" #: ../src/wxMaxima.cpp:3156 msgid "Product" msgstr "" #: ../src/wxMaximaFrame.cpp:1036 msgid "Read Matrix..." msgstr "" #: ../src/wxMaxima.cpp:549 msgid "Reading Maxima output" msgstr "" #: ../src/wxMaxima.cpp:362 ../src/wxMaxima.cpp:823 ../src/wxMaxima.cpp:956 #: ../src/wxMaxima.cpp:978 ../src/wxMaxima.cpp:989 ../src/wxMaxima.cpp:1026 #: ../src/wxMaxima.cpp:1049 ../src/wxMaxima.cpp:1061 ../src/wxMaxima.cpp:1082 #: ../src/wxMaxima.cpp:1128 ../src/wxMaxima.cpp:1348 ../src/wxMaxima.cpp:1369 msgid "Ready for user input" msgstr "" #: ../src/wxMaximaFrame.cpp:322 msgid "Recall next command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:320 msgid "Recall previous command from history" msgstr "" #: ../src/wxMaximaFrame.cpp:973 msgid "Rectform" msgstr "" #: ../src/wxMaximaFrame.cpp:226 msgid "Redo\tCtrl-Shift-Z" msgstr "" #: ../src/wxMaximaFrame.cpp:227 msgid "Redo last change" msgstr "" #: ../src/wxMaximaFrame.cpp:978 msgid "Reduce (tr)" msgstr "" #: ../src/wxMaximaFrame.cpp:569 msgid "Reduce trigonometric expression" msgstr "" #: ../src/wxMaximaFrame.cpp:294 msgid "Remove All Output" msgstr "" #: ../src/wxMaximaFrame.cpp:295 msgid "Remove output from input cells" msgstr "" #: ../src/wxMaxima.cpp:2232 #, c-format msgid "Replaced %d occurences." msgstr "" #: ../src/wxMaximaFrame.cpp:668 msgid "Report bug" msgstr "" #: ../src/wxMaximaFrame.cpp:354 msgid "Restart Maxima" msgstr "" #: ../src/wxMaximaFrame.cpp:477 msgid "Risch Integration..." msgstr "" #: ../src/wxMaximaFrame.cpp:392 msgid "Roots of &Polynomial" msgstr "" #: ../src/wxMaximaFrame.cpp:395 msgid "Roots of Polynomial (bfloat)" msgstr "" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "" #: ../src/Config.cpp:252 msgid "Russian" msgstr "" #: ../src/wxMaxima.cpp:3664 msgid "Sample 1:" msgstr "" #: ../src/wxMaxima.cpp:3664 msgid "Sample 2:" msgstr "" #: ../src/wxMaxima.cpp:3650 msgid "Sample:" msgstr "" #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4432 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:778 msgid "Save" msgstr "" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "" #: ../src/wxMaxima.cpp:1844 msgid "Save As" msgstr "" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "" #: ../src/wxMaxima.cpp:2097 msgid "Save Selection to Image" msgstr "" #: ../src/wxMaximaFrame.cpp:256 msgid "Save Selection to Image..." msgstr "" #: ../src/wxMaxima.cpp:3992 msgid "Save animation to file" msgstr "" #: ../src/wxMaxima.cpp:4444 msgid "Save changes before closing?" msgstr "" #: ../src/wxMaxima.cpp:4445 msgid "Save changes?" msgstr "" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:781 msgid "Save document" msgstr "" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "" #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "" #: ../src/wxMaximaFrame.cpp:257 msgid "Save selection from document to an image file" msgstr "" #: ../src/wxMaxima.cpp:3976 msgid "Save selection to file" msgstr "" #: ../src/Config.cpp:1064 msgid "Save style to file" msgstr "" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "" #: ../src/wxMaxima.cpp:3587 msgid "Scatterplot" msgstr "" #: ../src/wxMaximaFrame.cpp:1029 msgid "Scatterplot..." msgstr "" #: ../src/wxMaximaFrame.cpp:1067 msgid "Section" msgstr "" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "" #: ../src/wxMaximaFrame.cpp:253 msgid "Select All\tCtrl-A" msgstr "" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "" #: ../src/wxMaxima.cpp:3748 msgid "Select Subsample" msgstr "" #: ../src/IntegrateWiz.cpp:218 ../src/IntegrateWiz.cpp:237 #: ../src/LimitWiz.cpp:134 ../src/SeriesWiz.cpp:108 msgid "Select a constant" msgstr "" #: ../src/wxMaximaFrame.cpp:254 msgid "Select all" msgstr "" #: ../src/wxMaxima.cpp:2265 msgid "Select math display algorithm" msgstr "" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" #: ../src/Config.cpp:372 msgid "Selection" msgstr "" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3092 msgid "Series" msgstr "" #: ../src/wxMaximaFrame.cpp:984 msgid "Series..." msgstr "" #: ../src/wxMaxima.cpp:650 msgid "Server started" msgstr "" #: ../src/wxMaximaFrame.cpp:639 msgid "Set &Precision..." msgstr "" #: ../src/wxMaximaFrame.cpp:274 msgid "Set Zoom" msgstr "" #: ../src/wxMaximaFrame.cpp:640 msgid "Set bigfloat precision" msgstr "" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "" #: ../src/wxMaximaFrame.cpp:626 msgid "Set plot format" msgstr "" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 100%" msgstr "" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 120%" msgstr "" #: ../src/wxMaximaFrame.cpp:270 msgid "Set zoom to 150%" msgstr "" #: ../src/wxMaximaFrame.cpp:271 msgid "Set zoom to 200%" msgstr "" #: ../src/wxMaximaFrame.cpp:272 msgid "Set zoom to 300%" msgstr "" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 80%" msgstr "" #: ../src/wxMaximaFrame.cpp:430 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "" #: ../src/wxMaximaFrame.cpp:616 msgid "Setup modulus computation" msgstr "" #: ../src/wxMaximaFrame.cpp:363 msgid "Show &Definition..." msgstr "" #: ../src/wxMaximaFrame.cpp:361 msgid "Show &Functions" msgstr "" #: ../src/wxMaximaFrame.cpp:659 msgid "Show &Tips..." msgstr "" #: ../src/wxMaximaFrame.cpp:366 msgid "Show &Variables" msgstr "" #: ../src/wxMaximaFrame.cpp:648 ../src/wxMaximaFrame.cpp:651 #: ../src/wxMaximaFrame.cpp:757 ../src/wxMaximaFrame.cpp:831 msgid "Show Maxima help" msgstr "" #: ../src/wxMaximaFrame.cpp:301 msgid "Show Template\tCtrl-Shift-K" msgstr "" #: ../src/wxMaximaFrame.cpp:660 msgid "Show a tip" msgstr "" #: ../src/wxMaxima.cpp:3528 msgid "Show all commands similar to:" msgstr "" #: ../src/wxMaxima.cpp:3515 msgid "Show an example for the command:" msgstr "" #: ../src/wxMaximaFrame.cpp:654 msgid "Show an example of usage" msgstr "" #: ../src/wxMaximaFrame.cpp:657 msgid "Show commands similar to" msgstr "" #: ../src/wxMaximaFrame.cpp:362 msgid "Show defined functions" msgstr "" #: ../src/wxMaximaFrame.cpp:367 msgid "Show defined variables" msgstr "" #: ../src/wxMaximaFrame.cpp:364 msgid "Show definition of a function" msgstr "" #: ../src/wxMaximaFrame.cpp:302 msgid "Show function template" msgstr "" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "" #: ../src/wxMaxima.cpp:2287 msgid "Show the definition of function:" msgstr "" #: ../src/wxMaximaFrame.cpp:969 msgid "Simplify" msgstr "" #: ../src/wxMaximaFrame.cpp:529 msgid "Simplify &Radicals" msgstr "" #: ../src/wxMaximaFrame.cpp:970 msgid "Simplify (r)" msgstr "" #: ../src/wxMaximaFrame.cpp:976 msgid "Simplify (tr)" msgstr "" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "" #: ../src/wxMaximaFrame.cpp:555 msgid "Simplify an expression containing factorials" msgstr "" #: ../src/wxMaximaFrame.cpp:530 msgid "Simplify expression containing radicals" msgstr "" #: ../src/wxMaximaFrame.cpp:528 msgid "Simplify rational expression" msgstr "" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "" #: ../src/wxMaximaFrame.cpp:566 msgid "Simplify trigonometric expression" msgstr "" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2439 ../src/wxMaxima.cpp:2454 msgid "Solution:" msgstr "" #: ../src/wxMaxima.cpp:2375 ../src/wxMaxima.cpp:2389 ../src/wxMaxima.cpp:3865 msgid "Solve" msgstr "" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &Algebraic System..." msgstr "" #: ../src/wxMaximaFrame.cpp:401 msgid "Solve &Linear System..." msgstr "" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve &ODE..." msgstr "" #: ../src/wxMaximaFrame.cpp:388 msgid "Solve (to_poly)..." msgstr "" #: ../src/wxMaxima.cpp:2425 ../src/wxMaxima.cpp:2549 msgid "Solve ODE" msgstr "" #: ../src/wxMaximaFrame.cpp:426 msgid "Solve ODE with Lapla&ce..." msgstr "" #: ../src/wxMaximaFrame.cpp:980 msgid "Solve ODE..." msgstr "" #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2511 msgid "Solve algebraic system" msgstr "" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve algebraic system of equations" msgstr "" #: ../src/wxMaximaFrame.cpp:423 msgid "Solve boundary value problem for second degree ODE" msgstr "" #: ../src/wxMaximaFrame.cpp:387 msgid "Solve equation(s)" msgstr "" #: ../src/wxMaximaFrame.cpp:389 msgid "Solve equation(s) with to_poly_solver" msgstr "" #: ../src/wxMaximaFrame.cpp:417 msgid "Solve initial value problem for first degree ODE" msgstr "" #: ../src/wxMaximaFrame.cpp:420 msgid "Solve initial value problem for second degree ODE" msgstr "" #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2535 msgid "Solve linear system" msgstr "" #: ../src/wxMaximaFrame.cpp:402 msgid "Solve linear system of equations" msgstr "" #: ../src/wxMaximaFrame.cpp:413 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "" #: ../src/wxMaximaFrame.cpp:427 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:979 msgid "Solve..." msgstr "" #: ../src/Config.cpp:253 msgid "Spanish" msgstr "" #: ../src/IntegrateWiz.cpp:46 ../src/IntegrateWiz.cpp:50 #: ../src/LimitWiz.cpp:35 ../src/SeriesWiz.cpp:41 msgid "Special" msgstr "" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "" #: ../src/wxMaximaFrame.cpp:744 ../src/wxMaximaFrame.cpp:746 msgid "Start animation" msgstr "" #: ../src/wxMaxima.cpp:264 msgid "Starting Maxima process failed" msgstr "" #: ../src/wxMaxima.cpp:729 msgid "Starting Maxima..." msgstr "" #: ../src/wxMaxima.cpp:262 ../src/wxMaxima.cpp:647 msgid "Starting server failed" msgstr "" #: ../src/wxMaxima.cpp:628 #, c-format msgid "Starting server on port %d" msgstr "" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "" #: ../src/wxMaximaFrame.cpp:334 msgid "Statistics\tAlt-Shift-S" msgstr "" #: ../src/wxMaximaFrame.cpp:747 ../src/wxMaximaFrame.cpp:749 #: ../src/wxMaximaFrame.cpp:820 msgid "Stop animation" msgstr "" #: ../src/Config.cpp:357 msgid "Strings" msgstr "" #: ../src/Config.cpp:99 msgid "Style" msgstr "" #: ../src/Config.cpp:331 msgid "Styles" msgstr "" #: ../src/wxMaximaFrame.cpp:1041 msgid "Subsample..." msgstr "" #: ../src/wxMaximaFrame.cpp:1066 msgid "Subsection" msgstr "" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "" #: ../src/wxMaximaFrame.cpp:974 msgid "Subst..." msgstr "" #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2337 #: ../src/wxMaxima.cpp:3934 msgid "Substitute" msgstr "" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:604 msgid "Substitute..." msgstr "" #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3140 msgid "Sum" msgstr "" #: ../src/wxMaxima.cpp:3364 msgid "System info" msgstr "" #: ../src/wxMaxima.cpp:2924 msgid "Taylor series:" msgstr "" #: ../src/wxMaxima.cpp:2877 msgid "Tellrat" msgstr "" #: ../src/wxMaximaFrame.cpp:1064 msgid "Text" msgstr "" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" #: ../src/wxMaxima.cpp:392 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "" #: ../src/wxMaxima.cpp:3067 ../src/wxMaxima.cpp:3910 msgid "Times:" msgstr "" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "" #: ../src/wxMaximaFrame.cpp:1065 msgid "Title" msgstr "" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" #: ../src/wxMaximaFrame.cpp:636 msgid "To &Bigfloat" msgstr "" #: ../src/wxMaximaFrame.cpp:633 msgid "To &Float" msgstr "" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" #: ../src/IntegrateWiz.cpp:47 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 #: ../src/SumWiz.cpp:39 ../src/wxMaxima.cpp:2733 ../src/wxMaxima.cpp:3155 msgid "To:" msgstr "" #: ../src/wxMaximaFrame.cpp:610 msgid "Toggle &Algebraic Flag" msgstr "" #: ../src/wxMaximaFrame.cpp:631 msgid "Toggle &Numeric Output" msgstr "" #: ../src/wxMaximaFrame.cpp:374 msgid "Toggle &Time Display" msgstr "" #: ../src/wxMaximaFrame.cpp:611 msgid "Toggle algebraic flag" msgstr "" #: ../src/wxMaximaFrame.cpp:276 msgid "Toggle full screen editing" msgstr "" #: ../src/wxMaximaFrame.cpp:632 msgid "Toggle numeric output" msgstr "" #: ../src/wxMaximaFrame.cpp:338 msgid "Toolbar\tAlt-Shift-T" msgstr "" #: ../src/wxMaxima.cpp:3376 msgid "Toolbar icons" msgstr "" #: ../src/wxMaxima.cpp:3377 msgid "Translated by" msgstr "" #: ../src/wxMaximaFrame.cpp:461 msgid "Transpose a matrix" msgstr "" #: ../src/wxMaximaFrame.cpp:662 msgid "Tutorials" msgstr "" #: ../src/wxMaxima.cpp:3666 msgid "Two sample t-test" msgstr "" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "" #: ../src/wxMaxima.cpp:3366 msgid "Unicode Support" msgstr "" #: ../src/wxMaxima.cpp:4359 ../src/wxMaxima.cpp:4366 msgid "Upgrade" msgstr "" #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:3879 msgid "Upper bound:" msgstr "" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2439 #: ../src/wxMaxima.cpp:2455 ../src/wxMaxima.cpp:2563 msgid "Value:" msgstr "" #: ../src/wxMaxima.cpp:2374 ../src/wxMaxima.cpp:2388 ../src/wxMaxima.cpp:3066 #: ../src/wxMaxima.cpp:3864 ../src/wxMaxima.cpp:3909 msgid "Variable(s):" msgstr "" #: ../src/IntegrateWiz.cpp:39 ../src/LimitWiz.cpp:29 ../src/Plot2dWiz.cpp:46 #: ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 ../src/Plot3dWiz.cpp:43 #: ../src/Plot3dWiz.cpp:52 ../src/SeriesWiz.cpp:35 ../src/SumWiz.cpp:33 #: ../src/wxMaxima.cpp:2404 ../src/wxMaxima.cpp:2423 ../src/wxMaxima.cpp:2663 #: ../src/wxMaxima.cpp:2732 ../src/wxMaxima.cpp:2988 ../src/wxMaxima.cpp:3003 #: ../src/wxMaxima.cpp:3154 ../src/wxMaxima.cpp:3878 msgid "Variable:" msgstr "" #: ../src/Config.cpp:352 msgid "Variables" msgstr "" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2485 ../src/wxMaxima.cpp:3120 #: ../src/wxMaxima.cpp:3695 msgid "Variables:" msgstr "" #: ../src/wxMaximaFrame.cpp:1015 msgid "Variance..." msgstr "" #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1089 ../src/wxMaxima.cpp:1156 #: ../src/wxMaxima.cpp:1426 msgid "Warning" msgstr "" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" #: ../src/wxMaxima.cpp:2678 ../src/wxMaxima.cpp:2697 msgid "Width:" msgstr "" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "" #: ../src/wxMaxima.cpp:3373 msgid "Written by" msgstr "" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" #: ../src/wxMaxima.cpp:4356 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" #: ../src/wxMaxima.cpp:4431 ../src/wxMaxima.cpp:4438 msgid "Your changes will be lost if you don't save them." msgstr "" #: ../src/wxMaxima.cpp:4366 msgid "Your version of wxMaxima is up to date." msgstr "" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom &In\tAlt-I" msgstr "" #: ../src/wxMaximaFrame.cpp:263 msgid "Zoom Ou&t\tAlt-O" msgstr "" #: ../src/wxMaximaFrame.cpp:262 msgid "Zoom in 10%" msgstr "" #: ../src/wxMaximaFrame.cpp:264 msgid "Zoom out 10%" msgstr "" #: ../src/wxMaxima.cpp:2123 ../src/wxMaxima.cpp:2131 msgid "Zoom set to " msgstr "" #: ../src/wxMaxima.cpp:4219 ../src/wxMaximaFrame.cpp:93 msgid "[ unsaved ]" msgstr "" #: ../src/wxMaxima.cpp:4221 msgid "[ unsaved* ]" msgstr "" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "" #: ../src/EditorCell.cpp:331 msgid "lines hidden" msgstr "" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "" #: ../src/wxMaxima.cpp:2697 msgid "matrix[i,j]:" msgstr "" #: ../src/wxMaxima.cpp:3437 msgid "no" msgstr "" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "" #: ../src/wxMaxima.cpp:4416 msgid "unsaved" msgstr "" #: ../src/wxMaxima.cpp:1839 ../src/wxMaxima.cpp:1952 #: ../src/wxMaximaFrame.cpp:95 msgid "untitled" msgstr "" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3448 msgid "wxMaxima" msgstr "" #: ../src/wxMaxima.cpp:4219 ../src/wxMaxima.cpp:4221 ../src/wxMaxima.cpp:4230 #: ../src/wxMaxima.cpp:4233 ../src/wxMaximaFrame.cpp:93 #, c-format msgid "wxMaxima %s " msgstr "" #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "" #: ../src/wxMaxima.cpp:1424 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" #: ../src/wxMaxima.cpp:1597 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" #: ../src/wxMaxima.cpp:1501 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" #: ../src/wxMaxima.cpp:252 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" #: ../src/wxMaxima.cpp:1679 msgid "wxMaxima document" msgstr "" #: ../src/wxMaxima.cpp:1846 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1932 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "" #: ../src/wxMaxima.cpp:977 ../src/wxMaxima.cpp:988 ../src/wxMaxima.cpp:1047 #: ../src/wxMaxima.cpp:1059 msgid "wxMaxima encountered an error loading " msgstr "" #: ../src/wxMaxima.cpp:3375 msgid "wxMaxima icon" msgstr "" #: ../src/wxMaxima.cpp:3363 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "" #: ../src/wxMaxima.cpp:3429 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "" #: ../src/wxMaxima.cpp:3435 msgid "yes" msgstr "" wxMaxima-13.04.2/locales/wxwin/000755 000765 000024 00000000000 12150104173 016652 5ustar00andrejstaff000000 000000 wxMaxima-13.04.2/locales/zh_CN.mo000644 000765 000024 00000156514 12073007214 017052 0ustar00andrejstaff000000 000000 <1A)AAAAB&Bg7BJBBB CC'C BC NCXChC CCCC CC C DD D&D=D NDZDmDD DDD DDDD D EE-ER3DRxR }R RRR R RRS(S$;S,`S%S&SSS S SST T1TJT0PTT T TTTTTTT U'U;U OU[U bU nU{UU UUU U UUUV /VPV WVcV:V VV V V V V W W/"WRW ZWeWuW.W(WW WW(X=X FX SX `X jXuX{XXXX!XX#X"Y%:Y*`YY Y YY YYYYYZ*!ZLZfZ ZZ ZZZZZ(Z [ ![ -[8[=[&L[s[y[ ~[[[ [/[[)\.\'M\u\\\\ \\ \ ]]-]A]"S]5v]]]]]]]] ] ^$ ^71^3i^^^^ ^^^"^,_*H_s_z__+__3_, `,9`'f````;````aa )a 3a@aHa\a r LrZrkr#}rr-rrr" s4.s csos~s s sssss sst tt ttttt u!u1uBuSuduuuu:uuuu vv-v>v Yvdv vvvvvw!w8w+Nw zwww w ww,w'x;xXx!ixx yyyy yy yy zz#.z2Rzz%z0z1z { 4{8U{A{{{{{{ ||:|M|d| |||||| | ||| | }} }}.}6} ;}E}DZ}}B[~u~"= CN  $.7Ҁ`XFJaxԂ  !3 9 C NZk -փ  ) 3 = HT\p),0 ]hwv)U1:'l ̊ ي  $+ 0= FSV \fn w D4Cyb Ǎeٍ.?&n aagk3\ ː%ِWAW %ϑ  +9Par   Œ Ӓ  0 G Uc w  Ɠԓ % <G^ p{ Ĕ ϔݔ )I [fz ̕ݕ 0ٖƗח'/W-qŘ̘ ! %/ D,Q~   ͚7ۚ1 E OY!` ͛ ؛/ .!;] m.z Ü ߜ 5Oj ӝ !=. lv <Ş7':*b0$$7T3t!ʠѠ+;Kk$~'$ˡ!!4; BP c mw4 !Ƣ*= Q ^k ȣң    $1 J&W~ (Ѥ   #5FU\{ *'ݥ !.5D z  Ȧ"ަ"$$4Y'x$ŧ ̧٧#9O1V è Ш ݨ+/[ v ! ɩө ک ';Qp3ͪݪ , 3!=_z'˫ ҫܫ   +<*h ̬٬ !&=d ky! $*߭ & BL _Hi îܮ)  #07J 4AZhsܰA % 2<Z+m+ űұٱ +8H_oβ #<Un  (̳ Nhz  : %4J]q   )õ %< P]v'Ŷ   (/H Yg{@շ %r4˸޸  #* 1 ? L Vc| ڹ  , ?LS/i  úк  e$  лݻ *) 0>Q j.t(̼ % 5BR b o | ɽ.,C JW^n!!$.S!f ǿ!ۿ  !+ 2 ?Ics !'I*_%7  $1 5 ?L`u {=D KUh|'1Ke<~ 0 J$W| (2[qx 3 3Mj~1- 3"@-c-%* 9 CP W d q~$  # *4 ;HOV] dq 8:fEUe d~W];&9Lbr  %4 ;E'Z   3 if`6(?hy    "/>BF M W an wJ!Ml_f,00]TTHvGq,Hpk tIo0}YNCvbXcCDB0Ap R#42ubzAqch 1!> h#5=W`6uKkj &OL ,@<P(!d1$w+d-(]r{DCQg\)*8F?'2MKr7/na *).Dx $FFwk|sS"v~  p=Yi&'my)1?2\R%"l}E<T%,}TOdn9Osg Uo];y{5(wt3l PU~4P67 /XQ{\hSz`ja3BGG8eKV3xyM|6^^HVx]E>Qm XZ:&;-|BNmt_AZo*I#+$e^Sef/r=%Y.7 jJ5H ."Wi8sL<Ml@:fRNfWJ~I[b [az[u!q_  Jg_Ui9Z Vn4`?'>:E c;0 @ +-9LT wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy Previous Output Ctrl-UCopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCreate a new cell with previous outputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-Shift-REvaluate All Visible Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionEvaluate all visible cells in the documentExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFold All Ctrl-Alt-[Fold all sectionsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGalicianGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help CTRL+?Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPreferences... CTRL+,Previous Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformRedo Ctrl-Shift-ZRedo last changeReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnfold All Ctrl-Alt-]Unfold all folded sectionsUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: wxMaxima HEAD PO-Revision-Date: 2013-01-04 00:31+0800 Last-Translator: crickzhang1 Language-Team: amateur MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit wxWidgets 版本:%d.%d.%d. 支持 Unicode: %s Lisp 版本: Maxima 版本: 未连接到 Maxima! 未连接。 << 表达式过长不易显示! >> 是以新版本 wxMaxima 保存的,无法正确载入。请更新您的 wxMaxima。 是以新版本 wxMaxima 保存的。请更新您的 wxMaxima。代数(&A)应用到列表(&A)...查找命令(&A)...载入批处理文件(&B)... Ctrl-B边界值问题(&B)...错误报告(&B)微积分(&C)标准形(&C)特征多项式(&C)...清除内存(&C)合并阶乘(&C)复数化简(&C)连分数(&C)复制(&C) Ctrl-C定积分(&D)德莫佛公式(&D)行列式(&D)微分(&D)...编辑(&E)消元(&E)...输入矩阵(&E)...示例(&E)...表达式展开(&E)三角函数展开(&E)指数化(&E)导出(&E)...因式分解式(&F)文件(&F)寻根(&F)...生成矩阵(&G)...最大公因子(&G)...帮助(&H)积分(&I)...中断(&I) Ctrl-.中断(&I) Ctrl-G矩阵求逆(&I)载入包(&L)... Ctrl-L映射至列表(&M)...Maxima(&M)设置模运算(&M)...新建(&N) Ctrl-N数值(&N)数值积分(&N)使用 Nusum(&N)打开(&O) Ctrl-O打开(&O)... Ctrl-O绘图(&P)幂级数(&P)打印(&P)... Ctrl-P有理式(&R)三角函数化简(&R)重启 Maxima(&R)多项式求根(实根)(&R)保存(&S) Ctrl-S化简(&S)表达式化简(&S)阶乘化简(&S)三角函数化简(&S)求解(&S)...特殊(&S)泰勒级数(&T)矩阵转置(&T)三角函数化简(&T)&pm3d(使用默认语言)负无穷
Lisp 版本:wxMaxima 0.8.0 引入了“水平光标”,其看起来为单元之间的水平线,表示您输入或粘贴文本或之行菜单命令时新单元出现的位置。wxMaxima 0.8.2 引入了一种新的文档格式,其不仅保存输入和注释,还保存计算输出。当保存您的文档时,需要选择“wxMaxima XML 文档”设定值(&A)...关于关于 wxMaxima活动单元的括号伴随矩阵(&J)添加代数恒等式(&Q)...添加目录至搜索路径添加目录至搜索路径:添加恒等式至有理式化简因子添加至搜索路径(&P)Maxima 的附加参数(例如: -l clisp)。附加参数:所有类型|*动画应用应用函数至列表命令查找数组:美工:询问是否保存未命名文档设定值边界条件(二阶)直方图...批处理文件 (*.bat)|*.bat|所有类型|*载入批处理文件黑体箱线图...浏览构建信息(&I)默认使用 Shift-Enter 对命令求值,Enter 则用于进行多行输入。通过在“编辑->配置”对话框中选中”使用 Enter 对单元求值“可以对此进行更改,交换两组按键的功能。修改变量(&H)...配置(&O)计算乘积(&P)...求和(&M)...将最后的计算结果以长浮点数(bigfloat)表示将最后的计算结果以浮点数(float)表示求模:求乘积求和无法连接到网页服务器。无法下载版本信息。取消标准形式(三角)加泰罗尼亚语单元(&L)单元括号修改2D显示方式(&2)修改用于显示数学输出的2D显示算法修改变量修改积分或求和中的变量特征多项式检查更新检查是否存在新版本 wxMaxima/Maxima。繁体中文选择字体选择新的绘图格式:类型:关闭 \Ctrl-W关闭窗口列名称:列:合并表达式中的阶乘x坐标,以逗号分割y 坐标,以逗号分割注释掉所选内容自动补齐 Ctrl-K自动补齐计算数值的连分数表示计算伴随矩阵计算矩阵的特征多项式计算矩阵的行列式计算最大公因子矩阵求逆计算最小公倍式(在使用前先执行 load(functs))条件:配置文件 (*.ini)|*.ini配置警告配置 wxMaxima常量合并对数式转换二项式、beta 函数及 gamma 函数为阶乘形式转换二项式、阶乘及 beta 函数为 gamma 函数转换复数表达式为极坐标形式转换复数表达式为直角坐标形式转换虚数的指数函数为三角函数形式转换乘积的对数为对数的和转换对数的和为乘积的对数转换为阶乘(&F)转换为 Gamma 函数(&G)转换为极坐标形式(&P)转换为直角坐标形式(&R)转换三角函数表达式为标准拟线性形式转换三角函数为指数形式复制复制为图片复制为 LaTeX复制前一次输入 Ctrl-I复制前一次输出 Ctrl-U复制为图片复制为 LaTeX复制为纯文本 Ctrl-Shift-C复制所选区域复制文档中所选区域为图片复制文档中所选区域为纯文本复制文档中所选区域为 LaTeX使用前一次输入新建单元使用前一次输出新建单元光标剪切剪切 Ctrl-X剪切所选区域捷克语丹麦语数据矩阵:数据文件 (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt数据:分解有理函数为部分分式默认默认字体:默认端口:删除删除函数(&U)...删除所选区域删除变量(&A)...删除函数删除变量删除内存中所有值删除函数:删除变量:分母次数:深度:导数:偏差...多项式相除(&V)...微分...微分对表达式求微分微分...方向:离散绘图以 TeX 格式显示(&X)显示算法以 TeX 格式显示最后一次结果显示求值时间数字/多项式相除分割单元将数字或多项式相除您是否想保存文档中的更改:“文档文档背景不保存方程(&Q)退出(&X) Ctrl-Q特征向量(&N)e特征值(&V)消元消去方程组中一个变量英语输入数据输入矩阵...输入一个矩阵输入一个用于有理式化简的方程输入变量列表,以逗号分割。使用回车对单元求值输入矩阵输入新的精度:输入 Maxima 程序(可执行文件)的路径。Epsilon:方程 %d:方程:方程:方程错误错误 %d错误!对名词形式求值对所有单元求值 Ctrl-Shift-R对所有可见单元求值 Ctrl-R对单元求值对活动单元或所选单元求值对文档中所有单元求值对表达式中所有名词形式求值对文档中所有可见单元求值示例示例文本退出 wxMaxima展开展开(三角)展开表达式展开对数式展开一个表达式展开三角表达式导出将文档导出为 HTML 文件或 pdfLaTeX 文件导出到 HTML 失败!导出到 TeX 失败!表达式表达式:表达式:因式分解复数因式分解对表达式因式分解对表达式因式分解对含 Gaussian 数的表达式因式分解阶乘和 Gamma 函数(&G)致命错误图 %d:文件无法找到文件您想打开的文件不存在。文件:查找查找 Ctrl-F求极限(&L)...求极小值...求根...求表达式的极小值(无约束)求表达式的极限求方程在在区间内的根求多项式所有的根求多项式所有的根(以长浮点数表示)查找并替换查找并替换求矩阵特征值求矩阵特征向量求最小值求多项式的实数根求根查找...文本控件中使用等宽字体折叠所有的 Ctrl-Alt-[折叠所有节文档显示采用字体文档中数学字符显示采用字体字体格式:法语从:全屏 Alt-Enter函数函数名函数:函数:用于复数化简的函数用于阶乘和 gamma 函数化简的函数用于三角函数表达式化简的函数最大公因式GIF 图片 (*.gif)|*.gif加里西亚语常用数学常用数学 Alt-Shift-M创建矩阵从表达式创建矩阵...从二维数组产生一个矩阵从 lambda 表达式产生一个矩阵德语取虚部(&I)取级数(&S)...计算表达式的 Laplace 变换取实部(&A)计算表达式的 Laplace 逆变换计算表达式的泰勒级数或幂级数取复数表达式的虚部取复数表达式的实部希腊语希腊字母常量网格:HTML 文件 (*.html)|*.html|pdfLaTeX 文件 (*.tex)|*.tex|所有类型|*高度:帮助隐藏所有 Alt-Shift--隐藏所有面板高亮显示标记(在dpart函数中)柱状图柱状图...历史历史 Alt-Shift-H水平光标和普通光标类似,但它是对单元操作。按向上和向下箭头来移动它,在移动它时按住 Shift 键将会选择单元,按 backspace 键或 delete 键两次会删除与水平光标相邻的单元。匈牙利语初始条件(一阶)初始条件(二阶)若您的计算耗时过长,可以尝试菜单命令“Maxima->中断”或“Maxima->重启 Maxima”图片图片文件 (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm包含列:无穷大关于 Maxima 的构建信息初始估计值:一阶常微分方程初始值问题(&1)...二阶常微分方程初始值问题(&2)...输入标签插入插入节单元(&S) Ctrl-3插入文本单元(&T) Ctrl-1插入单元 Alt-Shift-C插入图片插入图片...插入输入单元(&C)插入分页符插入小节单元(&U) Ctrl-4插入节单元插入小节单元插入标题单元(&I) Ctrl-2插入文本单元插入标题单元插入新的输入单元插入新的节单元插入新的小节单元插入新的文本单元插入新的标题单元插入一个换夜符插入图片积分/求和:积分Risch 积分对表达式求积分使用 Risch 算法对表达式求积分积分...中断中断当前计算无效的 Maxima 程序路径。 请再次输入 Maxima 程序所在路径。Laplace 逆变换Laplace 逆变换(&R)...意大利语斜体日本语保留下列特殊符号前的百分号(%):%e, %i 等。最小公倍式wxMaxima 图形界面语言。语言:Laplace 变换Laplace 变换(&T)...最小公倍式... 最小二乘拟合最小二乘拟合...极限极限...线性回归...列表:载入载入包使用批处理命令载入 Maxima 文件载入 Maxima 包文件从文件载入样式下限:映射至矩阵(&P)...创建列表(&L)...创建列表从表达式创建列表在表达式中进行替换映射映射函数至列表映射函数至矩阵在文本控件中输入时匹配括号数学字体:矩阵矩阵映射矩阵名:矩阵:MaximaMaxima 帮助(&H) Ctrl+?Maxima 帮助 F1Maxima 输入Maxima 正在计算Maxima 包 (*.mac)|*.macMaxima 包 (*.mac)|*.mac|Lisp 包 (*.lisp)|*.lisp|全部类型|*Maxima 进程已中止。Maxima 程序:Maxima 问题Maxima 已启动。等待连接中...Maxima 使用”:“进行赋值(例如:”a : 3;“),使用”:=“定义函数(”f(x) := x^2“)。Maxima 版本:平均差检验...平均值检验...求平均值...平均值:中值...合并单元方法:求模名:新建新建 Ctrl-N新建文档新值:新变量:下一条命令 Alt-Down无法找到匹配项!正态分布检验矩阵的大小无效!方程的个数不对!未连接。分子次数:方程个数:数字确认旧值:旧变量:单样本 t-检验在线教程打开打开最近的文件当 Maxima 期望输入时打开一个新单元打开文档打开新窗口打开文档打开矩阵正在打开文件选项选项:单元已过期输出标签Pade 近似(&A)...PNG 图片 (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows 位图 (*.bmp)|*.bmp|X 位图 (*.xpm)|*.xpmPade 近似泰勒级数的 Pade 近似换页面板参数式绘图解析输出部分分式(&F)...部分分式文档的某些部分无法正确载入!粘贴粘贴 Ctrl-V粘贴自剪贴板粘贴文本自剪贴板饼图...请用 “编辑->配置” 配置 wxMaxima。请重启 wxMaxima 以使变更生效。二维绘图(&2)...三维绘图(&3)...绘图格式(&F)...二维绘图二维绘图...二维绘图...三维绘图三维绘图...三维绘图...绘图格式二维绘图三维绘图绘图至文件:点:波兰语多项式1:多项式2:葡萄牙语(巴西)Postscript 文件 (*.eps)|*.eps|全部类型|*精度首选项... Ctrl+,前一条命令 Alt-Up打印打印文档乘积读入矩阵...正在读取 Maxima 输入输入准备就绪重调历史中的下一条命令重调历史中的前一条命令直角坐标x形式重做 Ctrl-Shift-Z重做上次变更化简(三角)对表达式进行三角函数化简移除所有输出移除所有输入单元的输出替换了 %d 次。报告错误重启 MaximaRisch 积分...多项式求根(&P)多项式求根(长浮点数)行:俄语样本1:样本2:样本:保存保存动画另存为另存为... Shift-Ctrl-S保存图片...保存所选区域到图片保存所选区域到图片...保存动画到文件关闭前是否保存修改?是否保存修改?保存文档另存文档为保存面板布局保存会话间的面板布局。保存绘图到文件保存文档中所选区域到图片文件保存所选区域到文件保存样式到文件保存 wxMaxima 窗口大小和位置保存会话间的 wxMaxima 窗口的大小和位置。散布图散布图...节节单元选择全部选择全部 Ctrl-A选择 Maxima 程序选择子样本选择一个常量选择全部选择数学式显示算法选择一部分输出并右击所选区域会打开一个便捷函数菜单,可从中选取函数并作用于此区域。选择级数级数...服务器已启动设定精度(&P)...设定显示比例设定长浮点数精度设定文本控件中使用等宽字体设定绘图格式设定显示比例为100%设定显示比例为120%设定显示比例为150%设定显示比例为200%设定显示比例为300%设定显示比例为80%在使用 Laplace 变换解常微分方程前将定点设值设定模运算显示函数定义(&D)...显示函数(&F)显示提示(&T)...显示变量(&V)显示 Maxima 帮助显示模板 Ctrl-Shift-K显示提示显示所有与其相似的命令:显示以下命令的示例:显示用法示例显示与其相似的命令显示已定义函数显示已定义变量显示函数的定义显示函数模板显示长表达式在 wxMaxima 文档中显示长表达式显示函数的定义化简化简根式(&R)化简根式化简三角函数化简表达式化简含有阶乘的表达式化简含有根式的表达式化简有理式化简求和表达式化简三角表达式自 wxMaxima 0.8.0 起您可以使用菜单命令“单元->插入图片...“在文档中插入图片。注意:如果您想让图片随文档一起保存,您必须将文档保存为 “wxMaxima XML 文档”。解:求解求解代数系统(&A)...求解线性系统(&L)...求解常微分方程(&O)...求解 (to_poly)...求解常微分方程利用 Laplace 变换求解常微分方程(&C)...求解常微分方程...求解代数系统求解代数程组求解二阶常微分方程的边界值问题求解方程使用 to_poly_solver 求解方程求解一阶常微分方程的初始值问题求解二阶常微分方程的初始值问题求解线性系统求解线性方程组求解常微分方程(最大2阶)利用 Laplace 变换求解常微分方程求解...西班牙语特殊特殊常量开始动画开始动画启动 Maxima 进程失败正在启动 Maxima...启动服务器失败正在启动服务器,端口为 %d统计统计 Alt-Shift-S停止动画字符串样式样式子样本小节小节单元代换代换代换求和系统信息泰勒级数:Tellrat 函数文本文本单元文本单元背景Maxima 和 wxMaxima 之间用于通信的默认端口。因特网上有许多关于 Maxima 和 wxMaxima 的资源。请访问 http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials 获得更多关于 wxMaxima 和 Maxima 的信息。生成的 XML 中出现错误。 请报告这一错误。导出 GIF 时发生错误。 确认 ImageMagick 已安装且 wxMaxima 能够找到 convert 程序。坐标刻度:微分次数:对不起,没有提示!标题标题单元标题,节和小节单元可以折叠以隐藏其内容。点击紧邻单元的小方块可以折叠或展开单元,如果同时按下 Shift 键,此单元的所有下级单元也跟着折叠和展开。转换成长浮点数(&B)转换成浮点数(&F)转换成浮点数欲以极坐标形式绘图,在”二维绘图“对话框的”选项“中选择”set ploar“。您也可以在”三维绘图“时使用球坐标和柱坐标绘图。欲在表达式两侧加上括号,请先选取它,再根据光标出现在表达式之前或之后按下”(“或“)”键。欲保存会话间 wxMaxima 窗口的大小和位置,使用”编辑->配置“对话框。欲立即开始使用 wxMaxima,请开始输入命令。此时应会出现一个输入单元,然后按下 Shift-Enter 键运行命令。到:打开代数标志(&A)代开数值输出(&N)打开时间显示(&T)打开代数标志打开全屏编辑打开数值输出工具栏 Alt-Shift-T工具栏图标翻译人员:转置矩阵教程双样本 t-检验类型:乌克兰语下划线撤销 Ctrl-Z撤销上一次更改展开全部 Ctrl-Alt-]展开所有已折叠节单元Unicode 支持升级上限:使用 Gosper 算法使用点积符号(∙)表示乘法使用 jsMath 字体值:变量:变量:变量变量:方差...警告欢迎使用 wxMaxima当使用菜单中的带有一个参数的函数时,默认参数是“%”。如想应用函数于其它值,在运行菜单命令前先在文档中选取它。宽度:在文本控件中输入时插入匹配的括号。作者:您可以使用变量”%“访问最后一次数据结果。您可以使用变量”%on“(n是输入的编号)访问先前命令的输出。你可以使用菜单命令”单元->所有单元求值“或相应的快捷键对整个文档求值。求值顺序为从头到尾。您可以通过选取或点击函数名后按 F1 键获得 Maxima 函数的帮助。wxMaxima将在帮助索引中搜索所选的内容或光标下的单词。您可以通过点击单元左侧的三角号来隐藏输出部分,这对文本单元同样有效。您可以使用”单元“菜单在 wxMaxima 文档中插入不同类型的”单元“。注意,只有”输入单元“可以被求值,其它单元是用来注释或组织您的计算的。您可以使用鼠标(在单元间或单元的左括号拖动鼠标)或通过键盘(按下 Shift 键同时移动光标”)选择多个单元,然后对其进行操作。这在您想删除或对多个单元求值时很有用。您的版本是:%s. 最新版本是:%s。 按“确认”后,会访问 wxMaxima 网页。如果您未保存,您的所有更改将会丢掉。您的 wxMaxima 版本是最新版本。放大(&I) Alt-I缩小(&T) Alt-O将显示比例放大10%将显示比例缩小10%显示比例设值为未保存未保存*非对称两边默认对角普通inline左隐藏行对数尺度矩阵[i,j]:否右对称未保存未命名未命名 %dwxMaximawxMaxima %s wxMaxima 配置wxMaxima 无法找到 Maxima! 请通过“编辑->配置”来配置 wxMaxima。 然后执行“Maxima->重启 Maxima”来启动 Maxima。wxMaxima 无法找到帮助文件。 请检查您的安装是否完整。wxMaxima 无法找到提示集文件。 请检查您的安装是否完整。wxMaxima 无法启动服务器。 请检查您的网络支持是否已打开并再次尝试。wxMaxima 对话框设定了其内各种输入框的默认值,其中一种是”%“。如果您在文档已有选中区域,所选内容将替代”%“。wxMaxima 文档wxMaxima 文档 (*.wxm)|*.wxm|wxMaxima XML 文档 (*.wxmx)|*.wxmx|Maxima 批处理文件 (*.mac)|*.macwxMaxima 文档 (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima 在载入下列文件时出现错误:wxMaxima 图标wxMaxima 是计算机代数系统 Maxima 的图形用户界面,基于 wxWidgets。wxMaxima 是计算机代数系统 Maxima 的图形用户界面,基于 wxWidgets。是wxMaxima-13.04.2/locales/zh_CN.po000644 000765 000024 00000253001 12072763525 017057 0ustar00andrejstaff000000 000000 # This file is distributed under the same license as the wxMaxima package. # # crickzhang1, , 2013. # Some strings in this Simplified Chinese translation have their roots # in the Tranditional Chinese translation (`zh_TW.po`). msgid "" msgstr "" "Project-Id-Version: wxMaxima HEAD\n" "PO-Revision-Date: 2013-01-04 00:31+0800\n" "Last-Translator: crickzhang1 \n" "Language-Team: amateur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../src/wxMaxima.cpp:3440 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets 版本:%d.%d.%d.\n" "支持 Unicode: %s" #: ../src/wxMaxima.cpp:3453 msgid "" "\n" "Lisp: " msgstr "\nLisp 版本:" #: ../src/wxMaxima.cpp:3449 msgid "" "\n" "Maxima version: " msgstr "\nMaxima 版本:" #: ../src/wxMaxima.cpp:4092 msgid "" "\n" "Not connected to Maxima!\n" msgstr "\n未连接到 Maxima!\n" #: ../src/wxMaxima.cpp:3451 msgid "" "\n" "Not connected." msgstr "\n未连接。" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << 表达式过长不易显示! >>" #: ../src/wxMaxima.cpp:1088 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr " 是以新版本 wxMaxima 保存的,无法正确载入。请更新您的 wxMaxima。 " #: ../src/wxMaxima.cpp:1080 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr " 是以新版本 wxMaxima 保存的。请更新您的 wxMaxima。" #: ../src/wxMaximaFrame.cpp:481 msgid "&Algebra" msgstr "代数(&A)" #: ../src/wxMaximaFrame.cpp:475 msgid "&Apply to List..." msgstr "应用到列表(&A)..." #: ../src/wxMaximaFrame.cpp:666 msgid "&Apropos..." msgstr "查找命令(&A)..." #: ../src/wxMaximaFrame.cpp:207 msgid "&Batch File...\tCtrl-B" msgstr "载入批处理文件(&B)... Ctrl-B" #: ../src/wxMaximaFrame.cpp:432 msgid "&Boundary Value Problem..." msgstr "边界值问题(&B)..." #: ../src/wxMaximaFrame.cpp:677 msgid "&Bug Report" msgstr "错误报告(&B)" #: ../src/wxMaximaFrame.cpp:533 msgid "&Calculus" msgstr "微积分(&C)" #: ../src/wxMaximaFrame.cpp:584 msgid "&Canonical Form" msgstr "标准形(&C)" #: ../src/wxMaximaFrame.cpp:457 msgid "&Characteristic Polynomial..." msgstr "特征多项式(&C)..." #: ../src/wxMaximaFrame.cpp:365 msgid "&Clear Memory" msgstr "清除内存(&C)" #: ../src/wxMaximaFrame.cpp:567 msgid "&Combine Factorials" msgstr "合并阶乘(&C)" #: ../src/wxMaximaFrame.cpp:610 msgid "&Complex Simplification" msgstr "复数化简(&C)" #: ../src/wxMaximaFrame.cpp:530 msgid "&Continued Fraction" msgstr "连分数(&C)" #: ../src/wxMaximaFrame.cpp:234 msgid "&Copy\tCtrl-C" msgstr "复制(&C)\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "定积分(&D)" #: ../src/wxMaximaFrame.cpp:604 msgid "&Demoivre" msgstr "德莫佛公式(&D)" #: ../src/wxMaximaFrame.cpp:460 msgid "&Determinant" msgstr "行列式(&D)" #: ../src/wxMaximaFrame.cpp:493 msgid "&Differentiate..." msgstr "微分(&D)..." #: ../src/wxMaximaFrame.cpp:287 msgid "&Edit" msgstr "编辑(&E)" #: ../src/wxMaximaFrame.cpp:417 msgid "&Eliminate Variable..." msgstr "消元(&E)..." #: ../src/wxMaximaFrame.cpp:452 msgid "&Enter Matrix..." msgstr "输入矩阵(&E)..." #: ../src/wxMaximaFrame.cpp:663 msgid "&Example..." msgstr "示例(&E)..." #: ../src/wxMaximaFrame.cpp:547 msgid "&Expand Expression" msgstr "表达式展开(&E)" #: ../src/wxMaximaFrame.cpp:581 msgid "&Expand Trigonometric" msgstr "三角函数展开(&E)" #: ../src/wxMaximaFrame.cpp:607 msgid "&Exponentialize" msgstr "指数化(&E)" #: ../src/wxMaximaFrame.cpp:209 msgid "&Export..." msgstr "导出(&E)..." #: ../src/wxMaximaFrame.cpp:542 msgid "&Factor Expression" msgstr "因式分解式(&F)" #: ../src/wxMaximaFrame.cpp:220 msgid "&File" msgstr "文件(&F)" #: ../src/wxMaximaFrame.cpp:400 msgid "&Find Root..." msgstr "寻根(&F)..." #: ../src/wxMaximaFrame.cpp:446 msgid "&Generate Matrix..." msgstr "生成矩阵(&G)..." #: ../src/wxMaximaFrame.cpp:517 msgid "&Greatest Common Divisor..." msgstr "最大公因子(&G)..." #: ../src/wxMaximaFrame.cpp:693 msgid "&Help" msgstr "帮助(&H)" #: ../src/wxMaximaFrame.cpp:485 msgid "&Integrate..." msgstr "积分(&I)..." #: ../src/wxMaximaFrame.cpp:356 msgid "&Interrupt\tCtrl-." msgstr "中断(&I)\tCtrl-." #: ../src/wxMaximaFrame.cpp:360 msgid "&Interrupt\tCtrl-G" msgstr "中断(&I)\tCtrl-G" #: ../src/wxMaximaFrame.cpp:454 msgid "&Invert Matrix" msgstr "矩阵求逆(&I)" #: ../src/wxMaximaFrame.cpp:205 msgid "&Load Package...\tCtrl-L" msgstr "载入包(&L)... Ctrl-L" #: ../src/wxMaximaFrame.cpp:477 msgid "&Map to List..." msgstr "映射至列表(&M)..." #: ../src/wxMaximaFrame.cpp:392 msgid "&Maxima" msgstr "Maxima(&M)" #: ../src/wxMaximaFrame.cpp:625 msgid "&Modulus Computation..." msgstr "设置模运算(&M)..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "新建(&N)\tCtrl-N" #: ../src/wxMaximaFrame.cpp:652 msgid "&Numeric" msgstr "数值(&N)" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "数值积分(&N)" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "使用 Nusum(&N)" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "打开(&O)\tCtrl-O" #: ../src/wxMaximaFrame.cpp:192 msgid "&Open...\tCtrl-O" msgstr "打开(&O)...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:637 msgid "&Plot" msgstr "绘图(&P)" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "幂级数(&P)" #: ../src/wxMaximaFrame.cpp:213 msgid "&Print...\tCtrl-P" msgstr "打印(&P)...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "有理式(&R)" #: ../src/wxMaximaFrame.cpp:578 msgid "&Reduce Trigonometric" msgstr "三角函数化简(&R)" #: ../src/wxMaximaFrame.cpp:364 msgid "&Restart Maxima" msgstr "重启 Maxima(&R)" #: ../src/wxMaximaFrame.cpp:408 msgid "&Roots of Polynomial (Real)" msgstr "多项式求根(实根)(&R)" #: ../src/wxMaximaFrame.cpp:201 msgid "&Save\tCtrl-S" msgstr "保存(&S)\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:627 msgid "&Simplify" msgstr "化简(&S)" #: ../src/wxMaximaFrame.cpp:537 msgid "&Simplify Expression" msgstr "表达式化简(&S)" #: ../src/wxMaximaFrame.cpp:564 msgid "&Simplify Factorials" msgstr "阶乘化简(&S)" #: ../src/wxMaximaFrame.cpp:575 msgid "&Simplify Trigonometric" msgstr "三角函数化简(&S)" #: ../src/wxMaximaFrame.cpp:396 msgid "&Solve..." msgstr "求解(&S)..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "特殊(&S)" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "泰勒级数(&T)" #: ../src/wxMaximaFrame.cpp:470 msgid "&Transpose Matrix" msgstr "矩阵转置(&T)" #: ../src/wxMaximaFrame.cpp:587 msgid "&Trigonometric Simplification" msgstr "三角函数化简(&T)" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "&pm3d" #: ../src/Config.cpp:239 msgid "(Use default language)" msgstr "(使用默认语言)" #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 ../src/IntegrateWiz.cpp:217 #: ../src/IntegrateWiz.cpp:228 ../src/IntegrateWiz.cpp:236 #: ../src/IntegrateWiz.cpp:247 msgid "- Infinity" msgstr "负无穷" #: ../src/wxMaxima.cpp:3505 msgid "
Lisp: " msgstr "
Lisp 版本:" #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "wxMaxima 0.8.0 引入了“水平光标”,其看起来为单元之间的水平线,表示您输入或粘贴文本或之行菜单命令时新单元出现的位置。" #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "wxMaxima 0.8.2 引入了一种新的文档格式,其不仅保存输入和注释,还保存计算输出。当保存您的文档时,需要选择“wxMaxima XML 文档”" #: ../src/wxMaximaFrame.cpp:439 msgid "A&t Value..." msgstr "设定值(&A)..." #: ../src/wxMaxima.cpp:3507 ../src/wxMaximaFrame.cpp:688 msgid "About" msgstr "关于" #: ../src/wxMaximaFrame.cpp:690 ../src/wxMaximaFrame.cpp:692 msgid "About wxMaxima" msgstr "关于 wxMaxima" #: ../src/Config.cpp:372 msgid "Active cell bracket" msgstr "活动单元的括号" #: ../src/wxMaximaFrame.cpp:468 msgid "Ad&joint Matrix" msgstr "伴随矩阵(&J)" #: ../src/wxMaximaFrame.cpp:622 msgid "Add Algebraic E&quality..." msgstr "添加代数恒等式(&Q)..." #: ../src/wxMaximaFrame.cpp:368 msgid "Add a directory to search path" msgstr "添加目录至搜索路径" #: ../src/wxMaxima.cpp:2302 msgid "Add dir to path:" msgstr "添加目录至搜索路径:" #: ../src/wxMaximaFrame.cpp:623 msgid "Add equality to the rational simplifier" msgstr "添加恒等式至有理式化简因子" #: ../src/wxMaximaFrame.cpp:367 msgid "Add to &Path..." msgstr "添加至搜索路径(&P)" #: ../src/Config.cpp:123 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Maxima 的附加参数(例如: -l clisp)。" #: ../src/Config.cpp:309 msgid "Additional parameters:" msgstr "附加参数:" #: ../src/Config.cpp:481 msgid "All|*" msgstr "所有类型|*" #: ../src/wxMaximaFrame.cpp:827 msgid "Animation" msgstr "动画" #: ../src/wxMaxima.cpp:2759 msgid "Apply" msgstr "应用" #: ../src/wxMaximaFrame.cpp:476 msgid "Apply function to a list" msgstr "应用函数至列表" #: ../src/wxMaxima.cpp:3537 msgid "Apropos" msgstr "命令查找" #: ../src/wxMaxima.cpp:2685 msgid "Array:" msgstr "数组:" #: ../src/wxMaxima.cpp:3382 msgid "Artwork by" msgstr "美工:" #: ../src/Config.cpp:270 msgid "Ask to save untitled documents" msgstr "询问是否保存未命名文档" #: ../src/wxMaxima.cpp:2571 msgid "At value" msgstr "设定值" #: ../src/wxMaxima.cpp:2478 ../src/BC2Wiz.cpp:57 msgid "BC2" msgstr "边界条件(二阶)" #: ../src/wxMaximaFrame.cpp:1040 msgid "Barsplot..." msgstr "直方图..." #: ../src/Config.cpp:476 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "批处理文件 (*.bat)|*.bat|所有类型|*" #: ../src/wxMaxima.cpp:1997 msgid "Batch File" msgstr "载入批处理文件" #: ../src/Config.cpp:384 msgid "Bold" msgstr "黑体" #: ../src/wxMaximaFrame.cpp:1042 msgid "Boxplot..." msgstr "箱线图..." #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "浏览" #: ../src/wxMaximaFrame.cpp:675 msgid "Build &Info" msgstr "构建信息(&I)" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "默认使用 Shift-Enter 对命令求值,Enter 则用于进行多行输入。通过在“编辑->配置”对话框中选中”使用 Enter 对单元求值“可以对此进行更改,交换两组按键的功能。" #: ../src/wxMaximaFrame.cpp:490 msgid "C&hange Variable..." msgstr "修改变量(&H)..." #: ../src/wxMaximaFrame.cpp:284 msgid "C&onfigure" msgstr "配置(&O)" #: ../src/wxMaximaFrame.cpp:509 msgid "Calculate &Product..." msgstr "计算乘积(&P)..." #: ../src/wxMaximaFrame.cpp:507 msgid "Calculate Su&m..." msgstr "求和(&M)..." #: ../src/wxMaximaFrame.cpp:647 msgid "Calculate bigfloat value of the last result" msgstr "将最后的计算结果以长浮点数(bigfloat)表示" #: ../src/wxMaximaFrame.cpp:644 msgid "Calculate float value of the last result" msgstr "将最后的计算结果以浮点数(float)表示" #: ../src/wxMaxima.cpp:2892 msgid "Calculate modulus:" msgstr "求模:" #: ../src/wxMaximaFrame.cpp:510 msgid "Calculate products" msgstr "求乘积" #: ../src/wxMaximaFrame.cpp:508 msgid "Calculate sums" msgstr "求和" #: ../src/wxMaxima.cpp:4365 msgid "Can not connect to the web server." msgstr "无法连接到网页服务器。" #: ../src/wxMaxima.cpp:4410 msgid "Can not download version info." msgstr "无法下载版本信息。" #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/LimitWiz.cpp:51 ../src/LimitWiz.cpp:53 ../src/SumWiz.cpp:47 #: ../src/SumWiz.cpp:49 ../src/Plot2dWiz.cpp:101 ../src/Plot2dWiz.cpp:103 #: ../src/Plot2dWiz.cpp:561 ../src/Plot2dWiz.cpp:563 ../src/Plot2dWiz.cpp:656 #: ../src/Plot2dWiz.cpp:658 ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 #: ../src/MatWiz.cpp:39 ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 #: ../src/MatWiz.cpp:190 ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/wxMaxima.cpp:4467 #: ../src/BC2Wiz.cpp:44 ../src/BC2Wiz.cpp:46 ../src/Gen2Wiz.cpp:42 #: ../src/Gen2Wiz.cpp:44 ../src/Gen1Wiz.cpp:34 ../src/Gen1Wiz.cpp:36 #: ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/Plot3dWiz.cpp:103 ../src/Plot3dWiz.cpp:105 ../src/Gen3Wiz.cpp:49 #: ../src/Gen3Wiz.cpp:51 ../src/PlotFormatWiz.cpp:41 #: ../src/PlotFormatWiz.cpp:43 msgid "Cancel" msgstr "取消" #: ../src/wxMaximaFrame.cpp:985 msgid "Canonical (tr)" msgstr "标准形式(三角)" #: ../src/Config.cpp:240 msgid "Catalan" msgstr "加泰罗尼亚语" #: ../src/wxMaximaFrame.cpp:334 msgid "Ce&ll" msgstr "单元(&L)" #: ../src/Config.cpp:371 msgid "Cell bracket" msgstr "单元括号" #: ../src/wxMaximaFrame.cpp:387 msgid "Change &2d Display" msgstr "修改2D显示方式(&2)" #: ../src/wxMaximaFrame.cpp:388 msgid "Change the 2d display algorithm used to display math output" msgstr "修改用于显示数学输出的2D显示算法" #: ../src/wxMaxima.cpp:2916 msgid "Change variable" msgstr "修改变量" #: ../src/wxMaximaFrame.cpp:491 msgid "Change variable in integral or sum" msgstr "修改积分或求和中的变量" #: ../src/wxMaxima.cpp:2672 msgid "Char poly" msgstr "特征多项式" #: ../src/wxMaximaFrame.cpp:680 msgid "Check for Updates" msgstr "检查更新" #: ../src/wxMaximaFrame.cpp:681 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "检查是否存在新版本 wxMaxima/Maxima。" #: ../src/Config.cpp:241 msgid "Chinese traditional" msgstr "繁体中文" #: ../src/Config.cpp:347 ../src/Config.cpp:349 ../src/Config.cpp:378 msgid "Choose font" msgstr "选择字体" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "选择新的绘图格式:" #: ../src/wxMaxima.cpp:3581 ../src/wxMaxima.cpp:3595 msgid "Classes:" msgstr "类型:" #: ../src/wxMaximaFrame.cpp:198 msgid "Close\tCtrl-W" msgstr "关闭\t\\Ctrl-W" #: ../src/wxMaximaFrame.cpp:199 msgid "Close window" msgstr "关闭窗口" #: ../src/wxMaxima.cpp:3703 msgid "Col. names:" msgstr "列名称:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "列:" #: ../src/wxMaximaFrame.cpp:568 msgid "Combine factorials in an expression" msgstr "合并表达式中的阶乘" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "x坐标,以逗号分割" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "y 坐标,以逗号分割" #: ../src/MathCtrl.cpp:739 msgid "Comment Selection" msgstr "注释掉所选内容" #: ../src/wxMaximaFrame.cpp:304 msgid "Complete Word\tCtrl-K" msgstr "自动补齐\tCtrl-K" #: ../src/wxMaximaFrame.cpp:305 msgid "Complete word" msgstr "自动补齐" #: ../src/wxMaximaFrame.cpp:531 msgid "Compute continued fraction of a value" msgstr "计算数值的连分数表示" #: ../src/wxMaximaFrame.cpp:469 msgid "Compute the adjoint matrix" msgstr "计算伴随矩阵" #: ../src/wxMaximaFrame.cpp:458 msgid "Compute the characteristic polynomial of a matrix" msgstr "计算矩阵的特征多项式" #: ../src/wxMaximaFrame.cpp:461 msgid "Compute the determinant of a matrix" msgstr "计算矩阵的行列式" #: ../src/wxMaximaFrame.cpp:518 msgid "Compute the greatest common divisor" msgstr "计算最大公因子" #: ../src/wxMaximaFrame.cpp:455 msgid "Compute the inverse of a matrix" msgstr "矩阵求逆" #: ../src/wxMaximaFrame.cpp:521 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "计算最小公倍式(在使用前先执行 load(functs))" #: ../src/wxMaxima.cpp:3753 msgid "Condition:" msgstr "条件:" #: ../src/Config.cpp:1068 ../src/Config.cpp:1076 msgid "Config file (*.ini)|*.ini" msgstr "配置文件 (*.ini)|*.ini" #: ../src/Config.cpp:937 msgid "Configuration warning" msgstr "配置警告" #: ../src/wxMaximaFrame.cpp:282 ../src/wxMaximaFrame.cpp:285 #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:802 msgid "Configure wxMaxima" msgstr "配置 wxMaxima" #: ../src/LimitWiz.cpp:135 ../src/SeriesWiz.cpp:109 #: ../src/IntegrateWiz.cpp:219 ../src/IntegrateWiz.cpp:238 msgid "Constant" msgstr "常量" #: ../src/wxMaximaFrame.cpp:552 msgid "Contract Logarithms" msgstr "合并对数式" #: ../src/wxMaximaFrame.cpp:559 msgid "Convert binomials, beta and gamma function to factorials" msgstr "转换二项式、beta 函数及 gamma 函数为阶乘形式" #: ../src/wxMaximaFrame.cpp:562 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "转换二项式、阶乘及 beta 函数为 gamma 函数" #: ../src/wxMaximaFrame.cpp:596 msgid "Convert complex expression to polar form" msgstr "转换复数表达式为极坐标形式" #: ../src/wxMaximaFrame.cpp:593 msgid "Convert complex expression to rect form" msgstr "转换复数表达式为直角坐标形式" #: ../src/wxMaximaFrame.cpp:605 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "转换虚数的指数函数为三角函数形式" #: ../src/wxMaximaFrame.cpp:550 msgid "Convert logarithm of product to sum of logarithms" msgstr "转换乘积的对数为对数的和" #: ../src/wxMaximaFrame.cpp:553 msgid "Convert sum of logarithms to logarithm of product" msgstr "转换对数的和为乘积的对数" #: ../src/wxMaximaFrame.cpp:558 msgid "Convert to &Factorials" msgstr "转换为阶乘(&F)" #: ../src/wxMaximaFrame.cpp:561 msgid "Convert to &Gamma" msgstr "转换为 Gamma 函数(&G)" #: ../src/wxMaximaFrame.cpp:595 msgid "Convert to &Polarform" msgstr "转换为极坐标形式(&P)" #: ../src/wxMaximaFrame.cpp:592 msgid "Convert to &Rectform" msgstr "转换为直角坐标形式(&R)" #: ../src/wxMaximaFrame.cpp:585 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "转换三角函数表达式为标准拟线性形式" #: ../src/wxMaximaFrame.cpp:608 msgid "Convert trigonometric functions to exponential form" msgstr "转换三角函数为指数形式" #: ../src/MathCtrl.cpp:661 ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 #: ../src/MathCtrl.cpp:733 ../src/wxMaximaFrame.cpp:739 #: ../src/wxMaximaFrame.cpp:808 msgid "Copy" msgstr "复制" #: ../src/MathCtrl.cpp:676 ../src/MathCtrl.cpp:692 msgid "Copy As Image" msgstr "复制为图片" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy LaTeX" msgstr "复制为 LaTeX" #: ../src/wxMaximaFrame.cpp:300 msgid "Copy Previous Input\tCtrl-I" msgstr "复制前一次输入\tCtrl-I" #: ../src/wxMaximaFrame.cpp:302 msgid "Copy Previous Output\tCtrl-U" msgstr "复制前一次输出\tCtrl-U" #: ../src/wxMaximaFrame.cpp:243 msgid "Copy as Image" msgstr "复制为图片" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy as LaTeX" msgstr "复制为 LaTeX" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy as Text\tCtrl-Shift-C" msgstr "复制为纯文本\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:235 ../src/wxMaximaFrame.cpp:741 #: ../src/wxMaximaFrame.cpp:811 msgid "Copy selection" msgstr "复制所选区域" #: ../src/wxMaximaFrame.cpp:244 msgid "Copy selection from document as an image" msgstr "复制文档中所选区域为图片" #: ../src/wxMaximaFrame.cpp:237 msgid "Copy selection from document as text" msgstr "复制文档中所选区域为纯文本" #: ../src/wxMaximaFrame.cpp:240 msgid "Copy selection from document in LaTeX format" msgstr "复制文档中所选区域为 LaTeX" #: ../src/wxMaximaFrame.cpp:301 msgid "Create a new cell with previous input" msgstr "使用前一次输入新建单元" #: ../src/wxMaximaFrame.cpp:303 msgid "Create a new cell with previous output" msgstr "使用前一次输出新建单元" #: ../src/Config.cpp:373 msgid "Cursor" msgstr "光标" #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:736 #: ../src/wxMaximaFrame.cpp:804 msgid "Cut" msgstr "剪切" #: ../src/wxMaximaFrame.cpp:231 msgid "Cut\tCtrl-X" msgstr "剪切\tCtrl-X" #: ../src/wxMaximaFrame.cpp:232 ../src/wxMaximaFrame.cpp:738 #: ../src/wxMaximaFrame.cpp:807 msgid "Cut selection" msgstr "剪切所选区域" #: ../src/Config.cpp:242 msgid "Czech" msgstr "捷克语" #: ../src/Config.cpp:243 msgid "Danish" msgstr "丹麦语" #: ../src/wxMaxima.cpp:3696 ../src/wxMaxima.cpp:3703 ../src/wxMaxima.cpp:3753 msgid "Data Matrix:" msgstr "数据矩阵:" #: ../src/wxMaxima.cpp:3723 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "数据文件 (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3581 ../src/wxMaxima.cpp:3595 ../src/wxMaxima.cpp:3609 #: ../src/wxMaxima.cpp:3616 ../src/wxMaxima.cpp:3623 ../src/wxMaxima.cpp:3631 #: ../src/wxMaxima.cpp:3638 ../src/wxMaxima.cpp:3645 ../src/wxMaxima.cpp:3652 #: ../src/wxMaxima.cpp:3688 msgid "Data:" msgstr "数据:" #: ../src/wxMaximaFrame.cpp:528 msgid "Decompose rational function to partial fractions" msgstr "分解有理函数为部分分式" #: ../src/Config.cpp:353 msgid "Default" msgstr "默认" #: ../src/Config.cpp:346 msgid "Default font:" msgstr "默认字体:" #: ../src/Config.cpp:259 msgid "Default port:" msgstr "默认端口:" #: ../src/wxMaxima.cpp:2324 ../src/wxMaxima.cpp:2333 msgid "Delete" msgstr "删除" #: ../src/wxMaximaFrame.cpp:378 msgid "Delete F&unction..." msgstr "删除函数(&U)..." #: ../src/MathCtrl.cpp:679 ../src/MathCtrl.cpp:695 msgid "Delete Selection" msgstr "删除所选区域" #: ../src/wxMaximaFrame.cpp:380 msgid "Delete V&ariable..." msgstr "删除变量(&A)..." #: ../src/wxMaximaFrame.cpp:379 msgid "Delete a function" msgstr "删除函数" #: ../src/wxMaximaFrame.cpp:381 msgid "Delete a variable" msgstr "删除变量" #: ../src/wxMaximaFrame.cpp:366 msgid "Delete all values from memory" msgstr "删除内存中所有值" #: ../src/wxMaxima.cpp:2333 msgid "Delete function(s):" msgstr "删除函数:" #: ../src/wxMaxima.cpp:2324 msgid "Delete variable(s):" msgstr "删除变量:" #: ../src/wxMaxima.cpp:2932 msgid "Denom. deg:" msgstr "分母次数:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "深度:" #: ../src/wxMaxima.cpp:2462 msgid "Derivative:" msgstr "导数:" #: ../src/wxMaximaFrame.cpp:1026 msgid "Deviation..." msgstr "偏差..." #: ../src/wxMaximaFrame.cpp:524 msgid "Di&vide Polynomials..." msgstr "多项式相除(&V)..." #: ../src/wxMaximaFrame.cpp:991 msgid "Diff..." msgstr "微分..." #: ../src/wxMaxima.cpp:3075 ../src/wxMaxima.cpp:3920 msgid "Differentiate" msgstr "微分" #: ../src/wxMaximaFrame.cpp:494 msgid "Differentiate expression" msgstr "对表达式求微分" #: ../src/MathCtrl.cpp:711 msgid "Differentiate..." msgstr "微分..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "方向:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "离散绘图" #: ../src/wxMaximaFrame.cpp:390 msgid "Display Te&X Form" msgstr "以 TeX 格式显示(&X)" #: ../src/wxMaxima.cpp:2269 msgid "Display algorithm" msgstr "显示算法" #: ../src/wxMaximaFrame.cpp:391 msgid "Display last result in TeX form" msgstr "以 TeX 格式显示最后一次结果" #: ../src/wxMaximaFrame.cpp:385 msgid "Display time used for evaluation" msgstr "显示求值时间" #: ../src/wxMaxima.cpp:2982 msgid "Divide" msgstr "数字/多项式相除" #: ../src/MathCtrl.cpp:741 msgid "Divide Cell" msgstr "分割单元" #: ../src/wxMaximaFrame.cpp:525 msgid "Divide numbers or polynomials" msgstr "将数字或多项式相除" #: ../src/wxMaxima.cpp:4462 ../src/wxMaxima.cpp:4474 msgid "Do you want to save the changes you made in the document \"" msgstr "您是否想保存文档中的更改:“" #: ../src/wxMaxima.cpp:1079 ../src/wxMaxima.cpp:1087 msgid "Document " msgstr "文档" #: ../src/Config.cpp:370 msgid "Document background" msgstr "文档背景" #: ../src/wxMaxima.cpp:4467 msgid "Don't save" msgstr "不保存" #: ../src/wxMaximaFrame.cpp:442 msgid "E&quations" msgstr "方程(&Q)" #: ../src/wxMaximaFrame.cpp:218 msgid "E&xit\tCtrl-Q" msgstr "退出(&X)\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:465 msgid "Eige&nvectors" msgstr "特征向量(&N)" #: ../src/wxMaximaFrame.cpp:463 msgid "Eigen&values" msgstr "e特征值(&V)" #: ../src/wxMaxima.cpp:2493 msgid "Eliminate" msgstr "消元" #: ../src/wxMaximaFrame.cpp:418 msgid "Eliminate a variable from a system of equations" msgstr "消去方程组中一个变量" #: ../src/Config.cpp:244 msgid "English" msgstr "英语" #: ../src/wxMaxima.cpp:3609 ../src/wxMaxima.cpp:3616 ../src/wxMaxima.cpp:3623 #: ../src/wxMaxima.cpp:3631 ../src/wxMaxima.cpp:3638 ../src/wxMaxima.cpp:3645 #: ../src/wxMaxima.cpp:3652 ../src/wxMaxima.cpp:3688 ../src/wxMaxima.cpp:3696 msgid "Enter Data" msgstr "输入数据" #: ../src/wxMaximaFrame.cpp:1047 msgid "Enter Matrix..." msgstr "输入矩阵..." #: ../src/wxMaximaFrame.cpp:453 msgid "Enter a matrix" msgstr "输入一个矩阵" #: ../src/wxMaxima.cpp:2883 msgid "Enter an equation for rational simplification:" msgstr "输入一个用于有理式化简的方程" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "输入变量列表,以逗号分割。" #: ../src/Config.cpp:269 msgid "Enter evaluates cells" msgstr "使用回车对单元求值" #: ../src/wxMaxima.cpp:2655 msgid "Enter matrix" msgstr "输入矩阵" #: ../src/wxMaxima.cpp:3257 msgid "Enter new precision:" msgstr "输入新的精度:" #: ../src/Config.cpp:122 msgid "Enter the path to the Maxima executable." msgstr "输入 Maxima 程序(可执行文件)的路径。" #: ../src/wxMaxima.cpp:3129 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "方程 %d:" #: ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2395 ../src/wxMaxima.cpp:2554 #: ../src/wxMaxima.cpp:3873 msgid "Equation(s):" msgstr "方程:" #: ../src/wxMaxima.cpp:2411 ../src/wxMaxima.cpp:2430 ../src/wxMaxima.cpp:2914 #: ../src/wxMaxima.cpp:3704 ../src/wxMaxima.cpp:3887 msgid "Equation:" msgstr "方程:" #: ../src/wxMaxima.cpp:2491 msgid "Equations:" msgstr "方程" #: ../src/wxMaxima.cpp:396 ../src/wxMaxima.cpp:977 ../src/wxMaxima.cpp:988 #: ../src/wxMaxima.cpp:1047 ../src/wxMaxima.cpp:1059 ../src/wxMaxima.cpp:1081 #: ../src/wxMaxima.cpp:1503 ../src/wxMaxima.cpp:1599 ../src/wxMaxima.cpp:4092 #: ../src/wxMaxima.cpp:4365 ../src/wxMaxima.cpp:4410 ../src/Config.cpp:490 #: ../src/ImgCell.cpp:101 msgid "Error" msgstr "错误" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "错误 %d" #: ../src/wxMaxima.cpp:1972 ../src/wxMaxima.cpp:1977 ../src/wxMaxima.cpp:2514 #: ../src/wxMaxima.cpp:2538 ../src/wxMaxima.cpp:2649 msgid "Error!" msgstr "错误!" #: ../src/wxMaximaFrame.cpp:617 msgid "Evaluate &Noun Forms" msgstr "对名词形式求值" #: ../src/wxMaximaFrame.cpp:295 msgid "Evaluate All Cells\tCtrl-Shift-R" msgstr "对所有单元求值\tCtrl-Shift-R" #: ../src/wxMaximaFrame.cpp:293 msgid "Evaluate All Visible Cells\tCtrl-R" msgstr "对所有可见单元求值\tCtrl-R" #: ../src/MathCtrl.cpp:682 ../src/wxMaximaFrame.cpp:291 msgid "Evaluate Cell(s)" msgstr "对单元求值" #: ../src/wxMaximaFrame.cpp:292 msgid "Evaluate active or selected cell(s)" msgstr "对活动单元或所选单元求值" #: ../src/wxMaximaFrame.cpp:296 msgid "Evaluate all cells in the document" msgstr "对文档中所有单元求值" #: ../src/wxMaximaFrame.cpp:618 msgid "Evaluate all noun forms in expression" msgstr "对表达式中所有名词形式求值" #: ../src/wxMaximaFrame.cpp:294 msgid "Evaluate all visible cells in the document" msgstr "对文档中所有可见单元求值" #: ../src/wxMaxima.cpp:3524 msgid "Example" msgstr "示例" #: ../src/Config.cpp:1022 ../src/Config.cpp:1114 msgid "Example text" msgstr "示例文本" #: ../src/wxMaximaFrame.cpp:219 msgid "Exit wxMaxima" msgstr "退出 wxMaxima" #: ../src/wxMaximaFrame.cpp:982 msgid "Expand" msgstr "展开" #: ../src/wxMaximaFrame.cpp:987 msgid "Expand (tr)" msgstr "展开(三角)" #: ../src/MathCtrl.cpp:707 msgid "Expand Expression" msgstr "展开表达式" #: ../src/wxMaximaFrame.cpp:549 msgid "Expand Logarithms" msgstr "展开对数式" #: ../src/wxMaximaFrame.cpp:548 msgid "Expand an expression" msgstr "展开一个表达式" #: ../src/wxMaximaFrame.cpp:582 msgid "Expand trigonometric expression" msgstr "展开三角表达式" #: ../src/wxMaxima.cpp:1958 msgid "Export" msgstr "导出" #: ../src/wxMaximaFrame.cpp:210 msgid "Export document to a HTML or pdfLaTeX file" msgstr "将文档导出为 HTML 文件或 pdfLaTeX 文件" #: ../src/wxMaxima.cpp:1977 msgid "Exporting to HTML failed!" msgstr "导出到 HTML 失败!" #: ../src/wxMaxima.cpp:1972 msgid "Exporting to TeX failed!" msgstr "导出到 TeX 失败!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "表达式" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "表达式:" #: ../src/SubstituteWiz.cpp:27 ../src/LimitWiz.cpp:26 ../src/SumWiz.cpp:30 #: ../src/SeriesWiz.cpp:32 ../src/wxMaxima.cpp:2569 ../src/wxMaxima.cpp:2739 #: ../src/wxMaxima.cpp:2995 ../src/wxMaxima.cpp:3010 ../src/wxMaxima.cpp:3039 #: ../src/wxMaxima.cpp:3056 ../src/wxMaxima.cpp:3073 ../src/wxMaxima.cpp:3126 #: ../src/wxMaxima.cpp:3161 ../src/wxMaxima.cpp:3918 #: ../src/IntegrateWiz.cpp:36 msgid "Expression:" msgstr "表达式:" #: ../src/wxMaximaFrame.cpp:981 msgid "Factor" msgstr "因式分解" #: ../src/wxMaximaFrame.cpp:544 msgid "Factor Complex" msgstr "复数因式分解" #: ../src/MathCtrl.cpp:706 msgid "Factor Expression" msgstr "对表达式因式分解" #: ../src/wxMaximaFrame.cpp:543 msgid "Factor an expression" msgstr "对表达式因式分解" #: ../src/wxMaximaFrame.cpp:545 msgid "Factor an expression in Gaussian numbers" msgstr "对含 Gaussian 数的表达式因式分解" #: ../src/wxMaximaFrame.cpp:570 msgid "Factorials and &Gamma" msgstr "阶乘和 Gamma 函数(&G)" #: ../src/wxMaxima.cpp:257 msgid "Fatal error" msgstr "致命错误" #: ../src/GroupCell.cpp:1296 #, c-format msgid "Figure %d:" msgstr "图 %d:" #: ../src/main.cpp:107 msgid "File" msgstr "文件" #: ../src/wxMaxima.cpp:4041 msgid "File not found" msgstr "无法找到文件" #: ../src/wxMaxima.cpp:4041 msgid "File you tried to open does not exist." msgstr "您想打开的文件不存在。" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "文件:" #: ../src/wxMaximaFrame.cpp:746 msgid "Find" msgstr "查找" #: ../src/wxMaximaFrame.cpp:252 msgid "Find\tCtrl-F" msgstr "查找\tCtrl-F" #: ../src/wxMaximaFrame.cpp:495 msgid "Find &Limit..." msgstr "求极限(&L)..." #: ../src/wxMaximaFrame.cpp:498 msgid "Find Minimum..." msgstr "求极小值..." #: ../src/MathCtrl.cpp:703 msgid "Find Root..." msgstr "求根..." #: ../src/wxMaximaFrame.cpp:499 msgid "Find a (unconstrained) minimum of an expression" msgstr "求表达式的极小值(无约束)" #: ../src/wxMaximaFrame.cpp:496 msgid "Find a limit of an expression" msgstr "求表达式的极限" #: ../src/wxMaximaFrame.cpp:401 msgid "Find a root of an equation on an interval" msgstr "求方程在在区间内的根" #: ../src/wxMaximaFrame.cpp:403 msgid "Find all roots of a polynomial" msgstr "求多项式所有的根" #: ../src/wxMaximaFrame.cpp:406 msgid "Find all roots of a polynomial (bfloat)" msgstr "求多项式所有的根(以长浮点数表示)" #: ../src/wxMaxima.cpp:2184 msgid "Find and Replace" msgstr "查找并替换" #: ../src/wxMaximaFrame.cpp:252 ../src/wxMaximaFrame.cpp:748 #: ../src/wxMaximaFrame.cpp:820 msgid "Find and replace" msgstr "查找并替换" #: ../src/wxMaximaFrame.cpp:464 msgid "Find eigenvalues of a matrix" msgstr "求矩阵特征值" #: ../src/wxMaximaFrame.cpp:466 msgid "Find eigenvectors of a matrix" msgstr "求矩阵特征向量" #: ../src/wxMaxima.cpp:3131 msgid "Find minimum" msgstr "求最小值" #: ../src/wxMaximaFrame.cpp:409 msgid "Find real roots of a polynomial" msgstr "求多项式的实数根" #: ../src/wxMaxima.cpp:2414 ../src/wxMaxima.cpp:3890 msgid "Find root" msgstr "求根" #: ../src/wxMaximaFrame.cpp:817 msgid "Find..." msgstr "查找..." #: ../src/Config.cpp:265 msgid "Fixed font in text controls" msgstr "文本控件中使用等宽字体" #: ../src/wxMaximaFrame.cpp:324 msgid "Fold All\tCtrl-Alt-[" msgstr "折叠所有的\tCtrl-Alt-[" #: ../src/wxMaximaFrame.cpp:325 msgid "Fold all sections" msgstr "折叠所有节" #: ../src/Config.cpp:131 msgid "Font used for display in document." msgstr "文档显示采用字体" #: ../src/Config.cpp:132 msgid "Font used for displaying math characters in document." msgstr "文档中数学字符显示采用字体" #: ../src/Config.cpp:332 msgid "Fonts" msgstr "字体" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "格式:" #: ../src/Config.cpp:245 msgid "French" msgstr "法语" #: ../src/SumWiz.cpp:36 ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 #: ../src/Plot2dWiz.cpp:548 ../src/wxMaxima.cpp:2740 ../src/wxMaxima.cpp:3161 #: ../src/IntegrateWiz.cpp:43 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "从:" #: ../src/wxMaximaFrame.cpp:276 msgid "Full Screen\tAlt-Enter" msgstr "全屏\tAlt-Enter" #: ../src/wxMaxima.cpp:2291 msgid "Function" msgstr "函数" #: ../src/Config.cpp:356 msgid "Function names" msgstr "函数名" #: ../src/wxMaxima.cpp:2554 msgid "Function(s):" msgstr "函数:" #: ../src/wxMaxima.cpp:2430 ../src/wxMaxima.cpp:2621 ../src/wxMaxima.cpp:2724 #: ../src/wxMaxima.cpp:2757 msgid "Function:" msgstr "函数:" #: ../src/wxMaximaFrame.cpp:612 msgid "Functions for complex simplification" msgstr "用于复数化简的函数" #: ../src/wxMaximaFrame.cpp:572 msgid "Functions for simplifying factorials and gamma function" msgstr "用于阶乘和 gamma 函数化简的函数" #: ../src/wxMaximaFrame.cpp:589 msgid "Functions for simplifying trigonometric expressions" msgstr "用于三角函数表达式化简的函数" #: ../src/wxMaxima.cpp:2967 msgid "GCD" msgstr "最大公因式" #: ../src/wxMaxima.cpp:4003 msgid "GIF image (*.gif)|*.gif" msgstr "GIF 图片 (*.gif)|*.gif" #: ../src/Config.cpp:246 msgid "Galician" msgstr "加里西亚语" #: ../src/wxMaximaFrame.cpp:134 msgid "General Math" msgstr "常用数学" #: ../src/wxMaximaFrame.cpp:343 msgid "General Math\tAlt-Shift-M" msgstr "常用数学\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2687 ../src/wxMaxima.cpp:2706 msgid "Generate Matrix" msgstr "创建矩阵" #: ../src/wxMaximaFrame.cpp:449 msgid "Generate Matrix from Expression..." msgstr "从表达式创建矩阵..." #: ../src/wxMaximaFrame.cpp:447 msgid "Generate a matrix from a 2-dimensional array" msgstr "从二维数组产生一个矩阵" #: ../src/wxMaximaFrame.cpp:450 msgid "Generate a matrix from a lambda expression" msgstr "从 lambda 表达式产生一个矩阵" #: ../src/Config.cpp:247 msgid "German" msgstr "德语" #: ../src/wxMaximaFrame.cpp:601 msgid "Get &Imaginary Part" msgstr "取虚部(&I)" #: ../src/wxMaximaFrame.cpp:501 msgid "Get &Series..." msgstr "取级数(&S)..." #: ../src/wxMaximaFrame.cpp:512 msgid "Get Laplace transformation of an expression" msgstr "计算表达式的 Laplace 变换" #: ../src/wxMaximaFrame.cpp:598 msgid "Get Real P&art" msgstr "取实部(&A)" #: ../src/wxMaximaFrame.cpp:515 msgid "Get inverse Laplace transformation of an expression" msgstr "计算表达式的 Laplace 逆变换" #: ../src/wxMaximaFrame.cpp:502 msgid "Get the Taylor or power series of expression" msgstr "计算表达式的泰勒级数或幂级数" #: ../src/wxMaximaFrame.cpp:602 msgid "Get the imaginary part of complex expression" msgstr "取复数表达式的虚部" #: ../src/wxMaximaFrame.cpp:599 msgid "Get the real part of complex expression" msgstr "取复数表达式的实部" #: ../src/Config.cpp:248 msgid "Greek" msgstr "希腊语" #: ../src/Config.cpp:358 msgid "Greek constants" msgstr "希腊字母常量" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "网格:" #: ../src/wxMaxima.cpp:1960 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "HTML 文件 (*.html)|*.html|pdfLaTeX 文件 (*.tex)|*.tex|所有类型|*" #: ../src/wxMaxima.cpp:2685 ../src/wxMaxima.cpp:2704 msgid "Height:" msgstr "高度:" #: ../src/wxMaximaFrame.cpp:765 ../src/wxMaximaFrame.cpp:838 msgid "Help" msgstr "帮助" #: ../src/wxMaximaFrame.cpp:341 msgid "Hide All\tAlt-Shift--" msgstr "隐藏所有\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:341 msgid "Hide all panes" msgstr "隐藏所有面板" #: ../src/Config.cpp:364 msgid "Highlight (dpart)" msgstr "高亮显示标记(在dpart函数中)" #: ../src/wxMaxima.cpp:3582 msgid "Histogram" msgstr "柱状图" #: ../src/wxMaximaFrame.cpp:1038 msgid "Histogram..." msgstr "柱状图..." #: ../src/wxMaximaFrame.cpp:115 msgid "History" msgstr "历史" #: ../src/wxMaximaFrame.cpp:345 msgid "History\tAlt-Shift-H" msgstr "历史\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "水平光标和普通光标类似,但它是对单元操作。按向上和向下箭头来移动它,在移动它时按住 Shift 键将会选择单元,按 backspace 键或 delete 键两次会删除与水平光标相邻的单元。" #: ../src/Config.cpp:249 msgid "Hungarian" msgstr "匈牙利语" #: ../src/wxMaxima.cpp:2448 msgid "IC1" msgstr "初始条件(一阶)" #: ../src/wxMaxima.cpp:2464 msgid "IC2" msgstr "初始条件(二阶)" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "若您的计算耗时过长,可以尝试菜单命令“Maxima->中断”或“Maxima->重启 Maxima”" #: ../src/wxMaximaFrame.cpp:1078 msgid "Image" msgstr "图片" #: ../src/wxMaxima.cpp:4200 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "图片文件 (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3754 msgid "Include columns:" msgstr "包含列:" #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 ../src/IntegrateWiz.cpp:216 #: ../src/IntegrateWiz.cpp:226 ../src/IntegrateWiz.cpp:235 #: ../src/IntegrateWiz.cpp:245 msgid "Infinity" msgstr "无穷大" #: ../src/wxMaximaFrame.cpp:676 msgid "Info about Maxima build" msgstr "关于 Maxima 的构建信息" #: ../src/wxMaxima.cpp:3128 msgid "Initial Estimates:" msgstr "初始估计值:" #: ../src/wxMaximaFrame.cpp:426 msgid "Initial Value Problem (&1)..." msgstr "一阶常微分方程初始值问题(&1)..." #: ../src/wxMaximaFrame.cpp:429 msgid "Initial Value Problem (&2)..." msgstr "二阶常微分方程初始值问题(&2)..." #: ../src/Config.cpp:361 msgid "Input labels" msgstr "输入标签" #: ../src/wxMaximaFrame.cpp:144 msgid "Insert" msgstr "插入" #: ../src/wxMaximaFrame.cpp:315 msgid "Insert &Section Cell\tCtrl-3" msgstr "插入节单元(&S)\tCtrl-3" #: ../src/wxMaximaFrame.cpp:311 msgid "Insert &Text Cell\tCtrl-1" msgstr "插入文本单元(&T)\tCtrl-1" #: ../src/wxMaximaFrame.cpp:346 msgid "Insert Cell\tAlt-Shift-C" msgstr "插入单元\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4198 msgid "Insert Image" msgstr "插入图片" #: ../src/wxMaximaFrame.cpp:321 msgid "Insert Image..." msgstr "插入图片..." #: ../src/wxMaximaFrame.cpp:309 msgid "Insert Input &Cell" msgstr "插入输入单元(&C)" #: ../src/wxMaximaFrame.cpp:319 msgid "Insert Page Break" msgstr "插入分页符" #: ../src/wxMaximaFrame.cpp:317 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "插入小节单元(&U)\tCtrl-4" #: ../src/MathCtrl.cpp:725 msgid "Insert Section Cell" msgstr "插入节单元" #: ../src/MathCtrl.cpp:726 msgid "Insert Subsection Cell" msgstr "插入小节单元" #: ../src/wxMaximaFrame.cpp:313 msgid "Insert T&itle Cell\tCtrl-2" msgstr "插入标题单元(&I)\tCtrl-2" #: ../src/MathCtrl.cpp:723 msgid "Insert Text Cell" msgstr "插入文本单元" #: ../src/MathCtrl.cpp:724 msgid "Insert Title Cell" msgstr "插入标题单元" #: ../src/wxMaximaFrame.cpp:310 msgid "Insert a new input cell" msgstr "插入新的输入单元" #: ../src/wxMaximaFrame.cpp:316 msgid "Insert a new section cell" msgstr "插入新的节单元" #: ../src/wxMaximaFrame.cpp:318 msgid "Insert a new subsection cell" msgstr "插入新的小节单元" #: ../src/wxMaximaFrame.cpp:312 msgid "Insert a new text cell" msgstr "插入新的文本单元" #: ../src/wxMaximaFrame.cpp:314 msgid "Insert a new title cell" msgstr "插入新的标题单元" #: ../src/wxMaximaFrame.cpp:320 msgid "Insert a page break" msgstr "插入一个换夜符" #: ../src/wxMaximaFrame.cpp:322 msgid "Insert image" msgstr "插入图片" #: ../src/wxMaxima.cpp:2913 msgid "Integral/Sum:" msgstr "积分/求和:" #: ../src/wxMaxima.cpp:3026 ../src/wxMaxima.cpp:3905 #: ../src/IntegrateWiz.cpp:72 msgid "Integrate" msgstr "积分" #: ../src/wxMaxima.cpp:3012 msgid "Integrate (risch)" msgstr "Risch 积分" #: ../src/wxMaximaFrame.cpp:486 msgid "Integrate expression" msgstr "对表达式求积分" #: ../src/wxMaximaFrame.cpp:488 msgid "Integrate expression with Risch algorithm" msgstr "使用 Risch 算法对表达式求积分" #: ../src/MathCtrl.cpp:710 ../src/wxMaximaFrame.cpp:992 msgid "Integrate..." msgstr "积分..." #: ../src/wxMaximaFrame.cpp:750 ../src/wxMaximaFrame.cpp:822 msgid "Interrupt" msgstr "中断" #: ../src/wxMaximaFrame.cpp:357 ../src/wxMaximaFrame.cpp:361 #: ../src/wxMaximaFrame.cpp:752 ../src/wxMaximaFrame.cpp:825 msgid "Interrupt current computation" msgstr "中断当前计算" #: ../src/Config.cpp:489 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "无效的 Maxima 程序路径。\n" "\n" "请再次输入 Maxima 程序所在路径。" #: ../src/wxMaxima.cpp:3058 msgid "Inverse Laplace" msgstr "Laplace 逆变换" #: ../src/wxMaximaFrame.cpp:514 msgid "Inverse Laplace T&ransform..." msgstr "Laplace 逆变换(&R)..." #: ../src/Config.cpp:250 msgid "Italian" msgstr "意大利语" #: ../src/Config.cpp:385 msgid "Italic" msgstr "斜体" #: ../src/Config.cpp:251 msgid "Japanese" msgstr "日本语" #: ../src/Config.cpp:268 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "保留下列特殊符号前的百分号(%):%e, %i 等。" #: ../src/wxMaxima.cpp:2952 msgid "LCM" msgstr "最小公倍式" #: ../src/Config.cpp:129 msgid "Language used for wxMaxima GUI." msgstr "wxMaxima 图形界面语言。" #: ../src/Config.cpp:236 msgid "Language:" msgstr "语言:" #: ../src/wxMaxima.cpp:3041 msgid "Laplace" msgstr "Laplace 变换" #: ../src/wxMaximaFrame.cpp:511 msgid "Laplace &Transform..." msgstr "Laplace 变换(&T)..." #: ../src/wxMaximaFrame.cpp:520 msgid "Least Common Multiple..." msgstr "最小公倍式..." #: ../src/wxMaxima.cpp:3706 msgid "Least Squares Fit" msgstr " 最小二乘拟合" #: ../src/wxMaximaFrame.cpp:1034 msgid "Least Squares Fit..." msgstr "最小二乘拟合..." #: ../src/LimitWiz.cpp:66 ../src/wxMaxima.cpp:3113 msgid "Limit" msgstr "极限" #: ../src/wxMaximaFrame.cpp:993 msgid "Limit..." msgstr "极限..." #: ../src/wxMaximaFrame.cpp:1033 msgid "Linear Regression..." msgstr "线性回归..." #: ../src/wxMaxima.cpp:2724 ../src/wxMaxima.cpp:2757 msgid "List:" msgstr "列表:" #: ../src/Config.cpp:388 msgid "Load" msgstr "载入" #: ../src/wxMaxima.cpp:1986 msgid "Load Package" msgstr "载入包" #: ../src/wxMaximaFrame.cpp:208 msgid "Load a Maxima file using the batch command" msgstr "使用批处理命令载入 Maxima 文件" #: ../src/wxMaximaFrame.cpp:206 msgid "Load a Maxima package file" msgstr "载入 Maxima 包文件" #: ../src/Config.cpp:1074 msgid "Load style from file" msgstr "从文件载入样式" #: ../src/wxMaxima.cpp:2412 ../src/wxMaxima.cpp:3888 msgid "Lower bound:" msgstr "下限:" #: ../src/wxMaximaFrame.cpp:479 msgid "Ma&p to Matrix..." msgstr "映射至矩阵(&P)..." #: ../src/wxMaximaFrame.cpp:473 msgid "Make &List..." msgstr "创建列表(&L)..." #: ../src/wxMaxima.cpp:2742 msgid "Make list" msgstr "创建列表" #: ../src/wxMaximaFrame.cpp:474 msgid "Make list from expression" msgstr "从表达式创建列表" #: ../src/wxMaximaFrame.cpp:615 msgid "Make substitution in expression" msgstr "在表达式中进行替换" #: ../src/wxMaxima.cpp:2726 msgid "Map" msgstr "映射" #: ../src/wxMaximaFrame.cpp:478 msgid "Map function to a list" msgstr "映射函数至列表" #: ../src/wxMaximaFrame.cpp:480 msgid "Map function to a matrix" msgstr "映射函数至矩阵" #: ../src/Config.cpp:264 msgid "Match parenthesis in text controls" msgstr "在文本控件中输入时匹配括号" #: ../src/Config.cpp:348 msgid "Math font:" msgstr "数学字体:" #: ../src/wxMaxima.cpp:2637 msgid "Matrix" msgstr "矩阵" #: ../src/wxMaxima.cpp:2623 msgid "Matrix map" msgstr "矩阵映射" #: ../src/wxMaxima.cpp:3754 msgid "Matrix name:" msgstr "矩阵名:" #: ../src/wxMaxima.cpp:2621 ../src/wxMaxima.cpp:2670 msgid "Matrix:" msgstr "矩阵:" #: ../src/Config.cpp:99 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:657 msgid "Maxima &Help\tCTRL+?" msgstr "Maxima 帮助(&H)\tCtrl+?" #: ../src/wxMaximaFrame.cpp:660 msgid "Maxima &Help\tF1" msgstr "Maxima 帮助\tF1" #: ../src/Config.cpp:360 msgid "Maxima input" msgstr "Maxima 输入" #: ../src/wxMaxima.cpp:468 msgid "Maxima is calculating" msgstr "Maxima 正在计算" #: ../src/wxMaxima.cpp:1999 msgid "Maxima package (*.mac)|*.mac" msgstr "Maxima 包 (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1988 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Maxima 包 (*.mac)|*.mac|Lisp 包 (*.lisp)|*.lisp|全部类型|*" #: ../src/wxMaxima.cpp:777 msgid "Maxima process terminated." msgstr "Maxima 进程已中止。" #: ../src/Config.cpp:306 msgid "Maxima program:" msgstr "Maxima 程序:" #: ../src/Config.cpp:362 msgid "Maxima questions" msgstr "Maxima 问题" #: ../src/wxMaxima.cpp:732 msgid "Maxima started. Waiting for connection..." msgstr "Maxima 已启动。等待连接中..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "Maxima 使用”:“进行赋值(例如:”a : 3;“),使用”:=“定义函数(”f(x) := x^2“)。" #: ../src/wxMaxima.cpp:3501 msgid "Maxima version: " msgstr "Maxima 版本:" #: ../src/wxMaximaFrame.cpp:1031 msgid "Mean Difference Test..." msgstr "平均差检验..." #: ../src/wxMaximaFrame.cpp:1030 msgid "Mean Test..." msgstr "平均值检验..." #: ../src/wxMaximaFrame.cpp:1023 msgid "Mean..." msgstr "求平均值..." #: ../src/wxMaxima.cpp:3659 msgid "Mean:" msgstr "平均值:" #: ../src/wxMaximaFrame.cpp:1024 msgid "Median..." msgstr "中值..." #: ../src/MathCtrl.cpp:685 msgid "Merge Cells" msgstr "合并单元" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "方法:" #: ../src/wxMaxima.cpp:2893 msgid "Modulus" msgstr "求模" #: ../src/MatWiz.cpp:182 ../src/wxMaxima.cpp:2685 ../src/wxMaxima.cpp:2704 msgid "Name:" msgstr "名:" #: ../src/wxMaximaFrame.cpp:716 ../src/wxMaximaFrame.cpp:779 msgid "New" msgstr "新建" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "New\tCtrl-N" msgstr "新建\tCtrl-N" #: ../src/wxMaximaFrame.cpp:718 ../src/wxMaximaFrame.cpp:782 msgid "New document" msgstr "新建文档" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "新值:" #: ../src/wxMaxima.cpp:2914 ../src/wxMaxima.cpp:3040 ../src/wxMaxima.cpp:3057 msgid "New variable:" msgstr "新变量:" #: ../src/wxMaximaFrame.cpp:331 msgid "Next Command\tAlt-Down" msgstr "下一条命令\tAlt-Down" #: ../src/wxMaxima.cpp:2212 ../src/wxMaxima.cpp:2228 msgid "No matches found!" msgstr "无法找到匹配项!" #: ../src/wxMaximaFrame.cpp:1032 msgid "Normality Test..." msgstr "正态分布检验" #: ../src/wxMaxima.cpp:2649 msgid "Not a valid matrix dimension!" msgstr "矩阵的大小无效!" #: ../src/wxMaxima.cpp:2514 ../src/wxMaxima.cpp:2538 msgid "Not a valid number of equations!" msgstr "方程的个数不对!" #: ../src/wxMaxima.cpp:3503 msgid "Not connected." msgstr "未连接。" #: ../src/wxMaxima.cpp:2931 msgid "Num. deg:" msgstr "分子次数:" #: ../src/wxMaxima.cpp:2506 ../src/wxMaxima.cpp:2530 msgid "Number of equations:" msgstr "方程个数:" #: ../src/Config.cpp:355 msgid "Numbers" msgstr "数字" #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/LimitWiz.cpp:50 ../src/LimitWiz.cpp:54 ../src/SumWiz.cpp:46 #: ../src/SumWiz.cpp:50 ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 #: ../src/Plot2dWiz.cpp:560 ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 #: ../src/Plot2dWiz.cpp:659 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 #: ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/Gen1Wiz.cpp:33 ../src/Gen1Wiz.cpp:37 ../src/IntegrateWiz.cpp:58 #: ../src/IntegrateWiz.cpp:62 ../src/Plot3dWiz.cpp:102 #: ../src/Plot3dWiz.cpp:106 ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 msgid "OK" msgstr "确认" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "旧值:" #: ../src/wxMaxima.cpp:2913 ../src/wxMaxima.cpp:3039 ../src/wxMaxima.cpp:3056 msgid "Old variable:" msgstr "旧变量:" #: ../src/wxMaxima.cpp:3660 msgid "One sample t-test" msgstr "单样本 t-检验" #: ../src/wxMaximaFrame.cpp:673 msgid "Online tutorials" msgstr "在线教程" #: ../src/wxMaxima.cpp:1933 ../src/Config.cpp:308 ../src/wxMaximaFrame.cpp:720 #: ../src/wxMaximaFrame.cpp:784 ../src/main.cpp:202 msgid "Open" msgstr "打开" #: ../src/wxMaximaFrame.cpp:195 msgid "Open Recent" msgstr "打开最近的文件" #: ../src/Config.cpp:271 msgid "Open a cell when Maxima expects input" msgstr "当 Maxima 期望输入时打开一个新单元" #: ../src/wxMaximaFrame.cpp:193 msgid "Open a document" msgstr "打开文档" #: ../src/wxMaximaFrame.cpp:187 ../src/wxMaximaFrame.cpp:190 msgid "Open a new window" msgstr "打开新窗口" #: ../src/wxMaximaFrame.cpp:722 ../src/wxMaximaFrame.cpp:787 msgid "Open document" msgstr "打开文档" #: ../src/wxMaxima.cpp:3721 msgid "Open matrix" msgstr "打开矩阵" #: ../src/wxMaxima.cpp:966 ../src/wxMaxima.cpp:1033 msgid "Opening file" msgstr "正在打开文件" #: ../src/Config.cpp:98 ../src/wxMaximaFrame.cpp:732 #: ../src/wxMaximaFrame.cpp:799 msgid "Options" msgstr "选项" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "选项:" #: ../src/Config.cpp:375 msgid "Outdated cells" msgstr "单元已过期" #: ../src/Config.cpp:363 msgid "Output labels" msgstr "输出标签" #: ../src/wxMaximaFrame.cpp:504 msgid "P&ade Approximation..." msgstr "Pade 近似(&A)..." #: ../src/wxMaxima.cpp:2102 ../src/wxMaxima.cpp:3987 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "PNG 图片 (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows 位图 (*.bmp)|*.bmp|X 位图 (*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2933 msgid "Pade approximation" msgstr "Pade 近似" #: ../src/wxMaximaFrame.cpp:505 msgid "Pade approximation of a Taylor series" msgstr "泰勒级数的 Pade 近似" #: ../src/wxMaximaFrame.cpp:1079 msgid "Pagebreak" msgstr "换页" #: ../src/wxMaximaFrame.cpp:349 msgid "Panes" msgstr "面板" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "参数式绘图" #: ../src/wxMaxima.cpp:321 msgid "Parsing output" msgstr "解析输出" #: ../src/wxMaximaFrame.cpp:527 msgid "Partial &Fractions..." msgstr "部分分式(&F)..." #: ../src/wxMaxima.cpp:2997 msgid "Partial fractions" msgstr "部分分式" #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1156 msgid "Parts of the document will not be loaded correctly!" msgstr "文档的某些部分无法正确载入!" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:734 #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:812 msgid "Paste" msgstr "粘贴" #: ../src/wxMaximaFrame.cpp:247 msgid "Paste\tCtrl-V" msgstr "粘贴\tCtrl-V" #: ../src/wxMaximaFrame.cpp:744 ../src/wxMaximaFrame.cpp:815 msgid "Paste from clipboard" msgstr "粘贴自剪贴板" #: ../src/wxMaximaFrame.cpp:248 msgid "Paste text from clipboard" msgstr "粘贴文本自剪贴板" #: ../src/wxMaximaFrame.cpp:1041 msgid "Piechart..." msgstr "饼图..." #: ../src/wxMaxima.cpp:1428 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "请用 “编辑->配置” 配置 wxMaxima。" #: ../src/Config.cpp:936 msgid "Please restart wxMaxima for changes to take effect!" msgstr "请重启 wxMaxima 以使变更生效。" #: ../src/wxMaximaFrame.cpp:631 msgid "Plot &2d..." msgstr "二维绘图(&2)..." #: ../src/wxMaximaFrame.cpp:633 msgid "Plot &3d..." msgstr "三维绘图(&3)..." #: ../src/wxMaximaFrame.cpp:635 msgid "Plot &Format..." msgstr "绘图格式(&F)..." #: ../src/Plot2dWiz.cpp:116 ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 #: ../src/wxMaxima.cpp:3204 ../src/wxMaxima.cpp:3956 msgid "Plot 2D" msgstr "二维绘图" #: ../src/wxMaximaFrame.cpp:995 msgid "Plot 2D..." msgstr "二维绘图..." #: ../src/MathCtrl.cpp:713 msgid "Plot 2d..." msgstr "二维绘图..." #: ../src/wxMaxima.cpp:3190 ../src/wxMaxima.cpp:3969 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "三维绘图" #: ../src/wxMaximaFrame.cpp:996 msgid "Plot 3D..." msgstr "三维绘图..." #: ../src/MathCtrl.cpp:714 msgid "Plot 3d..." msgstr "三维绘图..." #: ../src/wxMaxima.cpp:3217 msgid "Plot format" msgstr "绘图格式" #: ../src/wxMaximaFrame.cpp:632 msgid "Plot in 2 dimensions" msgstr "二维绘图" #: ../src/wxMaximaFrame.cpp:634 msgid "Plot in 3 dimensions" msgstr "三维绘图" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "绘图至文件:" #: ../src/LimitWiz.cpp:32 ../src/SeriesWiz.cpp:38 ../src/wxMaxima.cpp:2446 #: ../src/wxMaxima.cpp:2461 ../src/wxMaxima.cpp:2569 ../src/BC2Wiz.cpp:29 #: ../src/BC2Wiz.cpp:35 msgid "Point:" msgstr "点:" #: ../src/Config.cpp:252 msgid "Polish" msgstr "波兰语" #: ../src/wxMaxima.cpp:2950 ../src/wxMaxima.cpp:2965 ../src/wxMaxima.cpp:2980 msgid "Polynomial 1:" msgstr "多项式1:" #: ../src/wxMaxima.cpp:2950 ../src/wxMaxima.cpp:2965 ../src/wxMaxima.cpp:2980 msgid "Polynomial 2:" msgstr "多项式2:" #: ../src/Config.cpp:253 msgid "Portuguese (Brazilian)" msgstr "葡萄牙语(巴西)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Postscript 文件 (*.eps)|*.eps|全部类型|*" #: ../src/wxMaxima.cpp:3257 msgid "Precision" msgstr "精度" #: ../src/wxMaximaFrame.cpp:281 msgid "Preferences...\tCTRL+," msgstr "首选项...\tCtrl+," #: ../src/wxMaximaFrame.cpp:329 msgid "Previous Command\tAlt-Up" msgstr "前一条命令\tAlt-Up" #: ../src/wxMaximaFrame.cpp:728 ../src/wxMaximaFrame.cpp:794 msgid "Print" msgstr "打印" #: ../src/wxMaximaFrame.cpp:214 ../src/wxMaximaFrame.cpp:730 #: ../src/wxMaximaFrame.cpp:797 msgid "Print document" msgstr "打印文档" #: ../src/wxMaxima.cpp:3163 msgid "Product" msgstr "乘积" #: ../src/wxMaximaFrame.cpp:1046 msgid "Read Matrix..." msgstr "读入矩阵..." #: ../src/wxMaxima.cpp:552 msgid "Reading Maxima output" msgstr "正在读取 Maxima 输入" #: ../src/wxMaxima.cpp:365 ../src/wxMaxima.cpp:823 ../src/wxMaxima.cpp:956 #: ../src/wxMaxima.cpp:978 ../src/wxMaxima.cpp:989 ../src/wxMaxima.cpp:1026 #: ../src/wxMaxima.cpp:1049 ../src/wxMaxima.cpp:1061 ../src/wxMaxima.cpp:1082 #: ../src/wxMaxima.cpp:1128 ../src/wxMaxima.cpp:1348 ../src/wxMaxima.cpp:1369 msgid "Ready for user input" msgstr "输入准备就绪" #: ../src/wxMaximaFrame.cpp:332 msgid "Recall next command from history" msgstr "重调历史中的下一条命令" #: ../src/wxMaximaFrame.cpp:330 msgid "Recall previous command from history" msgstr "重调历史中的前一条命令" #: ../src/wxMaximaFrame.cpp:983 msgid "Rectform" msgstr "直角坐标x形式" #: ../src/wxMaximaFrame.cpp:227 msgid "Redo\tCtrl-Shift-Z" msgstr "重做\tCtrl-Shift-Z" #: ../src/wxMaximaFrame.cpp:228 msgid "Redo last change" msgstr "重做上次变更" #: ../src/wxMaximaFrame.cpp:988 msgid "Reduce (tr)" msgstr "化简(三角)" #: ../src/wxMaximaFrame.cpp:579 msgid "Reduce trigonometric expression" msgstr "对表达式进行三角函数化简" #: ../src/wxMaximaFrame.cpp:297 msgid "Remove All Output" msgstr "移除所有输出" #: ../src/wxMaximaFrame.cpp:298 msgid "Remove output from input cells" msgstr "移除所有输入单元的输出" #: ../src/wxMaxima.cpp:2235 #, c-format msgid "Replaced %d occurences." msgstr "替换了 %d 次。" #: ../src/wxMaximaFrame.cpp:678 msgid "Report bug" msgstr "报告错误" #: ../src/wxMaximaFrame.cpp:364 msgid "Restart Maxima" msgstr "重启 Maxima" #: ../src/wxMaximaFrame.cpp:487 msgid "Risch Integration..." msgstr "Risch 积分..." #: ../src/wxMaximaFrame.cpp:402 msgid "Roots of &Polynomial" msgstr "多项式求根(&P)" #: ../src/wxMaximaFrame.cpp:405 msgid "Roots of Polynomial (bfloat)" msgstr "多项式求根(长浮点数)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "行:" #: ../src/Config.cpp:254 msgid "Russian" msgstr "俄语" #: ../src/wxMaxima.cpp:3673 msgid "Sample 1:" msgstr "样本1:" #: ../src/wxMaxima.cpp:3673 msgid "Sample 2:" msgstr "样本2:" #: ../src/wxMaxima.cpp:3659 msgid "Sample:" msgstr "样本:" #: ../src/wxMaxima.cpp:4467 ../src/Config.cpp:389 ../src/wxMaximaFrame.cpp:723 #: ../src/wxMaximaFrame.cpp:788 msgid "Save" msgstr "保存" #: ../src/MathCtrl.cpp:664 msgid "Save Animation..." msgstr "保存动画" #: ../src/wxMaxima.cpp:1847 msgid "Save As" msgstr "另存为" #: ../src/wxMaximaFrame.cpp:203 msgid "Save As...\tShift-Ctrl-S" msgstr "另存为...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:662 msgid "Save Image..." msgstr "保存图片..." #: ../src/wxMaxima.cpp:2100 msgid "Save Selection to Image" msgstr "保存所选区域到图片" #: ../src/wxMaximaFrame.cpp:257 msgid "Save Selection to Image..." msgstr "保存所选区域到图片..." #: ../src/wxMaxima.cpp:4001 msgid "Save animation to file" msgstr "保存动画到文件" #: ../src/wxMaxima.cpp:4479 msgid "Save changes before closing?" msgstr "关闭前是否保存修改?" #: ../src/wxMaxima.cpp:4480 msgid "Save changes?" msgstr "是否保存修改?" #: ../src/wxMaximaFrame.cpp:202 ../src/wxMaximaFrame.cpp:725 #: ../src/wxMaximaFrame.cpp:791 msgid "Save document" msgstr "保存文档" #: ../src/wxMaximaFrame.cpp:204 msgid "Save document as" msgstr "另存文档为" #: ../src/Config.cpp:263 msgid "Save panes layout" msgstr "保存面板布局" #: ../src/Config.cpp:126 msgid "Save panes layout between sessions." msgstr "保存会话间的面板布局。" #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "保存绘图到文件" #: ../src/wxMaximaFrame.cpp:258 msgid "Save selection from document to an image file" msgstr "保存文档中所选区域到图片文件" #: ../src/wxMaxima.cpp:3985 msgid "Save selection to file" msgstr "保存所选区域到文件" #: ../src/Config.cpp:1066 msgid "Save style to file" msgstr "保存样式到文件" #: ../src/Config.cpp:262 msgid "Save wxMaxima window size/position" msgstr "保存 wxMaxima 窗口大小和位置" #: ../src/Config.cpp:125 msgid "Save wxMaxima window size/position between sessions." msgstr "保存会话间的 wxMaxima 窗口的大小和位置。" #: ../src/wxMaxima.cpp:3596 msgid "Scatterplot" msgstr "散布图" #: ../src/wxMaximaFrame.cpp:1039 msgid "Scatterplot..." msgstr "散布图..." #: ../src/wxMaximaFrame.cpp:1077 msgid "Section" msgstr "节" #: ../src/Config.cpp:367 msgid "Section cell" msgstr "节单元" #: ../src/MathCtrl.cpp:721 ../src/MathCtrl.cpp:736 msgid "Select All" msgstr "选择全部" #: ../src/wxMaximaFrame.cpp:254 msgid "Select All\tCtrl-A" msgstr "选择全部\tCtrl-A" #: ../src/Config.cpp:474 ../src/Config.cpp:479 msgid "Select Maxima program" msgstr "选择 Maxima 程序" #: ../src/wxMaxima.cpp:3757 msgid "Select Subsample" msgstr "选择子样本" #: ../src/LimitWiz.cpp:134 ../src/SeriesWiz.cpp:108 #: ../src/IntegrateWiz.cpp:218 ../src/IntegrateWiz.cpp:237 msgid "Select a constant" msgstr "选择一个常量" #: ../src/wxMaximaFrame.cpp:255 msgid "Select all" msgstr "选择全部" #: ../src/wxMaxima.cpp:2268 msgid "Select math display algorithm" msgstr "选择数学式显示算法" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "选择一部分输出并右击所选区域会打开一个便捷函数菜单,可从中选取函数并作用于此区域。" #: ../src/Config.cpp:374 msgid "Selection" msgstr "选择" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3099 msgid "Series" msgstr "级数" #: ../src/wxMaximaFrame.cpp:994 msgid "Series..." msgstr "级数..." #: ../src/wxMaxima.cpp:651 msgid "Server started" msgstr "服务器已启动" #: ../src/wxMaximaFrame.cpp:649 msgid "Set &Precision..." msgstr "设定精度(&P)..." #: ../src/wxMaximaFrame.cpp:275 msgid "Set Zoom" msgstr "设定显示比例" #: ../src/wxMaximaFrame.cpp:650 msgid "Set bigfloat precision" msgstr "设定长浮点数精度" #: ../src/Config.cpp:130 msgid "Set fixed font in text controls." msgstr "设定文本控件中使用等宽字体" #: ../src/wxMaximaFrame.cpp:636 msgid "Set plot format" msgstr "设定绘图格式" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 100%" msgstr "设定显示比例为100%" #: ../src/wxMaximaFrame.cpp:270 msgid "Set zoom to 120%" msgstr "设定显示比例为120%" #: ../src/wxMaximaFrame.cpp:271 msgid "Set zoom to 150%" msgstr "设定显示比例为150%" #: ../src/wxMaximaFrame.cpp:272 msgid "Set zoom to 200%" msgstr "设定显示比例为200%" #: ../src/wxMaximaFrame.cpp:273 msgid "Set zoom to 300%" msgstr "设定显示比例为300%" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 80%" msgstr "设定显示比例为80%" #: ../src/wxMaximaFrame.cpp:440 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "在使用 Laplace 变换解常微分方程前将定点设值" #: ../src/wxMaximaFrame.cpp:626 msgid "Setup modulus computation" msgstr "设定模运算" #: ../src/wxMaximaFrame.cpp:373 msgid "Show &Definition..." msgstr "显示函数定义(&D)..." #: ../src/wxMaximaFrame.cpp:371 msgid "Show &Functions" msgstr "显示函数(&F)" #: ../src/wxMaximaFrame.cpp:669 msgid "Show &Tips..." msgstr "显示提示(&T)..." #: ../src/wxMaximaFrame.cpp:376 msgid "Show &Variables" msgstr "显示变量(&V)" #: ../src/wxMaximaFrame.cpp:658 ../src/wxMaximaFrame.cpp:661 #: ../src/wxMaximaFrame.cpp:767 ../src/wxMaximaFrame.cpp:841 msgid "Show Maxima help" msgstr "显示 Maxima 帮助" #: ../src/wxMaximaFrame.cpp:306 msgid "Show Template\tCtrl-Shift-K" msgstr "显示模板\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:670 msgid "Show a tip" msgstr "显示提示" #: ../src/wxMaxima.cpp:3537 msgid "Show all commands similar to:" msgstr "显示所有与其相似的命令:" #: ../src/wxMaxima.cpp:3524 msgid "Show an example for the command:" msgstr "显示以下命令的示例:" #: ../src/wxMaximaFrame.cpp:664 msgid "Show an example of usage" msgstr "显示用法示例" #: ../src/wxMaximaFrame.cpp:667 msgid "Show commands similar to" msgstr "显示与其相似的命令" #: ../src/wxMaximaFrame.cpp:372 msgid "Show defined functions" msgstr "显示已定义函数" #: ../src/wxMaximaFrame.cpp:377 msgid "Show defined variables" msgstr "显示已定义变量" #: ../src/wxMaximaFrame.cpp:374 msgid "Show definition of a function" msgstr "显示函数的定义" #: ../src/wxMaximaFrame.cpp:307 msgid "Show function template" msgstr "显示函数模板" #: ../src/Config.cpp:266 msgid "Show long expressions" msgstr "显示长表达式" #: ../src/Config.cpp:128 msgid "Show long expressions in wxMaxima document." msgstr "在 wxMaxima 文档中显示长表达式" #: ../src/wxMaxima.cpp:2290 msgid "Show the definition of function:" msgstr "显示函数的定义" #: ../src/wxMaximaFrame.cpp:979 msgid "Simplify" msgstr "化简" #: ../src/wxMaximaFrame.cpp:539 msgid "Simplify &Radicals" msgstr "化简根式(&R)" #: ../src/wxMaximaFrame.cpp:980 msgid "Simplify (r)" msgstr "化简根式" #: ../src/wxMaximaFrame.cpp:986 msgid "Simplify (tr)" msgstr "化简三角函数" #: ../src/MathCtrl.cpp:705 msgid "Simplify Expression" msgstr "化简表达式" #: ../src/wxMaximaFrame.cpp:565 msgid "Simplify an expression containing factorials" msgstr "化简含有阶乘的表达式" #: ../src/wxMaximaFrame.cpp:540 msgid "Simplify expression containing radicals" msgstr "化简含有根式的表达式" #: ../src/wxMaximaFrame.cpp:538 msgid "Simplify rational expression" msgstr "化简有理式" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "化简求和表达式" #: ../src/wxMaximaFrame.cpp:576 msgid "Simplify trigonometric expression" msgstr "化简三角表达式" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "自 wxMaxima 0.8.0 起您可以使用菜单命令“单元->插入图片...“在文档中插入图片。注意:如果您想让图片随文档一起保存,您必须将文档保存为 “wxMaxima XML 文档”。" #: ../src/wxMaxima.cpp:2446 ../src/wxMaxima.cpp:2461 ../src/BC2Wiz.cpp:26 msgid "Solution:" msgstr "解:" #: ../src/wxMaxima.cpp:2382 ../src/wxMaxima.cpp:2396 ../src/wxMaxima.cpp:3874 msgid "Solve" msgstr "求解" #: ../src/wxMaximaFrame.cpp:414 msgid "Solve &Algebraic System..." msgstr "求解代数系统(&A)..." #: ../src/wxMaximaFrame.cpp:411 msgid "Solve &Linear System..." msgstr "求解线性系统(&L)..." #: ../src/wxMaximaFrame.cpp:422 msgid "Solve &ODE..." msgstr "求解常微分方程(&O)..." #: ../src/wxMaximaFrame.cpp:398 msgid "Solve (to_poly)..." msgstr "求解 (to_poly)..." #: ../src/wxMaxima.cpp:2432 ../src/wxMaxima.cpp:2556 msgid "Solve ODE" msgstr "求解常微分方程" #: ../src/wxMaximaFrame.cpp:436 msgid "Solve ODE with Lapla&ce..." msgstr "利用 Laplace 变换求解常微分方程(&C)..." #: ../src/wxMaximaFrame.cpp:990 msgid "Solve ODE..." msgstr "求解常微分方程..." #: ../src/wxMaxima.cpp:2507 ../src/wxMaxima.cpp:2518 msgid "Solve algebraic system" msgstr "求解代数系统" #: ../src/wxMaximaFrame.cpp:415 msgid "Solve algebraic system of equations" msgstr "求解代数程组" #: ../src/wxMaximaFrame.cpp:433 msgid "Solve boundary value problem for second degree ODE" msgstr "求解二阶常微分方程的边界值问题" #: ../src/wxMaximaFrame.cpp:397 msgid "Solve equation(s)" msgstr "求解方程" #: ../src/wxMaximaFrame.cpp:399 msgid "Solve equation(s) with to_poly_solver" msgstr "使用 to_poly_solver 求解方程" #: ../src/wxMaximaFrame.cpp:427 msgid "Solve initial value problem for first degree ODE" msgstr "求解一阶常微分方程的初始值问题" #: ../src/wxMaximaFrame.cpp:430 msgid "Solve initial value problem for second degree ODE" msgstr "求解二阶常微分方程的初始值问题" #: ../src/wxMaxima.cpp:2531 ../src/wxMaxima.cpp:2542 msgid "Solve linear system" msgstr "求解线性系统" #: ../src/wxMaximaFrame.cpp:412 msgid "Solve linear system of equations" msgstr "求解线性方程组" #: ../src/wxMaximaFrame.cpp:423 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "求解常微分方程(最大2阶)" #: ../src/wxMaximaFrame.cpp:437 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "利用 Laplace 变换求解常微分方程" #: ../src/MathCtrl.cpp:702 ../src/wxMaximaFrame.cpp:989 msgid "Solve..." msgstr "求解..." #: ../src/Config.cpp:255 msgid "Spanish" msgstr "西班牙语" #: ../src/LimitWiz.cpp:35 ../src/SeriesWiz.cpp:41 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 msgid "Special" msgstr "特殊" #: ../src/Config.cpp:357 msgid "Special constants" msgstr "特殊常量" #: ../src/MathCtrl.cpp:665 msgid "Start Animation" msgstr "开始动画" #: ../src/wxMaximaFrame.cpp:754 ../src/wxMaximaFrame.cpp:756 msgid "Start animation" msgstr "开始动画" #: ../src/wxMaxima.cpp:266 msgid "Starting Maxima process failed" msgstr "启动 Maxima 进程失败" #: ../src/wxMaxima.cpp:729 msgid "Starting Maxima..." msgstr "正在启动 Maxima..." #: ../src/wxMaxima.cpp:264 ../src/wxMaxima.cpp:648 msgid "Starting server failed" msgstr "启动服务器失败" #: ../src/wxMaxima.cpp:629 #, c-format msgid "Starting server on port %d" msgstr "正在启动服务器,端口为 %d" #: ../src/wxMaximaFrame.cpp:124 msgid "Statistics" msgstr "统计" #: ../src/wxMaximaFrame.cpp:344 msgid "Statistics\tAlt-Shift-S" msgstr "统计\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:757 ../src/wxMaximaFrame.cpp:759 #: ../src/wxMaximaFrame.cpp:830 msgid "Stop animation" msgstr "停止动画" #: ../src/Config.cpp:359 msgid "Strings" msgstr "字符串" #: ../src/Config.cpp:100 msgid "Style" msgstr "样式" #: ../src/Config.cpp:333 msgid "Styles" msgstr "样式" #: ../src/wxMaximaFrame.cpp:1051 msgid "Subsample..." msgstr "子样本" #: ../src/wxMaximaFrame.cpp:1076 msgid "Subsection" msgstr "小节" #: ../src/Config.cpp:366 msgid "Subsection cell" msgstr "小节单元" #: ../src/wxMaximaFrame.cpp:984 msgid "Subst..." msgstr "代换" #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2344 #: ../src/wxMaxima.cpp:3943 msgid "Substitute" msgstr "代换" #: ../src/MathCtrl.cpp:708 ../src/wxMaximaFrame.cpp:614 msgid "Substitute..." msgstr "代换" #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3147 msgid "Sum" msgstr "求和" #: ../src/wxMaxima.cpp:3372 msgid "System info" msgstr "系统信息" #: ../src/wxMaxima.cpp:2931 msgid "Taylor series:" msgstr "泰勒级数:" #: ../src/wxMaxima.cpp:2884 msgid "Tellrat" msgstr "Tellrat 函数" #: ../src/wxMaximaFrame.cpp:1074 msgid "Text" msgstr "文本" #: ../src/Config.cpp:365 msgid "Text cell" msgstr "文本单元" #: ../src/Config.cpp:369 msgid "Text cell background" msgstr "文本单元背景" #: ../src/Config.cpp:134 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "Maxima 和 wxMaxima 之间用于通信的默认端口。" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "因特网上有许多关于 Maxima 和 wxMaxima 的资源。请访问 http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials 获得更多关于 wxMaxima 和 Maxima 的信息。" #: ../src/wxMaxima.cpp:395 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "生成的 XML 中出现错误。\n" "\n" "请报告这一错误。" #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "导出 GIF 时发生错误。\n" "\n" "确认 ImageMagick 已安装且 wxMaxima 能够找到 convert 程序。" #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "坐标刻度:" #: ../src/wxMaxima.cpp:3074 ../src/wxMaxima.cpp:3919 msgid "Times:" msgstr "微分次数:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "对不起,没有提示!" #: ../src/wxMaximaFrame.cpp:1075 msgid "Title" msgstr "标题" #: ../src/Config.cpp:368 msgid "Title cell" msgstr "标题单元" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "标题,节和小节单元可以折叠以隐藏其内容。点击紧邻单元的小方块可以折叠或展开单元,如果同时按下 Shift 键,此单元的所有下级单元也跟着折叠和展开。" #: ../src/wxMaximaFrame.cpp:646 msgid "To &Bigfloat" msgstr "转换成长浮点数(&B)" #: ../src/wxMaximaFrame.cpp:643 msgid "To &Float" msgstr "转换成浮点数(&F)" #: ../src/MathCtrl.cpp:700 msgid "To Float" msgstr "转换成浮点数" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "欲以极坐标形式绘图,在”二维绘图“对话框的”选项“中选择”set ploar“。您也可以在”三维绘图“时使用球坐标和柱坐标绘图。" #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "欲在表达式两侧加上括号,请先选取它,再根据光标出现在表达式之前或之后按下”(“或“)”键。" #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "欲保存会话间 wxMaxima 窗口的大小和位置,使用”编辑->配置“对话框。" #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "欲立即开始使用 wxMaxima,请开始输入命令。此时应会出现一个输入单元,然后按下 Shift-Enter 键运行命令。" #: ../src/SumWiz.cpp:39 ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 #: ../src/Plot2dWiz.cpp:551 ../src/wxMaxima.cpp:2740 ../src/wxMaxima.cpp:3162 #: ../src/IntegrateWiz.cpp:47 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "到:" #: ../src/wxMaximaFrame.cpp:620 msgid "Toggle &Algebraic Flag" msgstr "打开代数标志(&A)" #: ../src/wxMaximaFrame.cpp:641 msgid "Toggle &Numeric Output" msgstr "代开数值输出(&N)" #: ../src/wxMaximaFrame.cpp:384 msgid "Toggle &Time Display" msgstr "打开时间显示(&T)" #: ../src/wxMaximaFrame.cpp:621 msgid "Toggle algebraic flag" msgstr "打开代数标志" #: ../src/wxMaximaFrame.cpp:277 msgid "Toggle full screen editing" msgstr "打开全屏编辑" #: ../src/wxMaximaFrame.cpp:642 msgid "Toggle numeric output" msgstr "打开数值输出" #: ../src/wxMaximaFrame.cpp:348 msgid "Toolbar\tAlt-Shift-T" msgstr "工具栏\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3384 msgid "Toolbar icons" msgstr "工具栏图标" #: ../src/wxMaxima.cpp:3385 msgid "Translated by" msgstr "翻译人员:" #: ../src/wxMaximaFrame.cpp:471 msgid "Transpose a matrix" msgstr "转置矩阵" #: ../src/wxMaximaFrame.cpp:672 msgid "Tutorials" msgstr "教程" #: ../src/wxMaxima.cpp:3675 msgid "Two sample t-test" msgstr "双样本 t-检验" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "类型:" #: ../src/Config.cpp:256 msgid "Ukrainian" msgstr "乌克兰语" #: ../src/Config.cpp:386 msgid "Underlined" msgstr "下划线" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo\tCtrl-Z" msgstr "撤销\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:225 msgid "Undo last change" msgstr "撤销上一次更改" #: ../src/wxMaximaFrame.cpp:326 msgid "Unfold All\tCtrl-Alt-]" msgstr "展开全部\tCtrl-Alt-]" #: ../src/wxMaximaFrame.cpp:327 msgid "Unfold all folded sections" msgstr "展开所有已折叠节单元" #: ../src/wxMaxima.cpp:3374 msgid "Unicode Support" msgstr "Unicode 支持" #: ../src/wxMaxima.cpp:4394 ../src/wxMaxima.cpp:4401 msgid "Upgrade" msgstr "升级" #: ../src/wxMaxima.cpp:2412 ../src/wxMaxima.cpp:3888 msgid "Upper bound:" msgstr "上限:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "使用 Gosper 算法" #: ../src/Config.cpp:133 ../src/Config.cpp:267 msgid "Use centered dot character for multiplication" msgstr "使用点积符号(∙)表示乘法" #: ../src/Config.cpp:350 msgid "Use jsMath fonts" msgstr "使用 jsMath 字体" #: ../src/wxMaxima.cpp:2446 ../src/wxMaxima.cpp:2462 ../src/wxMaxima.cpp:2570 #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 msgid "Value:" msgstr "值:" #: ../src/wxMaxima.cpp:2381 ../src/wxMaxima.cpp:2395 ../src/wxMaxima.cpp:3073 #: ../src/wxMaxima.cpp:3873 ../src/wxMaxima.cpp:3918 msgid "Variable(s):" msgstr "变量:" #: ../src/LimitWiz.cpp:29 ../src/SumWiz.cpp:33 ../src/Plot2dWiz.cpp:46 #: ../src/Plot2dWiz.cpp:56 ../src/Plot2dWiz.cpp:545 ../src/SeriesWiz.cpp:35 #: ../src/wxMaxima.cpp:2411 ../src/wxMaxima.cpp:2430 ../src/wxMaxima.cpp:2670 #: ../src/wxMaxima.cpp:2739 ../src/wxMaxima.cpp:2995 ../src/wxMaxima.cpp:3010 #: ../src/wxMaxima.cpp:3161 ../src/wxMaxima.cpp:3887 #: ../src/IntegrateWiz.cpp:39 ../src/Plot3dWiz.cpp:43 ../src/Plot3dWiz.cpp:52 msgid "Variable:" msgstr "变量:" #: ../src/Config.cpp:354 msgid "Variables" msgstr "变量" #: ../src/SystemWiz.cpp:72 ../src/wxMaxima.cpp:2492 ../src/wxMaxima.cpp:3127 #: ../src/wxMaxima.cpp:3704 msgid "Variables:" msgstr "变量:" #: ../src/wxMaximaFrame.cpp:1025 msgid "Variance..." msgstr "方差..." #: ../src/MathParser.cpp:961 ../src/wxMaxima.cpp:1089 ../src/wxMaxima.cpp:1156 #: ../src/wxMaxima.cpp:1426 msgid "Warning" msgstr "警告" #: ../src/wxMaximaFrame.cpp:101 msgid "Welcome to wxMaxima" msgstr "欢迎使用 wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "当使用菜单中的带有一个参数的函数时,默认参数是“%”。如想应用函数于其它值,在运行菜单命令前先在文档中选取它。" #: ../src/wxMaxima.cpp:2685 ../src/wxMaxima.cpp:2704 msgid "Width:" msgstr "宽度:" #: ../src/Config.cpp:127 msgid "Write matching parenthesis in text controls." msgstr "在文本控件中输入时插入匹配的括号。" #: ../src/wxMaxima.cpp:3381 msgid "Written by" msgstr "作者:" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "您可以使用变量”%“访问最后一次数据结果。您可以使用变量”%on“(n是输入的编号)访问先前命令的输出。" #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "你可以使用菜单命令”单元->所有单元求值“或相应的快捷键对整个文档求值。求值顺序为从头到尾。" #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "您可以通过选取或点击函数名后按 F1 键获得 Maxima 函数的帮助。wxMaxima将在帮助索引中搜索所选的内容或光标下的单词。" #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "您可以通过点击单元左侧的三角号来隐藏输出部分,这对文本单元同样有效。" #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "您可以使用”单元“菜单在 wxMaxima 文档中插入不同类型的”单元“。注意,只有”输入单元“可以被求值,其它单元是用来注释或组织您的计算的。" #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "您可以使用鼠标(在单元间或单元的左括号拖动鼠标)或通过键盘(按下 Shift 键同时移动光标”)选择多个单元,然后对其进行操作。这在您想删除或对多个单元求值时很有用。" #: ../src/wxMaxima.cpp:4391 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "您的版本是:%s. 最新版本是:%s。\n" "\n" "按“确认”后,会访问 wxMaxima 网页。" #: ../src/wxMaxima.cpp:4466 ../src/wxMaxima.cpp:4473 msgid "Your changes will be lost if you don't save them." msgstr "如果您未保存,您的所有更改将会丢掉。" #: ../src/wxMaxima.cpp:4401 msgid "Your version of wxMaxima is up to date." msgstr "您的 wxMaxima 版本是最新版本。" #: ../src/wxMaximaFrame.cpp:262 msgid "Zoom &In\tAlt-I" msgstr "放大(&I)\tAlt-I" #: ../src/wxMaximaFrame.cpp:264 msgid "Zoom Ou&t\tAlt-O" msgstr "缩小(&T)\tAlt-O" #: ../src/wxMaximaFrame.cpp:263 msgid "Zoom in 10%" msgstr "将显示比例放大10%" #: ../src/wxMaximaFrame.cpp:265 msgid "Zoom out 10%" msgstr "将显示比例缩小10%" #: ../src/wxMaxima.cpp:2126 ../src/wxMaxima.cpp:2134 msgid "Zoom set to " msgstr "显示比例设值为" #: ../src/wxMaxima.cpp:4254 ../src/wxMaximaFrame.cpp:94 msgid "[ unsaved ]" msgstr "未保存" #: ../src/wxMaxima.cpp:4256 msgid "[ unsaved* ]" msgstr "未保存*" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "非对称" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "两边" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "默认" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "对角" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "普通" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "inline" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "左" #: ../src/EditorCell.cpp:331 msgid "lines hidden" msgstr "隐藏行" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "对数尺度" #: ../src/wxMaxima.cpp:2704 msgid "matrix[i,j]:" msgstr "矩阵[i,j]:" #: ../src/wxMaxima.cpp:3445 msgid "no" msgstr "否" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "右" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "对称" #: ../src/wxMaxima.cpp:4451 msgid "unsaved" msgstr "未保存" #: ../src/wxMaxima.cpp:1842 ../src/wxMaxima.cpp:1955 #: ../src/wxMaximaFrame.cpp:96 msgid "untitled" msgstr "未命名" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "未命名 %d" #: ../src/wxMaxima.cpp:3456 ../src/main.cpp:167 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaxima.cpp:4254 ../src/wxMaxima.cpp:4256 ../src/wxMaxima.cpp:4265 #: ../src/wxMaxima.cpp:4268 ../src/wxMaximaFrame.cpp:94 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:91 ../src/Config.cpp:120 msgid "wxMaxima configuration" msgstr "wxMaxima 配置" #: ../src/wxMaxima.cpp:1424 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima 无法找到 Maxima!\n" "\n" "请通过“编辑->配置”来配置 wxMaxima。\n" "然后执行“Maxima->重启 Maxima”来启动 Maxima。" #: ../src/wxMaxima.cpp:1597 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima 无法找到帮助文件。\n" "\n" "请检查您的安装是否完整。" #: ../src/wxMaxima.cpp:1501 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima 无法找到提示集文件。\n" "\n" "请检查您的安装是否完整。" #: ../src/wxMaxima.cpp:254 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima 无法启动服务器。\n" "\n" "请检查您的网络支持是否已打开并再次尝试。" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "wxMaxima 对话框设定了其内各种输入框的默认值,其中一种是”%“。如果您在文档已有选中区域,所选内容将替代”%“。" #: ../src/wxMaxima.cpp:1679 msgid "wxMaxima document" msgstr "wxMaxima 文档" #: ../src/wxMaxima.cpp:1849 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "wxMaxima 文档 (*.wxm)|*.wxm|wxMaxima XML 文档 (*.wxmx)|*.wxmx|Maxima 批处理文件 (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1935 ../src/main.cpp:204 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "wxMaxima 文档 (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:977 ../src/wxMaxima.cpp:988 ../src/wxMaxima.cpp:1047 #: ../src/wxMaxima.cpp:1059 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima 在载入下列文件时出现错误:" #: ../src/wxMaxima.cpp:3383 msgid "wxMaxima icon" msgstr "wxMaxima 图标" #: ../src/wxMaxima.cpp:3371 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "wxMaxima 是计算机代数系统 Maxima 的图形用户界面,基于 wxWidgets。" #: ../src/wxMaxima.cpp:3437 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "wxMaxima 是计算机代数系统 Maxima 的图形用户界面,基于 wxWidgets。" #: ../src/wxMaxima.cpp:3443 msgid "yes" msgstr "是" wxMaxima-13.04.2/locales/zh_TW.mo000644 000765 000024 00000156315 11747460570 017122 0ustar00andrejstaff000000 000000  d0@)@AA-AHA&XAgAJA2B;B MBYBoB B BBB BBBC C)C ?C ICVChCnCC CCCC CCC C D!D=D CDQDcDuDDDDD DDDD D EE "E0E AEKEaEqE E EEEE EEEFF8F>F UF `FkF1G HH#H2HFHVHqHH'HH1H I"I (I2I8IQIYI `IkIII II II II IIJ JJK+&K(RK{KKK"KKKKLL L#L;6LrL"L LL2LL MM,M 5M BM OM[M#dMMMMM M%MN1:N#lN#NN@N O O:OPOcOlO8OAO(O'$PHLP1P1PPQ"Q8Q>MQ3QQ Q QQ Q RR/R(>R$gR,R%RRR R RS S S1SOS0USS S SSSSSSST,T@T TT`T gT sTTT TTT T TTUU 4UUU \UhU:U UU U U U V V V/'VWV _VjVzV.V(VV VW(WBW KW XW eW oWzWWWWWW#W"W%X=X EX RX`X gXsXXXXX*XXY 1Y\F\M\S\i\r\ \ \$\7\3\)]-] E]R]k]"{],]*]]]^+ ^L^3[^,^,^'^__'_;-_i_q_v___ _ ____ ```~`Pa@Vaaaaaaa b%b,bHbab ybbbbbbbcc0cBcZctcccc c c cc d) d Jd WdadQddddee4eLePe pezeeeeeeeeef f*f?fZf of|f f ffffff"g 7gBg Ig Tgagigpgg ggg?gh/h?h)PhWzhhh hii i i,i4i )9@8S7$Ğ'03B3vٟ0'Govʠ0"O*r ̡ҡ١1 $%JQ anu ʢ * 7A Xbi y &̣ +8/T Ť ֤ ,*?$j  ̥   - 4 >H_ y*$$֦,3 CP cp+է (;%Nt ! ݨ  &'Na/ɩ٩ +G N!X*z*Ъ ת  !(+J'v ͫ ! .L Sar !& & 3H="  /ѯ>د '1O%_% ݰ #3J ]~űر9Rk  "Ȳ QdvF (7M`p  )Ĵ (E Yf|*ŵ   !+2J ^l}H %i?ͷ    %/ 6 D Q [h!'ո +2 9 CP cpw& ι ۹  )[< # Ⱥպܺ 0N Ucv 5+һ& :GW gt ˼Ҽټ+ :D[r y 'Ƚ'+?Ue~!;&$KR Z f r| Ϳ$7 S`v$(7A y   $l)   '0Ca<3C]n*$%>Tm( , <Ie +-Yo* !**BR$e'    6OV iv}    *%P=iD ! 3CqoVRYp! %8? R \f m{     &3:P0 ;BxtVS9&@Z p~     # ,9I58`PS`c, UUs}qz mTt3+ WfJ_QRF=j$#"6yS|\ i-_+GnD2OVO2lf7o"$WIaX01`%lt)huv?QV;1,~]Fpgy?`sbKI H.|w9a~/[o<Rkp{Yh<kJ FP~e_ GdVDAqTPHS){gBZYaD4 dn7CC%\c^xts  /41-&E%+^AU<@ L@vo;0mcYW SEMs},;hxv*f?=!>e:mB>C(*XlnrU}(|5rbK.# N{E:y)0g' w8 &!T8]6=NjZ-rK85&>kMjJRNL zZq'[(eP"^4 L6#\wb dHQu9]zi O*I7i,:Xp$3BAUuG2[5M/.x@'! 9`3c wxWidgets: %d.%d.%d Unicode support: %s Lisp: Maxima version: Not connected to Maxima! Not connected. << Expression too long to display! >> was saved using a newer version of wxMaxima so it may not load correctly. Please update your wxMaxima. was saved using a newer version of wxMaxima. Please update your wxMaxima.&Algebra&Apply to List...&Apropos...&Batch File... Ctrl-B&Boundary Value Problem...&Bug Report&Calculus&Canonical Form&Characteristic Polynomial...&Clear Memory&Combine Factorials&Complex Simplification&Continued Fraction&Copy Ctrl-C&Definite integration&Demoivre&Determinant&Differentiate...&Edit&Eliminate Variable...&Enter Matrix...&Example...&Expand Expression&Expand Trigonometric&Exponentialize&Export...&Factor Expression&File&Find Root...&Generate Matrix...&Greatest Common Divisor...&Help&Integrate...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert Matrix&Load Package... Ctrl-L&Map to List...&Maxima&Modulus Computation...&New Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Open... Ctrl-O&Plot&Power series&Print... Ctrl-P&Rational&Reduce Trigonometric&Restart Maxima&Roots of Polynomial (Real)&Save Ctrl-S&Simplify&Simplify Expression&Simplify Factorials&Simplify Trigonometric&Solve...&Special&Taylor series&Transpose Matrix&Trigonometric Simplification&pm3d(Use default language)- Infinity
Lisp: A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.A&t Value...AboutAbout wxMaximaActive cell bracketAd&joint MatrixAdd Algebraic E&quality...Add a directory to search pathAdd dir to path:Add equality to the rational simplifierAdd to &Path...Additional parameters for Maxima (e.g. -l clisp).Additional parameters:All|*AnimationApplyApply function to a listAproposArray:Artwork byAsk to save untitled documentsAt valueBC2Barsplot...Bat files (*.bat)|*.bat|All|*Batch FileBoldBoxplot...BrowseBuild &InfoBy default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.C&hange Variable...C&onfigureCalculate &Product...Calculate Su&m...Calculate bigfloat value of the last resultCalculate float value of the last resultCalculate modulus:Calculate productsCalculate sumsCan not connect to the web server.Can not download version info.CancelCanonical (tr)CatalanCe&llCell bracketChange &2d DisplayChange the 2d display algorithm used to display math outputChange variableChange variable in integral or sumChar polyCheck for UpdatesCheck if a newer version of wxMaxima/Maxima exist.Chinese traditionalChoose fontChoose new plot format:Classes:Close Ctrl-WClose windowCol. names:Columns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesComment SelectionComplete Word Ctrl-KComplete wordCompute continued fraction of a valueCompute the adjoint matrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Condition:Config file (*.ini)|*.iniConfiguration warningConfigure wxMaximaConstantContract LogarithmsConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &FactorialsConvert to &GammaConvert to &PolarformConvert to &RectformConvert trigonometric expression to canonical quasilinear formConvert trigonometric functions to exponential formCopyCopy As ImageCopy LaTeXCopy Previous Input Ctrl-ICopy as ImageCopy as LaTeXCopy as Text Ctrl-Shift-CCopy selectionCopy selection from document as an imageCopy selection from document as textCopy selection from document in LaTeX formatCreate a new cell with previous inputCursorCutCut Ctrl-XCut selectionCzechDanishData Matrix:Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txtData:Decompose rational function to partial fractionsDefaultDefault font:Default port:DeleteDelete F&unction...Delete SelectionDelete V&ariable...Delete a functionDelete a variableDelete all values from memoryDelete function(s):Delete variable(s):Denom. deg:Depth:Derivative:Deviation...Di&vide Polynomials...Diff...DifferentiateDifferentiate expressionDifferentiate...Direction:Discrete plotDisplay Te&X FormDisplay algorithmDisplay last result in TeX formDisplay time used for evaluationDivideDivide CellDivide numbers or polynomialsDo you want to save the changes you made in the document "Document Document backgroundDon't saveE&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter DataEnter Matrix...Enter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter evaluates cellsEnter matrixEnter new precision:Enter the path to the Maxima executable.Epsilon:Equation %d:Equation(s):Equation:Equations:ErrorError %dError!Evaluate &Noun FormsEvaluate All Cells Ctrl-REvaluate Cell(s)Evaluate active or selected cell(s)Evaluate all cells in the documentEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand ExpressionExpand LogarithmsExpand an expressionExpand trigonometric expressionExportExport document to a HTML or pdfLaTeX fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor ComplexFactor ExpressionFactor an expressionFactor an expression in Gaussian numbersFactorials and &GammaFatal errorFigure %d:FileFile not foundFile you tried to open does not exist.File:FindFind Ctrl-FFind &Limit...Find Minimum...Find Root...Find a (unconstrained) minimum of an expressionFind a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind all roots of a polynomial (bfloat)Find and ReplaceFind and replaceFind eigenvalues of a matrixFind eigenvectors of a matrixFind minimumFind real roots of a polynomialFind rootFind...Fixed font in text controlsFont used for display in document.Font used for displaying math characters in document.FontsFormat:FrenchFrom:Full Screen Alt-EnterFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGIF image (*.gif)|*.gifGeneral MathGeneral Math Alt-Shift-MGenerate MatrixGenerate Matrix from Expression...Generate a matrix from a 2-dimensional arrayGenerate a matrix from a lambda expressionGermanGet &Imaginary PartGet &Series...Get Laplace transformation of an expressionGet Real P&artGet inverse Laplace transformation of an expressionGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreekGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHide All Alt-Shift--Hide all panesHighlight (dpart)HistogramHistogram...HistoryHistory Alt-Shift-HHorizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.HungarianIC1IC2If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.ImageImage files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpmInclude columns:InfinityInfo about Maxima buildInitial Estimates:Initial Value Problem (&1)...Initial Value Problem (&2)...Input labelsInsertInsert &Section Cell Ctrl-3Insert &Text Cell Ctrl-1Insert Cell Alt-Shift-CInsert ImageInsert Image...Insert Input &CellInsert Page BreakInsert S&ubsection Cell Ctrl-4Insert Section CellInsert Subsection CellInsert T&itle Cell Ctrl-2Insert Text CellInsert Title CellInsert a new input cellInsert a new section cellInsert a new subsection cellInsert a new text cellInsert a new title cellInsert a page breakInsert imageIntegral/Sum:IntegrateIntegrate (risch)Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for Maxima program. Please enter the path to Maxima program again.Inverse LaplaceInverse Laplace T&ransform...ItalianItalicJapaneseKeep percent sign with special symbols: %e, %i, etc.LCMLanguage used for wxMaxima GUI.Language:LaplaceLaplace &Transform...Least Common Multiple...Least Squares FitLeast Squares Fit...LimitLimit...Linear Regression...List:LoadLoad PackageLoad a Maxima file using the batch commandLoad a Maxima package fileLoad style from fileLower bound:Ma&p to Matrix...Make &List...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMatch parenthesis in text controlsMath font:MatrixMatrix mapMatrix name:Matrix:MaximaMaxima &Help CTRL+?Maxima &Help F1Maxima inputMaxima is calculatingMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima questionsMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').Maxima version: Mean Difference Test...Mean Test...Mean...Mean:Median...Merge CellsMethod:ModulusName:NewNew Ctrl-NNew documentNew value:New variable:Next Command Alt-DownNo matches found!Normality Test...Not a valid matrix dimension!Not a valid number of equations!Not connected.Num. deg:Number of equations:NumbersOKOld value:Old variable:One sample t-testOnline tutorialsOpenOpen RecentOpen a cell when Maxima expects inputOpen a documentOpen a new windowOpen documentOpen matrixOpening fileOptionsOptions:Outdated cellsOutput labelsP&ade Approximation...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesPagebreakPanesParametric plotParsing outputPartial &Fractions...Partial fractionsParts of the document will not be loaded correctly!PastePaste Ctrl-VPaste from clipboardPaste text from clipboardPiechart...Please configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d...Plot &3d...Plot &Format...Plot 2DPlot 2D...Plot 2d...Plot 3DPlot 3D...Plot 3d...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPreferences... CTRL+,Previous Command Alt-UpPrintPrint documentProductRead Matrix...Reading Maxima outputReady for user inputRecall next command from historyRecall previous command from historyRectformRedo Ctrl-Shift-ZRedo last changeReduce (tr)Reduce trigonometric expressionRemove All OutputRemove output from input cellsReplaced %d occurences.Report bugRestart MaximaRisch Integration...Roots of &PolynomialRoots of Polynomial (bfloat)Rows:RussianSample 1:Sample 2:Sample:SaveSave Animation...Save AsSave As... Shift-Ctrl-SSave Image...Save Selection to ImageSave Selection to Image...Save animation to fileSave changes before closing?Save changes?Save documentSave document asSave panes layoutSave panes layout between sessions.Save plot to fileSave selection from document to an image fileSave selection to fileSave style to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.ScatterplotScatterplot...SectionSection cellSelect AllSelect All Ctrl-ASelect Maxima programSelect SubsampleSelect a constantSelect allSelect math display algorithmSelecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.SelectionSeriesSeries...Server startedSet &Precision...Set ZoomSet bigfloat precisionSet fixed font in text controls.Set plot formatSet zoom to 100%Set zoom to 120%Set zoom to 150%Set zoom to 200%Set zoom to 300%Set zoom to 80%Setup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &Definition...Show &FunctionsShow &Tips...Show &VariablesShow Maxima helpShow Template Ctrl-Shift-KShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow function templateShow long expressionsShow long expressions in wxMaxima document.Show the definition of function:SimplifySimplify &RadicalsSimplify (r)Simplify (tr)Simplify ExpressionSimplify an expression containing factorialsSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSince wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.Solution:SolveSolve &Algebraic System...Solve &Linear System...Solve &ODE...Solve (to_poly)...Solve ODESolve ODE with Lapla&ce...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s) with to_poly_solverSolve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart AnimationStart animationStarting Maxima process failedStarting Maxima...Starting server failedStarting server on port %dStatisticsStatistics Alt-Shift-SStop animationStringsStyleStylesSubsample...SubsectionSubsection cellSubst...SubstituteSubstitute...SumSystem infoTaylor series:TellratTextText cellText cell backgroundThe default port used for communication between Maxima and wxMaxima.There are many resources about Maxima and wxMaxima on the internet. Visit http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more information about using wxMaxima and Maxima.There was an error in generated XML! Please report this as a bug.There was and error during GIF export! Make sure ImageMagick is installed and wxMaxima can find the convert program.Ticks:Times:Tips not available, sorry!TitleTitle cellTitle, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.To &BigfloatTo &FloatTo FloatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.To:Toggle &Algebraic FlagToggle &Numeric OutputToggle &Time DisplayToggle algebraic flagToggle full screen editingToggle numeric outputToolbar Alt-Shift-TToolbar iconsTranslated byTranspose a matrixTutorialsTwo sample t-testType:UkrainianUnderlinedUndo Ctrl-ZUndo last changeUnicode SupportUpgradeUpper bound:Use Gosper algorithmUse centered dot character for multiplicationUse jsMath fontsValue:Variable(s):Variable:VariablesVariables:Variance...WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.Width:Write matching parenthesis in text controls.Written byYou can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.You have version %s. Current version is %s. Select OK to visit the wxMaxima webpage.Your changes will be lost if you don't save them.Your version of wxMaxima is up to date.Zoom &In Alt-IZoom Ou&t Alt-OZoom in 10%Zoom out 10%Zoom set to [ unsaved ][ unsaved* ]antisymmetricboth sidesdefaultdiagonalgeneralinlineleftlines hiddenlogscalematrix[i,j]:norightsymmetricunsaveduntitleduntitled %dwxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find Maxima! Please configure wxMaxima with 'Edit->Configure'. Then start Maxima with 'Maxima->Restart Maxima'.wxMaxima could not find help files. Please check your installation.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.wxMaxima documentwxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima batch file (*.mac)|*.macwxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima encountered an error loading wxMaxima iconwxMaxima is a graphical user interface for the computer algebra system MAXIMA based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.yesProject-Id-Version: wxMaxima 0.8.6 Report-Msgid-Bugs-To: POT-Creation-Date: 2012-03-30 16:24+0800 PO-Revision-Date: 2012-03-14 10:23+0800 Last-Translator: cw.ahbong Language-Team: American English Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poedit-Country: TAIWAN X-Generator: Lokalize 1.2 Plural-Forms: nplurals=2; plural=(n != 1); wxWidgets 版本:%d.%d.%d 支援 Unicode:%s Lisp 版本: Maxima 版本: 未連線到 Maxima! 未連線 << 數式過長不易顯示 >> 是以新版的 wxMaxima 儲存,所以可能無法正確的讀取。請更新您的 wxMaxima。 是以新版的 wxMaxima 儲存,請更新您的 wxMaxima 。代數(&A)套用函數至串列(&A)...Apropos 指令(&A)...以批次檔載入(&B)... Ctrl-B邊界值問題(&B)...錯誤回報(&B)微積分(&C)標準形式(&C)特徵多項式(&C)...清除記憶體(&C)合併階乘(&C)複數化簡(&C)連分數(&C)複製(&C) Ctrl-C定積分(&D)Demoivre(&D)行列式(&D)微分(&D)...編輯(&E)消去變數(&E)...輸入矩陣(&E)...範例(&E)...展開數式(&E)展開三角函數(&E)指數化(&E)匯出(&E)...因式分解數式(&F)檔案(&F)找根(&F)...產生矩陣(&G)...最大公因式(&G)...說明(&H)積分(&I)...中斷(&I) Ctrl-.中斷(&I) Ctrl-G反矩陣(&I)載入 Package(&L)... Ctrl-L映射至整個串列(&M)...Maxima(&M)設定模運算(&M)...新增(&N) Ctrl-N數值(&N)數值積分(&N)使用 Nusum(&N)開啟(&O) Ctrl-O開啟(&O)... Ctrl-O繪圖(&P)冪級數(&P)列印(&P)... Ctrl-P有理式(&R)縮併三角函數(&R)重新啟動 Maxima(&R)找多項式所有的根(實數) (&R)儲存(&S) Ctrl-S化簡(&S)化簡數式(&S)化簡階乘(&S)化簡三角函數(&S)求解(&S)...特殊(&S)Taylor 級數(&T)轉置矩陣(&T)三角化簡(&T)pm3d(&P)( 使用預設語言 )負無限大
Lisp 版本:自 wxMaxima 0.8.0 版開始引進「水平游標」。它的外觀為單元之間的水平線,代表您輸入或貼上文字或執行標能表命令時新單元出現的位置。從 wxMaxima 0.8.2 版開始有新的文件格式。這種格式除了儲存您的輸入和文字註解以外,也一起儲存您的計算的輸出。請在儲存您的文件時,選擇「wxMaxima XML 文件」。定點設值(T)...關於關於 wxMaxima作用中的單元框伴隨矩陣(&J)新增代數將目錄加入搜尋路徑將目錄加入搜尋路徑:新增有理數式化簡所使用的等式加入搜尋路徑(&P)...Maxima 的附加參數 (例: -l clisp)附加參數:所有類型|*動畫套用套用函數至串列Apropos 指令陣列:美工詢問是否儲存未命名文件定點設值邊界條件(二階)長條圖...批次檔 (*.bat)|*.bat|所有類型|*以批次檔載入粗體箱形圖...瀏覽建置資訊(&I)預設值使用 Shift-Enter 來開始評算,Enter 則是用來做多行輸入。這個操作方式可透過「編輯(E)」->「設定(O)」對話框中勾選「按 Enter 鍵評算單元」變更。這會交換這兩組按鍵的功能。變數變換(&H)...設定(&O)計算乘積(&P)...計算加總(&M)...將最後的計算結果以長浮點數 (bigfloat) 表示將最後的計算結果以浮點數 (float) 表示模運算:計算乘積計算加總無法連線至網路伺服器。無法下載版本資訊。取消標準型式 (三角)Catalan單元(&L)單元框變更顯示方式(&2)變更顯示數學輸出的演算法變數變換對積分數式或加總數式作變數變換特徵多項式檢查更新檢查是否存在新版的 wxMaxima 或 Maxima正體中文選擇字型選擇新的繪圖格式:種類數:關閉 Ctrl-W關閉視窗欄位名:欄:合併數式中的階乘x 座標,以逗號分隔y 座標,以逗號分隔將所選區域變成註解自動完成 Ctrl-K自動完成計算數值的連分數表示計算伴隨矩陣計算矩陣的特徵多項式計算矩陣的行列式的值計算最大公因式計算矩陣的反矩陣計算最小公倍式 (在使用前會先執行 load(functs) )條件:設定檔 (*.ini)|*.ini設定值警告設定 wxMaxima常數合併對數數式轉換二項式、beta、及 gamma 函數為階乘數式轉換二項式、階乘和 beta 函數為 gamma 函數轉換複數數式為極座標形式轉換複數數式為直角座標形式轉換虛數的指數函數為三角函數形式將對數內的乘積轉換為數項相加的對數將數項相加的對數轉換為對數內的乘積轉換為階乘(&F)轉換為 Gamma 函數(&G)轉換為極座標形式(&P)轉換為直角座標形式(&R)轉換三角函數數式為標準準線性形式轉換三角函數數式為指數形式複製複製為圖片複製為 LaTeX 格式複製上一個輸入 Ctrl-I複製為圖片複製為 LaTeX 格式複製為純文字 Ctrl-Shift-C複製所選區域複製所選區域為圖片複製所選區域為純文字複製所選區域為 LaTeX 格式以上一個輸入建立一個新的單元游標剪下剪下 Ctrl-X剪下所選區域CzechDanish資料矩陣:資料檔 (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt資料:將有理函數分解為部分分式預設預設字型:預設埠:刪除刪除函數(&U)...刪除所選區域刪除變數(&A)...刪除函數刪除變數刪除記憶體中全部的值刪除該函數:刪除該變數:分母 degree:深度:導函數:偏差...多項式相除(&V)...微分...微分對數式微分微分...方向:離散繪圖以 TeX 格式顯示(&X)用於顯示的演算法將最後的結果以 TeX 格式顯示顯示評算所花費的時間數字/多項式相除分割單元將數字或多項式相除您是否想儲存於此文件中的變更: "文件文件背景不要儲存方程式(&Q)結束(&X) Ctrl-Q特徵向量(&N)特徵值(&V)消去自方程組中消去變數English輸入資料輸入矩陣...輸入一個矩陣輸入供化簡有理數式的方程式:輸入以逗號分隔的所有變數按 Enter 評算單元輸入矩陣輸入新的精確度:輸入可執行 Maxima 的路徑Epsilon:方程式 %d:方程式:方程式:方程式:錯誤錯誤 %d錯誤!評算名詞形式(&N)評算所有單元 Ctrl-R評算單元評算正在活動中或所選擇的單元評算這份文件中的所有單元評算數式中所有的名詞形式範例Example text 範例文字離開 wxMaxima展開展開 (三角)展開數式展開對數數式展開數式展開三角函數數式匯出將文件匯出為 HTML 或 pdfLaTeX 檔案匯出為 HTML 失敗!匯出為 TeX 失敗!數式數式:數式:因式分解複數因式分解因式分解數式因式分解數式因式分解含 Gaussian 數的數式階乘與 Gamma 函數(&G)嚴重錯誤圖 %d:檔案找不到檔案找不到您想開啟的檔案。檔案:尋找尋找 Ctrl-F求極限(&L)...求極小值...找根...找數式的極小值(無區間限制)求數式的極限在區間中找方程式的根找多項式所有的根找多項式所有的根(以長浮點數表示)尋找及取代尋找及取代尋找矩陣的特徵值尋找矩陣的特徵向量求極小值找多項式所有的實根找根尋找...文字控制項使用等寬字型文件中用以顯示一般文字的字型文件中用以顯示數學文字的字型字型格式:French從:全螢幕 Alt-Enter函數函數名函數:函數:用以化簡複數數式的函數用以化簡階乘及 gamma 函數的函數用以化簡三角函數數式的函數最大公因式GIF (*.gif)|*.gif常用數學常用數學 Alt-Shift-M產生矩陣以數式產生矩陣...以二維陣列產生一個矩陣以 lambda 數式產生矩陣German取虛部(&I)取級數(&S)...計算數式的 Laplace 變換取實部(&A)計算數式的 Laplace 逆變換取數式的 Taylor 級數或冪級數取得複數數式的虛部取得複數數式的實部Greek希臘字母格線:HTML 檔案 (*.html)|*.html|pdfLaTeX 檔案 (*.tex)|*.tex|所有類型|*高:說明全部隱藏 Alt-Shift--隱藏所有窗格高亮度標記(於dpart函數中)直方圖直方圖...歷史記錄歷史記錄 Alt-Shift-H水平游標就像一般游標一樣,但是它是對單元操作。按向上或向下箭頭來移動它,在移動時按住 Shift 鍵將會選擇單元,按 backspace 或 delete 鍵兩次會刪除相鄰的單元。Hungarian初始條件(一階)初始條件(二階)若您的計算花費過長的時間,您可以嘗試「Maxima(M)」->「中斷(I)」或「Maxima(M)」->「重新啟動 Maxima(R)」這兩個功能表命令。圖片圖片檔 (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm包含欄位:無限大關於 Maxima 建置的資訊起始預估:一階常微方初始值問題(&1)...二階常微方初始值問題(&2)...輸入標籤插入插入章節單元(&S) Ctrl-3插入文字單元(&T) Ctrl-1插入(單元) Alt-Shift-C插入圖片插入圖片...插入輸入單元(&C)插入換頁符號插入子章節單元(&U) Ctrl-4插入章節單元插入子章節單元插入標題單元(&I) Ctrl-2插入文字單元插入標題單元插入新的輸入單元插入新的章節單元插入新的子章節單元插入新的文字單元插入新的標題單元插入一個換頁符號插入圖片積分/加總:積分Risch 積分對數式積分使用 Risch 演算法積分數式積分...中斷中斷目前的計算無效的 Maxima 程式路徑。 請再次輸入 Maxima 程式的所在路徑。Laplace 逆變換反 Laplace 變換(&R)...Italian斜體Japanese保留特殊符號前的百分比號,像是「%e」、「%i」等...最小公倍式wxMaxima 圖形介面的語言語言:Laplace 變換Laplace 變換(&T)...最小公倍式...最小平方法最小平方法...極限極限...線性迴歸...串列:載入載入 Package以批次命令的方式載入 Maxima 檔讀取 Maxima package 檔自檔案載入樣式下界:映射至整個矩陣(&P)...產生串列(&L)...產生串列從數式產生串列在數式中作代換映射映射函數至串列映射函數至矩陣在文字控制項中輸入時匹配括弧數學字型:矩陣矩陣映射矩陣名:矩陣:MaximaMaxima 說明(H) CTRL+?Maxima 說明(H) F1Maxima 輸入Maxima 計算中Maxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|所有類型|*Maxima 程序已結束Maxima 程式:Maxima 詢問Maxima 已啟動,等待連線中...Maxima 使用 ":" 來設定數值 (例:"a : 3;"),使用 ":=" 來定義函數 (例:"f(x) := x^2")。Maxima 版本:平均差檢驗...平均值檢驗...平均...平均值:中位數...合併單元方法:模運算命名:新增新增 Ctrl-N新增文件新值:新變數:下一個命令 Alt-Down找不到匹配的項目!常態分布檢驗...這不是有效的矩陣大小!這不是有效的數字或方程式!未連線分子 degree:方程式數量:數字確認舊值:舊變數:單樣本 t-檢驗線上教材開啟最近開啟的文件當 Maxima 期望輸入時新增單元開啟文件開新視窗開啟文件開啟矩陣正在開啟檔案選項選項:過時的單元輸出標籤Pade 近似(&A)...PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows 點陣圖 (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade 近似計算 Taylor 級數的 Pade 近似換頁符號窗格參數式繪圖解析輸出中部分分式(&F)...部分分式文件的某部分將無法被正確的讀取!貼上貼上 Ctrl-V從剪貼簿貼上從剪貼簿貼上文字圓餅圖...請從「編輯(E)」->「設定(O)」設定 wxMaxima請重新啟動 wxMaxima 使變更生效!二維繪圖(&2)...三維繪圖(&3)...繪圖格式(&F)...二維繪圖二維繪圖...二維繪圖...三維繪圖三維繪圖...三維繪圖...繪圖格式二維繪圖三維繪圖繪圖存檔:點:Polish多項式 1:多項式 2:Portuguese (Brazilian)Postscript 檔 (*.eps)|*.eps|所有類型|*精確度偏好設定... CTRL+,上一個命令 Alt-Up列印列印文件乘積讀取矩陣...正在讀取 Maxima 的輸出準備就緒呼叫歷史記錄中的下一個命令呼叫歷史紀錄中的上一個命令直角坐標形式重作 Ctrl-Shift-Z重作上次的變更縮併 (三角)縮併三角函數數式移除所有輸出移除所有輸入單元的輸出找到 %d 個並取代。回報發現的錯誤重新啟動 MaximaRisch 積分...找多項式所有的根(&P)找多項式所有的根(長浮點數)列:Russian樣本 1:樣本 2:樣本:儲存儲存動畫...另存新檔另存新檔... Shift-Ctrl-S儲存圖片...儲存所選區域為圖片儲存為圖片...儲存動畫至檔案於關閉前儲存所做的修改?儲存您所做的修改?儲存文件將文件另存新檔儲存窗格配置儲存工作階段間的窗格配置儲存繪圖至檔案儲存所選區域為圖片檔儲存選取區域至檔案將樣式儲存至檔案儲存 wxMaxima 視窗的大小及位置儲存工作階段間 wxMaxima 視窗的大小及位置散布圖散布圖...章節章節單元全部選取全部選取 Ctrl-A選擇 Maxima 程式選取子樣本選擇常數全部選取選擇用於顯示數學的演算法選取輸出並點擊右鍵會顯示功能表,其中含有一些供您方便操作所選區域的函數。所選區域級數級數...伺服器已啟動設定精確度(&P)...顯示比例設定 bigfloat 的精確度在文字控制項中使用等寬字型設定繪圖格式將顯示比例設定為 100%將顯示比例設定為 120%將顯示比例設定為 150%將顯示比例設定為 200%將顯示比例設定為 300%將顯示比例設定為 80%在使用 Laplace 變換解常微分方程前將定點設值設定模運算顯示函數定義(&D)...顯示函數(&F)顯示小秘訣(&T)...顯示變數(&V)顯示 Maxima 說明顯示範本 Ctrl-Shift-K顯示小秘訣顯示全部與此指令相似的指令:顯示這個指令的使用範例:顯示一個使用範例顯示相似的指令顯示已定義的函數顯示已定義的變數顯示函數的定義顯示函數範本顯示長的數式在 wxMaxima 文件中顯示長的數式顯示該函數的定義:化簡化簡根式(&R)化簡根式化簡 (三角)化簡數式化簡包含階乘的數式化簡包含根號的數式化簡有理數式化簡此加總化簡三角函數數式自 wxMaxima 0.8.2 版開始您可以使用「單元(C)」->「插入圖片...」功能表在文件中插入圖片。請注意:若您希望將圖片與文件一起儲存,您必須將您的文件儲存為 「wxMaxima XML 文件」。一般解:求解解代數系統(&A)...解線性系統(&L)...解常微分方程(&O)...求解 (to_poly)...解常微分方程以 Laplace 變換解常微分方程(&C)...解常微分方程...解代數系統解代數方程組解 2 階常微分方程的邊界值問題解方程式使用 to_poly_solve 解方程式解 1 階常微分方程的初始值問題解 2 階常微分方程的初始值問題解線性系統解線性方程組解常微分方程式 (最大 2 階)以 Laplace 變換解常微分方程式求解...Spanish特殊特殊常數開始動畫開始動畫Maxima 程序啟動失敗Maxima 啟動中...伺服器啟動失敗於 %d埠啟動伺服器統計統計 Alt-Shift-S停止動畫字串樣式樣式子樣本...子章節子章節單元代換代換代換...加總系統資訊Taylor 級數:Tellrat 函數文字文字單元文字單元背景供 Maxima 與 wxMaxima 溝通的預設埠在網路上有許多關於 Maxima 與 wxMaxima 的資源。請造訪 http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials 以獲得更多 wxMaxima 與 Maxima 的相關資訊。在所產生的 XML 中發現錯誤! 請回報此錯誤。在匯出成 GIF 時發生錯誤! 請確認您已安裝 ImageMagick 且 wxMaxima 可找到該程式。描繪密度:次數:抱歉,小秘訣無法顯示!標題標題單元標題單元、章節單元和子章節單元可被折疊並隱藏它們的內容。欲折疊或取消折疊,點擊該單元左側的小正方形。如果您按住 Shift 鍵並點擊小正方形,所有該單元中的子單元也會跟著折疊或取消折疊。計算長浮點數(&B)計算浮點數(&F)計算浮點數欲在極座標上繪圖,在二維繪圖對話視窗的「選項」中選擇 "set polar" 。您也可以在三維繪圖中在球座標或柱座標上繪圖。欲在數式外側加上括號,請先選取它,再依照您想要游標出現的位置按「(」或「)」。欲儲存工作階段之間 wxMaxima 視窗的大小及位置,請從「編輯(E)」->「設定(O)」變更。欲立即使用 wxMaxima,請開始輸入命令,此時應該會出現一個輸入單元,然後按 Shift-Enter 鍵評算您的命令。到:切換代數旗標(&A)切換數值輸出(&N)切換計算時間顯示(&T)切換代數旗標切換全螢幕編輯模式切換數值輸出/數式輸出工具列 Alt-Shift-T工具列圖示翻譯者計算轉置矩陣教材雙樣本 t-檢驗類型:Ukrainian底線復原 Ctrl-Z復原上次的變更支援 Unicode升級上界:使用 Gosper 演算法用圓點符號表示乘法使用 jsMath 字型值:變數:變數:變數變數:變異數...警告歡迎使用 wxMaxima當您從功能表使用只有一個引數的函數時,預設的引數是「%」。欲使用其他的值作為引數,請在執行功能表命令前從文件中選取該值。寬:在文字控制項輸入時插入匹配的括弧作者您可以使用「%」存取最後一筆輸出。您也可以使用「%on」(n是輸出的編號)來存取先前命令的輸出。您可以使用「單元(C)」->「評算所有單元」功能表命令或該相對應的快捷鍵評算您的文件中的所有單元。這些單元會依照它們在文件中出現的順序評算。您可以透過選取或點擊函數名並按 F1 取得 Maxima 函數的說明。wxMaxima 會在說明的索引中搜尋所選區域。您可以透過點擊單元左側的小三角形來隱藏單元的輸出部分。文字單元中也有同樣的功能。您可以使用「編輯(E)」->「單元(C)」功能表在 wxMaxima 文件中插入不同種類的「單元」。請注意:只有「輸入單元」可以被評算,其他種類的單元是用來註解或組織您的計算。您可以透過滑鼠(在單元之間或左側的單元框拖曳)或鍵盤(在移動水平游標時按住Shift鍵)選取多個單元,然後對所選區域操作。這在您想要刪除或評算多個單元時很有用。您的版本是 %s ,最新的版本是 %s 。 按「確認」至 wxMaxima 首頁。如果您未儲存,您所做的所有修改將遺失。您的 wxMaxima 是最新版本放大(&I) Alt-I縮小(&T) Alt-O將顯示比例放大 10%將顯示比例縮小 10%設定顯示比例為[ 未儲存 ][ 未儲存* ]反對稱雙邊預設值對角一般隨文字顯示左行被隱藏對數尺度矩陣[i,j]:否右對稱未儲存未命名未命名 %dwxMaximawxMaxima %s wxMaxima 設定wxMaxima 找不到 Maxima! 請從「編輯(E)」->「設定(O)」設定 wxMaxima 然後從「Maxima(M)」->「重新啟動 Maxima(R)」啟動 MaximawxMaxima 找不到說明檔案 請檢查您的安裝wxMaxima 找不到小秘訣檔案 請檢查您的安裝wxMaxima 無法啟動伺服器。 請檢查您的網路支援, 將其開啟並再試一次!wxMaxima 對話框會設定輸入內容為預設值,其中一種是 "%"。如果您已經在您的文件中作選取,則這個選取內容將會取代 "%"。wxMaxima 文件wxMaxima 文件 (*.wxm)|*.wxm|wxMaxima XML 文件 (*.wxmx)|*.wxmx|Maxima 批次檔 (*.mac)|*.macwxMaxima 文件 (*.wxm, *.wxmx)|*.wxm;*.wxmxwxMaxima 發生讀取錯誤wxMaxima 圖示wxMaxima 是基於 wxWidgets ,為電腦代數系統 MAXIMA 的圖形使用界面。wxMaxima 是基於 wxWidgets ,為電腦代數系統 Maxima 的圖形使用界面。是wxMaxima-13.04.2/locales/zh_TW.po000644 000765 000024 00000254045 11736073701 017116 0ustar00andrejstaff000000 000000 # This file is distributed under the same license as the wxMaxima package. # # rabbit , 2009. # cw.ahbong , 2010, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: wxMaxima 0.8.6\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-30 16:24+0800\n" "PO-Revision-Date: 2012-03-14 10:23+0800\n" "Last-Translator: cw.ahbong \n" "Language-Team: American English \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Country: TAIWAN\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../src/wxMaxima.cpp:3432 #, c-format msgid "" "\n" "\n" "wxWidgets: %d.%d.%d\n" "Unicode support: %s" msgstr "" "\n" "\n" "wxWidgets 版本:%d.%d.%d\n" "支援 Unicode:%s" #: ../src/wxMaxima.cpp:3445 msgid "" "\n" "Lisp: " msgstr "" "\n" "Lisp 版本:" #: ../src/wxMaxima.cpp:3441 msgid "" "\n" "Maxima version: " msgstr "" "\n" "Maxima 版本:" #: ../src/wxMaxima.cpp:4083 msgid "" "\n" "Not connected to Maxima!\n" msgstr "" "\n" "未連線到 Maxima!\n" #: ../src/wxMaxima.cpp:3443 msgid "" "\n" "Not connected." msgstr "" "\n" "未連線" #: ../src/MathParser.cpp:1026 msgid " << Expression too long to display! >>" msgstr " << 數式過長不易顯示 >>" #: ../src/wxMaxima.cpp:1086 msgid "" " was saved using a newer version of wxMaxima so it may not load correctly. " "Please update your wxMaxima." msgstr "" " 是以新版的 wxMaxima 儲存,所以可能無法正確的讀取。請更新您的 wxMaxima。" #: ../src/wxMaxima.cpp:1078 msgid "" " was saved using a newer version of wxMaxima. Please update your wxMaxima." msgstr " 是以新版的 wxMaxima 儲存,請更新您的 wxMaxima 。" #: ../src/wxMaximaFrame.cpp:471 msgid "&Algebra" msgstr "代數(&A)" #: ../src/wxMaximaFrame.cpp:465 msgid "&Apply to List..." msgstr "套用函數至串列(&A)..." #: ../src/wxMaximaFrame.cpp:656 msgid "&Apropos..." msgstr "Apropos 指令(&A)..." #: ../src/wxMaximaFrame.cpp:206 msgid "&Batch File...\tCtrl-B" msgstr "以批次檔載入(&B)...\tCtrl-B" #: ../src/wxMaximaFrame.cpp:422 msgid "&Boundary Value Problem..." msgstr "邊界值問題(&B)..." #: ../src/wxMaximaFrame.cpp:667 msgid "&Bug Report" msgstr "錯誤回報(&B)" #: ../src/wxMaximaFrame.cpp:523 msgid "&Calculus" msgstr "微積分(&C)" #: ../src/wxMaximaFrame.cpp:574 msgid "&Canonical Form" msgstr "標準形式(&C)" #: ../src/wxMaximaFrame.cpp:447 msgid "&Characteristic Polynomial..." msgstr "特徵多項式(&C)..." #: ../src/wxMaximaFrame.cpp:355 msgid "&Clear Memory" msgstr "清除記憶體(&C)" #: ../src/wxMaximaFrame.cpp:557 msgid "&Combine Factorials" msgstr "合併階乘(&C)" #: ../src/wxMaximaFrame.cpp:600 msgid "&Complex Simplification" msgstr "複數化簡(&C)" #: ../src/wxMaximaFrame.cpp:520 msgid "&Continued Fraction" msgstr "連分數(&C)" #: ../src/wxMaximaFrame.cpp:233 msgid "&Copy\tCtrl-C" msgstr "複製(&C)\tCtrl-C" #: ../src/IntegrateWiz.cpp:42 msgid "&Definite integration" msgstr "定積分(&D)" #: ../src/wxMaximaFrame.cpp:594 msgid "&Demoivre" msgstr "Demoivre(&D)" #: ../src/wxMaximaFrame.cpp:450 msgid "&Determinant" msgstr "行列式(&D)" #: ../src/wxMaximaFrame.cpp:483 msgid "&Differentiate..." msgstr "微分(&D)..." #: ../src/wxMaximaFrame.cpp:286 msgid "&Edit" msgstr "編輯(&E)" #: ../src/wxMaximaFrame.cpp:407 msgid "&Eliminate Variable..." msgstr "消去變數(&E)..." #: ../src/wxMaximaFrame.cpp:442 msgid "&Enter Matrix..." msgstr "輸入矩陣(&E)..." #: ../src/wxMaximaFrame.cpp:653 msgid "&Example..." msgstr "範例(&E)..." #: ../src/wxMaximaFrame.cpp:537 msgid "&Expand Expression" msgstr "展開數式(&E)" #: ../src/wxMaximaFrame.cpp:571 msgid "&Expand Trigonometric" msgstr "展開三角函數(&E)" #: ../src/wxMaximaFrame.cpp:597 msgid "&Exponentialize" msgstr "指數化(&E)" #: ../src/wxMaximaFrame.cpp:208 msgid "&Export..." msgstr "匯出(&E)..." #: ../src/wxMaximaFrame.cpp:532 msgid "&Factor Expression" msgstr "因式分解數式(&F)" #: ../src/wxMaximaFrame.cpp:219 msgid "&File" msgstr "檔案(&F)" #: ../src/wxMaximaFrame.cpp:390 msgid "&Find Root..." msgstr "找根(&F)..." #: ../src/wxMaximaFrame.cpp:436 msgid "&Generate Matrix..." msgstr "產生矩陣(&G)..." #: ../src/wxMaximaFrame.cpp:507 msgid "&Greatest Common Divisor..." msgstr "最大公因式(&G)..." #: ../src/wxMaximaFrame.cpp:683 msgid "&Help" msgstr "說明(&H)" #: ../src/wxMaximaFrame.cpp:475 msgid "&Integrate..." msgstr "積分(&I)..." #: ../src/wxMaximaFrame.cpp:346 msgid "&Interrupt\tCtrl-." msgstr "中斷(&I)\tCtrl-." #: ../src/wxMaximaFrame.cpp:350 msgid "&Interrupt\tCtrl-G" msgstr "中斷(&I)\tCtrl-G" #: ../src/wxMaximaFrame.cpp:444 msgid "&Invert Matrix" msgstr "反矩陣(&I)" #: ../src/wxMaximaFrame.cpp:204 msgid "&Load Package...\tCtrl-L" msgstr "載入 Package(&L)...\tCtrl-L" #: ../src/wxMaximaFrame.cpp:467 msgid "&Map to List..." msgstr "映射至整個串列(&M)..." #: ../src/wxMaximaFrame.cpp:382 msgid "&Maxima" msgstr "Maxima(&M)" #: ../src/wxMaximaFrame.cpp:615 msgid "&Modulus Computation..." msgstr "設定模運算(&M)..." #: ../src/main.cpp:105 msgid "&New\tCtrl-N" msgstr "新增(&N)\tCtrl-N" #: ../src/wxMaximaFrame.cpp:642 msgid "&Numeric" msgstr "數值(&N)" #: ../src/IntegrateWiz.cpp:51 msgid "&Numerical integration" msgstr "數值積分(&N)" #: ../src/SumWiz.cpp:43 msgid "&Nusum" msgstr "使用 Nusum(&N)" #: ../src/main.cpp:106 msgid "&Open\tCtrl-O" msgstr "開啟(&O)\tCtrl-O" #: ../src/wxMaximaFrame.cpp:191 msgid "&Open...\tCtrl-O" msgstr "開啟(&O)...\tCtrl-O" #: ../src/wxMaximaFrame.cpp:627 msgid "&Plot" msgstr "繪圖(&P)" #: ../src/SeriesWiz.cpp:44 msgid "&Power series" msgstr "冪級數(&P)" #: ../src/wxMaximaFrame.cpp:212 msgid "&Print...\tCtrl-P" msgstr "列印(&P)...\tCtrl-P" #: ../src/SubstituteWiz.cpp:36 msgid "&Rational" msgstr "有理式(&R)" #: ../src/wxMaximaFrame.cpp:568 msgid "&Reduce Trigonometric" msgstr "縮併三角函數(&R)" #: ../src/wxMaximaFrame.cpp:354 msgid "&Restart Maxima" msgstr "重新啟動 Maxima(&R)" #: ../src/wxMaximaFrame.cpp:398 msgid "&Roots of Polynomial (Real)" msgstr "找多項式所有的根(實數) (&R)" #: ../src/wxMaximaFrame.cpp:200 msgid "&Save\tCtrl-S" msgstr "儲存(&S)\tCtrl-S" #: ../src/SumWiz.cpp:42 ../src/wxMaximaFrame.cpp:617 msgid "&Simplify" msgstr "化簡(&S)" #: ../src/wxMaximaFrame.cpp:527 msgid "&Simplify Expression" msgstr "化簡數式(&S)" #: ../src/wxMaximaFrame.cpp:554 msgid "&Simplify Factorials" msgstr "化簡階乘(&S)" #: ../src/wxMaximaFrame.cpp:565 msgid "&Simplify Trigonometric" msgstr "化簡三角函數(&S)" #: ../src/wxMaximaFrame.cpp:386 msgid "&Solve..." msgstr "求解(&S)..." #: ../src/Plot2dWiz.cpp:45 msgid "&Special" msgstr "特殊(&S)" #: ../src/LimitWiz.cpp:46 msgid "&Taylor series" msgstr "Taylor 級數(&T)" #: ../src/wxMaximaFrame.cpp:460 msgid "&Transpose Matrix" msgstr "轉置矩陣(&T)" #: ../src/wxMaximaFrame.cpp:577 msgid "&Trigonometric Simplification" msgstr "三角化簡(&T)" #: ../src/Plot3dWiz.cpp:93 msgid "&pm3d" msgstr "pm3d(&P)" #: ../src/Config.cpp:238 msgid "(Use default language)" msgstr "( 使用預設語言 )" #: ../src/IntegrateWiz.cpp:217 ../src/IntegrateWiz.cpp:228 #: ../src/IntegrateWiz.cpp:236 ../src/IntegrateWiz.cpp:247 #: ../src/LimitWiz.cpp:133 ../src/LimitWiz.cpp:144 msgid "- Infinity" msgstr "負無限大" #: ../src/wxMaxima.cpp:3496 msgid "
Lisp: " msgstr "
Lisp 版本:" #: ../data/tips.txt:11 msgid "" "A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a " "horizontal line between cells. It indicates where a new cell will appear if " "you type or paste text or execute a menu command." msgstr "" "自 wxMaxima 0.8.0 版開始引進「水平游標」。它的外觀為單元之間的水平線,代表您" "輸入或貼上文字或執行標能表命令時新單元出現的位置。" #: ../data/tips.txt:6 msgid "" "A new document format has been introduced in wxMaxima 0.8.2 that saves not " "only your input and text commentaries, but also the outputs of your " "calculations. When saving your document, select 'wxMaxima XML document' " "format." msgstr "" "從 wxMaxima 0.8.2 版開始有新的文件格式。這種格式除了儲存您的輸入和文字註解以" "外,也一起儲存您的計算的輸出。請在儲存您的文件時,選擇「wxMaxima XML 文件」。" #: ../src/wxMaximaFrame.cpp:429 msgid "A&t Value..." msgstr "定點設值(T)..." #: ../src/wxMaxima.cpp:3498 ../src/wxMaximaFrame.cpp:678 msgid "About" msgstr "關於" #: ../src/wxMaximaFrame.cpp:680 ../src/wxMaximaFrame.cpp:682 msgid "About wxMaxima" msgstr "關於 wxMaxima" #: ../src/Config.cpp:370 msgid "Active cell bracket" msgstr "作用中的單元框" #: ../src/wxMaximaFrame.cpp:458 msgid "Ad&joint Matrix" msgstr "伴隨矩陣(&J)" #: ../src/wxMaximaFrame.cpp:612 msgid "Add Algebraic E&quality..." msgstr "新增代數" #: ../src/wxMaximaFrame.cpp:358 msgid "Add a directory to search path" msgstr "將目錄加入搜尋路徑" #: ../src/wxMaxima.cpp:2299 msgid "Add dir to path:" msgstr "將目錄加入搜尋路徑:" #: ../src/wxMaximaFrame.cpp:613 msgid "Add equality to the rational simplifier" msgstr "新增有理數式化簡所使用的等式" #: ../src/wxMaximaFrame.cpp:357 msgid "Add to &Path..." msgstr "加入搜尋路徑(&P)..." #: ../src/Config.cpp:122 msgid "Additional parameters for Maxima (e.g. -l clisp)." msgstr "Maxima 的附加參數 (例: -l clisp)" #: ../src/Config.cpp:307 msgid "Additional parameters:" msgstr "附加參數:" #: ../src/Config.cpp:479 msgid "All|*" msgstr "所有類型|*" #: ../src/wxMaximaFrame.cpp:817 msgid "Animation" msgstr "動畫" #: ../src/wxMaxima.cpp:2752 msgid "Apply" msgstr "套用" #: ../src/wxMaximaFrame.cpp:466 msgid "Apply function to a list" msgstr "套用函數至串列" #: ../src/wxMaxima.cpp:3528 msgid "Apropos" msgstr "Apropos 指令" #: ../src/wxMaxima.cpp:2678 msgid "Array:" msgstr "陣列:" #: ../src/wxMaxima.cpp:3374 msgid "Artwork by" msgstr "美工" #: ../src/Config.cpp:268 msgid "Ask to save untitled documents" msgstr "詢問是否儲存未命名文件" #: ../src/wxMaxima.cpp:2564 msgid "At value" msgstr "定點設值" #: ../src/BC2Wiz.cpp:57 ../src/wxMaxima.cpp:2471 msgid "BC2" msgstr "邊界條件(二階)" #: ../src/wxMaximaFrame.cpp:1030 msgid "Barsplot..." msgstr "長條圖..." #: ../src/Config.cpp:474 msgid "Bat files (*.bat)|*.bat|All|*" msgstr "批次檔 (*.bat)|*.bat|所有類型|*" #: ../src/wxMaxima.cpp:1994 msgid "Batch File" msgstr "以批次檔載入" #: ../src/Config.cpp:382 msgid "Bold" msgstr "粗體" #: ../src/wxMaximaFrame.cpp:1032 msgid "Boxplot..." msgstr "箱形圖..." #: ../src/Plot2dWiz.cpp:122 ../src/Plot3dWiz.cpp:124 msgid "Browse" msgstr "瀏覽" #: ../src/wxMaximaFrame.cpp:665 msgid "Build &Info" msgstr "建置資訊(&I)" #: ../data/tips.txt:2 msgid "" "By default Shift-Enter is used to evaluate commands, while Enter is used for " "multiline input. This behaviour can be changed in 'Edit->Configure' dialog " "by checking 'Enter evaluates cells'. This switches the roles of these two " "key commands." msgstr "" "預設值使用 Shift-Enter 來開始評算,Enter 則是用來做多行輸入。這個操作方式可透" "過「編輯(E)」->「設定(O)」對話框中勾選「按 Enter 鍵評算單元」變更。這會交換這" "兩組按鍵的功能。" #: ../src/wxMaximaFrame.cpp:480 msgid "C&hange Variable..." msgstr "變數變換(&H)..." #: ../src/wxMaximaFrame.cpp:283 msgid "C&onfigure" msgstr "設定(&O)" #: ../src/wxMaximaFrame.cpp:499 msgid "Calculate &Product..." msgstr "計算乘積(&P)..." #: ../src/wxMaximaFrame.cpp:497 msgid "Calculate Su&m..." msgstr "計算加總(&M)..." #: ../src/wxMaximaFrame.cpp:637 msgid "Calculate bigfloat value of the last result" msgstr "將最後的計算結果以長浮點數 (bigfloat) 表示" #: ../src/wxMaximaFrame.cpp:634 msgid "Calculate float value of the last result" msgstr "將最後的計算結果以浮點數 (float) 表示" #: ../src/wxMaxima.cpp:2885 msgid "Calculate modulus:" msgstr "模運算:" #: ../src/wxMaximaFrame.cpp:500 msgid "Calculate products" msgstr "計算乘積" #: ../src/wxMaximaFrame.cpp:498 msgid "Calculate sums" msgstr "計算加總" #: ../src/wxMaxima.cpp:4330 msgid "Can not connect to the web server." msgstr "無法連線至網路伺服器。" #: ../src/wxMaxima.cpp:4375 msgid "Can not download version info." msgstr "無法下載版本資訊。" #: ../src/SubstituteWiz.cpp:40 ../src/SubstituteWiz.cpp:42 #: ../src/PlotFormatWiz.cpp:41 ../src/PlotFormatWiz.cpp:43 #: ../src/SeriesWiz.cpp:48 ../src/SeriesWiz.cpp:50 ../src/BC2Wiz.cpp:44 #: ../src/BC2Wiz.cpp:46 ../src/Gen1Wiz.cpp:34 ../src/Gen1Wiz.cpp:36 #: ../src/Plot2dWiz.cpp:101 ../src/Plot2dWiz.cpp:103 ../src/Plot2dWiz.cpp:561 #: ../src/Plot2dWiz.cpp:563 ../src/Plot2dWiz.cpp:656 ../src/Plot2dWiz.cpp:658 #: ../src/SumWiz.cpp:47 ../src/SumWiz.cpp:49 ../src/wxMaxima.cpp:4432 #: ../src/IntegrateWiz.cpp:59 ../src/IntegrateWiz.cpp:61 #: ../src/SystemWiz.cpp:37 ../src/SystemWiz.cpp:39 ../src/MatWiz.cpp:39 #: ../src/MatWiz.cpp:41 ../src/MatWiz.cpp:188 ../src/MatWiz.cpp:190 #: ../src/Gen4Wiz.cpp:55 ../src/Gen4Wiz.cpp:57 ../src/Gen3Wiz.cpp:49 #: ../src/Gen3Wiz.cpp:51 ../src/Plot3dWiz.cpp:103 ../src/Plot3dWiz.cpp:105 #: ../src/Gen2Wiz.cpp:42 ../src/Gen2Wiz.cpp:44 ../src/LimitWiz.cpp:51 #: ../src/LimitWiz.cpp:53 msgid "Cancel" msgstr "取消" #: ../src/wxMaximaFrame.cpp:975 msgid "Canonical (tr)" msgstr "標準型式 (三角)" #: ../src/Config.cpp:239 msgid "Catalan" msgstr "Catalan" #: ../src/wxMaximaFrame.cpp:324 msgid "Ce&ll" msgstr "單元(&L)" #: ../src/Config.cpp:369 msgid "Cell bracket" msgstr "單元框" #: ../src/wxMaximaFrame.cpp:377 msgid "Change &2d Display" msgstr "變更顯示方式(&2)" #: ../src/wxMaximaFrame.cpp:378 msgid "Change the 2d display algorithm used to display math output" msgstr "變更顯示數學輸出的演算法" #: ../src/wxMaxima.cpp:2909 msgid "Change variable" msgstr "變數變換" #: ../src/wxMaximaFrame.cpp:481 msgid "Change variable in integral or sum" msgstr "對積分數式或加總數式作變數變換" #: ../src/wxMaxima.cpp:2665 msgid "Char poly" msgstr "特徵多項式" #: ../src/wxMaximaFrame.cpp:670 msgid "Check for Updates" msgstr "檢查更新" #: ../src/wxMaximaFrame.cpp:671 msgid "Check if a newer version of wxMaxima/Maxima exist." msgstr "檢查是否存在新版的 wxMaxima 或 Maxima" #: ../src/Config.cpp:240 msgid "Chinese traditional" msgstr "正體中文" #: ../src/Config.cpp:345 ../src/Config.cpp:347 ../src/Config.cpp:376 msgid "Choose font" msgstr "選擇字型" #: ../src/PlotFormatWiz.cpp:27 msgid "Choose new plot format:" msgstr "選擇新的繪圖格式:" #: ../src/wxMaxima.cpp:3572 ../src/wxMaxima.cpp:3586 msgid "Classes:" msgstr "種類數:" #: ../src/wxMaximaFrame.cpp:197 msgid "Close\tCtrl-W" msgstr "關閉\tCtrl-W" #: ../src/wxMaximaFrame.cpp:198 msgid "Close window" msgstr "關閉視窗" #: ../src/wxMaxima.cpp:3694 msgid "Col. names:" msgstr "欄位名:" #: ../src/MatWiz.cpp:167 msgid "Columns:" msgstr "欄:" #: ../src/wxMaximaFrame.cpp:558 msgid "Combine factorials in an expression" msgstr "合併數式中的階乘" #: ../src/Plot2dWiz.cpp:675 msgid "Comma separated x coordinates" msgstr "x 座標,以逗號分隔" #: ../src/Plot2dWiz.cpp:676 msgid "Comma separated y coordinates" msgstr "y 座標,以逗號分隔" #: ../src/MathCtrl.cpp:738 msgid "Comment Selection" msgstr "將所選區域變成註解" #: ../src/wxMaximaFrame.cpp:299 msgid "Complete Word\tCtrl-K" msgstr "自動完成\tCtrl-K" #: ../src/wxMaximaFrame.cpp:300 msgid "Complete word" msgstr "自動完成" #: ../src/wxMaximaFrame.cpp:521 msgid "Compute continued fraction of a value" msgstr "計算數值的連分數表示" #: ../src/wxMaximaFrame.cpp:459 msgid "Compute the adjoint matrix" msgstr "計算伴隨矩陣" #: ../src/wxMaximaFrame.cpp:448 msgid "Compute the characteristic polynomial of a matrix" msgstr "計算矩陣的特徵多項式" #: ../src/wxMaximaFrame.cpp:451 msgid "Compute the determinant of a matrix" msgstr "計算矩陣的行列式的值" #: ../src/wxMaximaFrame.cpp:508 msgid "Compute the greatest common divisor" msgstr "計算最大公因式" #: ../src/wxMaximaFrame.cpp:445 msgid "Compute the inverse of a matrix" msgstr "計算矩陣的反矩陣" #: ../src/wxMaximaFrame.cpp:511 msgid "Compute the least common multiple (do load(functs) before using)" msgstr "計算最小公倍式 (在使用前會先執行 load(functs) )" #: ../src/wxMaxima.cpp:3744 msgid "Condition:" msgstr "條件:" #: ../src/Config.cpp:1066 ../src/Config.cpp:1074 msgid "Config file (*.ini)|*.ini" msgstr "設定檔 (*.ini)|*.ini" #: ../src/Config.cpp:935 msgid "Configuration warning" msgstr "設定值警告" #: ../src/wxMaximaFrame.cpp:281 ../src/wxMaximaFrame.cpp:284 #: ../src/wxMaximaFrame.cpp:724 ../src/wxMaximaFrame.cpp:792 msgid "Configure wxMaxima" msgstr "設定 wxMaxima" #: ../src/SeriesWiz.cpp:109 ../src/IntegrateWiz.cpp:219 #: ../src/IntegrateWiz.cpp:238 ../src/LimitWiz.cpp:135 msgid "Constant" msgstr "常數" #: ../src/wxMaximaFrame.cpp:542 msgid "Contract Logarithms" msgstr "合併對數數式" #: ../src/wxMaximaFrame.cpp:549 msgid "Convert binomials, beta and gamma function to factorials" msgstr "轉換二項式、beta、及 gamma 函數為階乘數式" #: ../src/wxMaximaFrame.cpp:552 msgid "Convert binomials, factorials and beta function to gamma function" msgstr "轉換二項式、階乘和 beta 函數為 gamma 函數" #: ../src/wxMaximaFrame.cpp:586 msgid "Convert complex expression to polar form" msgstr "轉換複數數式為極座標形式" #: ../src/wxMaximaFrame.cpp:583 msgid "Convert complex expression to rect form" msgstr "轉換複數數式為直角座標形式" #: ../src/wxMaximaFrame.cpp:595 msgid "" "Convert exponential function of imaginary argument to trigonometric form" msgstr "轉換虛數的指數函數為三角函數形式" #: ../src/wxMaximaFrame.cpp:540 msgid "Convert logarithm of product to sum of logarithms" msgstr "將對數內的乘積轉換為數項相加的對數" #: ../src/wxMaximaFrame.cpp:543 msgid "Convert sum of logarithms to logarithm of product" msgstr "將數項相加的對數轉換為對數內的乘積" #: ../src/wxMaximaFrame.cpp:548 msgid "Convert to &Factorials" msgstr "轉換為階乘(&F)" #: ../src/wxMaximaFrame.cpp:551 msgid "Convert to &Gamma" msgstr "轉換為 Gamma 函數(&G)" #: ../src/wxMaximaFrame.cpp:585 msgid "Convert to &Polarform" msgstr "轉換為極座標形式(&P)" #: ../src/wxMaximaFrame.cpp:582 msgid "Convert to &Rectform" msgstr "轉換為直角座標形式(&R)" #: ../src/wxMaximaFrame.cpp:575 msgid "Convert trigonometric expression to canonical quasilinear form" msgstr "轉換三角函數數式為標準準線性形式" #: ../src/wxMaximaFrame.cpp:598 msgid "Convert trigonometric functions to exponential form" msgstr "轉換三角函數數式為指數形式" #: ../src/MathCtrl.cpp:660 ../src/MathCtrl.cpp:673 ../src/MathCtrl.cpp:689 #: ../src/MathCtrl.cpp:732 ../src/wxMaximaFrame.cpp:729 #: ../src/wxMaximaFrame.cpp:798 msgid "Copy" msgstr "複製" #: ../src/MathCtrl.cpp:675 ../src/MathCtrl.cpp:691 msgid "Copy As Image" msgstr "複製為圖片" #: ../src/MathCtrl.cpp:674 ../src/MathCtrl.cpp:690 msgid "Copy LaTeX" msgstr "複製為 LaTeX 格式" #: ../src/wxMaximaFrame.cpp:297 msgid "Copy Previous Input\tCtrl-I" msgstr "複製上一個輸入\tCtrl-I" #: ../src/wxMaximaFrame.cpp:242 msgid "Copy as Image" msgstr "複製為圖片" #: ../src/wxMaximaFrame.cpp:238 msgid "Copy as LaTeX" msgstr "複製為 LaTeX 格式" #: ../src/wxMaximaFrame.cpp:235 msgid "Copy as Text\tCtrl-Shift-C" msgstr "複製為純文字\tCtrl-Shift-C" #: ../src/wxMaximaFrame.cpp:234 ../src/wxMaximaFrame.cpp:731 #: ../src/wxMaximaFrame.cpp:801 msgid "Copy selection" msgstr "複製所選區域" #: ../src/wxMaximaFrame.cpp:243 msgid "Copy selection from document as an image" msgstr "複製所選區域為圖片" #: ../src/wxMaximaFrame.cpp:236 msgid "Copy selection from document as text" msgstr "複製所選區域為純文字" #: ../src/wxMaximaFrame.cpp:239 msgid "Copy selection from document in LaTeX format" msgstr "複製所選區域為 LaTeX 格式" #: ../src/wxMaximaFrame.cpp:298 msgid "Create a new cell with previous input" msgstr "以上一個輸入建立一個新的單元" #: ../src/Config.cpp:371 msgid "Cursor" msgstr "游標" #: ../src/MathCtrl.cpp:731 ../src/wxMaximaFrame.cpp:726 #: ../src/wxMaximaFrame.cpp:794 msgid "Cut" msgstr "剪下" #: ../src/wxMaximaFrame.cpp:230 msgid "Cut\tCtrl-X" msgstr "剪下\tCtrl-X" #: ../src/wxMaximaFrame.cpp:231 ../src/wxMaximaFrame.cpp:728 #: ../src/wxMaximaFrame.cpp:797 msgid "Cut selection" msgstr "剪下所選區域" #: ../src/Config.cpp:241 msgid "Czech" msgstr "Czech" #: ../src/Config.cpp:242 msgid "Danish" msgstr "Danish" #: ../src/wxMaxima.cpp:3687 ../src/wxMaxima.cpp:3694 ../src/wxMaxima.cpp:3744 msgid "Data Matrix:" msgstr "資料矩陣:" #: ../src/wxMaxima.cpp:3714 msgid "Data file (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" msgstr "資料檔 (*.csv, *.tab, *.txt)|*.csv;*.tab;*.txt" #: ../src/wxMaxima.cpp:3572 ../src/wxMaxima.cpp:3586 ../src/wxMaxima.cpp:3600 #: ../src/wxMaxima.cpp:3607 ../src/wxMaxima.cpp:3614 ../src/wxMaxima.cpp:3622 #: ../src/wxMaxima.cpp:3629 ../src/wxMaxima.cpp:3636 ../src/wxMaxima.cpp:3643 #: ../src/wxMaxima.cpp:3679 msgid "Data:" msgstr "資料:" #: ../src/wxMaximaFrame.cpp:518 msgid "Decompose rational function to partial fractions" msgstr "將有理函數分解為部分分式" #: ../src/Config.cpp:351 msgid "Default" msgstr "預設" #: ../src/Config.cpp:344 msgid "Default font:" msgstr "預設字型:" #: ../src/Config.cpp:257 msgid "Default port:" msgstr "預設埠:" #: ../src/wxMaxima.cpp:2317 ../src/wxMaxima.cpp:2326 msgid "Delete" msgstr "刪除" #: ../src/wxMaximaFrame.cpp:368 msgid "Delete F&unction..." msgstr "刪除函數(&U)..." #: ../src/MathCtrl.cpp:678 ../src/MathCtrl.cpp:694 msgid "Delete Selection" msgstr "刪除所選區域" #: ../src/wxMaximaFrame.cpp:370 msgid "Delete V&ariable..." msgstr "刪除變數(&A)..." #: ../src/wxMaximaFrame.cpp:369 msgid "Delete a function" msgstr "刪除函數" #: ../src/wxMaximaFrame.cpp:371 msgid "Delete a variable" msgstr "刪除變數" #: ../src/wxMaximaFrame.cpp:356 msgid "Delete all values from memory" msgstr "刪除記憶體中全部的值" #: ../src/wxMaxima.cpp:2326 msgid "Delete function(s):" msgstr "刪除該函數:" #: ../src/wxMaxima.cpp:2317 msgid "Delete variable(s):" msgstr "刪除該變數:" #: ../src/wxMaxima.cpp:2925 msgid "Denom. deg:" msgstr "分母 degree:" #: ../src/SeriesWiz.cpp:42 msgid "Depth:" msgstr "深度:" #: ../src/wxMaxima.cpp:2455 msgid "Derivative:" msgstr "導函數:" #: ../src/wxMaximaFrame.cpp:1016 msgid "Deviation..." msgstr "偏差..." #: ../src/wxMaximaFrame.cpp:514 msgid "Di&vide Polynomials..." msgstr "多項式相除(&V)..." #: ../src/wxMaximaFrame.cpp:981 msgid "Diff..." msgstr "微分..." #: ../src/wxMaxima.cpp:3068 ../src/wxMaxima.cpp:3911 msgid "Differentiate" msgstr "微分" #: ../src/wxMaximaFrame.cpp:484 msgid "Differentiate expression" msgstr "對數式微分" #: ../src/MathCtrl.cpp:710 msgid "Differentiate..." msgstr "微分..." #: ../src/LimitWiz.cpp:36 msgid "Direction:" msgstr "方向:" #: ../src/Plot2dWiz.cpp:448 ../src/Plot2dWiz.cpp:668 msgid "Discrete plot" msgstr "離散繪圖" #: ../src/wxMaximaFrame.cpp:380 msgid "Display Te&X Form" msgstr "以 TeX 格式顯示(&X)" #: ../src/wxMaxima.cpp:2266 msgid "Display algorithm" msgstr "用於顯示的演算法" #: ../src/wxMaximaFrame.cpp:381 msgid "Display last result in TeX form" msgstr "將最後的結果以 TeX 格式顯示" #: ../src/wxMaximaFrame.cpp:375 msgid "Display time used for evaluation" msgstr "顯示評算所花費的時間" #: ../src/wxMaxima.cpp:2975 msgid "Divide" msgstr "數字/多項式相除" #: ../src/MathCtrl.cpp:740 msgid "Divide Cell" msgstr "分割單元" #: ../src/wxMaximaFrame.cpp:515 msgid "Divide numbers or polynomials" msgstr "將數字或多項式相除" #: ../src/wxMaxima.cpp:4427 ../src/wxMaxima.cpp:4439 msgid "Do you want to save the changes you made in the document \"" msgstr "您是否想儲存於此文件中的變更: \"" #: ../src/wxMaxima.cpp:1077 ../src/wxMaxima.cpp:1085 msgid "Document " msgstr "文件" #: ../src/Config.cpp:368 msgid "Document background" msgstr "文件背景" #: ../src/wxMaxima.cpp:4432 msgid "Don't save" msgstr "不要儲存" #: ../src/wxMaximaFrame.cpp:432 msgid "E&quations" msgstr "方程式(&Q)" #: ../src/wxMaximaFrame.cpp:217 msgid "E&xit\tCtrl-Q" msgstr "結束(&X)\tCtrl-Q" #: ../src/wxMaximaFrame.cpp:455 msgid "Eige&nvectors" msgstr "特徵向量(&N)" #: ../src/wxMaximaFrame.cpp:453 msgid "Eigen&values" msgstr "特徵值(&V)" #: ../src/wxMaxima.cpp:2486 msgid "Eliminate" msgstr "消去" #: ../src/wxMaximaFrame.cpp:408 msgid "Eliminate a variable from a system of equations" msgstr "自方程組中消去變數" #: ../src/Config.cpp:243 msgid "English" msgstr "English" #: ../src/wxMaxima.cpp:3600 ../src/wxMaxima.cpp:3607 ../src/wxMaxima.cpp:3614 #: ../src/wxMaxima.cpp:3622 ../src/wxMaxima.cpp:3629 ../src/wxMaxima.cpp:3636 #: ../src/wxMaxima.cpp:3643 ../src/wxMaxima.cpp:3679 ../src/wxMaxima.cpp:3687 msgid "Enter Data" msgstr "輸入資料" #: ../src/wxMaximaFrame.cpp:1037 msgid "Enter Matrix..." msgstr "輸入矩陣..." #: ../src/wxMaximaFrame.cpp:443 msgid "Enter a matrix" msgstr "輸入一個矩陣" #: ../src/wxMaxima.cpp:2876 msgid "Enter an equation for rational simplification:" msgstr "輸入供化簡有理數式的方程式:" #: ../src/SystemWiz.cpp:49 msgid "Enter comma separated list of variables." msgstr "輸入以逗號分隔的所有變數" #: ../src/Config.cpp:267 msgid "Enter evaluates cells" msgstr "按 Enter 評算單元" #: ../src/wxMaxima.cpp:2648 msgid "Enter matrix" msgstr "輸入矩陣" #: ../src/wxMaxima.cpp:3250 msgid "Enter new precision:" msgstr "輸入新的精確度:" #: ../src/Config.cpp:121 msgid "Enter the path to the Maxima executable." msgstr "輸入可執行 Maxima 的路徑" #: ../src/wxMaxima.cpp:3122 msgid "Epsilon:" msgstr "Epsilon:" #: ../src/SystemWiz.cpp:68 #, c-format msgid "Equation %d:" msgstr "方程式 %d:" #: ../src/wxMaxima.cpp:2374 ../src/wxMaxima.cpp:2388 ../src/wxMaxima.cpp:2547 #: ../src/wxMaxima.cpp:3864 msgid "Equation(s):" msgstr "方程式:" #: ../src/wxMaxima.cpp:2404 ../src/wxMaxima.cpp:2423 ../src/wxMaxima.cpp:2907 #: ../src/wxMaxima.cpp:3695 ../src/wxMaxima.cpp:3878 msgid "Equation:" msgstr "方程式:" #: ../src/wxMaxima.cpp:2484 msgid "Equations:" msgstr "方程式:" #: ../src/Config.cpp:488 ../src/wxMaxima.cpp:394 ../src/wxMaxima.cpp:975 #: ../src/wxMaxima.cpp:986 ../src/wxMaxima.cpp:1045 ../src/wxMaxima.cpp:1057 #: ../src/wxMaxima.cpp:1079 ../src/wxMaxima.cpp:1501 ../src/wxMaxima.cpp:1597 #: ../src/wxMaxima.cpp:4083 ../src/wxMaxima.cpp:4330 ../src/wxMaxima.cpp:4375 #: ../src/ImgCell.cpp:101 msgid "Error" msgstr "錯誤" #: ../src/SlideShowCell.cpp:72 ../src/SlideShowCell.cpp:115 #, c-format msgid "Error %d" msgstr "錯誤 %d" #: ../src/wxMaxima.cpp:1969 ../src/wxMaxima.cpp:1974 ../src/wxMaxima.cpp:2507 #: ../src/wxMaxima.cpp:2531 ../src/wxMaxima.cpp:2642 msgid "Error!" msgstr "錯誤!" #: ../src/wxMaximaFrame.cpp:607 msgid "Evaluate &Noun Forms" msgstr "評算名詞形式(&N)" #: ../src/wxMaximaFrame.cpp:292 msgid "Evaluate All Cells\tCtrl-R" msgstr "評算所有單元\tCtrl-R" #: ../src/MathCtrl.cpp:681 ../src/wxMaximaFrame.cpp:290 msgid "Evaluate Cell(s)" msgstr "評算單元" #: ../src/wxMaximaFrame.cpp:291 msgid "Evaluate active or selected cell(s)" msgstr "評算正在活動中或所選擇的單元" #: ../src/wxMaximaFrame.cpp:293 msgid "Evaluate all cells in the document" msgstr "評算這份文件中的所有單元" #: ../src/wxMaximaFrame.cpp:608 msgid "Evaluate all noun forms in expression" msgstr "評算數式中所有的名詞形式" #: ../src/wxMaxima.cpp:3515 msgid "Example" msgstr "範例" #: ../src/Config.cpp:1020 ../src/Config.cpp:1112 msgid "Example text" msgstr "Example text 範例文字" #: ../src/wxMaximaFrame.cpp:218 msgid "Exit wxMaxima" msgstr "離開 wxMaxima" #: ../src/wxMaximaFrame.cpp:972 msgid "Expand" msgstr "展開" #: ../src/wxMaximaFrame.cpp:977 msgid "Expand (tr)" msgstr "展開 (三角)" #: ../src/MathCtrl.cpp:706 msgid "Expand Expression" msgstr "展開數式" #: ../src/wxMaximaFrame.cpp:539 msgid "Expand Logarithms" msgstr "展開對數數式" #: ../src/wxMaximaFrame.cpp:538 msgid "Expand an expression" msgstr "展開數式" #: ../src/wxMaximaFrame.cpp:572 msgid "Expand trigonometric expression" msgstr "展開三角函數數式" #: ../src/wxMaxima.cpp:1955 msgid "Export" msgstr "匯出" #: ../src/wxMaximaFrame.cpp:209 msgid "Export document to a HTML or pdfLaTeX file" msgstr "將文件匯出為 HTML 或 pdfLaTeX 檔案" #: ../src/wxMaxima.cpp:1974 msgid "Exporting to HTML failed!" msgstr "匯出為 HTML 失敗!" #: ../src/wxMaxima.cpp:1969 msgid "Exporting to TeX failed!" msgstr "匯出為 TeX 失敗!" #: ../src/Plot3dWiz.cpp:41 msgid "Expression" msgstr "數式" #: ../src/Plot2dWiz.cpp:42 msgid "Expression(s):" msgstr "數式:" #: ../src/SubstituteWiz.cpp:27 ../src/SeriesWiz.cpp:32 ../src/SumWiz.cpp:30 #: ../src/wxMaxima.cpp:2562 ../src/wxMaxima.cpp:2732 ../src/wxMaxima.cpp:2988 #: ../src/wxMaxima.cpp:3003 ../src/wxMaxima.cpp:3032 ../src/wxMaxima.cpp:3049 #: ../src/wxMaxima.cpp:3066 ../src/wxMaxima.cpp:3119 ../src/wxMaxima.cpp:3154 #: ../src/wxMaxima.cpp:3909 ../src/IntegrateWiz.cpp:36 ../src/LimitWiz.cpp:26 msgid "Expression:" msgstr "數式:" #: ../src/wxMaximaFrame.cpp:971 msgid "Factor" msgstr "因式分解" #: ../src/wxMaximaFrame.cpp:534 msgid "Factor Complex" msgstr "複數因式分解" #: ../src/MathCtrl.cpp:705 msgid "Factor Expression" msgstr "因式分解數式" #: ../src/wxMaximaFrame.cpp:533 msgid "Factor an expression" msgstr "因式分解數式" #: ../src/wxMaximaFrame.cpp:535 msgid "Factor an expression in Gaussian numbers" msgstr "因式分解含 Gaussian 數的數式" #: ../src/wxMaximaFrame.cpp:560 msgid "Factorials and &Gamma" msgstr "階乘與 Gamma 函數(&G)" #: ../src/wxMaxima.cpp:256 msgid "Fatal error" msgstr "嚴重錯誤" #: ../src/GroupCell.cpp:1263 #, c-format msgid "Figure %d:" msgstr "圖 %d:" #: ../src/main.cpp:107 msgid "File" msgstr "檔案" #: ../src/wxMaxima.cpp:4032 msgid "File not found" msgstr "找不到檔案" #: ../src/wxMaxima.cpp:4032 msgid "File you tried to open does not exist." msgstr "找不到您想開啟的檔案。" #: ../src/Plot2dWiz.cpp:92 msgid "File:" msgstr "檔案:" #: ../src/wxMaximaFrame.cpp:736 msgid "Find" msgstr "尋找" #: ../src/wxMaximaFrame.cpp:251 msgid "Find\tCtrl-F" msgstr "尋找\tCtrl-F" #: ../src/wxMaximaFrame.cpp:485 msgid "Find &Limit..." msgstr "求極限(&L)..." #: ../src/wxMaximaFrame.cpp:488 msgid "Find Minimum..." msgstr "求極小值..." #: ../src/MathCtrl.cpp:702 msgid "Find Root..." msgstr "找根..." #: ../src/wxMaximaFrame.cpp:489 msgid "Find a (unconstrained) minimum of an expression" msgstr "找數式的極小值(無區間限制)" #: ../src/wxMaximaFrame.cpp:486 msgid "Find a limit of an expression" msgstr "求數式的極限" #: ../src/wxMaximaFrame.cpp:391 msgid "Find a root of an equation on an interval" msgstr "在區間中找方程式的根" #: ../src/wxMaximaFrame.cpp:393 msgid "Find all roots of a polynomial" msgstr "找多項式所有的根" #: ../src/wxMaximaFrame.cpp:396 msgid "Find all roots of a polynomial (bfloat)" msgstr "找多項式所有的根(以長浮點數表示)" #: ../src/wxMaxima.cpp:2181 msgid "Find and Replace" msgstr "尋找及取代" #: ../src/wxMaximaFrame.cpp:251 ../src/wxMaximaFrame.cpp:738 #: ../src/wxMaximaFrame.cpp:810 msgid "Find and replace" msgstr "尋找及取代" #: ../src/wxMaximaFrame.cpp:454 msgid "Find eigenvalues of a matrix" msgstr "尋找矩陣的特徵值" #: ../src/wxMaximaFrame.cpp:456 msgid "Find eigenvectors of a matrix" msgstr "尋找矩陣的特徵向量" #: ../src/wxMaxima.cpp:3124 msgid "Find minimum" msgstr "求極小值" #: ../src/wxMaximaFrame.cpp:399 msgid "Find real roots of a polynomial" msgstr "找多項式所有的實根" #: ../src/wxMaxima.cpp:2407 ../src/wxMaxima.cpp:3881 msgid "Find root" msgstr "找根" #: ../src/wxMaximaFrame.cpp:807 msgid "Find..." msgstr "尋找..." #: ../src/Config.cpp:263 msgid "Fixed font in text controls" msgstr "文字控制項使用等寬字型" #: ../src/Config.cpp:130 msgid "Font used for display in document." msgstr "文件中用以顯示一般文字的字型" #: ../src/Config.cpp:131 msgid "Font used for displaying math characters in document." msgstr "文件中用以顯示數學文字的字型" #: ../src/Config.cpp:330 msgid "Fonts" msgstr "字型" #: ../src/Plot2dWiz.cpp:70 ../src/Plot3dWiz.cpp:69 msgid "Format:" msgstr "格式:" #: ../src/Config.cpp:244 msgid "French" msgstr "French" #: ../src/Plot2dWiz.cpp:49 ../src/Plot2dWiz.cpp:59 ../src/Plot2dWiz.cpp:548 #: ../src/SumWiz.cpp:36 ../src/wxMaxima.cpp:2733 ../src/wxMaxima.cpp:3154 #: ../src/IntegrateWiz.cpp:43 ../src/Plot3dWiz.cpp:46 ../src/Plot3dWiz.cpp:55 msgid "From:" msgstr "從:" #: ../src/wxMaximaFrame.cpp:275 msgid "Full Screen\tAlt-Enter" msgstr "全螢幕\tAlt-Enter" #: ../src/wxMaxima.cpp:2288 msgid "Function" msgstr "函數" #: ../src/Config.cpp:354 msgid "Function names" msgstr "函數名" #: ../src/wxMaxima.cpp:2547 msgid "Function(s):" msgstr "函數:" #: ../src/wxMaxima.cpp:2423 ../src/wxMaxima.cpp:2614 ../src/wxMaxima.cpp:2717 #: ../src/wxMaxima.cpp:2750 msgid "Function:" msgstr "函數:" #: ../src/wxMaximaFrame.cpp:602 msgid "Functions for complex simplification" msgstr "用以化簡複數數式的函數" #: ../src/wxMaximaFrame.cpp:562 msgid "Functions for simplifying factorials and gamma function" msgstr "用以化簡階乘及 gamma 函數的函數" #: ../src/wxMaximaFrame.cpp:579 msgid "Functions for simplifying trigonometric expressions" msgstr "用以化簡三角函數數式的函數" #: ../src/wxMaxima.cpp:2960 msgid "GCD" msgstr "最大公因式" #: ../src/wxMaxima.cpp:3994 msgid "GIF image (*.gif)|*.gif" msgstr "GIF (*.gif)|*.gif" #: ../src/wxMaximaFrame.cpp:133 msgid "General Math" msgstr "常用數學" #: ../src/wxMaximaFrame.cpp:333 msgid "General Math\tAlt-Shift-M" msgstr "常用數學\tAlt-Shift-M" #: ../src/wxMaxima.cpp:2680 ../src/wxMaxima.cpp:2699 msgid "Generate Matrix" msgstr "產生矩陣" #: ../src/wxMaximaFrame.cpp:439 msgid "Generate Matrix from Expression..." msgstr "以數式產生矩陣..." #: ../src/wxMaximaFrame.cpp:437 msgid "Generate a matrix from a 2-dimensional array" msgstr "以二維陣列產生一個矩陣" #: ../src/wxMaximaFrame.cpp:440 msgid "Generate a matrix from a lambda expression" msgstr "以 lambda 數式產生矩陣" #: ../src/Config.cpp:245 msgid "German" msgstr "German" #: ../src/wxMaximaFrame.cpp:591 msgid "Get &Imaginary Part" msgstr "取虛部(&I)" #: ../src/wxMaximaFrame.cpp:491 msgid "Get &Series..." msgstr "取級數(&S)..." #: ../src/wxMaximaFrame.cpp:502 msgid "Get Laplace transformation of an expression" msgstr "計算數式的 Laplace 變換" #: ../src/wxMaximaFrame.cpp:588 msgid "Get Real P&art" msgstr "取實部(&A)" #: ../src/wxMaximaFrame.cpp:505 msgid "Get inverse Laplace transformation of an expression" msgstr "計算數式的 Laplace 逆變換" #: ../src/wxMaximaFrame.cpp:492 msgid "Get the Taylor or power series of expression" msgstr "取數式的 Taylor 級數或冪級數" #: ../src/wxMaximaFrame.cpp:592 msgid "Get the imaginary part of complex expression" msgstr "取得複數數式的虛部" #: ../src/wxMaximaFrame.cpp:589 msgid "Get the real part of complex expression" msgstr "取得複數數式的實部" #: ../src/Config.cpp:246 msgid "Greek" msgstr "Greek" #: ../src/Config.cpp:356 msgid "Greek constants" msgstr "希臘字母" #: ../src/Plot3dWiz.cpp:61 msgid "Grid:" msgstr "格線:" #: ../src/wxMaxima.cpp:1957 msgid "HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*" msgstr "HTML 檔案 (*.html)|*.html|pdfLaTeX 檔案 (*.tex)|*.tex|所有類型|*" #: ../src/wxMaxima.cpp:2678 ../src/wxMaxima.cpp:2697 msgid "Height:" msgstr "高:" #: ../src/wxMaximaFrame.cpp:755 ../src/wxMaximaFrame.cpp:828 msgid "Help" msgstr "說明" #: ../src/wxMaximaFrame.cpp:331 msgid "Hide All\tAlt-Shift--" msgstr "全部隱藏\tAlt-Shift--" #: ../src/wxMaximaFrame.cpp:331 msgid "Hide all panes" msgstr "隱藏所有窗格" #: ../src/Config.cpp:362 msgid "Highlight (dpart)" msgstr "高亮度標記(於dpart函數中)" #: ../src/wxMaxima.cpp:3573 msgid "Histogram" msgstr "直方圖" #: ../src/wxMaximaFrame.cpp:1028 msgid "Histogram..." msgstr "直方圖..." #: ../src/wxMaximaFrame.cpp:114 msgid "History" msgstr "歷史記錄" #: ../src/wxMaximaFrame.cpp:335 msgid "History\tAlt-Shift-H" msgstr "歷史記錄\tAlt-Shift-H" #: ../data/tips.txt:12 msgid "" "Horizontal cursor works like a normal cursor, but it operates on cells: " "press up or down arrow to move it, holding down Shift while moving will " "select cells, pressing backspace or delete twice will delete a cell next to " "it." msgstr "" "水平游標就像一般游標一樣,但是它是對單元操作。按向上或向下箭頭來移動它,在移" "動時按住 Shift 鍵將會選擇單元,按 backspace 或 delete 鍵兩次會刪除相鄰的單" "元。" #: ../src/Config.cpp:247 msgid "Hungarian" msgstr "Hungarian" #: ../src/wxMaxima.cpp:2441 msgid "IC1" msgstr "初始條件(一階)" #: ../src/wxMaxima.cpp:2457 msgid "IC2" msgstr "初始條件(二階)" #: ../data/tips.txt:16 msgid "" "If your calculation is taking too long to evaluate, you can try 'Maxima-" ">Interrupt' or 'Maxima->Restart Maxima' menu commands." msgstr "" "若您的計算花費過長的時間,您可以嘗試「Maxima(M)」->「中斷(I)」或「Maxima" "(M)」->「重新啟動 Maxima(R)」這兩個功能表命令。" #: ../src/wxMaximaFrame.cpp:1068 msgid "Image" msgstr "圖片" #: ../src/wxMaxima.cpp:4188 msgid "Image files (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" msgstr "圖片檔 (*.png, *.jpg, *.bmp, *.xpm)|*.png;*.jpg;*.bmp;*.xpm" #: ../src/wxMaxima.cpp:3745 msgid "Include columns:" msgstr "包含欄位:" #: ../src/IntegrateWiz.cpp:216 ../src/IntegrateWiz.cpp:226 #: ../src/IntegrateWiz.cpp:235 ../src/IntegrateWiz.cpp:245 #: ../src/LimitWiz.cpp:132 ../src/LimitWiz.cpp:142 msgid "Infinity" msgstr "無限大" #: ../src/wxMaximaFrame.cpp:666 msgid "Info about Maxima build" msgstr "關於 Maxima 建置的資訊" #: ../src/wxMaxima.cpp:3121 msgid "Initial Estimates:" msgstr "起始預估:" #: ../src/wxMaximaFrame.cpp:416 msgid "Initial Value Problem (&1)..." msgstr "一階常微方初始值問題(&1)..." #: ../src/wxMaximaFrame.cpp:419 msgid "Initial Value Problem (&2)..." msgstr "二階常微方初始值問題(&2)..." #: ../src/Config.cpp:359 msgid "Input labels" msgstr "輸入標籤" #: ../src/wxMaximaFrame.cpp:143 msgid "Insert" msgstr "插入" #: ../src/wxMaximaFrame.cpp:310 msgid "Insert &Section Cell\tCtrl-3" msgstr "插入章節單元(&S)\tCtrl-3" #: ../src/wxMaximaFrame.cpp:306 msgid "Insert &Text Cell\tCtrl-1" msgstr "插入文字單元(&T)\tCtrl-1" #: ../src/wxMaximaFrame.cpp:336 msgid "Insert Cell\tAlt-Shift-C" msgstr "插入(單元)\tAlt-Shift-C" #: ../src/wxMaxima.cpp:4186 msgid "Insert Image" msgstr "插入圖片" #: ../src/wxMaximaFrame.cpp:316 msgid "Insert Image..." msgstr "插入圖片..." #: ../src/wxMaximaFrame.cpp:304 msgid "Insert Input &Cell" msgstr "插入輸入單元(&C)" #: ../src/wxMaximaFrame.cpp:314 msgid "Insert Page Break" msgstr "插入換頁符號" #: ../src/wxMaximaFrame.cpp:312 msgid "Insert S&ubsection Cell\tCtrl-4" msgstr "插入子章節單元(&U)\tCtrl-4" #: ../src/MathCtrl.cpp:724 msgid "Insert Section Cell" msgstr "插入章節單元" #: ../src/MathCtrl.cpp:725 msgid "Insert Subsection Cell" msgstr "插入子章節單元" #: ../src/wxMaximaFrame.cpp:308 msgid "Insert T&itle Cell\tCtrl-2" msgstr "插入標題單元(&I)\tCtrl-2" #: ../src/MathCtrl.cpp:722 msgid "Insert Text Cell" msgstr "插入文字單元" #: ../src/MathCtrl.cpp:723 msgid "Insert Title Cell" msgstr "插入標題單元" #: ../src/wxMaximaFrame.cpp:305 msgid "Insert a new input cell" msgstr "插入新的輸入單元" #: ../src/wxMaximaFrame.cpp:311 msgid "Insert a new section cell" msgstr "插入新的章節單元" #: ../src/wxMaximaFrame.cpp:313 msgid "Insert a new subsection cell" msgstr "插入新的子章節單元" #: ../src/wxMaximaFrame.cpp:307 msgid "Insert a new text cell" msgstr "插入新的文字單元" #: ../src/wxMaximaFrame.cpp:309 msgid "Insert a new title cell" msgstr "插入新的標題單元" #: ../src/wxMaximaFrame.cpp:315 msgid "Insert a page break" msgstr "插入一個換頁符號" #: ../src/wxMaximaFrame.cpp:317 msgid "Insert image" msgstr "插入圖片" #: ../src/wxMaxima.cpp:2906 msgid "Integral/Sum:" msgstr "積分/加總:" #: ../src/wxMaxima.cpp:3019 ../src/wxMaxima.cpp:3896 #: ../src/IntegrateWiz.cpp:72 msgid "Integrate" msgstr "積分" #: ../src/wxMaxima.cpp:3005 msgid "Integrate (risch)" msgstr "Risch 積分" #: ../src/wxMaximaFrame.cpp:476 msgid "Integrate expression" msgstr "對數式積分" #: ../src/wxMaximaFrame.cpp:478 msgid "Integrate expression with Risch algorithm" msgstr "使用 Risch 演算法積分數式" #: ../src/MathCtrl.cpp:709 ../src/wxMaximaFrame.cpp:982 msgid "Integrate..." msgstr "積分..." #: ../src/wxMaximaFrame.cpp:740 ../src/wxMaximaFrame.cpp:812 msgid "Interrupt" msgstr "中斷" #: ../src/wxMaximaFrame.cpp:347 ../src/wxMaximaFrame.cpp:351 #: ../src/wxMaximaFrame.cpp:742 ../src/wxMaximaFrame.cpp:815 msgid "Interrupt current computation" msgstr "中斷目前的計算" #: ../src/Config.cpp:487 msgid "" "Invalid entry for Maxima program.\n" "\n" "Please enter the path to Maxima program again." msgstr "" "無效的 Maxima 程式路徑。\n" "\n" "請再次輸入 Maxima 程式的所在路徑。" #: ../src/wxMaxima.cpp:3051 msgid "Inverse Laplace" msgstr "Laplace 逆變換" #: ../src/wxMaximaFrame.cpp:504 msgid "Inverse Laplace T&ransform..." msgstr "反 Laplace 變換(&R)..." #: ../src/Config.cpp:248 msgid "Italian" msgstr "Italian" #: ../src/Config.cpp:383 msgid "Italic" msgstr "斜體" #: ../src/Config.cpp:249 msgid "Japanese" msgstr "Japanese" #: ../src/Config.cpp:266 #, c-format msgid "Keep percent sign with special symbols: %e, %i, etc." msgstr "保留特殊符號前的百分比號,像是「%e」、「%i」等..." #: ../src/wxMaxima.cpp:2945 msgid "LCM" msgstr "最小公倍式" #: ../src/Config.cpp:128 msgid "Language used for wxMaxima GUI." msgstr "wxMaxima 圖形介面的語言" #: ../src/Config.cpp:235 msgid "Language:" msgstr "語言:" #: ../src/wxMaxima.cpp:3034 msgid "Laplace" msgstr "Laplace 變換" #: ../src/wxMaximaFrame.cpp:501 msgid "Laplace &Transform..." msgstr "Laplace 變換(&T)..." #: ../src/wxMaximaFrame.cpp:510 msgid "Least Common Multiple..." msgstr "最小公倍式..." #: ../src/wxMaxima.cpp:3697 msgid "Least Squares Fit" msgstr "最小平方法" #: ../src/wxMaximaFrame.cpp:1024 msgid "Least Squares Fit..." msgstr "最小平方法..." #: ../src/wxMaxima.cpp:3106 ../src/LimitWiz.cpp:66 msgid "Limit" msgstr "極限" #: ../src/wxMaximaFrame.cpp:983 msgid "Limit..." msgstr "極限..." #: ../src/wxMaximaFrame.cpp:1023 msgid "Linear Regression..." msgstr "線性迴歸..." #: ../src/wxMaxima.cpp:2717 ../src/wxMaxima.cpp:2750 msgid "List:" msgstr "串列:" #: ../src/Config.cpp:386 msgid "Load" msgstr "載入" #: ../src/wxMaxima.cpp:1983 msgid "Load Package" msgstr "載入 Package" #: ../src/wxMaximaFrame.cpp:207 msgid "Load a Maxima file using the batch command" msgstr "以批次命令的方式載入 Maxima 檔" #: ../src/wxMaximaFrame.cpp:205 msgid "Load a Maxima package file" msgstr "讀取 Maxima package 檔" #: ../src/Config.cpp:1072 msgid "Load style from file" msgstr "自檔案載入樣式" #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:3879 msgid "Lower bound:" msgstr "下界:" #: ../src/wxMaximaFrame.cpp:469 msgid "Ma&p to Matrix..." msgstr "映射至整個矩陣(&P)..." #: ../src/wxMaximaFrame.cpp:463 msgid "Make &List..." msgstr "產生串列(&L)..." #: ../src/wxMaxima.cpp:2735 msgid "Make list" msgstr "產生串列" #: ../src/wxMaximaFrame.cpp:464 msgid "Make list from expression" msgstr "從數式產生串列" #: ../src/wxMaximaFrame.cpp:605 msgid "Make substitution in expression" msgstr "在數式中作代換" #: ../src/wxMaxima.cpp:2719 msgid "Map" msgstr "映射" #: ../src/wxMaximaFrame.cpp:468 msgid "Map function to a list" msgstr "映射函數至串列" #: ../src/wxMaximaFrame.cpp:470 msgid "Map function to a matrix" msgstr "映射函數至矩陣" #: ../src/Config.cpp:262 msgid "Match parenthesis in text controls" msgstr "在文字控制項中輸入時匹配括弧" #: ../src/Config.cpp:346 msgid "Math font:" msgstr "數學字型:" #: ../src/wxMaxima.cpp:2630 msgid "Matrix" msgstr "矩陣" #: ../src/wxMaxima.cpp:2616 msgid "Matrix map" msgstr "矩陣映射" #: ../src/wxMaxima.cpp:3745 msgid "Matrix name:" msgstr "矩陣名:" #: ../src/wxMaxima.cpp:2614 ../src/wxMaxima.cpp:2663 msgid "Matrix:" msgstr "矩陣:" #: ../src/Config.cpp:98 msgid "Maxima" msgstr "Maxima" #: ../src/wxMaximaFrame.cpp:647 msgid "Maxima &Help\tCTRL+?" msgstr "Maxima 說明(H)\tCTRL+?" #: ../src/wxMaximaFrame.cpp:650 msgid "Maxima &Help\tF1" msgstr "Maxima 說明(H)\tF1" #: ../src/Config.cpp:358 msgid "Maxima input" msgstr "Maxima 輸入" #: ../src/wxMaxima.cpp:466 msgid "Maxima is calculating" msgstr "Maxima 計算中" #: ../src/wxMaxima.cpp:1996 msgid "Maxima package (*.mac)|*.mac" msgstr "Maxima package (*.mac)|*.mac" #: ../src/wxMaxima.cpp:1985 msgid "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*" msgstr "Maxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|所有類型|*" #: ../src/wxMaxima.cpp:775 msgid "Maxima process terminated." msgstr "Maxima 程序已結束" #: ../src/Config.cpp:304 msgid "Maxima program:" msgstr "Maxima 程式:" #: ../src/Config.cpp:360 msgid "Maxima questions" msgstr "Maxima 詢問" #: ../src/wxMaxima.cpp:730 msgid "Maxima started. Waiting for connection..." msgstr "Maxima 已啟動,等待連線中..." #: ../data/tips.txt:3 msgid "" "Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f" "(x) := x^2;')." msgstr "" "Maxima 使用 \":\" 來設定數值 (例:\"a : 3;\"),使用 \":=\" 來定義函數 (例:" "\"f(x) := x^2\")。" #: ../src/wxMaxima.cpp:3492 msgid "Maxima version: " msgstr "Maxima 版本:" #: ../src/wxMaximaFrame.cpp:1021 msgid "Mean Difference Test..." msgstr "平均差檢驗..." #: ../src/wxMaximaFrame.cpp:1020 msgid "Mean Test..." msgstr "平均值檢驗..." #: ../src/wxMaximaFrame.cpp:1013 msgid "Mean..." msgstr "平均..." #: ../src/wxMaxima.cpp:3650 msgid "Mean:" msgstr "平均值:" #: ../src/wxMaximaFrame.cpp:1014 msgid "Median..." msgstr "中位數..." #: ../src/MathCtrl.cpp:684 msgid "Merge Cells" msgstr "合併單元" #: ../src/IntegrateWiz.cpp:52 msgid "Method:" msgstr "方法:" #: ../src/wxMaxima.cpp:2886 msgid "Modulus" msgstr "模運算" #: ../src/wxMaxima.cpp:2678 ../src/wxMaxima.cpp:2697 ../src/MatWiz.cpp:182 msgid "Name:" msgstr "命名:" #: ../src/wxMaximaFrame.cpp:706 ../src/wxMaximaFrame.cpp:769 msgid "New" msgstr "新增" #: ../src/wxMaximaFrame.cpp:185 ../src/wxMaximaFrame.cpp:188 msgid "New\tCtrl-N" msgstr "新增\tCtrl-N" #: ../src/wxMaximaFrame.cpp:708 ../src/wxMaximaFrame.cpp:772 msgid "New document" msgstr "新增文件" #: ../src/SubstituteWiz.cpp:33 msgid "New value:" msgstr "新值:" #: ../src/wxMaxima.cpp:2907 ../src/wxMaxima.cpp:3033 ../src/wxMaxima.cpp:3050 msgid "New variable:" msgstr "新變數:" #: ../src/wxMaximaFrame.cpp:321 msgid "Next Command\tAlt-Down" msgstr "下一個命令\tAlt-Down" #: ../src/wxMaxima.cpp:2209 ../src/wxMaxima.cpp:2225 msgid "No matches found!" msgstr "找不到匹配的項目!" #: ../src/wxMaximaFrame.cpp:1022 msgid "Normality Test..." msgstr "常態分布檢驗..." #: ../src/wxMaxima.cpp:2642 msgid "Not a valid matrix dimension!" msgstr "這不是有效的矩陣大小!" #: ../src/wxMaxima.cpp:2507 ../src/wxMaxima.cpp:2531 msgid "Not a valid number of equations!" msgstr "這不是有效的數字或方程式!" #: ../src/wxMaxima.cpp:3494 msgid "Not connected." msgstr "未連線" #: ../src/wxMaxima.cpp:2924 msgid "Num. deg:" msgstr "分子 degree:" #: ../src/wxMaxima.cpp:2499 ../src/wxMaxima.cpp:2523 msgid "Number of equations:" msgstr "方程式數量:" #: ../src/Config.cpp:353 msgid "Numbers" msgstr "數字" #: ../src/SubstituteWiz.cpp:39 ../src/SubstituteWiz.cpp:43 #: ../src/PlotFormatWiz.cpp:40 ../src/PlotFormatWiz.cpp:44 #: ../src/SeriesWiz.cpp:47 ../src/SeriesWiz.cpp:51 ../src/BC2Wiz.cpp:43 #: ../src/BC2Wiz.cpp:47 ../src/Gen1Wiz.cpp:33 ../src/Gen1Wiz.cpp:37 #: ../src/Plot2dWiz.cpp:100 ../src/Plot2dWiz.cpp:104 ../src/Plot2dWiz.cpp:560 #: ../src/Plot2dWiz.cpp:564 ../src/Plot2dWiz.cpp:655 ../src/Plot2dWiz.cpp:659 #: ../src/SumWiz.cpp:46 ../src/SumWiz.cpp:50 ../src/IntegrateWiz.cpp:58 #: ../src/IntegrateWiz.cpp:62 ../src/SystemWiz.cpp:36 ../src/SystemWiz.cpp:40 #: ../src/MatWiz.cpp:38 ../src/MatWiz.cpp:42 ../src/MatWiz.cpp:187 #: ../src/MatWiz.cpp:191 ../src/Gen4Wiz.cpp:54 ../src/Gen4Wiz.cpp:58 #: ../src/Gen3Wiz.cpp:48 ../src/Gen3Wiz.cpp:52 ../src/Plot3dWiz.cpp:102 #: ../src/Plot3dWiz.cpp:106 ../src/Gen2Wiz.cpp:41 ../src/Gen2Wiz.cpp:45 #: ../src/LimitWiz.cpp:50 ../src/LimitWiz.cpp:54 msgid "OK" msgstr "確認" #: ../src/SubstituteWiz.cpp:30 msgid "Old value:" msgstr "舊值:" #: ../src/wxMaxima.cpp:2906 ../src/wxMaxima.cpp:3032 ../src/wxMaxima.cpp:3049 msgid "Old variable:" msgstr "舊變數:" #: ../src/wxMaxima.cpp:3651 msgid "One sample t-test" msgstr "單樣本 t-檢驗" #: ../src/wxMaximaFrame.cpp:663 msgid "Online tutorials" msgstr "線上教材" #: ../src/Config.cpp:306 ../src/main.cpp:202 ../src/wxMaxima.cpp:1930 #: ../src/wxMaximaFrame.cpp:710 ../src/wxMaximaFrame.cpp:774 msgid "Open" msgstr "開啟" #: ../src/wxMaximaFrame.cpp:194 msgid "Open Recent" msgstr "最近開啟的文件" #: ../src/Config.cpp:269 msgid "Open a cell when Maxima expects input" msgstr "當 Maxima 期望輸入時新增單元" #: ../src/wxMaximaFrame.cpp:192 msgid "Open a document" msgstr "開啟文件" #: ../src/wxMaximaFrame.cpp:186 ../src/wxMaximaFrame.cpp:189 msgid "Open a new window" msgstr "開新視窗" #: ../src/wxMaximaFrame.cpp:712 ../src/wxMaximaFrame.cpp:777 msgid "Open document" msgstr "開啟文件" #: ../src/wxMaxima.cpp:3712 msgid "Open matrix" msgstr "開啟矩陣" #: ../src/wxMaxima.cpp:964 ../src/wxMaxima.cpp:1031 msgid "Opening file" msgstr "正在開啟檔案" #: ../src/Config.cpp:97 ../src/wxMaximaFrame.cpp:722 #: ../src/wxMaximaFrame.cpp:789 msgid "Options" msgstr "選項" #: ../src/Plot2dWiz.cpp:81 ../src/Plot3dWiz.cpp:80 msgid "Options:" msgstr "選項:" #: ../src/Config.cpp:373 msgid "Outdated cells" msgstr "過時的單元" #: ../src/Config.cpp:361 msgid "Output labels" msgstr "輸出標籤" #: ../src/wxMaximaFrame.cpp:494 msgid "P&ade Approximation..." msgstr "Pade 近似(&A)..." #: ../src/wxMaxima.cpp:2099 ../src/wxMaxima.cpp:3978 msgid "" "PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*." "bmp|X pixmap (*.xpm)|*.xpm" msgstr "" "PNG (*.png)|*.png|JPEG (*.jpg)|*.jpg|Windows 點陣圖 (*.bmp)|*.bmp|X pixmap " "(*.xpm)|*.xpm" #: ../src/wxMaxima.cpp:2926 msgid "Pade approximation" msgstr "Pade 近似" #: ../src/wxMaximaFrame.cpp:495 msgid "Pade approximation of a Taylor series" msgstr "計算 Taylor 級數的 Pade 近似" #: ../src/wxMaximaFrame.cpp:1069 msgid "Pagebreak" msgstr "換頁符號" #: ../src/wxMaximaFrame.cpp:339 msgid "Panes" msgstr "窗格" #: ../src/Plot2dWiz.cpp:447 ../src/Plot2dWiz.cpp:573 msgid "Parametric plot" msgstr "參數式繪圖" #: ../src/wxMaxima.cpp:319 msgid "Parsing output" msgstr "解析輸出中" #: ../src/wxMaximaFrame.cpp:517 msgid "Partial &Fractions..." msgstr "部分分式(&F)..." #: ../src/wxMaxima.cpp:2990 msgid "Partial fractions" msgstr "部分分式" #: ../src/wxMaxima.cpp:1154 ../src/MathParser.cpp:961 msgid "Parts of the document will not be loaded correctly!" msgstr "文件的某部分將無法被正確的讀取!" #: ../src/MathCtrl.cpp:719 ../src/MathCtrl.cpp:733 #: ../src/wxMaximaFrame.cpp:732 ../src/wxMaximaFrame.cpp:802 msgid "Paste" msgstr "貼上" #: ../src/wxMaximaFrame.cpp:246 msgid "Paste\tCtrl-V" msgstr "貼上\tCtrl-V" #: ../src/wxMaximaFrame.cpp:734 ../src/wxMaximaFrame.cpp:805 msgid "Paste from clipboard" msgstr "從剪貼簿貼上" #: ../src/wxMaximaFrame.cpp:247 msgid "Paste text from clipboard" msgstr "從剪貼簿貼上文字" #: ../src/wxMaximaFrame.cpp:1031 msgid "Piechart..." msgstr "圓餅圖..." #: ../src/wxMaxima.cpp:1426 msgid "Please configure wxMaxima with 'Edit->Configure'." msgstr "請從「編輯(E)」->「設定(O)」設定 wxMaxima" #: ../src/Config.cpp:934 msgid "Please restart wxMaxima for changes to take effect!" msgstr "請重新啟動 wxMaxima 使變更生效!" #: ../src/wxMaximaFrame.cpp:621 msgid "Plot &2d..." msgstr "二維繪圖(&2)..." #: ../src/wxMaximaFrame.cpp:623 msgid "Plot &3d..." msgstr "三維繪圖(&3)..." #: ../src/wxMaximaFrame.cpp:625 msgid "Plot &Format..." msgstr "繪圖格式(&F)..." #: ../src/Plot2dWiz.cpp:116 ../src/Plot2dWiz.cpp:462 ../src/Plot2dWiz.cpp:476 #: ../src/wxMaxima.cpp:3197 ../src/wxMaxima.cpp:3947 msgid "Plot 2D" msgstr "二維繪圖" #: ../src/wxMaximaFrame.cpp:985 msgid "Plot 2D..." msgstr "二維繪圖..." #: ../src/MathCtrl.cpp:712 msgid "Plot 2d..." msgstr "二維繪圖..." #: ../src/wxMaxima.cpp:3183 ../src/wxMaxima.cpp:3960 ../src/Plot3dWiz.cpp:118 msgid "Plot 3D" msgstr "三維繪圖" #: ../src/wxMaximaFrame.cpp:986 msgid "Plot 3D..." msgstr "三維繪圖..." #: ../src/MathCtrl.cpp:713 msgid "Plot 3d..." msgstr "三維繪圖..." #: ../src/wxMaxima.cpp:3210 msgid "Plot format" msgstr "繪圖格式" #: ../src/wxMaximaFrame.cpp:622 msgid "Plot in 2 dimensions" msgstr "二維繪圖" #: ../src/wxMaximaFrame.cpp:624 msgid "Plot in 3 dimensions" msgstr "三維繪圖" #: ../src/Plot3dWiz.cpp:94 msgid "Plot to file:" msgstr "繪圖存檔:" #: ../src/SeriesWiz.cpp:38 ../src/BC2Wiz.cpp:29 ../src/BC2Wiz.cpp:35 #: ../src/wxMaxima.cpp:2439 ../src/wxMaxima.cpp:2454 ../src/wxMaxima.cpp:2562 #: ../src/LimitWiz.cpp:32 msgid "Point:" msgstr "點:" #: ../src/Config.cpp:250 msgid "Polish" msgstr "Polish" #: ../src/wxMaxima.cpp:2943 ../src/wxMaxima.cpp:2958 ../src/wxMaxima.cpp:2973 msgid "Polynomial 1:" msgstr "多項式 1:" #: ../src/wxMaxima.cpp:2943 ../src/wxMaxima.cpp:2958 ../src/wxMaxima.cpp:2973 msgid "Polynomial 2:" msgstr "多項式 2:" #: ../src/Config.cpp:251 msgid "Portuguese (Brazilian)" msgstr "Portuguese (Brazilian)" #: ../src/Plot2dWiz.cpp:515 ../src/Plot3dWiz.cpp:461 msgid "Postscript file (*.eps)|*.eps|All|*" msgstr "Postscript 檔 (*.eps)|*.eps|所有類型|*" #: ../src/wxMaxima.cpp:3250 msgid "Precision" msgstr "精確度" #: ../src/wxMaximaFrame.cpp:280 msgid "Preferences...\tCTRL+," msgstr "偏好設定...\tCTRL+," #: ../src/wxMaximaFrame.cpp:319 msgid "Previous Command\tAlt-Up" msgstr "上一個命令\tAlt-Up" #: ../src/wxMaximaFrame.cpp:718 ../src/wxMaximaFrame.cpp:784 msgid "Print" msgstr "列印" #: ../src/wxMaximaFrame.cpp:213 ../src/wxMaximaFrame.cpp:720 #: ../src/wxMaximaFrame.cpp:787 msgid "Print document" msgstr "列印文件" #: ../src/wxMaxima.cpp:3156 msgid "Product" msgstr "乘積" #: ../src/wxMaximaFrame.cpp:1036 msgid "Read Matrix..." msgstr "讀取矩陣..." #: ../src/wxMaxima.cpp:550 msgid "Reading Maxima output" msgstr "正在讀取 Maxima 的輸出" #: ../src/wxMaxima.cpp:363 ../src/wxMaxima.cpp:821 ../src/wxMaxima.cpp:954 #: ../src/wxMaxima.cpp:976 ../src/wxMaxima.cpp:987 ../src/wxMaxima.cpp:1024 #: ../src/wxMaxima.cpp:1047 ../src/wxMaxima.cpp:1059 ../src/wxMaxima.cpp:1080 #: ../src/wxMaxima.cpp:1126 ../src/wxMaxima.cpp:1346 ../src/wxMaxima.cpp:1367 msgid "Ready for user input" msgstr "準備就緒" #: ../src/wxMaximaFrame.cpp:322 msgid "Recall next command from history" msgstr "呼叫歷史記錄中的下一個命令" #: ../src/wxMaximaFrame.cpp:320 msgid "Recall previous command from history" msgstr "呼叫歷史紀錄中的上一個命令" #: ../src/wxMaximaFrame.cpp:973 msgid "Rectform" msgstr "直角坐標形式" #: ../src/wxMaximaFrame.cpp:226 msgid "Redo\tCtrl-Shift-Z" msgstr "重作\tCtrl-Shift-Z" #: ../src/wxMaximaFrame.cpp:227 msgid "Redo last change" msgstr "重作上次的變更" #: ../src/wxMaximaFrame.cpp:978 msgid "Reduce (tr)" msgstr "縮併 (三角)" #: ../src/wxMaximaFrame.cpp:569 msgid "Reduce trigonometric expression" msgstr "縮併三角函數數式" #: ../src/wxMaximaFrame.cpp:294 msgid "Remove All Output" msgstr "移除所有輸出" #: ../src/wxMaximaFrame.cpp:295 msgid "Remove output from input cells" msgstr "移除所有輸入單元的輸出" #: ../src/wxMaxima.cpp:2232 #, c-format msgid "Replaced %d occurences." msgstr "找到 %d 個並取代。" #: ../src/wxMaximaFrame.cpp:668 msgid "Report bug" msgstr "回報發現的錯誤" #: ../src/wxMaximaFrame.cpp:354 msgid "Restart Maxima" msgstr "重新啟動 Maxima" #: ../src/wxMaximaFrame.cpp:477 msgid "Risch Integration..." msgstr "Risch 積分..." #: ../src/wxMaximaFrame.cpp:392 msgid "Roots of &Polynomial" msgstr "找多項式所有的根(&P)" #: ../src/wxMaximaFrame.cpp:395 msgid "Roots of Polynomial (bfloat)" msgstr "找多項式所有的根(長浮點數)" #: ../src/MatWiz.cpp:164 msgid "Rows:" msgstr "列:" #: ../src/Config.cpp:252 msgid "Russian" msgstr "Russian" #: ../src/wxMaxima.cpp:3664 msgid "Sample 1:" msgstr "樣本 1:" #: ../src/wxMaxima.cpp:3664 msgid "Sample 2:" msgstr "樣本 2:" #: ../src/wxMaxima.cpp:3650 msgid "Sample:" msgstr "樣本:" #: ../src/Config.cpp:387 ../src/wxMaxima.cpp:4432 ../src/wxMaximaFrame.cpp:713 #: ../src/wxMaximaFrame.cpp:778 msgid "Save" msgstr "儲存" #: ../src/MathCtrl.cpp:663 msgid "Save Animation..." msgstr "儲存動畫..." #: ../src/wxMaxima.cpp:1844 msgid "Save As" msgstr "另存新檔" #: ../src/wxMaximaFrame.cpp:202 msgid "Save As...\tShift-Ctrl-S" msgstr "另存新檔...\tShift-Ctrl-S" #: ../src/MathCtrl.cpp:661 msgid "Save Image..." msgstr "儲存圖片..." #: ../src/wxMaxima.cpp:2097 msgid "Save Selection to Image" msgstr "儲存所選區域為圖片" #: ../src/wxMaximaFrame.cpp:256 msgid "Save Selection to Image..." msgstr "儲存為圖片..." #: ../src/wxMaxima.cpp:3992 msgid "Save animation to file" msgstr "儲存動畫至檔案" #: ../src/wxMaxima.cpp:4444 msgid "Save changes before closing?" msgstr "於關閉前儲存所做的修改?" #: ../src/wxMaxima.cpp:4445 msgid "Save changes?" msgstr "儲存您所做的修改?" #: ../src/wxMaximaFrame.cpp:201 ../src/wxMaximaFrame.cpp:715 #: ../src/wxMaximaFrame.cpp:781 msgid "Save document" msgstr "儲存文件" #: ../src/wxMaximaFrame.cpp:203 msgid "Save document as" msgstr "將文件另存新檔" #: ../src/Config.cpp:261 msgid "Save panes layout" msgstr "儲存窗格配置" #: ../src/Config.cpp:125 msgid "Save panes layout between sessions." msgstr "儲存工作階段間的窗格配置" #: ../src/Plot2dWiz.cpp:513 ../src/Plot3dWiz.cpp:459 msgid "Save plot to file" msgstr "儲存繪圖至檔案" #: ../src/wxMaximaFrame.cpp:257 msgid "Save selection from document to an image file" msgstr "儲存所選區域為圖片檔" #: ../src/wxMaxima.cpp:3976 msgid "Save selection to file" msgstr "儲存選取區域至檔案" #: ../src/Config.cpp:1064 msgid "Save style to file" msgstr "將樣式儲存至檔案" #: ../src/Config.cpp:260 msgid "Save wxMaxima window size/position" msgstr "儲存 wxMaxima 視窗的大小及位置" #: ../src/Config.cpp:124 msgid "Save wxMaxima window size/position between sessions." msgstr "儲存工作階段間 wxMaxima 視窗的大小及位置" #: ../src/wxMaxima.cpp:3587 msgid "Scatterplot" msgstr "散布圖" #: ../src/wxMaximaFrame.cpp:1029 msgid "Scatterplot..." msgstr "散布圖..." #: ../src/wxMaximaFrame.cpp:1067 msgid "Section" msgstr "章節" #: ../src/Config.cpp:365 msgid "Section cell" msgstr "章節單元" #: ../src/MathCtrl.cpp:720 ../src/MathCtrl.cpp:735 msgid "Select All" msgstr "全部選取" #: ../src/wxMaximaFrame.cpp:253 msgid "Select All\tCtrl-A" msgstr "全部選取\tCtrl-A" #: ../src/Config.cpp:472 ../src/Config.cpp:477 msgid "Select Maxima program" msgstr "選擇 Maxima 程式" #: ../src/wxMaxima.cpp:3748 msgid "Select Subsample" msgstr "選取子樣本" #: ../src/SeriesWiz.cpp:108 ../src/IntegrateWiz.cpp:218 #: ../src/IntegrateWiz.cpp:237 ../src/LimitWiz.cpp:134 msgid "Select a constant" msgstr "選擇常數" #: ../src/wxMaximaFrame.cpp:254 msgid "Select all" msgstr "全部選取" #: ../src/wxMaxima.cpp:2265 msgid "Select math display algorithm" msgstr "選擇用於顯示數學的演算法" #: ../data/tips.txt:13 msgid "" "Selecting a part of output and right-clicking on the selection will bring up " "a menu with convenient functions that will operate on the selection." msgstr "" "選取輸出並點擊右鍵會顯示功能表,其中含有一些供您方便操作所選區域的函數。" #: ../src/Config.cpp:372 msgid "Selection" msgstr "所選區域" #: ../src/SeriesWiz.cpp:61 ../src/wxMaxima.cpp:3092 msgid "Series" msgstr "級數" #: ../src/wxMaximaFrame.cpp:984 msgid "Series..." msgstr "級數..." #: ../src/wxMaxima.cpp:649 msgid "Server started" msgstr "伺服器已啟動" #: ../src/wxMaximaFrame.cpp:639 msgid "Set &Precision..." msgstr "設定精確度(&P)..." #: ../src/wxMaximaFrame.cpp:274 msgid "Set Zoom" msgstr "顯示比例" #: ../src/wxMaximaFrame.cpp:640 msgid "Set bigfloat precision" msgstr "設定 bigfloat 的精確度" #: ../src/Config.cpp:129 msgid "Set fixed font in text controls." msgstr "在文字控制項中使用等寬字型" #: ../src/wxMaximaFrame.cpp:626 msgid "Set plot format" msgstr "設定繪圖格式" #: ../src/wxMaximaFrame.cpp:268 msgid "Set zoom to 100%" msgstr "將顯示比例設定為 100%" #: ../src/wxMaximaFrame.cpp:269 msgid "Set zoom to 120%" msgstr "將顯示比例設定為 120%" #: ../src/wxMaximaFrame.cpp:270 msgid "Set zoom to 150%" msgstr "將顯示比例設定為 150%" #: ../src/wxMaximaFrame.cpp:271 msgid "Set zoom to 200%" msgstr "將顯示比例設定為 200%" #: ../src/wxMaximaFrame.cpp:272 msgid "Set zoom to 300%" msgstr "將顯示比例設定為 300%" #: ../src/wxMaximaFrame.cpp:267 msgid "Set zoom to 80%" msgstr "將顯示比例設定為 80%" #: ../src/wxMaximaFrame.cpp:430 msgid "Setup atvalues for solving ODE with Laplace transformation" msgstr "在使用 Laplace 變換解常微分方程前將定點設值" #: ../src/wxMaximaFrame.cpp:616 msgid "Setup modulus computation" msgstr "設定模運算" #: ../src/wxMaximaFrame.cpp:363 msgid "Show &Definition..." msgstr "顯示函數定義(&D)..." #: ../src/wxMaximaFrame.cpp:361 msgid "Show &Functions" msgstr "顯示函數(&F)" #: ../src/wxMaximaFrame.cpp:659 msgid "Show &Tips..." msgstr "顯示小秘訣(&T)..." #: ../src/wxMaximaFrame.cpp:366 msgid "Show &Variables" msgstr "顯示變數(&V)" #: ../src/wxMaximaFrame.cpp:648 ../src/wxMaximaFrame.cpp:651 #: ../src/wxMaximaFrame.cpp:757 ../src/wxMaximaFrame.cpp:831 msgid "Show Maxima help" msgstr "顯示 Maxima 說明" #: ../src/wxMaximaFrame.cpp:301 msgid "Show Template\tCtrl-Shift-K" msgstr "顯示範本\tCtrl-Shift-K" #: ../src/wxMaximaFrame.cpp:660 msgid "Show a tip" msgstr "顯示小秘訣" #: ../src/wxMaxima.cpp:3528 msgid "Show all commands similar to:" msgstr "顯示全部與此指令相似的指令:" #: ../src/wxMaxima.cpp:3515 msgid "Show an example for the command:" msgstr "顯示這個指令的使用範例:" #: ../src/wxMaximaFrame.cpp:654 msgid "Show an example of usage" msgstr "顯示一個使用範例" #: ../src/wxMaximaFrame.cpp:657 msgid "Show commands similar to" msgstr "顯示相似的指令" #: ../src/wxMaximaFrame.cpp:362 msgid "Show defined functions" msgstr "顯示已定義的函數" #: ../src/wxMaximaFrame.cpp:367 msgid "Show defined variables" msgstr "顯示已定義的變數" #: ../src/wxMaximaFrame.cpp:364 msgid "Show definition of a function" msgstr "顯示函數的定義" #: ../src/wxMaximaFrame.cpp:302 msgid "Show function template" msgstr "顯示函數範本" #: ../src/Config.cpp:264 msgid "Show long expressions" msgstr "顯示長的數式" #: ../src/Config.cpp:127 msgid "Show long expressions in wxMaxima document." msgstr "在 wxMaxima 文件中顯示長的數式" #: ../src/wxMaxima.cpp:2287 msgid "Show the definition of function:" msgstr "顯示該函數的定義:" #: ../src/wxMaximaFrame.cpp:969 msgid "Simplify" msgstr "化簡" #: ../src/wxMaximaFrame.cpp:529 msgid "Simplify &Radicals" msgstr "化簡根式(&R)" #: ../src/wxMaximaFrame.cpp:970 msgid "Simplify (r)" msgstr "化簡根式" #: ../src/wxMaximaFrame.cpp:976 msgid "Simplify (tr)" msgstr "化簡 (三角)" #: ../src/MathCtrl.cpp:704 msgid "Simplify Expression" msgstr "化簡數式" #: ../src/wxMaximaFrame.cpp:555 msgid "Simplify an expression containing factorials" msgstr "化簡包含階乘的數式" #: ../src/wxMaximaFrame.cpp:530 msgid "Simplify expression containing radicals" msgstr "化簡包含根號的數式" #: ../src/wxMaximaFrame.cpp:528 msgid "Simplify rational expression" msgstr "化簡有理數式" #: ../src/SumWiz.cpp:69 msgid "Simplify the sum" msgstr "化簡此加總" #: ../src/wxMaximaFrame.cpp:566 msgid "Simplify trigonometric expression" msgstr "化簡三角函數數式" #: ../data/tips.txt:22 msgid "" "Since wxMaxima 0.8.2 you can also insert images into your documents. Use " "'Cell->Insert Image...' menu command. Note that you have to save your " "document in 'wxMaxima XML document' format if you want the image to be saved " "along with your document." msgstr "" "自 wxMaxima 0.8.2 版開始您可以使用「單元(C)」->「插入圖片...」功能表在文件中" "插入圖片。請注意:若您希望將圖片與文件一起儲存,您必須將您的文件儲存為 " "「wxMaxima XML 文件」。" #: ../src/BC2Wiz.cpp:26 ../src/wxMaxima.cpp:2439 ../src/wxMaxima.cpp:2454 msgid "Solution:" msgstr "一般解:" #: ../src/wxMaxima.cpp:2375 ../src/wxMaxima.cpp:2389 ../src/wxMaxima.cpp:3865 msgid "Solve" msgstr "求解" #: ../src/wxMaximaFrame.cpp:404 msgid "Solve &Algebraic System..." msgstr "解代數系統(&A)..." #: ../src/wxMaximaFrame.cpp:401 msgid "Solve &Linear System..." msgstr "解線性系統(&L)..." #: ../src/wxMaximaFrame.cpp:412 msgid "Solve &ODE..." msgstr "解常微分方程(&O)..." #: ../src/wxMaximaFrame.cpp:388 msgid "Solve (to_poly)..." msgstr "求解 (to_poly)..." #: ../src/wxMaxima.cpp:2425 ../src/wxMaxima.cpp:2549 msgid "Solve ODE" msgstr "解常微分方程" #: ../src/wxMaximaFrame.cpp:426 msgid "Solve ODE with Lapla&ce..." msgstr "以 Laplace 變換解常微分方程(&C)..." #: ../src/wxMaximaFrame.cpp:980 msgid "Solve ODE..." msgstr "解常微分方程..." #: ../src/wxMaxima.cpp:2500 ../src/wxMaxima.cpp:2511 msgid "Solve algebraic system" msgstr "解代數系統" #: ../src/wxMaximaFrame.cpp:405 msgid "Solve algebraic system of equations" msgstr "解代數方程組" #: ../src/wxMaximaFrame.cpp:423 msgid "Solve boundary value problem for second degree ODE" msgstr "解 2 階常微分方程的邊界值問題" #: ../src/wxMaximaFrame.cpp:387 msgid "Solve equation(s)" msgstr "解方程式" #: ../src/wxMaximaFrame.cpp:389 msgid "Solve equation(s) with to_poly_solver" msgstr "使用 to_poly_solve 解方程式" #: ../src/wxMaximaFrame.cpp:417 msgid "Solve initial value problem for first degree ODE" msgstr "解 1 階常微分方程的初始值問題" #: ../src/wxMaximaFrame.cpp:420 msgid "Solve initial value problem for second degree ODE" msgstr "解 2 階常微分方程的初始值問題" #: ../src/wxMaxima.cpp:2524 ../src/wxMaxima.cpp:2535 msgid "Solve linear system" msgstr "解線性系統" #: ../src/wxMaximaFrame.cpp:402 msgid "Solve linear system of equations" msgstr "解線性方程組" #: ../src/wxMaximaFrame.cpp:413 msgid "Solve ordinary differential equation of maximum degree 2" msgstr "解常微分方程式 (最大 2 階)" #: ../src/wxMaximaFrame.cpp:427 msgid "Solve ordinary differential equations with Laplace transformation" msgstr "以 Laplace 變換解常微分方程式" #: ../src/MathCtrl.cpp:701 ../src/wxMaximaFrame.cpp:979 msgid "Solve..." msgstr "求解..." #: ../src/Config.cpp:253 msgid "Spanish" msgstr "Spanish" #: ../src/SeriesWiz.cpp:41 ../src/IntegrateWiz.cpp:46 #: ../src/IntegrateWiz.cpp:50 ../src/LimitWiz.cpp:35 msgid "Special" msgstr "特殊" #: ../src/Config.cpp:355 msgid "Special constants" msgstr "特殊常數" #: ../src/MathCtrl.cpp:664 msgid "Start Animation" msgstr "開始動畫" #: ../src/wxMaximaFrame.cpp:744 ../src/wxMaximaFrame.cpp:746 msgid "Start animation" msgstr "開始動畫" #: ../src/wxMaxima.cpp:265 msgid "Starting Maxima process failed" msgstr "Maxima 程序啟動失敗" #: ../src/wxMaxima.cpp:727 msgid "Starting Maxima..." msgstr "Maxima 啟動中..." #: ../src/wxMaxima.cpp:263 ../src/wxMaxima.cpp:646 msgid "Starting server failed" msgstr "伺服器啟動失敗" #: ../src/wxMaxima.cpp:627 #, c-format msgid "Starting server on port %d" msgstr "於 %d埠啟動伺服器" #: ../src/wxMaximaFrame.cpp:123 msgid "Statistics" msgstr "統計" #: ../src/wxMaximaFrame.cpp:334 msgid "Statistics\tAlt-Shift-S" msgstr "統計\tAlt-Shift-S" #: ../src/wxMaximaFrame.cpp:747 ../src/wxMaximaFrame.cpp:749 #: ../src/wxMaximaFrame.cpp:820 msgid "Stop animation" msgstr "停止動畫" #: ../src/Config.cpp:357 msgid "Strings" msgstr "字串" #: ../src/Config.cpp:99 msgid "Style" msgstr "樣式" #: ../src/Config.cpp:331 msgid "Styles" msgstr "樣式" #: ../src/wxMaximaFrame.cpp:1041 msgid "Subsample..." msgstr "子樣本..." #: ../src/wxMaximaFrame.cpp:1066 msgid "Subsection" msgstr "子章節" #: ../src/Config.cpp:364 msgid "Subsection cell" msgstr "子章節單元" #: ../src/wxMaximaFrame.cpp:974 msgid "Subst..." msgstr "代換" #: ../src/SubstituteWiz.cpp:53 ../src/wxMaxima.cpp:2337 #: ../src/wxMaxima.cpp:3934 msgid "Substitute" msgstr "代換" #: ../src/MathCtrl.cpp:707 ../src/wxMaximaFrame.cpp:604 msgid "Substitute..." msgstr "代換..." #: ../src/SumWiz.cpp:61 ../src/wxMaxima.cpp:3140 msgid "Sum" msgstr "加總" #: ../src/wxMaxima.cpp:3364 msgid "System info" msgstr "系統資訊" #: ../src/wxMaxima.cpp:2924 msgid "Taylor series:" msgstr "Taylor 級數:" #: ../src/wxMaxima.cpp:2877 msgid "Tellrat" msgstr "Tellrat 函數" #: ../src/wxMaximaFrame.cpp:1064 msgid "Text" msgstr "文字" #: ../src/Config.cpp:363 msgid "Text cell" msgstr "文字單元" #: ../src/Config.cpp:367 msgid "Text cell background" msgstr "文字單元背景" #: ../src/Config.cpp:133 msgid "The default port used for communication between Maxima and wxMaxima." msgstr "供 Maxima 與 wxMaxima 溝通的預設埠" #: ../data/tips.txt:9 msgid "" "There are many resources about Maxima and wxMaxima on the internet. Visit " "http://wxmaxima.sourceforge.net/wiki/index.php/Tutorials to get more " "information about using wxMaxima and Maxima." msgstr "" "在網路上有許多關於 Maxima 與 wxMaxima 的資源。請造訪 http://wxmaxima." "sourceforge.net/wiki/index.php/Tutorials 以獲得更多 wxMaxima 與 Maxima 的相關" "資訊。" #: ../src/wxMaxima.cpp:393 msgid "" "There was an error in generated XML!\n" "\n" "Please report this as a bug." msgstr "" "在所產生的 XML 中發現錯誤!\n" "\n" "請回報此錯誤。" #: ../src/SlideShowCell.cpp:289 msgid "" "There was and error during GIF export!\n" "\n" "Make sure ImageMagick is installed and wxMaxima can find the convert program." msgstr "" "在匯出成 GIF 時發生錯誤!\n" "\n" "請確認您已安裝 ImageMagick 且 wxMaxima 可找到該程式。" #: ../src/Plot2dWiz.cpp:66 ../src/Plot2dWiz.cpp:554 msgid "Ticks:" msgstr "描繪密度:" #: ../src/wxMaxima.cpp:3067 ../src/wxMaxima.cpp:3910 msgid "Times:" msgstr "次數:" #: ../src/MyTipProvider.cpp:43 msgid "Tips not available, sorry!" msgstr "抱歉,小秘訣無法顯示!" #: ../src/wxMaximaFrame.cpp:1065 msgid "Title" msgstr "標題" #: ../src/Config.cpp:366 msgid "Title cell" msgstr "標題單元" #: ../data/tips.txt:7 msgid "" "Title, section and subsection cells can be folded to hide their contents. To " "fold or unfold, click in the square next to the cell. If you shift-click, " "all sublevels of that cell will also fold/unfold." msgstr "" "標題單元、章節單元和子章節單元可被折疊並隱藏它們的內容。欲折疊或取消折疊,點" "擊該單元左側的小正方形。如果您按住 Shift 鍵並點擊小正方形,所有該單元中的子單" "元也會跟著折疊或取消折疊。" #: ../src/wxMaximaFrame.cpp:636 msgid "To &Bigfloat" msgstr "計算長浮點數(&B)" #: ../src/wxMaximaFrame.cpp:633 msgid "To &Float" msgstr "計算浮點數(&F)" #: ../src/MathCtrl.cpp:699 msgid "To Float" msgstr "計算浮點數" #: ../data/tips.txt:17 msgid "" "To plot in polar coordinates, select 'set polar' in the Options entry for " "Plot2d dialog. You can also plot in spherical and cylindrical coordinates in " "3D." msgstr "" "欲在極座標上繪圖,在二維繪圖對話視窗的「選項」中選擇 \"set polar\" 。您也可以" "在三維繪圖中在球座標或柱座標上繪圖。" #: ../data/tips.txt:19 msgid "" "To put parenthesis around an expression, select it, and press '(' or ')' " "depending on where you want the cursor to appear afterwards." msgstr "" "欲在數式外側加上括號,請先選取它,再依照您想要游標出現的位置按「(」或「)」。" #: ../data/tips.txt:21 msgid "" "To save the size and position of wxMaxima windows between session, use 'Edit-" ">Configure' dialog." msgstr "" "欲儲存工作階段之間 wxMaxima 視窗的大小及位置,請從「編輯(E)」->「設定(O)」變" "更。" #: ../data/tips.txt:1 msgid "" "To start using wxMaxima right away, start typing your command. An input cell " "should appear. Then press Shift-Enter to evaluate your command." msgstr "" "欲立即使用 wxMaxima,請開始輸入命令,此時應該會出現一個輸入單元,然後按 " "Shift-Enter 鍵評算您的命令。" #: ../src/Plot2dWiz.cpp:52 ../src/Plot2dWiz.cpp:62 ../src/Plot2dWiz.cpp:551 #: ../src/SumWiz.cpp:39 ../src/wxMaxima.cpp:2733 ../src/wxMaxima.cpp:3155 #: ../src/IntegrateWiz.cpp:47 ../src/Plot3dWiz.cpp:49 ../src/Plot3dWiz.cpp:58 msgid "To:" msgstr "到:" #: ../src/wxMaximaFrame.cpp:610 msgid "Toggle &Algebraic Flag" msgstr "切換代數旗標(&A)" #: ../src/wxMaximaFrame.cpp:631 msgid "Toggle &Numeric Output" msgstr "切換數值輸出(&N)" #: ../src/wxMaximaFrame.cpp:374 msgid "Toggle &Time Display" msgstr "切換計算時間顯示(&T)" #: ../src/wxMaximaFrame.cpp:611 msgid "Toggle algebraic flag" msgstr "切換代數旗標" #: ../src/wxMaximaFrame.cpp:276 msgid "Toggle full screen editing" msgstr "切換全螢幕編輯模式" #: ../src/wxMaximaFrame.cpp:632 msgid "Toggle numeric output" msgstr "切換數值輸出/數式輸出" #: ../src/wxMaximaFrame.cpp:338 msgid "Toolbar\tAlt-Shift-T" msgstr "工具列\tAlt-Shift-T" #: ../src/wxMaxima.cpp:3376 msgid "Toolbar icons" msgstr "工具列圖示" #: ../src/wxMaxima.cpp:3377 msgid "Translated by" msgstr "翻譯者" #: ../src/wxMaximaFrame.cpp:461 msgid "Transpose a matrix" msgstr "計算轉置矩陣" #: ../src/wxMaximaFrame.cpp:662 msgid "Tutorials" msgstr "教材" #: ../src/wxMaxima.cpp:3666 msgid "Two sample t-test" msgstr "雙樣本 t-檢驗" #: ../src/MatWiz.cpp:170 msgid "Type:" msgstr "類型:" #: ../src/Config.cpp:254 msgid "Ukrainian" msgstr "Ukrainian" #: ../src/Config.cpp:384 msgid "Underlined" msgstr "底線" #: ../src/wxMaximaFrame.cpp:223 msgid "Undo\tCtrl-Z" msgstr "復原\tCtrl-Z" #: ../src/wxMaximaFrame.cpp:224 msgid "Undo last change" msgstr "復原上次的變更" #: ../src/wxMaxima.cpp:3366 msgid "Unicode Support" msgstr "支援 Unicode" #: ../src/wxMaxima.cpp:4359 ../src/wxMaxima.cpp:4366 msgid "Upgrade" msgstr "升級" #: ../src/wxMaxima.cpp:2405 ../src/wxMaxima.cpp:3879 msgid "Upper bound:" msgstr "上界:" #: ../src/SumWiz.cpp:70 msgid "Use Gosper algorithm" msgstr "使用 Gosper 演算法" #: ../src/Config.cpp:132 ../src/Config.cpp:265 msgid "Use centered dot character for multiplication" msgstr "用圓點符號表示乘法" #: ../src/Config.cpp:348 msgid "Use jsMath fonts" msgstr "使用 jsMath 字型" #: ../src/BC2Wiz.cpp:32 ../src/BC2Wiz.cpp:38 ../src/wxMaxima.cpp:2439 #: ../src/wxMaxima.cpp:2455 ../src/wxMaxima.cpp:2563 msgid "Value:" msgstr "值:" #: ../src/wxMaxima.cpp:2374 ../src/wxMaxima.cpp:2388 ../src/wxMaxima.cpp:3066 #: ../src/wxMaxima.cpp:3864 ../src/wxMaxima.cpp:3909 msgid "Variable(s):" msgstr "變數:" #: ../src/SeriesWiz.cpp:35 ../src/Plot2dWiz.cpp:46 ../src/Plot2dWiz.cpp:56 #: ../src/Plot2dWiz.cpp:545 ../src/SumWiz.cpp:33 ../src/wxMaxima.cpp:2404 #: ../src/wxMaxima.cpp:2423 ../src/wxMaxima.cpp:2663 ../src/wxMaxima.cpp:2732 #: ../src/wxMaxima.cpp:2988 ../src/wxMaxima.cpp:3003 ../src/wxMaxima.cpp:3154 #: ../src/wxMaxima.cpp:3878 ../src/IntegrateWiz.cpp:39 ../src/Plot3dWiz.cpp:43 #: ../src/Plot3dWiz.cpp:52 ../src/LimitWiz.cpp:29 msgid "Variable:" msgstr "變數:" #: ../src/Config.cpp:352 msgid "Variables" msgstr "變數" #: ../src/wxMaxima.cpp:2485 ../src/wxMaxima.cpp:3120 ../src/wxMaxima.cpp:3695 #: ../src/SystemWiz.cpp:72 msgid "Variables:" msgstr "變數:" #: ../src/wxMaximaFrame.cpp:1015 msgid "Variance..." msgstr "變異數..." #: ../src/wxMaxima.cpp:1087 ../src/wxMaxima.cpp:1154 ../src/wxMaxima.cpp:1424 #: ../src/MathParser.cpp:961 msgid "Warning" msgstr "警告" #: ../src/wxMaximaFrame.cpp:100 msgid "Welcome to wxMaxima" msgstr "歡迎使用 wxMaxima" #: ../data/tips.txt:20 msgid "" "When applying functions with one argument from menus, the default argument " "is '%'. To apply the function to some other value, select it in the document " "before executing a menu command." msgstr "" "當您從功能表使用只有一個引數的函數時,預設的引數是「%」。欲使用其他的值作為引" "數,請在執行功能表命令前從文件中選取該值。" #: ../src/wxMaxima.cpp:2678 ../src/wxMaxima.cpp:2697 msgid "Width:" msgstr "寬:" #: ../src/Config.cpp:126 msgid "Write matching parenthesis in text controls." msgstr "在文字控制項輸入時插入匹配的括弧" #: ../src/wxMaxima.cpp:3373 msgid "Written by" msgstr "作者" #: ../data/tips.txt:4 msgid "" "You can access the last output using the variable '%'. You can access the " "output of previous commands using variables '%on' where n is the number of " "output." msgstr "" "您可以使用「%」存取最後一筆輸出。您也可以使用「%on」(n是輸出的編號)來存取先前" "命令的輸出。" #: ../data/tips.txt:15 msgid "" "You can evaluate your whole document by using 'Cell->Evaluate All Cells' " "menu command or the apropriate key shortcut. The cells will be evaluated in " "the order they appear in the document." msgstr "" "您可以使用「單元(C)」->「評算所有單元」功能表命令或該相對應的快捷鍵評算您的文" "件中的所有單元。這些單元會依照它們在文件中出現的順序評算。" #: ../data/tips.txt:10 msgid "" "You can get help on a Maxima function by selecting or clicking on the " "function name and pressing F1. wxMaxima will search help index for the " "selection or the word under the cursor." msgstr "" "您可以透過選取或點擊函數名並按 F1 取得 Maxima 函數的說明。wxMaxima 會在說明的" "索引中搜尋所選區域。" #: ../data/tips.txt:8 msgid "" "You can hide output part of cells by clicking in the triangle on the left " "side of cells. This works on text cells also." msgstr "" "您可以透過點擊單元左側的小三角形來隱藏單元的輸出部分。文字單元中也有同樣的功" "能。" #: ../data/tips.txt:5 msgid "" "You can insert different types of 'cells' in wxMaxima document using the " "'Cell' menu. Note that only 'input cells' can be evaluated, while other are " "used for commenting and structuring your calculations." msgstr "" "您可以使用「編輯(E)」->「單元(C)」功能表在 wxMaxima 文件中插入不同種類的「單" "元」。請注意:只有「輸入單元」可以被評算,其他種類的單元是用來註解或組織您的" "計算。" #: ../data/tips.txt:14 msgid "" "You can select multiple cells either with a mouse - click'n'drag from " "between cells or from a cell bracket on the left - or with a keyboard - hold " "down Shift while moving the horizontal cursor - and then operate on " "selection. This comes in handy when you want to delete or evaluate multiple " "cells." msgstr "" "您可以透過滑鼠(在單元之間或左側的單元框拖曳)或鍵盤(在移動水平游標時按住Shift" "鍵)選取多個單元,然後對所選區域操作。這在您想要刪除或評算多個單元時很有用。" #: ../src/wxMaxima.cpp:4356 #, c-format msgid "" "You have version %s. Current version is %s.\n" "\n" "Select OK to visit the wxMaxima webpage." msgstr "" "您的版本是 %s ,最新的版本是 %s 。\n" "\n" "按「確認」至 wxMaxima 首頁。" #: ../src/wxMaxima.cpp:4431 ../src/wxMaxima.cpp:4438 msgid "Your changes will be lost if you don't save them." msgstr "如果您未儲存,您所做的所有修改將遺失。" #: ../src/wxMaxima.cpp:4366 msgid "Your version of wxMaxima is up to date." msgstr "您的 wxMaxima 是最新版本" #: ../src/wxMaximaFrame.cpp:261 msgid "Zoom &In\tAlt-I" msgstr "放大(&I)\tAlt-I" #: ../src/wxMaximaFrame.cpp:263 msgid "Zoom Ou&t\tAlt-O" msgstr "縮小(&T)\tAlt-O" #: ../src/wxMaximaFrame.cpp:262 msgid "Zoom in 10%" msgstr "將顯示比例放大 10%" #: ../src/wxMaximaFrame.cpp:264 msgid "Zoom out 10%" msgstr "將顯示比例縮小 10%" #: ../src/wxMaxima.cpp:2123 ../src/wxMaxima.cpp:2131 msgid "Zoom set to " msgstr "設定顯示比例為" #: ../src/wxMaxima.cpp:4219 ../src/wxMaximaFrame.cpp:93 msgid "[ unsaved ]" msgstr "[ 未儲存 ]" #: ../src/wxMaxima.cpp:4221 msgid "[ unsaved* ]" msgstr "[ 未儲存* ]" #: ../src/MatWiz.cpp:176 msgid "antisymmetric" msgstr "反對稱" #: ../src/LimitWiz.cpp:39 ../src/LimitWiz.cpp:163 msgid "both sides" msgstr "雙邊" #: ../src/Plot2dWiz.cpp:73 ../src/Plot2dWiz.cpp:398 ../src/Plot3dWiz.cpp:72 #: ../src/Plot3dWiz.cpp:388 msgid "default" msgstr "預設值" #: ../src/MatWiz.cpp:174 msgid "diagonal" msgstr "對角" #: ../src/MatWiz.cpp:173 msgid "general" msgstr "一般" #: ../src/Plot2dWiz.cpp:74 ../src/Plot2dWiz.cpp:205 ../src/Plot2dWiz.cpp:398 #: ../src/Plot2dWiz.cpp:431 ../src/Plot3dWiz.cpp:73 ../src/Plot3dWiz.cpp:205 #: ../src/Plot3dWiz.cpp:388 ../src/Plot3dWiz.cpp:419 msgid "inline" msgstr "隨文字顯示" #: ../src/LimitWiz.cpp:40 ../src/LimitWiz.cpp:121 msgid "left" msgstr "左" #: ../src/EditorCell.cpp:331 msgid "lines hidden" msgstr "行被隱藏" #: ../src/Plot2dWiz.cpp:55 ../src/Plot2dWiz.cpp:65 msgid "logscale" msgstr "對數尺度" #: ../src/wxMaxima.cpp:2697 msgid "matrix[i,j]:" msgstr "矩陣[i,j]:" #: ../src/wxMaxima.cpp:3437 msgid "no" msgstr "否" #: ../src/LimitWiz.cpp:41 ../src/LimitWiz.cpp:123 msgid "right" msgstr "右" #: ../src/MatWiz.cpp:175 msgid "symmetric" msgstr "對稱" #: ../src/wxMaxima.cpp:4416 msgid "unsaved" msgstr "未儲存" #: ../src/wxMaxima.cpp:1839 ../src/wxMaxima.cpp:1952 #: ../src/wxMaximaFrame.cpp:95 msgid "untitled" msgstr "未命名" #: ../src/main.cpp:182 #, c-format msgid "untitled %d" msgstr "未命名 %d" #: ../src/main.cpp:167 ../src/wxMaxima.cpp:3448 msgid "wxMaxima" msgstr "wxMaxima" #: ../src/wxMaxima.cpp:4219 ../src/wxMaxima.cpp:4221 ../src/wxMaxima.cpp:4230 #: ../src/wxMaxima.cpp:4233 ../src/wxMaximaFrame.cpp:93 #, c-format msgid "wxMaxima %s " msgstr "wxMaxima %s " #: ../src/Config.cpp:90 ../src/Config.cpp:119 msgid "wxMaxima configuration" msgstr "wxMaxima 設定" #: ../src/wxMaxima.cpp:1422 msgid "" "wxMaxima could not find Maxima!\n" "\n" "Please configure wxMaxima with 'Edit->Configure'.\n" "Then start Maxima with 'Maxima->Restart Maxima'." msgstr "" "wxMaxima 找不到 Maxima!\n" "\n" "請從「編輯(E)」->「設定(O)」設定 wxMaxima\n" "然後從「Maxima(M)」->「重新啟動 Maxima(R)」啟動 Maxima" #: ../src/wxMaxima.cpp:1595 msgid "" "wxMaxima could not find help files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima 找不到說明檔案\n" "\n" "請檢查您的安裝" #: ../src/wxMaxima.cpp:1499 msgid "" "wxMaxima could not find tip files.\n" "\n" "Please check your installation." msgstr "" "wxMaxima 找不到小秘訣檔案\n" "\n" "請檢查您的安裝" #: ../src/wxMaxima.cpp:253 msgid "" "wxMaxima could not start the server.\n" "\n" "Please check you have network support\n" "enabled and try again!" msgstr "" "wxMaxima 無法啟動伺服器。\n" "\n" "請檢查您的網路支援,\n" "將其開啟並再試一次!" #: ../data/tips.txt:18 msgid "" "wxMaxima dialogs set default values for inputs entries, one of which is '%'. " "If you have made a selection in your document, the selection will be used " "instead of '%'." msgstr "" "wxMaxima 對話框會設定輸入內容為預設值,其中一種是 \"%\"。如果您已經在您的文件" "中作選取,則這個選取內容將會取代 \"%\"。" #: ../src/wxMaxima.cpp:1677 msgid "wxMaxima document" msgstr "wxMaxima 文件" #: ../src/wxMaxima.cpp:1846 msgid "" "wxMaxima document (*.wxm)|*.wxm|wxMaxima xml document (*.wxmx)|*.wxmx|Maxima " "batch file (*.mac)|*.mac" msgstr "" "wxMaxima 文件 (*.wxm)|*.wxm|wxMaxima XML 文件 (*.wxmx)|*.wxmx|Maxima 批次檔 " "(*.mac)|*.mac" #: ../src/main.cpp:204 ../src/wxMaxima.cpp:1932 msgid "wxMaxima document (*.wxm, *.wxmx)|*.wxm;*.wxmx" msgstr "wxMaxima 文件 (*.wxm, *.wxmx)|*.wxm;*.wxmx" #: ../src/wxMaxima.cpp:975 ../src/wxMaxima.cpp:986 ../src/wxMaxima.cpp:1045 #: ../src/wxMaxima.cpp:1057 msgid "wxMaxima encountered an error loading " msgstr "wxMaxima 發生讀取錯誤" #: ../src/wxMaxima.cpp:3375 msgid "wxMaxima icon" msgstr "wxMaxima 圖示" #: ../src/wxMaxima.cpp:3363 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "MAXIMA based on wxWidgets." msgstr "wxMaxima 是基於 wxWidgets ,為電腦代數系統 MAXIMA 的圖形使用界面。" #: ../src/wxMaxima.cpp:3429 msgid "" "wxMaxima is a graphical user interface for the computer algebra system " "Maxima based on wxWidgets." msgstr "wxMaxima 是基於 wxWidgets ,為電腦代數系統 Maxima 的圖形使用界面。" #: ../src/wxMaxima.cpp:3435 msgid "yes" msgstr "是" #~ msgid "&Cell" #~ msgstr "單元(&C)" #~ msgid "&New Window\tCtrl-N" #~ msgstr "開新視窗(&N)\tCtrl-N" #~ msgid "Close document?" #~ msgstr "確定要關閉文件?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Close current document and lose all changes?" #~ msgstr "" #~ "文件尚未儲存!\n" #~ "\n" #~ "關閉此文件並放棄所有變更?" #~ msgid "" #~ "Document not saved!\n" #~ "\n" #~ "Quit wxMaxima and lose all changes?" #~ msgstr "" #~ "文件尚未儲存!\n" #~ "\n" #~ "離開 wxMaxima 並放棄所有變更?" #~ msgid "Maxima options" #~ msgstr "Maxima 選項" #~ msgid "Mean" #~ msgstr "平均值" #~ msgid "Median" #~ msgstr "中位數" #~ msgid "Quit?" #~ msgstr "確定要結束?" #~ msgid "wxMaxima options" #~ msgstr "wxMaxima 選項" wxMaxima-13.04.2/locales/wxwin/ca.mo000644 000765 000024 00000170101 11670654443 017612 0ustar00andrejstaff000000 000000 L|,H;I;Z;^;g;;;;;;< $</<8< G< R<']<&<<<<<<<<<<<<= == =!= (=2=8=?=H=Q=Z=p=v=|====4=$=!>5>*M>/x>:>> > > ? ?-?D?V?i?q?w?~???????@.@=@A@Q@e@:{@@@@@A4ANA!mA"AA-A1A(,BUBjB+BBBBBBBC2CLCgC)C(CC#C D;"D^D)|DDDDDE%.E#TE"xE(E&E5E!F>FWF1tF FFFF,G(-G/VGG-G3GH H-=HkHHHH%HHI:IXI)oII#I!IIJ)3J&]JJJJJ JJJK K K K2K);KeKmK KK(KK(KKwLjL!LM!/M(QMzMM.M'MCN(EN9nNNNNNOOO/OCO,[O1O0O%O%P7P QP\PmP~P Q"Q=Q[QQtQQvQTRYR_RdRxR RRRRRR RS,$S"QStSSSS-S"T";T9^T$TT"TT&U"BU8eUGU/UAV.XVV2V)VWGWEcWGWW X%+X#QX#uX3X"XXT YaY'{YY"Y-Y! Z$.ZSZnZZ#Z"Z-Z' ["H[5k[[&[-[/\+F\&r\,\2\&\& ]G](e]!])]]3]-,^Z^x^$^!^ ^ ^^4_F_ __j__ __ _ _____'_`?`W` m`#x`!`` `%`` a #a-a@aTaYa na yaaa"a a ab'.bVbvbb)b bbcj#c%c+c%c/d6df Zf|df f f&f g )g3gPg"Wgzgg ggggggh/Ji zi%i%iijj j+j?j BjLj_j+xjj0jj jk%kCkVkskkk#kkl l l%l +l 6l AlMlbl~l1llam}mmm mm mm m mmmn n,n=nMn ^n insnn nnnnn/n!o3;ooo#op'p"9p \p ip-wppp pppppNpJq [qgq {qqq qqq q)qr?(rhrqrrrrr+r r s-5scss;sssst t:tUtit rt|t,tzt07uohu%u.u-v0IvzvM wPYw@wYw#Exix|xxxxxAx*y9yNy*myyyyyy z$z8z+Lzxzzzz zzzz{){G{ O{=Y{{({ {{ {||5|"N|#q|$||||} }8}"R}u}}"}})}-~D=~~/~~;~~:0=;P>;ˀ5=ԁ9,-܃ ,!Km)>/0N-m*΅(#"F ] ~ !$'/49 ALS/\  4ć!89T. ÈΈՈ 9@F&b  ɉ݉  -%SlpCv ˊъڊ $ $ 2Sk  ‹'ً3*O zMҍ 7Sp& Ɏ Ҏ 7./^t} Ǐ Џۏ ! *KQY a+k3'ې&*-F2t>  7Mk ʒ$;[w{Jʓ'>Tk)+̔2$+CPA(֕>0owؖ#3B3v-ȗL )Y5(. (%I0o--Ι4;1Em(!ܚ)B(5k! Û:8';`'3ĜK$D/iDޝ#';0c#*( 8,%e0/$-:?=z( (6#=a g t <ߡ& !2+^5f%¢^7",>5k$Ƥ=+#WO9K"-PixئG;@=|<4, CM/h 4%Bhz6ƪܪ #+B%Q w46ͫ,,1/^%=3.&GU*"ȭ*&+=%iDIԮ=N\8%: &El\^\E'2ʱ10/2`L*# n/!8!3>O23&$<*a7<ĵ/(1<Z38˶:9?4y38@/\6/ø53)>] 98205c11˺ 3/!c! ʻ-1.L%{ ռ'( 1 <,Ivƽڽ %$/(T)}/׾," C_6x!ѿ!} /2)3LRe>.& #7[c=~$7Uqv! Wb+v  "9\u5A2=8p80( /;U]r- , $) No! %#* JTd~ !  (6_p 0 Bcw9%='e*.C&Sz@*@GQM %"Eh.} Q $>"X{(""80O@V%" "&I_ gr.6E||3L1iqBr^'z')CZ&jR@A S5t 'E\"x# %(4])d >)*: R]s!"" %<Un"'!):5dK1="`8#$0HHyJP =^Nk9;(u1g#/' $>EMGD,_/0"68G6%*+)4-^86 %3* ^/hE%N?a2&06go$t.  .4<AGfl@qL'.5:?E K%V |&  .N_(y">7<yfTEM]ecR0UyrCNo;K<l_f[7U`!|/2: uv9D<dvF=aLVQ #DzWPidC }YZPQJ3 eE4L7>#w=WKuI!V@, ||?'k~u3x*YAg488Z61qp(^gLx. {kqgF{"O t>) O`X%T!*b A[]%ncwfx@BNi2/q"^4XtlF )mC*95W$p@bo_'S26%/sd0Hn; ;h\\esZ-P3-)D6H8hIr&=m_jHJJ?QGt X:&AYk>:?v5(}~,zn^ iU<rKVl{ScO'M7RE}5]hMo9R` y+j+#a$(bj~.p\a1B B-[N"s  G+. TG,10S&$zIwm (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%s (or %s)%s Error%s Information%s Warning%s message%s not a bitmap resource specification.%s not an icon resource specification.&Arrange Icons&Cancel&Cascade&Close&Copy&Delete&Details&Find&Finish&Help&Log&Move&Next&Next >&Next Tip&Paste&Previous&Redo&Redo &Replace&Restore&Save...&Show tips at startup&Size&Undo&Undo &Window'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &BackA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAdd current page to bookmarksAdd to custom coloursAdding book %sAllAll files (*)|*All files (*.*)|*.*Already dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)B4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCan not enumerate files '%s'Can not enumerate files in directory '%s'Can not start thread: error writing TLS.Can not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'CancelCannot convert dialog units: dialog unknown.Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCase sensitiveCeltic (ISO-8859-14)Central European (ISO-8859-2)Choose ISP to dialChoose fontCl&oseClear the log contentsCloseClose Alt-F4Close AllClose this windowComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copies:Could not find resource include file %s.Could not find tab for idCould not resolve control class or id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not resolve menu id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not start document preview.Could not start printing.Could not transfer data to windowCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't register clipboard format '%s'.Couldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDeleted stale lock file '%s'.Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDisplay all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1DoneDone.DownE sheet, 34 x 44 inElapsed time : Entries foundErrorError creating directoryError: Esperanto (ISO-8859-3)Estimated time : Execution of command '%s' failedExecutive, 7 1/4 x 10 1/2 inExtended Unix Codepage for Japanese (EUC-JP)Failed to %s dialup connection: %sFailed to access lock file.Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to find XBM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to find XBM resource %s. Forgot to use wxResourceLoadIconData?Failed to find XPM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open '%s' for %sFailed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to write to lock file '%s'Fatal errorFatal error: File %s does not exist.File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FindFixed font:Folio, 8 1/2 x 13 inFont size:Fork failedFound Found %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp: %sICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Icon resource specification %s not found.Ill-formed resource file syntax.Illegal directory name.Illegal file specification.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexIndian (ISO-8859-12)Invalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.KOI8-RLandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLoad %s fileLoading : Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!Metal themeMi&nimizeMode %ix%i-%i not available.ModernMonarch Envelope, 3 7/8 x 7 1/2 inNameNewNameNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNordic (ISO-8859-10)NormalNormal font:Note, 8 1/2 x 11 inOKOpen FileOpen HTML documentOperation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPagesPaper SizePaper sizePermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint spoolingPrint this pagePrint to FilePrinter command:Printer optionsPrinter options:Printer...Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'Referenced object node with ref="%s" not found!Registry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : Remove current page from bookmarksReplace &allReplace with:Resource files must have same version number!Right margin (mm):RomanSave %s fileSave asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Select &AllSelect a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelSizeSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Statement, 5 1/2 x 8 1/2 inStatus: Subclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe directory '%s' does not exist Create it now?The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTip of the DayTips not available, sorry!To:Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)US Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnexpected parameter '%s'Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.attempt to change immutable key '%s' ignored.binaryboldcan't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.ctrldatedefaulteighteentheightheleventhentry '%s' appears more than once in group '%s'establishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfourteenthfourthgenerate verbose log messagesinitiateinvalid eof() return value.invalid message box return valueitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.nonamenoonnumreadingreentrancy problem.secondseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown errorunknown error (error code %08x).unknown line terminatorunknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.writingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayProject-Id-Version: wxWidgets-2.5.2 Report-Msgid-Bugs-To: POT-Creation-Date: 2008-04-24 09:56+0200 PO-Revision-Date: 2003-07-22 11:31+0100 Last-Translator: Paco Rivire Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit (error %ld: %s) - Previsualitza#10 Sobre, 4 1/8 x 9 1/2 polz. #11 Sobre, 4 1/2 x 10 3/8 polz. #12 Sobre, 4 3/4 x 11 polz.#14 Sobre, 5 x 11 1/2 polz. #9 Sobre, 3 7/8 x 8 7/2 polz. #define %s ha de ser un nmero sencer.%i de %i%s (o %s)Error %sInformaci %sAtenci %smissatge %s%s no s una especificaci de recursos de mapa de bits.%s no s una especificaci de recursos d'icona&Organitza les icones&Anulla&Cascada&Tanca&Copia&Elimina&Detalls&Cerca&Fi&Ajuda&Registre&Mou&Segent&Segent >Consell &segent&Enganxa&Previ&Refs&Refs&Substitueix&Restaura&Desa...&Mostra els consells al comenar&Mida&Desfs&Desfs&Finestra'%s' t '..' extres que han estat ignorats.'%s' s invlid'%s' no s valor numric correcte per l'opci '%s'.'%s' no s un missatge vlid de catleg'%s' s probablement un bffer binari.'%s' hauria de ser numric.'%s' noms hauria de contenir carcters ASCII'%s' noms hauria de contenir carcters alfabtics'%s' noms hauria de contenir carcters alfabtics o numrics.(Ajuda)(preferits)10 x 14 polz.11 x 17 polz.6 3/4 Sobre, 3 5/8 x 6 1/2 polz.: fitxer no existeix!: joc de carcters desconegut: codificaci desconeguda< &EnrereFull A3, 297 x 420 mmFull A4, 210 x 297 mmFull petit A4, 210 x 297 mmFull A5, 148 x 210 mmABCDEFGabcdefg12345ASCIIAfegeix la pgina actual a preferitsAfegeix a colors personalitzatsS'est afegint el llibre %sTotTots els fitxers (*)|*Tots els fitxers (*.*) *.* Ja s'est trucant a l'ISP.Afegeix el registre al fitxer '%s' (escollir [No] sobrescriur el fitxer)?rab (ISO-8859-6)B4 Sobre, 250 x 353 mmFull B4, 250 x 354 mmB5 Sobre, 176 x 250 mmFull B5, 182 x 257 millmetresB6 Sobre, 176 x 125 mmBMP: No s'ha pogut localitzar la memria.BMP:No s'ha pogut desar la imatge invlida.BMP: No s'ha pogut escriure el mapa de colors RGB.BMP: No s'ha pogut escriure la dada.BMP: No s'ha pogut escriure la capalera del fitxer (Mapa de bits).BMP: No s'ha pogut escriure la capalera del fitxer (BitmapInfo).BMP:wxImage no t una wxPallette prpia.Bltic (ISO-8859-13)Bltic (antic) (ISO-8859-4)No s'ha trobat l'especificaci %s de recursos de mapa de bits.NegretaMarge inferior (mm):Full C, 17 x 22 polz.&NetejaC3 Sobre, 324 x 458 mmC4 Sobre, 229 x 324 mmC5 Sobre, 162 x 229 mmC6 Sobre, 114 x 162 mmC65 Sobre, 114 x 229 mmNo es pot enumerar els fitxers '%s'No es pot enumerar els fitxers en el directori '%s'No es pot iniciar la cadena: error en escriure TLS.No es pot suspendre en fil %xNo es pot esperar per a l'acabament de cadenaNo s'ha pogut &desferNo es pot revisar el format d'imatge del fitxer '%s': el fitxer no existeix.No es pot tancar la clau de registre '%s'No es pot copiar els valors del tipus %d no suportat.No es pot crear la clau de registre '%s'No es pot crear un filNo es pot crear una finestra de la classe '%s'No es pot eliminar la tecla '%s'No es pot eliminar el fitxer INI '%s'No es pot eliminar el valor '%s' de la clau '%s'No es poden enumerar subclaus de la clau '%s'No es pot enumerar els valors de la clau '%s'No es pot trobar la posici actual en el fitxer '%s'No es pot obtenir informaci sobre la clau de registre '%s'No es pot carregar una imatge del fitxer '%s': el fitxer no existeix.No es pot obrir la clau de registre '%s'No es pot llegir el valor de '%s'No es pot llegir el valor de la clau '%s'No es pot desar la imatge en el format '%s': extensi desconeguda.No es pot desar els continguts de registre al fitxer.No es pot fixar la prioritat filsNo es pot fixar un valor de '%s'AnullaNo es pot convertir el dileg d'unitats: dileg desconegutNo es pot trobar connexi activa de marcatge directe: %sNo es pot trobar el contenidor del control desconegut '%s'.No es pot trobar el node '%s' de font.No es pot localitzar el fitxer del llibre d'adrecesNo es pot obtenir un rang de prioritats per la poltica de planificaci %d.No es pot obtenir el nom d'hostatgerNo es pot obtenir el nom oficial de l'hostatgerNo es pot penjar - no hi ha activa cap connexi de marcatge directe.No es pot inicialitzar OLENo es pot inicialitzar SciTech MGL!No es pot comenar a mostrar.No es pot carregar la icona des de '%s'No es pot carregar recursos des del fitxer '%s'.No es pot obrir el document HTML %sNo es pot obrir el llibre d'ajuda HTML: %sNo es pot obrir fitxers de contingut: %sNo es pot obrir el fitxer '%s'.No es pot obrir el fitxer per a la impressi PostScript!No es pot obrir el fitxer d'ndex: %sNo es pot analitzar les coordenades des de '%s'.No es pot analitzar les dimensions des de '%s'.No es pot imprimir una pgina buida.No es pot llegir el tipus de nom des de '%s'!No es pot recuperar la cadena de poltica de planificaci.No es pot iniciar el fil: s'ha coms un error en escriure TLSDistingeix entre majscules i minsculesCltic (ISO-8859-14)Europeu central (ISO-8859-2)Trieu l'ISP a trucarTrieu la font&TancaNeteja els continguts del registre.TancaTanca Alt-F4Tanca-ho totTanca aquesta finestraOrdinadorNo es pot iniciar un nom d'entrada de configuraci per '%c'.ConfirmaConfirmeu l'actualitzaci del registreS'est connectantContingutLa conversi al joc de carcters '%s' no funciona.Cpies:No es pot trobar el fitxer d'inclusi de recursos %s.No es pot trobar la pestanya per a idNo es pot resoldre la classe de control o l'id '%s'. Utilitzeu un nmero sencer diferent de zero o proporcioneu el #define (vegeu els consells del manual)No es pot resoldre l'id del men '%s'. Utilitza un sencer diferent de zero o proporciona el #define (vegeu els consells del manual)No s'ha pogut iniciar la previsualitzaci del document.No s'ha pogut iniciar la impressiNo s'ha pogut transferir dades a la finestraNo s'ha pogut afegir una imatge al llistat d'imatges.No s'ha pogut crear un temporitzadorNo s'ha pogut crear un cursor.No s'ha pogut trobar el smbol '%s' en una llibreria dinmicaNo es pot obtenir l'actual cadena de punterNo s'ha pogut carregar una imatge PNG - el fitxer s corromput o no hi ha prou memria.No s'ha pogut registrar el format '%s' del porta-retalls.No es pot recuperar informaci sobre els llistat %d de controls d'elements.No s'ha pogut desar la imatge PNG.No s'ha acabat la cadenaCrea directoriCrea un directori nouRe&tallaDirectori actual:Cirllic (ISO-8859-5)Full D 22 x 34 polzadesSollicitud de DDE poke fallidaCapalera DIB: la codificaci no coincideix amb la profunditat de bits.Capalera DIB: Imatge amb alada > 32767 pxels per fitxer.Capalera DIB: Imatge amb amplada > 32767 pxels per fitxer.Capalera DIB: profunditat de bits desconeguda en el fitxer.Capalera DIB: codificaci desconeguda en el fitxer.Sobre DL, 110 x 220 mmDecoratiuCodificaci predeterminadaS'ha eliminat el fitxer antic de bloqueig '%s'.Les funcions de marcatge directe no es troben disponibles ja que el servei d'accs remot (RAS) no es troba installat en aquest maquinari. Reinstalleu-ho.Sabeu que...No s'ha pogut crear el directori '%s'El directori '%s' no existeix!Directori no existeixMostra tots els elements de l'ndex que continguin la subcadena donada. La recerca no distingeix majscules de minscules.Mostra les opcions del dilegDesitgeu sobrescriure l'ordre utilitzada per als fitxer %s amb l'extensi "%s" ? el valor actual s %s, El nou valor s %s %1FetFet.AvallFull E, 34 x 44 polz.Temps transcorregut:Entrades trobades:ErrorError en crear directoriError: Esperanto (ISO-8859-3)Temps estimat:L'execuci de l'ordre '%s' ha fallit.Executiu (7 1/4 x 10 1/2 polz. )Codificaci de pgina estesa per al japons (EUC-JP)No s'ha pogut %s a la connexi de marcatge directe: %sNo s'ha pogut accedir el fitxer de blocatge.No s'ha pogut tancar el manegador de fitxersNo s'ha pogut tancar el fitxer de bloqueig '%s'No s'ha pogut tancar el porta-retallsConnexi fallida: hi manca el nom d'usuari o la contrasenya.No s'ha pogut connectar: no hi ha cap ISP a trucar.No s'ha pogut copiar el valor '%s' de registreNo s'ha pogut copiar els continguts de la clau de registre '%s' a '%s'.Impossible de copiar el fitxer '%s' a '%s'No s'ha pogut crear una cadena DDENo s'ha pogut crear un marc MDI principal.No s'ha pogut crear una barra d'estat.No s'ha pogut crear un nom d'arxiu temporalCreaci fallida d'un conducte annim.No s'ha pogut crear una connexi en el servidor '%s' en el tema '%s'No s'ha pogut crear el directori '%s' (Disposeu dels permisos requerits?)No s'ha pogut crear una entrada de registre per '%s' fitxers.No s'ha pogut crear el dileg estndard de cerca/substitueix (codi d'error %d)No s'ha pogut mostrar el document HTML en codificaci %sNo s'ha pogut buidar el porta-retallsNo s'ha pogut establir un bucle d'avs amb el servidor DDENo s'ha pogut establir la connexi: %sNo s'ha pogut executar '%s' No s'ha pogut trobar el recurs XBM %s. No us recordat d'utilitzar wxResourceLoadBitmapData?No s'ha pogut trobar el recurs XBM %s. No us heu recordat d'utilitzar wxResourceLoadIconData?No s'ha pogut trobar el recurs XMP %s. No us recordat d'utilitzar wxResourceLoadBitmapData?No s'han pogut obtenir els noms ISP: %sNo s'han pogut obtenir les dades del porta-retallsNo s'ha pogut obtenir les dades del porta-retallsNo s'ha pogut obtenir l'horari local del sistemaNo s'ha pogut obtenir el directori en funcionamentNo s'ha pogut inicialitzar GUI: no s'ha trobat que estigus muntat en temes.No s'ha pogut inicialitzar l'ajuda MS HTMLNo s'ha pogut inicialitzar l'OpenGLNo s'ha pogut sincronitzar amb un fil, s'ha detectat un potencial de prdua de memria - reinicieu el programaNo s'ha pogut acabar el procs %dNo s'ha pogut carregar la imatge %d des del fitxer '%s'.No s'ha pogut carregar el mpr.dllNo s'ha pogut carregar la llibreria compartida '%s'No s'ha pogut carregar la llibreria compartida '%s' Error '%s'No s'ha pogut bloquejar el fitxer de bloqueig '%s'No s'ha pogut modificar les hores de fitxer de '%s'No s'ha pogut obrir '%s' per %sNo s'ha pogut obrir un fitxer temporalNo s'ha pogut obrir el porta-retallsNo s'ha pogut posar dades al porta-retallsNo s'ha pogut llegir el PID des del fitxer de registre.No s'ha pogut redireccionar el procs fill d'entrada/sortidaNo s'ha pogut redireccionar el procs fill d'IONo es pot registrar el servidor DDE '%s'No es pot recordar la codificaci del joc de carcters '%s'.s impossible d'eliminar el fitxer de blocatge '%s'No s'ha pogut extreure el fitxer antic de bloqueig '%s'No s'ha pogut reanomenar el valor de registre '%s' a '%s'.No s'ha pogut reanomenar la clau de registre '%s' a '%s'.No s'ha pogut recuperar les dades del porta-retalls.No s'ha pogut recuperar les hores de fitxer de '%s'No s'ha pogut recuperar el text del missatge d'error RASNo s'ha pogut recuperar els formats suportats del porta-retalls.No s'ha pogut enviar una notificaci d'avs DDENo s'ha pogut fixar el mode de transferncia FTP a %s.No s'ha pogut fixar les dades del porta-retallsNo s'ha pogut fixar els permisos de fitxer temporals.No s'ha pogut establir la prioritat de la cadena %dNo s'ha pogut emmagatzemar la imatge '%s' a la VFS de memria!No s'ha pogut acabar una cadena.No s'ha pogut acabar el bucle d'avs amb el servidor DDE.No s'ha pogut acabar la connexi de marcatge directe: %sNo s'ha pogut posar en contacte amb el fitxer '%s'No s'ha pogut desbloquejar el fitxer de bloqueig '%s'No s'ha pogut desenregistrar el servidor DDE '%s'No s'ha pogut escriure a l'arxiu de bloqueig '%s'Error fatalError fatal:El fitxer %s no existeixEl fitxer '%s' ja existeix, Desitgeu substituir-lo?No s'ha pogut carregar el fitxer.Error de fitxerAquest nom de fitxer ja existeix.CercaFont fixada:Foli, 8 1/2 x 13 polzadesMida de la font:El fork ha fallat!TrobatS'han trobat %i coincidnciesDe:GIF: ndex invlid de gif.GIF: el flux de dades sembla haver-se trencat.GIF: error en el format GIF d'imatge.GIF: No hi ha prou memriaGIF: error desconegut!!!GTK + temaFanfold legal alemany, 8 1/2 x 13 polz.Fanfold alemany estndard, 8 1/2 x 12 inVs enrereVs endavantPuja un nivell de la jerarquia del document.Vs al directori principalPuja un directori Vs a la pginaGrec (ISO-8859-7)Hebreu (ISO-8859-8)AjudaOpcions d'ajuda del navegadorndex de l'ajudaAjuda de la impressiAjuda: %sICO: Error en llegir la mscara DIB.ICO: Error en llegir el fitxer d'imatge!ICO: Imatge massa llarga per a una icona.ICO:Imatge massa ampla per poder ser una icona.ICO: ndex d'icones invlidIFF: el fil de dades sembla estar trencades.IFF: error en format d'imatge IFF.IFF: no hi ha prou memria.IFF: error desconegut!!!No s'ha trobat l'especificaci %s de recursos d'iconesSintaxi incorrecta del codi font.Nom illegal de directoriEspecificaci de fitxer illegal.No s possible crear un control d'edici rica, utilitzant en el seu lloc un control de text simple. Reinstalleu riched32.dlls impossible obtenir l'entrada de procs fill.No s possible obtenir permisos per al fitxer '%s's impossible sobrescriure el fitxer '%s's impossible fixar els permisos per al fitxer '%s'ndexIndi (ISO-8859-12)Index d'imatge TIFF invlidRecurs XRC '%s' invlid: no t una arrel del node de 'recurs'.Mode d'especificaci de mostreig '%s' invlid.Especificaci geomtrica invlida '%s'Fitxer de bloqueig '%s' invlid.Expressi regular invlida '%s': %sCursivaSobre itali, 110 x 230 mmJPEG: No s'ha pogut carregar - el fitxer deu estar corromput.JPEG: No s'ha pogut desar la imatge.KOI8-RApasatLedger, 17 x 11 polz.Marge esquerra (mm):Legal (8 1/2 x 14 polzades)Carta petita, 8 1/2 x 11 polzCarta (8 1/2 x 11 polzades)ClarCarrega fitxer %sS'est carregant:Registre desat en el fitxer '%s'.MDI fillLes funcion d'ajuda MS HTML no estn disponibles perque la llibreria d'Ajuda MS HTML no est installada en aquest maquinari.L'heu d'installar..Ma&ximitzaCoincidncia exactaLa memria VFs encara cont el fitxer '%s'!Tema metallitzatMi&nimitzaMode %ix%i-%i no disponible.ModernSobre reial, 3 7/8 x 1/2 polzNomNou nomPgina segentNoServei XBM no disponible!No hi ha cap icona XPM disponible!No s'ha trobat entrades.No s'ha trobat ha cap tipus de lletra per a mostrar text en codifiaci '%s'. per hi ha la codificaci '%s' alternativa. Voleu fer servir aquesta codificaci (sino haureu de triar una altre)?No s'ha trobat ha cap tipus de lletra per a mostrar text en codifiaci '%s'. Voleu triar un tipus de lletra per aquesta codificaci (sino el text en aquesta codificaci no es mostrar correctamet)?No s'ha trobat cap manegador per als nodes XML '%s', classe '%s'!No s'ha trobat cap manegador per al tipus d'imatgeNo hi ha definit cap manegador per al tipus d'imatge %d.No hi ha definit cap manegador per al tipus d'imatge %s.Encara no s'ha trobat cap pgina que coincideixiNrdic (ISO-8859-10)NormalFont normalNota, 8 1/2 x 11 polzadesD'acordSelecciona un FitxerObre document HTMLOperaci no permesa.L'opci '%s' requereix un valor, '=' esperat.L'opci '%s' requereix un valor.Opci '%s': '%s' no es pot convertir a data.OpcionsOrientaciPCX: no es pot localitzar la memriaPCX: format d'imatge no suportatPCX: imatge invlidaPCX: aquest no s un fitxer PCX .PCX: error desconegut!!!PCX: nmero de versi massa baixPNM: No es pot localitzar la memria.PNM: Format de fitxer no reconegut.PNM: el fitxer sembla estroncatPgina %dPgina %d de %dConfiguraci de la pginaPginesMida del paperMida del paperPermisosNo s'ha pogut crear la canonada.Trieu una font vlidaTrieu un fitxer existent.Trieu quin ISP us voleu connectarCal que installeu una versi ms nova de comctl32.dll (com a mnim cal la versi 4.70 per teniu la %d.%02d) o aquest programa no operar correctament.Espereu mentre simprimeix VerticalFitxer PostScriptPrevisualitzaci:Pgina anteriorImprimeixImprimeix previsualitzaciError en la previsualitzaci d'impressiRang d'impressiParmetres d'impressiImprimeix en colorCua d'impressiImprimeix aquesta pginaImprimeix al fitxerOrdre d'impressiOpcions d'impressiOpcions d'impressi:Impressi...S'est imprimintError d'impressiS'est imprimint la pgina %d...S'est imprimint...Programa avortat.Quarto, 215 x 275 mmPreguntaLlegeix error en el fitxer '%s'Objecte de node referenciat amb ref="%s"" no s'ha trobat!La clau de registre '%s' ja existeix.La clau de registre '%s' no existeix, no la podeu reanomenar.La clau de registre '%s' s necessitada per operacions normals de sistema, eliminant-los deixar el vostre sistema en un estat inservible: operaci avortada.El valor '%s' de registre encara existeix.Entrades rellevants:Temps restant :Extreu la pgina actual dels preferitsSubstitueix-ho &totSubstitueix amb:Els fitxers de recursos han de tenir el mateix nmero de versi!Marge dret (mm):RomanDesa fitxer %sAnomena i desaDesa els continguts del registre al fitxerScriptCercaCerqueu continguts en llibre(s) d'ajuda per totes les ocurrncies del text escritDirecci de cercaCerca:Cerca a tots els llibresS'est cercant...SeccionsError de recerca en fitxer '%s'Selecciona-ho &totSeleccioneu una plantilla de documentSeleccioneu una vista del documentSelecciona un fitxerS'espera un separador desprs de l'opci '%s'.Configura...S'han triat diverses connexions de marcatge directe, triant-ne una aleatriament.Mostra-ho totMostra tots els elements en el ndexMostra directoris ocults.Mostra/amaga el plaf de navegaciMidaInclinaNo es pot obrir aquest fitxer per desar.No s'ha pogut obrir aquest fitxer.No s'ha pogut desar aquest fitxer.No hi ha prou memria com per crear una previsualitzaciStatement, 5 1/2 x 8 1/2 polz.Estat:Subclasse '%s' no trobada per recursos '%s', no subclassificant!SusTIFF: No es pot localitzar la memriaTIFF: Error en carregar la imatge.TIFF: Error en llegir la imatge.TIFF: Error en desar la imatge.TIFF: Error en escriure la imatge.Tabloid, 11 x 17 polzTeletipPlantillesTailands (ISO-8859-11)El servidor FTP no permet l's de mode passiu.El joc de carcters '%s' s desconegut. Podeu seleccionar un altre conjunt per substituir-lo o escolliu [Anulla] si no pot ser substitut.El directori '%s' not existeix Desitgeu crear-lo ara?El fitxer '%s' no existeix i per tant no pot ser obert. Ha estat extret des de llistat de fitxers utilitzats ms recentment.La ruta '%s' cont massa ".."!El parmetre requerit '%s' no ha estat especificat.No s'ha pogut desar el text.El valor per l'opci '%s' ha d'estar especificat.La versi d'accs remot al servei (RAS) installada en aquest maquinari s "tooold", l'haureu d'actualitzar (la segent funci sollicitada s'ha passat per alt: %s).Hi ha hagut un problema durant l'actualitzaci de la pgina: potser caldr establir la impressora predeterminada.La inicialitzaci de mduls de la cadena ha fallat: no es pot emmagatzemar valor en cadena emmagatzemada localmentLa inicialitzaci de mduls de la cadena ha fallat: no s'ha pogut crear una clau de la cadena.La inicialitzaci de mduls de la cadena ha fallat: no s possible localitzar l'ndex en la cadena emmagatzemada localmentLa prioritat de parmetres s ignorada.Colloca &horitzontalmentColloca &verticalmentConsell del diaEls consells no es troben disponibles!Per a:Marge superior (mm):S'est intentant esborrar el fitxer '%s' de VFS de memria, per no est carregat!S'est intetant solucionar un nom d'hostetjador buit: no es pot.Turc (ISO-8859-9)US Std Fanfold, 14 7/8 x 11 polzNo s possible obrir el document HTML sollicitat: %sParmetre '%s' no esperatUnicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Error DDE desconegut %08xCodificaci (%d) desconegudaOpci llarga desconeguda '%s'Opci '%s' desconegudaEstil de bandera desconegut'{' no tancat per a tipus mime %s.Ordre sense nomFormat no suportat de porta-retallsTema '%s' no suportatAmuntSintaxi: %sConflicte de validaciMostra els fitxers en vista detalladaMostra fitxers com a un llistat de vistaVistesError en l'espera de la fi d'un subprocsAtenciAdvertncia:Atenci: intent d'extreure una etiqueta HTML d'una pila buida.Europa de l'est, (ISO-8859-1)Europeu occidental amb Euro (ISO-8859-15)Tota la paraulaNoms paraules senceresTema Win32Win32s en Windows 3.1Windows rab (CP 1256)Windows Bltic (CP 1257)Windows Central Europeu (CP 1250)Windows Xins Simplificat (CP 936)Windows Xins Tradicional (CP 950)Windows Cirlic (CP 1251)Windows Grec (CP 1253)Windows Hebreu (CP 1255)Windows Japons (CP 932)Windows Core (CP 949)Windows Turc (CP 1254)Windows Europeu de l'est (CP 1252)Windows/DOS OEM (CP 437)Error en el fitxer '%s'error d'anlisi XML: '%s' a la lnia %dXPM: dades pxels mal formulades!recurs XRC: '%s' (tipus '%s') no trobada!recurs XRC: No es pot crear mapa de bits des de '%s'.recurs XRC: Color d'especificaci incorrecte '%s' per a la propietat '%s'.SNo podeu afegir un directori nou a aquesta secci[BUIT]una aplicaci DDEML ha creat una condici estreta prolongada.s'ha cridat una funci DDEML sense cridar primer la funci DdeInitialize, o un identificador invlid d'instncia ha passat a funci DDEML.Un client que intentava establir una connexi ha fallit.ha fallat una assignaci de memriaun parmetre ha fallat per ser validat pel DDEMLuna sollicitud per a una transacci d'avs sncrona ha excedit el tempsuna sollicitud per a una transacci de dades sncrona ha excedit el tempsuna sollicitud per a una transacci sncrona per a executar ha excedit el tempsuna sollicitud per a una transacci poke ha excedit el tempsuna sollicitud per finalitzar un avs de transacci s'ha excedit en el temps.s'ha intentat una conversaci de servidor lateral que ha acabat amb el client, o el servidor abans de completar una transacci.ha fallat una transaccialtuna aplicaci comenada com a APPCLASS_MONITOR ha intentat fer una transacci DDE, o b una aplicaci comenada com a APPCMD_CLIENTONLY ha intentat fer transaccions de servidor.ha fallat una trucada interna cap a la funci PostMessageHi ha hagut un error intern en el DDEML.s'ha passat a funcin DDEML un identificador de transacci no vlid. un cop que l'aplicaci ha tornat d'una trucada XTYP_XACT_COMPLETE, l'identificador de transacci d'aquesta trucada ja no s vlid.intent de canviar la clau immutable '%s' ignorat.binarinegretano s'ha pogut tancar el fitxer '%s'no s'ha pogut tancar el descriptor de fitxer %dno es pot confiar canvis al fitxer '%s'no s'ha pot crear el fitxer '%s'no s'ha pogut eliminar el fitxer de configuraci '%s' d'usuarino es pot determinar si s'ha arribat al final del fitxer amb el descriptor %dno es pot trobar la llargria del fitxer en el descriptor del fitxer %dno es pot trobar la CASA de l'usuari utilitzant el directori actual.no es pot buidar el descriptor del fitxer %dno es pot cercar en el descriptor del fitxer %dno s'ha pogut carregar cap font, s'est avortantno s'ha pogut obrir el fitxer '%s'no es pot obrir el fitxer de configuraci global '%s'.no es pot obrir el fitxer de configuraci d'usuari '%s'.no es pot obrir el fitxer de configuraci de l'usuari.no s'ha pogut extreure el fitxer '%s'no es pot extreure el fitxer temporal '%s'no s pot cercar el fitxer descriptor de %dno es pot escriure el bfer '%s' al disc.no es pot escriure en el fitxer descriptiu %dno es pot escriure el fitxer de configuraci de l'usuarino s'ha trobat el fitxer de catleg per al domini '%s'controldatapredeterminatdivuitvuitonzl'entrada '%s' apareix ms d'un cop en el grup '%s'estableixno s'ha pogut buidar la memria del fitxer '%s'quinzcinqufitxer '%s', lnia %d: '%s' ignorada desprs de la capalera de grup.fitxer '%s', lnia %d: '=' inesperat.fitxer '%s', lnia %d: clau '%s' ha estat trobat per primer cop a la lnia %d.fitxer '%s', lnia %d: valor per a clau immutable '%s' ignorat.fiitxer '%s': carcter inesperat %c a la lnia %d.primercatorzquartgenera missatges de registre detallatsiniciavalor eof() de retorn invlid.valor de retorn de la caixa de missatges invlidcursivaclarla localitzaci '%s' no es pot fixars'est cercant el catleg '%s' a la ruta '%s'.mitja nitdinovnovno hi ha error DDE.sense nommigdianm.s'est llegintproblema de reentrada.segondissetsetShiftmostra aquest missatge d'ajudasetzsisespecifiqueu el mode de pantalla a utilitzar (p. ex. 640x480-16)especifica el tema a utilitzarstrdesla resposta a la transacci causada per la DDE_FBUSY s'ha de fixar una mica.tercertretzavuidemdotzvintsubratllatno esperat " a la posici %d de '%s'.desconeguterror desconeguterror desconegut (error de codi %08x).acabament de lnia desconegutorigen de recerca desconegutdesconegut-%dsense nom%d sense noms'est utilitzant el catleg '%s' des de '%s'.s'est escrivintwxGetTimeOfDay ha fallat.wxSocket: signatura invlida en ReadMsg.wxSocket: incidncia desconeguda!.wxWidgets no podia obrir l'aplicaci per '%s'; s'est sortint.wxWidgets no podien obrien l'exhibici. S'est sortint.ahirwxMaxima-13.04.2/locales/wxwin/cs.mo000644 000765 000024 00000165504 11670654443 017647 0ustar00andrejstaff000000 000000 ?^?z??? ??? ?? ? @@ @%@4@<@E@L@U@[@c@l@r@x@@@@@@ @@@ @ @@@@@@@ AAAA&ADA4TA$A!AA*A/B:CB~B B B B BBBBC CCCCC#C:CQCnCCCCCCCCCDD.D:DDDDDDDDE!6E"XE{E-E1E(EF3FMFRFfFzFFFFFFG)!GKGeG(~GGG#G H; HIH)gHHHHHH%I#?I"cI(I&I5I J")JLJeJ1J JJJ!K)K,0K(]K/KK-K3L4L LL-mLLLLL%M-MKMjMM)MM#M!N*NCN)cN&NNNNN OOO3O 9O FOPObO)kOOO OO(OOPP%P!?PaP!{P(PPP.P'%QCMQ(Q9QQ R'R8RMRSRXRkRRR,R1R0 S%=S%cSS SSS SS~SxT T"TTTQT@UvWU+UUUV V V,V2VKVSV jV0VV,V$W+WGWcWW-W"W"W9X$OXtX"XX&X"X8YGUY/YAY.Z>Z]Z2}Z)ZZZ%[#4[#X[3|["[[D\'^\\"\!\$\ ])]H]#f]"]-]']"^5&^\^&|^-^/^+_&-_,T_2_-_&_& `0`(N`!w`)``3`-aCaaa$a!a a aaa=a4=brb bbbb bb bb bb cc'(cPcpcc c#c!cc c%d(d=d Td^dqdddd d d dddd"e >e _ee'eeeef'fjCf%f+f%g/&gVg\gqgxg=g(g#gh#5hYh`h1}hhhh hhhii8iNi Ti aili i|i j j&$jKj Pj \jfjj"j jjj j jjjj jjjkk/zl l%l%lm2m;mPm Wmdmxm {mmmm0mn nn2nPncnnnn#nno o 'o2o 8o CoNo To`ouoo1ootpppp pp pp p pqq!q 1q?qPq`q qq |qqq qqqqq/q!,r3Nrr#s(s":s ]s js-xssss s sssstN t\t mtyt ttt ttt)t#u?,uluuuuuuu+u u v-9vgvv6v;vvw%w@w[wuwww ww,wzw(rx0xox%>z;5+„؄܄9,Ӆ-ʆ  (!Gi)>/0J-i*ʈ(#"Be | !߉$'&NSX `kr/{ӊ 4!68X9.ˋ  :[bh&  Ōӌ܌  +7?E \f-lC ! ) 3$>ck |  ʎ Ҏ܎ 'E3_* ȏ֏aڏ<MQ#Z$~! ő"  )8H[^ mw  ̒ג   + 8F O \ i t   ɓ ғܓ+7 X"w%"ה1 , 9ET"c͕ٕ֕ߕ!A[o#u ϖؖ!:HJ—ܗ()Fp.2֘& 0Gfnי 1#(U~/$A:T'2(,Lf))&؜$4$<Y(ߝ$4#%X ~#93!=U$:ӟ!-0<^*ߠ'!E#g$1͡)#) M#n,)ݢ 7%U{  ͣ ۣ/>O(U&~"֤#.Rm1-U,<1iҦ )?Z8x@A)4%^Ҩ%| ܩrd{&&-5;Vi"o"-ԫA"d)$ƬA!I'k;*ϭ/H*d'4H257h,ͯ$+0<m%0а-=/0mb1=&o&$, "0S(o5>γD #R.v%,˴33,!`-5.0+F+r!9$:Z+s'Ƿ%# +0\l~16͸ #)MU\wԹع-$AZ r'}% ˺ պ 7G\v #λ޻'%9+_,-Լ$'@Xwb//)Y0t ž";<+-!Y{$ȿ?'FM T`w l%!)  .$7\m  ;4''+S n{ !# E PZ$x%!12S $!GF%0 Vas| #3CX n{  "%%';M% 1$I n{3 4;[B . )D)a R (! <] f(q+)(*R }''&&F^qz%|"4.Wp)(!J!^HS=Q[+"F4={".) :Fc{*(:c({ (- 5 @M&k    >]&p/+ 0Qp &".2a(,2 ;uT+/4?5t523~G&3p %$-6JB/M(B&k'7+4;p& ""(:#c  2 %+ Q^?g)GG2a )##<`h x  &/5N ]<g <  +0 7 D P%\ )  "CU&m8?+ 2@d:NOEFRX|~9DxbYH` 1#rp8GT:sgVc)KB t)AX5MVE GA({&Cp,%8b@sv?2#F9]q(oW![7@ Vl6=f5itHmUz+sP>o"%i{+y7S{|QD(b]rTZ)R_1!Z4<efo , }^_upd6zn"-JU,.YOu*q2k&$~vQcZxFYngX;L=QWS\B3&zy8`N  1jeL\$2Kk<h?~^Wm I ^l*wEGJ</\>P*%u6laUH/7- ;AgfNr-@PR}IL /"M[whqdj+[ h=e}0.K> I5mBk$ S4M]T!?nD '.w:i_3' Caa9;#cOJ|'t0C40xyv 3`j (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message&About...&Apply&Apply Style&Arrange Icons&Cancel&Cascade&Close&Colour:&Copy&Delete&Details&File&Find&Finish&Help&Log&Move&Next&Next >&Next Tip&Open...&Paste&Previous&Print...&Redo&Redo &Replace&Restore&Save...&Show tips at startup&Size&Undo&Undo &Window'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &Back<<>>>>|A3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAdd current page to bookmarksAdd to custom coloursAdding book %sAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)B4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&learC3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCan not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCase sensitiveCeltic (ISO-8859-14)Central European (ISO-8859-2)Choose ISP to dialChoose fontCl&oseClear the log contentsCloseClose Alt-F4Close AllClose this windowComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Copy selectionCould not find tab for idCould not start document preview.Could not start printing.Could not transfer data to windowCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't register clipboard format '%s'.Couldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate directoryCreate new directoryCtrl-Cu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...DirectoriesDirectory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDisplay all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?DoneDone.DownE sheet, 34 x 44 inEntries foundErrorError creating directoryError: Esperanto (ISO-8859-3)Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExtended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to access lock file.Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FilesFindFixed font:Folio, 8 1/2 x 13 inFont size:Font:Fork failedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)HTML anchor %s does not exist.Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp: %sHome directoryICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Illegal directory name.Illegal file specification.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexIndian (ISO-8859-12)InsertInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.KOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLoad %s fileLoading : Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMode %ix%i-%i not available.ModernMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew StyleNew directoryNew itemNewNameNextNext pageNoNo entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNordic (ISO-8859-10)NormalNormal font:Note, 8 1/2 x 11 inOKOpen FileOpen HTML documentOperation not permitted.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPagesPaper SizePaper sizePastePermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint spoolingPrint this pagePrint to FilePrinter command:Printer optionsPrinter options:Printer...Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'Referenced object node with ref="%s" not found!Registry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remove current page from bookmarksReplace &allReplace with:Resource files must have same version number!Right margin (mm):RomanSaveSave %s fileSave &As...Save AsSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Select &AllSelect a document templateSelect a document viewSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelSizeSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Statement, 5 1/2 x 8 1/2 inStatus: String To Colour : Incorrect colour specification : %sSubclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTip of the DayTips not available, sorry!To:Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)US Std Fanfold, 14 7/8 x 11 inUS-ASCIIUnable to open requested HTML document: %sUndeleteUnderlinedUnexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 32 bit (UTF-32)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWarningWarning: Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows CE (%d.%d)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows Thai (CP 874)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.YesYou cannot add a new directory to this section.[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.attempt to change immutable key '%s' ignored.bad signaturebinaryboldcan't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.ctrldatedefaulteighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening filefailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesinvalid message box return valueitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumout of memoryread errorreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.write errorwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets-2.5.2 Report-Msgid-Bugs-To: POT-Creation-Date: 2008-04-24 09:31+0200 PO-Revision-Date: 2008-04-22 12:47+0100 Last-Translator: Václav Slavík Language-Team: wxWidgets translators MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit (chyba %ld: %s) - NáhledObálka č. 10, 4 1/8 x 9 1/2 palceObálka č. 11, 4 1/2 x 10 3/8 palceObálka č. 12, 4 3/4 x 11 palcůObálka č. 14, 5 x 11 1/2 palceObálka č. 9, 3 7/8 x 8 7/8 palce%i z %i%s (nebo %s)%s - chyba%s - informace%s - varování%s Soubory (%s)|%s%sO &aplikaci...&Použít&Použít stylUspořádat ikony&ZrušitKaskádově&Zavřít &Barva:&Kopírovat&Odstranit&Detaily&Soubor&Najít&DokončitNápověda&Log&Přesunout&Další&Další >&Další tip&Otevřít...&Vložit&Předchozí&Tisknout...&Zopakovat&Zopakovat &Nahradit&Obnovit&Uložit...&Zobrazit tipy při spuštění&Velikost&Vrátit&Vrátit &Okno'%s' obsahuje přebytečné '..', ignoruji.'%s' je neplatný'%s' není správná číselná hodnota pro volbu '%s'.'%s' není katalog překladů.'%s' je zřejmě binární buffer.'%s' má být číslo.'%s' má obsahovat pouze ASCII znaky.'%s' má obsahovat pouze písmena.'%s' má obsahovat pouze písmena nebo číslice.(Nápověda)(záložky)10 x 14 palců11 x 17 palcůObálka 6 3/4, 3 5/8 x 6 1/2 palce: soubor neexistuje!: neznámá znaková sada: neznámé kódování< &Zpět<<>>>>|stránka A3, 297 x 420 mmstránka A4, 210 x 297 mmmalá stránka A4, 210 x 297 mmstránka A5, 148 x 210 mmABCDEFGabcdefg12345ASCIIPřidá tuto stránku k záložkámPřidat k uživatelským barvámPřidávám knihu %sVšechnyVšechny soubory (%s)|%sVšechny soubory (*)|*Všechny soubory (*.*)|*Všechny soubory (*.*)|*Už vytáčím.Připojit log k souboru '%s' (pokud zvolíte [Ne], soubor přepíšete)?Arabské (ISO-8859-6)Obálka B4, 250 x 353 mmstránka B4, 250 x 354 mmObálka B5, 176 x 250 mmstránka A5, 182 x 257 mmObálka B6, 176 x 125 mmBMP: Nemohu alokovat paměť.BMP: Nemohu uložit poškozený obrázek.BMP: Nemohu zapsat RGB paletuBMP: Nemohu zapsat data.BMP: Nemohu zapsat hlavičku souboru (Bitmap).BMP: Nemohu zapsat hlavičku souboru (BitmapInfo).BMP: wxImage nemá vlastní wxPalette.Baltské (ISO-8859-13)Baltské (staré) (ISO-8859-4)TučnéDolní okraj (mm):stránka C, 17 x 22 palců&VymazatObálka C3, 324 x 458 mmObálka C4, 229 x 324 mmObálka C5, 162 x 229 mmObálka C6, 114 x 162 mmObálka C65, 114 x 229 mmNemohu zjistit soubory odpovídající masce '%s'Nemohu zjistit soubory v adresáři '%s'Nemohu obnovit vlákno %luNemohu obnovit vlákno %xNemohu spustit vlákno: chyba při zápisu TLS.Nemohu ukončit vlákno %luNemohu pozastavit vlákno %xNemohu počkat na ukončení vláknaNemohu vzít zpětNemohu detekovat formát obrázku '%s': soubor neexistuje.Nemohu zavřít registrový klíč '%s'Nemohu kopírovat hodnoty nepodporovaného typu %dNemohu vytvořit registrový klíč '%s'Nemohu vytvořit vláknoNelze vytvořit okno třídy %sNemohu smazat klíč '%s'Nemohu smazat INI soubor '%s'Nemohu smazat hodnotu '%s' z klíče '%s'Nemohu vyjmenovat podklíče klíče '%s'Nemohu vyjmenovat hodnoty klíče '%s'Nemohu zjistit pozici v souboru '%s'Nemohu získat informace o registrovém klíči '%s'Nemohu načíst obrázek ze souboru '%s': soubor neexistuje.Nemohu otevřít registrový klíč '%s'nemohu číst z deskriptoru: %sNemohu přečíst hodnotu '%s'Nemohu načíst hodnotu klíče '%s'Nemohu uložit do souboru '%s': neznámá přípona.Nemohu uložit obsah logu do souboru.Nemohu nastavit prioritu vláknaNemohu nastavit hodnotu '%s'nemohu zapisovat do deskriptoru: %sStornoNemohu převést dialogové jednotky: dialog není znám.Nemohu nalézt aktivní vytáčené připojení: %sNemohu nalézt kontejner pro anonymní ovládací prvek '%s'.Chybí uzel s fontem '%s'.Nemohu najít umístění adresářeNemohu zjistit rozsah priorit pro plánovací politiku %d.Nemohu zjistit jméno počítačeNemohu zjistit oficiální jméno počítačeNemohu zavěsit - žádná aktivní vytáčená připojení.Nemohu inicializovat OLENemohu inicializovat knihovnu SciTech MGL!Nemohu inicializovat obrazovku.Nemohu načíst ikonu z '%s'.Nemohu načíst zdroje ze souboru '%s'.Nelze otevřít HTML dokument: %sNelze otevřít HTML nápovědu: %sNelze otevřít soubor s obsahem: %sSoubor '%s' nelze otevřít.Nemohu otevřít soubor k PostScriptovému tisku!Nelze otevřít soubor s rejstříkem: %sNemohu ze '%s' získat souřadnice.Nemohu ze '%s' získat rozměry.Nemohu tisknout prázdnou stránku.Nemohu přečíst typ z '%s'!Nemohu obnovit plánovací politiku vlákna.Nemohu spustit vlákno: chyba zápisu TLSRozlišovat velká/maláKeltské (ISO-8859-14)Středoevropské (ISO-8859-2)Vyberte ISP, ke kterému se má volatVyberte písmo&ZavřítSmazat obsah loguZavřítZavřít Alt-F4Zavřít všeZavřít oknoPočítačPoložka konfigurace nemůže začínat na '%c'PotvrditPotvrďte aktualizaci registruPřipojuji se...ObsahPřevod do znakové sady '%s' nefunguje.Nemohu uložit data do schránky: "%s"Kopie:Kopírovat výběrNemohu najít tab k idNemohu zobrazit náhled dokumentu.Nemohu zahájit tisk.Nemohu přenést data do okna.Nemohu přidat obrázek do seznamu.Nemohu vytvořit časovačNemohu vytvořit kurzor.Nemohu v dynamické knihovně nalézt symbol '%s'Nemohu získat ukazatel na aktuální vláknoNemohu načíst PNG obrázek - buď je poškozený soubor nebo je nedostatek paměti.Nemohu zaregistrovat formát schránky '%s'.Nemohu získat informace o položce %d v seznamu.Nemohu uložit PNG obrázek.Nemohu přerušit vláknoVytváření adresářeVytvořit nový adresářCtrl-&VyjmoutAktuální adresář:Cyrilice (ISO-8859-5)stránka D, 22 x 34 palcůPožadavek na DDE poke selhalDIB hlavička: Kódování neodpovídá bitové hloubce.DIB hlavička: Obrázek má výšku větší než 32767 pixelů.DIB hlavička: Obrázek má šířku větší než 32767 pixelů.DIB hlavička: Neznámá bitová hloubka.DIB hlavička: Neznámé kódování.Obálka DL, 110 x 220 mmOzdobnéVýchozí znaková sadaVýchozí tiskárnaOdstranit položku.Smazán starý zámkový soubor '%s'.Vytáčené připojení není dostupné, protože Remote Access Service (RAS) není nainstalován. Prosím, nainstalujte ho.Víte, že...AdresářeNelze vytvořit adresář '%s'Adresář '%s' neexistuje!Adresář neexistujeZobrazí všechny položky rejstříku, které obsahují daný podřetězec. Nerozlišuje velká a malá písmena.Zobrazí dialog s nastavenímiChcete změnit příkaz používaný k %s souborů s koncovkou "%s" ? Stávající hodnota je %s, Nová hodnota je %s %1Chcete uložit změny do dokumentu %s?HotovoHotovo.Dolůstránka E, 34 x 44 palcůNalezené položkyChybaChyba při vytváření adresářeChyba: Esperanto (ISO-8859-3)Chyba při volání příkazu '%s'Volání příkazu '%s' selhalo s chybou: %ulExecutive, 7 1/4 x 10 1/2 palceRozšířená unixová kódová stránka pro Japonštinu (EUC-JP)Extrakce '%s' do '%s' selhala.Nelze přistupovat k zámkovému souboru.Nemohu uzavřít soubor.Nelze zamknout zámkový soubor '%s'Nemohu uzavřít schránku.Nepodařilo se připojit: chybí uživatelské jméno nebo heslo.Nelze se připojit: žádný ISP.Nelze zkopírovat hodnotu registru '%s'Nelze zkopírovat obsah registrového klíče '%s' do '%s'.Selhalo kopírování souboru '%s' na '%s'Nelze vytvořit DDE řeťezecNepodařilo se vytvořit rodičovské MDI okno.Nelze vytvořit status bar.Nelze vytvořit jméno dočasného souboruNelze vytvořit status anonymní rouru.Nelze navázat spojení se server '%s' na téma '%s'Nemohu vytvořit adresář '%s' (Máte potřebná přístupová práva?)Nelze vytvořit klíč registrů pro soubory '%s'.Nemohu vytvořit standardní dialog 'Najít' (chyba %d)Nelze zobrati HTML dokument v kódování %sNemohu vyprázdnit shcránku.Nelze vyčíslít zobrazovací modusNelze navázat 'advise loop' s DDE serveremNepodařilo se navázat vytáčené spojení: %sNepodařilo se spustit '%s' Nepodařilo se získat jména ISP: %sNelze získat data ze schránkyNepodařilo se zjistit místní systémový časNemohu zjistit aktuální pracovní adresářNemohu inicializovat GUI: nejsou žádná zabudované témataNemohu se inicializovat MS HTML Help komponentu.Nemohu inicializovat OpenGLNemohu připojit vlákno, zjištěna možná chybná alokace paměti - restartujte prosím programNepodařilo se zabít proces %dSelhalo načítání obrázku %d ze souboru '%s'.Selhalo načítání knihovny mpr.dll.Nelze načíst sdílenou knihovnu '%s'Nelze zamknout zámkový soubor '%s'Nelze změnit čas přístupu k souboru '%s'Nelze otevřít CHM archiv '%s'.Nemohu otevřít dočasný soubor.Nemohu otevřít schránku.Nepodařilo se vložit data do schránkyNepodařilo se přečíst PID ze zámkového souboru.Nepodařilo se přesměrovat vstup/výstup synovského procesuChyba při přesměrovávání vstupu a výstupu synovského procesuNelze zaregistrovat DDE server '%s'Nemohu uložit kódování znakové sady '%s'.Nelze odstranit zámkový soubor '%s'Nelze odstranit starý zámkový soubor '%s'Nelze přejmenovat registrový klíč '%s' na '%s'.Nelze přejmenovat registrový klíč '%s' na '%s'.Nemohu získat data ze schránky.Nelze zjistit časy přístupu k souboru '%s'Nepodařilo se získat text chybového hlášení RASNelze zjistit formáty podporované schránkouSelhalo při uložení obrázku do souboru "%s".Nepodařilo se poslat DDE advise notifikaciNemohu nastavit přenosový mód FTP na %s.Nemohu uložit data do schránky.Nelze nastavit přístupová práva k dočasnému souboruNemohu nastavit prioritu vlákna %d.Nepodařilo se uložit obrázek '%s' do paměťového VFS!Nemohu ukončit vlákno.Nelze ukončit 'advise loop' s DDE serveremNelze ukončit vytáčené spojení: %sNelze se dotknout souboru '%s'Nelze odemknout zámkový soubor '%s'Nelze odregistrovat DDE server '%s'Nelze zapisovat do zámkového souboru '%s'Kritická chybaKritická chyba: SouborSoubor %s neexistuje.Soubor '%s' existuje, opravdu ho chcete přepsat?Soubor '%s' již existuje. Opravdu ho chcete přepsat?Soubor nelze načíst.Chyba souboruSoubor tohoto jména již existuje.SouboryNajítNeproporcionální písmo:Folio, 8 1/2 x 13 palcůVelikost písma:Písmo:Selhalo forkováníNalezeno výskytů: %iOd:GIF: Neplatný index.GIF: datový proud je useknutý před koncem.GIF: chyba ve formátu GIF obrázku.GIF: nedostatek paměti.GIF: neznámá chyba!!!GTK+ témaGerman Legal Fanfold, 8 1/2 x 13 palcůGerman Std Fanfold, 8 1/2 x 12 palcůJdi zpětJdi dopředuJdi o úroveň výšJít do domovského adresářeJít do nadřazeného adresářeJdi na stránkuŘecké (ISO-8859-7)Kotva HTML %s neexistuje.Hebrejské (ISO-8859-8)NápovědaNastavení prohlížeče nápovědyIndex nápovědyTisk nápovědyTémata nápovědyNápověda: %sDomácí složkaICO: Chyba při načítání DIB masky.ICO: Chyba při ukládání obrázku!ICO: Obrázek je na ikonu příliš vysokýICO: Obrázek je na ikonu příliš širokýICO: Neplatný index ikony.IFF: datový proud je useknutý před koncem.IFF: chyba ve formátu IFF obrázku.IFF: nedostatek paměti.IFF: neznámá chyba!!!Nedovolené jméno adresáře.Neplatná specifikace souboru.Není možné vytvořit rich edit prvek, použiji obyčejný. Přeinstalujte prosím riched32.dll.Není možné získat vstup synovského procesuNelze zjistit přístupová práva souboru '%s'Nelze přepsat soubor '%s'Nelze nastavit přístupová práva souboru '%s'RejtříkIndské (ISO-8859-12)VložitPoškozený index v TIFF obrázku.Neplatný XRC zdroj '%s': chybí kořenový uzel 'resource'.Špatné určení grafického režimu '%s'.Špatné určení geometrie '%s'.Chybný zamykací soubor '%s'.Špatný regulární výraz '%s': %sKurzívaItalská obálka, 110 x 230 mmJPEG: Nemohu načíst obrázek - soubor je nejspíš poškozen.JPEG: Nemohu uložit obrázek.KOI8-RKOI8-UNa šířkuLedger, 17 x 11 palcůLevý okraj (mm):Legal, 8 1/2 x 14 palcůLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 palcůTenkéNačíst soubor %sNačítám : Log uložen do souboru '%s'.MDI synFunkčnost MS HTML Helpu není dostupná, protože chybí příslušná komponenta. Prosím nainstalujte ji.Ma&ximalizovatRozlišuj malá a velká písmenaPaměťový VFS už obsahuje soubor '%s'!MenuTéma MetalMi&nimalizovatMód %ix%i-%i není k dispozici.ModerníObálka Monarch, 3 7/8 x 7 1/2 palcePřesunout dolùPřesunout nahorùJménoNový stylNový adresářNova položkaNoveJmenoDalšíNásledující stránkaNeNenalezeny žádné položky.Nenalezen žádný font použitelný k zobrazení textu v kódování '%s', ale je k dispozici alternativní kódování '%s'. Přejete si použít toto kódování (jinak si budete muset vybrat jiné)?Nenalezen žádný font použitelný k zobrazení textu v kódování '%s'. Přejete si vybrat font, který se má s tímto kódováním použít (jinak se text v tomto kódování nezobrazí správně)?Nenalezen žádný ovladač pro XML uzel '%s' třídy '%s'!Nenalezen žádný ovladač pro tento typ obrázků.Žádný ovladač pro typ obrázků %d.Žádný ovladač pro typ obrázků %s.Žádný výskyt nenalezenžádny zvukSeverské (ISO-8859-10)NormálníNormální písmo:Note, 8 1/2 x 11 palcůOKOtevři SouborOtevři HTML dokumentZakázaná operace.Volba '%s' vyžaduje hodnotu.Volba '%s': '%s' neudává datum.NastaveníOrientacePCX: Nemohu alokovat paměť.PCX: nepodporovaný formát obrázkuPCX: poškozený obrázekPCX: tento soubor není PCX.PCX: neznámá chyba !!!PCX: číslo verze je příliš maléPNM: Nemohu alokovat paměť.PNM: formát souboru nerozeznán.PNM: Soubor je nejspíš uříznutý před koncem.Strana %dStrana %d z %dNastavení stránkyStranyVelikost papíruVelikost papíruVložitPrávaNelze vytvořit rouruProsím vyberte korektní font.Vyberte prosím existující soubor.Prosím vyberte si poskytovatele (ISP), ke kterému se chcete připojitNainstalujte si prosím novou verzi knihovny comctl32.dll (je potřeba alespoň verze 4.70, ale vy máte %d.%02d), jinak tento program nebude fungovat správně.Vyčkejte prosím, až skončí tisk Na výškusoubor PostScriptNáhled:Předchozí stránkaVytisknoutNáhled tiskuChyba během vytváření náhledu.RozsahNastavení tiskuTisknout barevněTisková frontaVytiskne tuto stránkuTisknout do souboruPříkaz tisku:Nastavení tiskárnyNastavení tiskárny:Tiskárna...Tisknu Chyba tiskuTisknu stranu %d...Tisknu...Program přerušen.Quarto, 215 x 275 mmOtázkaChyba při čtení ze souboru '%s'Objektový uzel s ref="%s" nenalezen!Registrový klíč '%s' už existuje.Registrový klíč '%s' neexistuje, nemohu ho přejmenovat.Klíč registru '%s' je potřeba k normálnímu běhu systému, pokud ho smažete, systém bude nestabilní: operace přerušena.Registrový klíč '%s' už existuje.Související položky:Odstraní tuto stránku ze záložekNahraď vše Nahradit textem: Soubory se zdroji musí mít stejné číslo verze!Pravý okraj (mm):PatkovéUložitUložit soubor %sUložit &jako...Uložit JakoUložit obsah logu do souboruPsacíHledatProhledá obsah knih(y) s nápovědou a vypíše všechny výskyty textu, který jste zadalSměr hledáníVyhledat řetězec:Hledej ve všech kniháchHledám...SekceChyba při nastavování pozice v souboru '%s'Vybrat &všeVyberte šablonu dokumentuVyberte zobrazení dokumentuZa volbou '%s' se očekává oddělovač.Nastavení...Nalezeno několik aktivních vytáčených připojení, vybírám jedno náhodně.Zobraz všeZobrazí všechny položky v rejstříkuUkázat skryté adresářeZobraz/schovej navigační panelVelikostSkloněnéTento soubor nelze otevřít pro zápis.Tento soubor nelze otevřít.Tento soubor nelze uložit.Nedostatek paměti na vytvoření náhledu.Statement, 5 1/2 x 8 1/2 palceStatus: Vlakno do Barvy: chybný popis barvy : %sPodtřída '%s' ke zdroji '%s' nenalezena!BezpatkovéTIFF: Nemohu alokovat paměť.TIFF: Chyba při načítání obrázku.TIFF: Chyba při načítání obrázku.TIFF: Chyba při ukládání obrázku.TIFF: Chyba při ukládání obrázku.Tabloid, 11 x 17 palcůNeproporcionálníŠablonyThajské (ISO-8859-11)FTP server nepodporuje pasivní mód.Znaková sada '%s' je neznámá. Můžete vybrat jinou sadu jako náhradu nebo stiskněte [Zrušit], pokud ji nelze nahraditFormát schránky '%d' neexistuje.Adresář '%s' neexistuje Chcete ho vytvořit?Soubor '%s' neexistuje a nemůže být otevřen. Byl proto odstraněn ze seznamu nedávno otevřených souborů.Cesta '%s' obsahuje příliš mnoho ".."!Požadovaný parametr '%s' nebyl zadán.Text nelze uložit.Musíte zadat hodnotu volby '%s'.Při nastavování stránky nastala chyba: nastavte výchozí tiskárnu.Modul s vlákny se nepodařilo iniciovat: nemohu ukládat hodnoty v 'local storage'Selhala inicializace modulu s vlákny: nelze vytvořit klíčModul s vlákny se nepodařilo iniciovat: nemohu alokovat index v 'local storage'Nastavení priority vlákna je ignorováno.Vyrovnat &vodorovněVyrovnat &svisleTip dneTip není k dispozici!Do:Horní okraj (mm)Soubor '%s' nelze odebrat z paměťového VFS, protože nebyl načten!Snažím se zjistit NULLové jméno počítače: vzdávám toTurské (ISO-8859-9)US Std Fanfold, 17 7/8 x 11 palcůUS-ASCIINelze otevřít požadovaný HTML dokument: %sObnovit smazanéPodtrženéNeočekávaný parametr '%s'Unicode 16 bit (UTF-16)Unicode 32 bit (UTF-32)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Neznámá chyba DDD: %08xNeznámá znaková sada (%d)Neznámá 'dlouhá' volba '%s'Neznámá volba '%s'Neznámý styl Přebytečná '{' v popisu mime typu %s.Nepojmenovaný příkazNepodporovaný formát obsahu schránky.Nepodporované téma '%s'.NahoruPoužití: %sKonflikt validaceProhlížet soubory v detailním pohleduProhlížet soubory v seznamuPohledyVarováníVarování: Západoevropské (ISO-8859-1)Západoevropské s eurem (ISO-8859-15)Pouze celá slovaPouze celá slovaTéma Win32Win32s na Windows 3.1Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Arabské pro Windows (CP 1256)Baltské pro Windows (CP 1257)Windows CE (%d.%d)Středoevropské pro Windows (CP 1250)Zjednodušená čínština pro Windows (CP 936)Tradiční čínština pro Windows (CP 950)Cyrilice pro Windows (CP 1251)Řecké pro Windows (CP 1253)Hebrejské pro Windows (CP 1255)Japonské pro Windows (CP 932)Korejské pro Windows (CP 949)Windows MEWindows Thai (CP 874)Turecké pro Windows (CP 1254)Západoevropské pro Windows (CP 1252)Windows/DOS OEM (CP 437)Chyba při zápisu do souboru '%s'Chyba při parsování XML: '%s' na řádce %dXPM: Špatná pixelová data!XRC zdroj '%s' (třída '%s') nenalezen!XRC zdroje: nemohu vytvořit bitmapu z '%s'.AnoNemůžete přidat nový adresář do této sekce.[PRÁZDNÝ]DDEML aplikace způsobila prodlouženou vzácnou podmínku.Funkce DDEML byla zavolána bez předchozího volání DdeInitialize, nebo dostala neplatný identifikátor instance.clientův pokus navázat konverzaci selhal.selhala alokace paměti.nepodařilo se ověřit parametr pomocí DDEML.požadavek na synchronní advise transakci vypršel.požadavek na synchronní datovou transakci vypršel.požadavek na synchronní execute transakci vypršel.požadavek na synchronní poke transakci vypršel.požadavek na ukončení advise transakce vypršel.v konverzaci ukončené klientem došlo k pokusu o serverovou transakci, nebo se server ukončil před doděláním transakce.transakce neuspěla.altaplikace inicializovaná jako APPCLASS_MONITOR se pokusila o DDE transakci, nebo se aplikace inicializovaná jako APPCMD_CLIENTONLY pokusila o serverovou transakci.interní volání PostMessage selhalo.nastala interní chyba v DDEML.DDEML funkce dostala neplatný identifikátor transakce. Identifikátor transakce se stává neplatný, jakmile se aplikace vrátí z XTYP_XACT_COMPLETE callbacku.pokus o změnu neměnného klíče '%s' ignorován.špatný podpisbinárnítučnénemohu zavřít soubor '%s'nemohu zavřít deskriptor souboru %dNemohu uložit změny v souboru '%s'nemohu vytvořit soubor '%s'nemohu smazat uživatelský konfigurační soubor '%s'nemohu zjistit, jestli byl dosažen konec souboru v deskriptoru %dnemohu zjistit délku souboru na deskriptoru %dnemohu najít uživatelův domovský adresář, použiji aktuální adresářnemohu vyprázdnit (flush) deskriptor %dnemohu zjistit pozici v deskriptoru %dnemohu načíst žádný font, končímnemohu otevřít soubor '%s'nemohu otevřít globální konfigurační soubor '%s'.nemohu otevřít konfigurační soubor '%s'nemohu otevřít soubor s uživatelskou konfiguracínemohu číst z deskriptoru %dnemohu odstranit soubor '%s'nemohu odstranit dočasný soubor '%s'nemohu seekovat v deskriptoru %dnemohu zapsat buffer '%s' na disk.nemohu zapisovat do deskriptoru %dnemohu uložit uživatelskou konfiguracikatalog pro doménu '%s' nenalezen.ctrldatumpředvolenéosmnáctéhoosméhojedenáctéhopoložka '%s' se v '%s' vyskytuje víc než jednouchyba ve formátu data.Chyba při čtení ze souborunelze vyprázdnit buffer souboru '%s'patnáctéhopátéhosoubor '%s', řádka %d: '%s' ignorováno po hlavičce skupiny.soubor '%s', řádka %d: očekávám '='.soubor '%s', řádka %d: klíč '%s' byl poprvé nalezen na řádce %d.soubor '%s', řádka %d: hodnota pro neměnný klíč '%s' ignorována.soubor '%s': neočekávaný znak %c na řádku %d.prvníhoVelikost písmačtrnáctéhočtvrtéhovypisovat podrobný logšpatná návratová hodnota message boxukurzívatenkélocale '%s' nemůže být nastavenohledám katalog '%s' v cestě '%s'.půlnocdevatenáctéhodevátéhožádná chyba DDE.žadná chybabezejmennápolednečíslonedostatek paměti.Chyba při čteniproblém reentrance.druhéhoChyba při hledanisedmnáctéhosedméhoshiftzobrazí tuto nápovědušestnáctéhošestéhourčí videomód, který se má použít (např. 640x480-16)určí, jaké téma použítřetězecdesátéhoodpověď na transakci způsobila nastavení bitu DDE_FBUSY.třetíhotřináctéhodneszítradvanáctéhodvacátéhopodtrženéneočekávané " na pozici %d v '%s'.neznámýneznámá třida %sneznámá chybaneznámá chyba (kód %08x).neznámý počátek pro nastavení pozicenezname-%dnepojmenovanýnepojmenovaný%dpoužívám katalog '%s' z '%s'.Chyba při psanimwxGetTimeOfDay selhalo.wxSocket: chybná signatura v ReadMsg.wxSocket: neznámá událost!wxWidgets nemohou otevřít displej pro '%s': ukončuji.wxWidgets nemohou otevřít displej. Program se nyní ukončí.včerazlib chyba %d|<<wxMaxima-13.04.2/locales/wxwin/da.mo000644 000765 000024 00000201653 11670654443 017622 0ustar00andrejstaff000000 000000 a$,60H?1HqH?sHHHHHHI,IHIfI oIzII II I I IIIIIIIJ JJ'J/J8J>JDJJJ RJ`JiJrJxJ~JJJJJJJ JJJJJJ J J J JKKKKK'K-K6KLKRKXK `KkKqKxK|KKKK4K$K!L3L*KL/vL:LL L L L M M M +M LMVMmMMMMMMM#M/MNN.N1N35NiNyNNNNNN O O&O*OHO^O mO xOOOOOOO:O!P#5P YPdPPPPPPQ&Qcl'$Ə')?Vt+ː%= @J^| (̑  3 KV f q"Ē#$ 0Kc| ד "&I_x")ϔ-'/+[ d n{;:O0=ז;>Q;5̗9p,י-!Ϛ!2T)k>/ԛ05-T*(# "-P g !ʝ$'9>C KV]/f 4Ğ!89T. ßΟ՟ !&=d mx ~  Π֠ܠ -1$JosCy áΡޡ $ / 7 Ef z '̢3*B m wG.v'x !¥"& Fg p~  Ǧڦ 4 :DINT Zg oz çȧЧԧݧ &/ 7BGO epv   Ѩ7*&Dk' *ͩ  *9H#W { ªͪЪ֪ݪ$0 :Neh0l߫'<PV]} Ĭ׬;"^ s ح (A^t)ʮ%!7)Y)ï 4Nh%(۰0P lC&6 (Bk%²)/ 0;,l2*̳*<"&_$E#13e&10!1R,8ж &!5H~"ڷ 7Xx-'۸%) E'f/!% 2=MR#e& Ⱥ)ٺ/ <(D mz*ͻջ##4X/s6ݼ#I8 &ʽ5: S_n t.ƾ/2%$X#} ֿ̿  + [,m-6?F-N| #62"i6$,[*A&%7]'{2A7BP+-) 7R'n';&?T^)#5 R s' 2%/-U &33(3"\-9(*(;,d"0.21"d'"  9$.^   !,Naf'~ $"4W_!g .!'2Zpv 4  #%,R r' w#F+j +%$>>(}"99"Sv}0% ,M f  3%Qw~ %<E ,% *5">ai%p  ?D))) ",BIXorz 3  #:^t"%:J^n  #":1] 4APbrz  .6H_ w    />,F=s.U' /,?E I T`hO  ?) is ( E*3L_ | 0$%9?Q)H5Sqw!""$$< EP+cu&),cV %0+'FEnN>TB) ! ;NI_+"- @ah'$' "8Ml* 9<EYo  ", ' ?J Z es"#%'C[v !AWp$,,$/' Wajy;9D ~+77;;8w>8V5|)& G,a?35#8,\$,+& "Gj$!%$(,@mrw47"/<RD* "2U\`$}  3=(Dm @ $ , 8Y `l   %44*i  W!I%@|M;x[6RerytyN9c+d/EM{UA7a_ZA0MO<A}om(<SosdDUpf_]Gz4Ws%"DH=BEqRwQC^MG'/;BE=K<<& [> Pq*vcH~7,TPGK3gS4H\I *:NSYT.~X WBt(N|6aL$zbQ08NwH| 4VkK:.u^gix@xrPij V6u8TI\ui/rs"*\5Xq!b,$"# \Y7_e3L FXFJQhjL m{2#Of'FW-5h`&$v++2U?03D5[X`9-*2 PV)2J;8 ^^'( )l >T~ ak=Z'mYf1&I(GZ6Lh"&tnA[ C#g$Rl{V %-C.1U F)48>?#YD3/CZB =1! _0abn+%eOR :9v-]]jw.97pS)kldK }}: JcJy?o,;Op!]@5`,`@1QzEn?> Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Close&Copy&Debug report preview:&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&Notes:&OK&Open...&Paste&Preferences&Previous&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Up&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 11 in10 x 14 in11 x 17 in12 x 11 in15 x 11 in6 3/4 Envelope, 3 5/8 x 6 1/2 in9 x 11 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A debug report has been generated in the directory A2 420 x 594 mmA3 sheet, 297 x 420 mmA4 Extra 9.27 x 12.69 inA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 Rotated 210 x 148 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 (JIS) Rotated 364 x 257 mmB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) Rotated 257 x 182 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 (JIS) 128 x 182 mmB6 (JIS) Rotated 182 x 128 mmB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCan not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCase sensitiveCeltic (ISO-8859-14)Central European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not find tab for idCould not start document preview.Could not start printing.Could not transfer data to windowCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDebug report "%s"DecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.DesktopDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...DirectoriesDirectory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?Don't SaveDoneDone.Double Japanese Postcard Rotated 148 x 200 mmDownE sheet, 34 x 44 inEdit itemEnter a page number between %d and %d:Entries foundErrorError creating directoryError while waiting on semaphoreError: Esperanto (ISO-8859-3)Executable files (*.exe)|*.exe|All files (*.*)|*.*||Execution of command '%s' failedExecutive, 7 1/4 x 10 1/2 inFailed to access lock file.Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create connection to server '%s' on topic '%s'Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FilesFiles (%s)FilterFindFixed font:Folio, 8 1/2 x 13 inFontFont size:Fork failedForward hrefs are not supportedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!If you have any additional information pertaining to this bug report, please enter it here and it will be joined to it:Illegal directory name.Illegal file specification.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexIndian (ISO-8859-12)Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.Japanese Double Postcard 200 x 148 mmJapanese Envelope Chou #3Japanese Envelope Chou #3 RotatedJapanese Envelope Chou #4Japanese Envelope Chou #4 RotatedJapanese Envelope Kaku #2Japanese Envelope Kaku #2 RotatedJapanese Envelope Kaku #3Japanese Envelope Kaku #3 RotatedJapanese Envelope You #4Japanese Envelope You #4 RotatedJapanese Postcard 100 x 148 mmJapanese Postcard Rotated 148 x 100 mmKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLoad %s fileLoading : Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMode %ix%i-%i not available.ModernModifiedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNordic (ISO-8859-10)NormalNormal font:Note, 8 1/2 x 11 inOKOpen FileOpen HTML documentOpen file "%s"Operation not permitted.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.PRC 16K 146 x 215 mmPRC 16K RotatedPRC 32K 97 x 151 mmPRC 32K RotatedPRC 32K(Big) 97 x 151 mmPRC 32K(Big) RotatedPage %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:RemoveRemove current page from bookmarksRep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save AsSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelect a document viewSelectionSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelSizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sound data are in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Subclass '%s' not found for resource '%s', not subclassing!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected parameter '%s'Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown dynamic library errorUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWarningWarning: Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Thai (CP 874)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.attempt to change immutable key '%s' ignored.bad arguments to library functionbinaryboldcan't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.ctrldatedefaulteighteentheightheleventhentry '%s' appears more than once in group '%s'failed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfourteenthfourthgenerate verbose log messagesinvalid message box return valueitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.nonamenoonnumreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.wxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets-2.6.1 Report-Msgid-Bugs-To: POT-Creation-Date: 2008-04-24 09:31+0200 PO-Revision-Date: 2006-07-13 19:43+0100 Last-Translator: Morten Ulrich Language-Team: Dansk MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Generator: Rosetta (http://launchpad.ubuntu.com/rosetta/) plural-forms: nplurals=2; plural=n != 1 Send denne rapport til den ansvarlige for programmet. P forhnd tak. Mange tak. Vi undskylder ulejligheden. (fejl %ld: %s) - Vis udskrift#10 Konvolut, 4 1/8 x 9 1/2 tomme#11 Konvolut, 4 1/2 x 10 3/8 tomme#12 Konvolut, 4 3/4 x 11 tomme#14 Konvolut, 5 x 11 1/2 tomme #9 Konvolut, 3 7/8 x 8 7/8 tomme%i af %i%s (eller %s)%s Fejl%s Information%s Advarsel%s filer (%s)|%s%s meddelelse&Om...&Faktisk strrelse&Anvend&Arrangr ikoner&Tilbage&Fed&Afbryd&Kaskade&Luk&Kopir&Debugrapportpreview&Slet&Detaljer&Ned&Fil&Find&Slut&Skrifttype:&Fremad&G til...&Hjlp&Hjem&Indeks&Kursiv&Log&Flyt&Ny&Nste >&Nste >&Nste tip&Nej&Noter:&OK&ben...&St ind&Indstillinger&Tilbage&Udskriv...&Egenskaber&Afslut&Gentag&Gentag &Erstat&Genindls&Gem&Gem...&Vis tips ved opstart&Strrelse&Stop&Stilart&Understreget&Fortryd&Fortryd &Op&Vindue&Ja'%s' har ekstra '..', ignoreret.'%s' er ugyldig'%s' er ikke en korrekt numerisk vrdi til option '%s'.'%s' er ikke et gyldigt meddelelseskatalog'%s' er sandsynligvis en binr buffer.'%s' skal vre numerisk.'%s' m kun indeholde ASCII karakterer.'%s' m kun indeholde bogstaver.'%s' m kun indeholde bogstaver eller tal.(Hjlp)(bogmrker)10 x 11 tommer10 X 14 tommer11 x 17 tommer12 x 11 tommer15 x 11 tommer6 3/4 Konvolut, 3 5/8 x 6 1/2 tomme9 x 11 tommer: fil eksisterer ikke!: ukendt tegnst: ukendt kodning< &Tilbage<<Fed kursiv skrift.
fed kursiv understreget
Fed skrift. Kursiv skrift. >>>>|En debugrapport er blevet genereret i kataloget A2 420 x 594 mmA3 ark 297 x 420 mmA4 ekstra 9.27 x 12.69 tommerA4 ark, 210 x 297 mmA4 lille ark, 210 x 297 mmA5 roteret 210 x 148 mmA5 ark, 148 x 210 mmABCDEFGabcdefg12345ASCIITilfjTilfj denne side til bogmrkerTilfj til brugerfarverTilfjer bog %sVenstrejusterHjrejusterAlleAlle filer (%s)|%sAlle filer (*)|*Alle filer (*)|*.*Alle filer (*)|*.*Kalder allerede ISPTilfj log til fil '%s' (valg af [Nej] vil overskrive den)?Arabisk (ISO-8859-6)Arkiv indholder ikke #SYSTEM filAttributterB4 (JIS) roteret 364 x 257 mmB4 Konvolut, 250 x 353 mmB4 ark, 250 x 354 mmB5 (ISO) ekstra 201 x 276 mmB5 (JIS) roteret 257 x 182 mmB5 konvolut 176 x 250 mmB5 ark, 182 x 257 millimeterB6 (JIS) 128 x 182 mmB6 (JIS) roteret 182 x 128 mmB6konvolut, 176 x 125 mmBMP: Kunne ikke f hukommelse.BMP: Billede ugyldigt - kunne ikke gemme.BMP: Kunne ikke skrive RGB farvekort.BMP: Kunne ikke skrive data.BMP: Kunne ikke skrive filheader.Kunne ikke skrive filheader (BitmapInfo).BMP: wxImage har ikke sin egen wxPalette.Baltisk (ISO-8859-13)Baltisk (gammel) (ISO-8859-4)FedBund margin (mm):C ark, 17 x 22 tommer&RensF&arveC3 Konvolut, 324 x 458 mmC4 Konvolut, 229 x 324 mmC5 Konvolut, 162 x 229 mmC6 Konvolut, 114 x 162 mmC65 Konvolut, 114 x 229 mmKan ikke oprette mutex.Kan ikke lse fillisten i mappen '%s'Kan ikke f liste af filer i mappen '%s'Kan ikke genoptage trd %xKan ikke starte trd: fejl ved skrivning af TLS.Kan ikke suspendere trd %xKan ikke vente p trdafslutningKan ikke &fortrydeKan ikke tjekke billedformatet i filen '%s': filen eksisterer ikke.Kan ikke lukke registreringsngle '%s'Kan ikke kopiere vrdier af ikke-understttet type %d.Kan ikke oprette registreringsngle '%s'Kan ikke oprette trdKan ikke oprette vindue af klassen %sKan ikke slette ngle '%s'Kan ikke slette INI filen '%s'Kan ikke slette vrdi '%s' fra ngle '%s'Kan ikke f liste af underngler til ngle '%s'Kan ikke f en liste af vrdierne fra ngle '%s'Kan ikke finde aktuel position i filen '%s'.Kan ikke g information om registreringsngle '%s'Kan ikke initialisere zlib deflate stream.Kan ikke initialisere zlib inflate stream.Kan ikke lse billede fra filen '%s': filen eksisterer ikke.Kan ikke bne registreringsnglen '%s'kan ikke lse fra inflate stream: %sKan ikke lse inflate stream: uventet EOF i den underliggende stream.Kan ikke lse vrdien af '%s'Kan ikke lse vrdien af ngle '%s'Kan ikke gemme til filen '%s': ukendt filendelse.Kan ikke gemme logdata til fil.Kan ikke stte trdprioritetKan ikke stte vrdien af '%s'kan ikke skrive til deflate stream: %sAfbrydKan ikke konvertere dialogenheder: ukendt dialog.Kan ikke finde netvrk via modem forbindelse: %sKan ikke finde kontainer for ukendt kontrol '%s'.Kan ikke finde font node '%s'.Kan ikke finde placering af adressebog filenKan ikke f prioritetsomrde for afviklingsalgoritme %d.Kan ikke finde hostnavnKan ikke finde det officielle hostnavnKan ikke afbryde - ingen opkaldsforbindelse er aktiv.Kan ikke initialisere OLEKan ikke initialisere SciTech MGL!Kan ikke initialisere display.Kan ikke hente ikon fra '%s'.Kan ikke bne HTML dokument %s.Kan ikke bne HTML dokument %sKan ikke bne HTML hjlpebog: %sKan ikke bne indholdsfilen: %sKan ikke bne filen '%s'Kan ikke bne fil til PostScript udskrivning!Kan ikke bne indexfilen %sKan ikke fortolke koordinater fra '%s'.Kan ikke fortolke dimension fra '%s'.Kan ikke udskrive tom side.Kan ikke lse typenavn fra '%s'!Kan ikke hente trdafviklingsalgoritme.Kan ikke starte trd: fejl ved skrivning af TLSForskel p store og sm bogstaverKeltisk (ISO-8859-14)Centraleuropisk (ISO-8859-2/Latin 2)Vlg ISP at ringe tilVlg farveVlg skrifttypeL&ukRens log indholdetKlik for at afbryde skrifttypevalg.Klik for at bekrfte skifttype valget.LukLuk Alt-F4Luk alleLuk dette vindueKomprimeret HTML Hjlpefil (*.chm)|*.chm|ComputerKonfigurations punkt kan ikke begynde med '%c'.BekrftBekrft Registreringsdatabase opdateringForbinder...IndholdKonvertering til tegnst '%s' virker ikke.Kopieret til udklipsholder:"%s"Kopier:Kunne ikke finde tab til idKunne ikke starte udskriftsvisning.Kunne ikke starte udskrivning.Kunne ikke overfre data til vindueKunne ikke f en mutex-lsKunne ikek tilfje et billede til billedlisten.Kunne ikke oprette en timerKunne ikke oprette en markr.Kunne ikke finde symbolet '%s' i et dynamisk bibliotekKunne ikke f nuvrende trdpointerKunne ikke load'e et PNG billede - korrupt fil eller for lidt hukommelse?Kan ikke hente lyddata fra '%s'.Kunne ikke registrere udklipsformat %sKunne ikke frigive en mutexKunne ikke hente information om listekontorlenhed %d.Kunne ikke gemme PNG billede.Kunne ikke afslutte trdOpret mappeOpret ny mappe&KlipAktuel mappe:Kyrillisk (Latin-5)D ark, 22 x 34 tommerDDE poke request fejlede DIB Header: Kodning svarer ikke til bitdybden.DIB Header: Billedhjde > 32767 pixels i filen.DIB Header: Billedbredde > 32767 pixels for filen.DIB Header: Ukendt bitdybde i filen.DIB Header: Ukendt kodning i filen.DL Konvolut, 110 x 220 mmFejlrapport "%s"DekorativStandardkodningStandardprinterSlet objektSlettede gammel lockfil '%s'.SkrivebordNetvrk via modem er ikke tilgngeligt, fordi Remote Access Service (RAS) ikke er installeret p computeren. Installer RAS frst.Vidste du...MapperMappen '%s' kunne ikke oprettesMappen '%s' eksisterer ikke!Mappen eksisterer ikkeMappen eksisterer ikkeVis alle indexemner, der indeholder understrengen. Ingen forskel p store og sm bogstaver.Vis IndstillingerVil du overskrive kommandoen brugt til %s filer med efternavn "%s" ? Aktuel vrdi er %s, Ny vrdi er %s %1nsker du at gemme ndringer til dokument %s?Gem ikkeFrdigFrdig.Dobbelt japansk postkort roteret 148 x 200 mmNedE ark, 34 x 44 tommerRet objektIndtast et sidetal mellem %d og %d:indgange fundetFejlFejl ved oprettelse af mappeFejl mens ventede p semaforFejl: Esperanto (ISO-8859-3)Eksekverbare filer (*.exe)|*.exe|All filer (*.*)|*.*||Afvikling af kommando '%s' fejledeExecutive, 7 1/4 x 10 1/2 tommeKunne ikke komme til lockfil.Kunne ikke lukke filhndtagKunne ikke lukke lockfil '%s'Kunne ikke lukke udklipsholder.Kunne ikke forbinde: Mangler brugernavn og adgangskodeKunne ikke forbinde: Ingen ISP at ringe til.Kunne ikke kopiere registreringsvrdi '%s'Kunne ikke kopiere indholdet af registreringsngle '%s' til '%s'.Kunne ikke kopiere filen '%s' til '%s'Kunne ikke lave DDE strengKunne ikke oprette MDI forldreramme.Kunne ikke oprette statusbar.Kunne ikke lave et midlertidigt filnavnKunne ikke forbinde til server '%s' ang. emne '%s'Kunne ikke oprette mappe '%s' (Har du de ndvendige tilladelser?)Kunne ikke oprette registreringsindgang for '%s' filer.Kunne ikke opratte den almindelige sg/erstat dialog (fejlkode %d)Kunne ikke vise HTML-dokument i %s kodning.Kunne ikke tmme udklipsholder.Kunne ikke oprette advice loop med DDE serverKunne ikke etablere netvrk via modem: %sKunne ikke eksekvere '%s' Kunne ikke f ISP navne: %sKunne ikke hente data fra udklipsholderKunne ikke f lokal systemtidKunne ikke f den aktuelle arbejdsmappeKunne ikke initialisere GUI: Fandt ingen indbyggede temaer.Kunne ikke initialisere MS HTML Hjlp.Kunne ikke initialisere OpenGLKunne ikke joine trd, der er muligvis hukommelsestab - genstart venligst programmetKunne ikke drbe proces %dKunne ikke lse billede %d fra file '%s'.Kunne ikke bne mpr.dll.Kunne ikke bne delt bibliotek '%s'Kunne ikke lse lockfil '%s'Kunne ikke ndre filtid for '%s'Kunne ikke bne midlertidig fil.Kunne ikke bne udklipsholder.Kunne ikke sende data til udklipsholderKunne ikke lse PID fra lockfil.Kunne ikke omdirigere input/output fra underprocesKunne ikke registrere DDE server '%s'Kunne ikke huske kodning for tegnsttet '%s'.Kunne ikke fjerne lockfilen '%s'Kunne ikke fjerne gammel lockfil '%s'.Kunne ikke omdbe registreringsvrdi '%s' til '%s'.Kunne ikke omdbe registreringsngle '%s' til '%s'.Kunne ikke hente data fra udklipsholder.Kunne ikke hente filtider for '%s'Kunne ikke hente tekst fra RAS fejlmeddelelseKunne ikke hente liste over understttede udklipsformaterKunne ikke sende DDE advice notificationKunne ikke stte FTP transfer mode til %s.Kunne ikke sende data til udklipsholder.Kunne ikke stte midlertidige filrettighederKunne ikke stte trdprioritet %d.Kunne ikke gemme billede '%s' i hukommelsen VFS!Kunne ikke afslutte en trd.Kunne ikke afslutte advice loop med DDE serverKunne ikke lukke netvrk via modem forbindelse: %sKunne ikke rre (touch) filen '%s'Kunne ikke lse lockfil '%s' opKunne ikke afregistrere DDE server '%s'Kunne ikke skrive til lockfil '%s'Fatal fejlFatal fejl: FilFilen %s findes ikke.Fil '%s' findes allerede, vil du virkelig overskrive den?Fil '%s' findes allerede. Vil du erstatte den?Fil kunne ikke lses.FilfejlFilnavnet findes allerede.FilerFiler (%s)FilterFindFast type:Folio, 8 1/2 x 13 tommerSkriftSkriftstrrelse:Fork fejledeFremad hrefs er ikke understttetFandt %i matchendeFra:GIF: Ugyldigt gif indexGIF: datastrm tilsyneladende for kort.GIF: fejl i GIF billedformat.GIF: ikke nok hukommelseGIF: ukendt fejl!!!GTK+ temaGenerisk PostScriptTysk Legal Fanfold, 8 1/2 x 13 tommeTysk Std Fanfold, 8 1/2 x 12 tommeTilbageg fremEt niveau op i dokument hierakietTil hjemmemappeTil overmappeG til sideGrsk (ISO-8859-7)Gzip ikke supporteret af denne version af zlibHTML Hjlp Projekt (*.hhp)|*.hhp|HTML anker %s findes ikke.HTML filer (*.html;*.htm)|*.html;*.htm|Hebrisk (ISO-8859-8)HjlpHjlp til browser indstillingerHjlpeindexHjlp til udskriftHjlp-bger (*.htb)|*.htb|Hjlp-bger (*.zip)|*.zip|Hjlp: %sHjemHovedmappeI64ICO: Fejl ved lsning af maske DIB.ICO: Fejl ved skrivning af billedfil!ICO: Billede for hjt til ikon.ICO: Billede for bredt til ikon.ICO: Ugyldigt ikonindexIFF: datastrm tilsyneladende for kort.IFF: Fejl i IFF billedformat.IFF: ikke nok hukommelse.IFF: ukendt fejl!!!Hvis du har nogen yderligere oplysninger omkring denne bugrapport, s skriv dem venligst her og de vil blive vedhftet rapporten:Ulovligt mappenavnUlovlig filspecifikation.Kunne ikke oprette RichEdit kontrol, bruger en simpel tekstkontrol i stedet. Vi foreslr at geninstallere riched32.dll.Kunne ikke f input til underprocesKunne ikke finde rettigheder til filen '%s'Kunne ikke overskrive filen '%s'Kunne ikke stte rettigheder for filen '%s'IndexIndisk (ISO-8859-12)Intern fejl, ulovlig wxCustomTypeInfoUgyldigt TIFF billedindexUgyldig XRC resource '%s': har ikke nogen rootnode 'resource'.Ugyldig display mode specifikation '%s'.Ugyldig geometrispecifikation '%s'Ugyldig lockfil '%s'.Ugyldig eller Null Object ID sendt til GetObjectClassInfoUgyldig eller Null Object ID sendt til HasObjectClassInfoUgyldigt regulrt udtryk: '%s': %sKursivItalien Konvolut, 110 x 230 mmJPEG: Kunne ikke lse - filen er sikkert defekt.JPEG: Kunne ikke gemme billede.Japansk dobbelt postkort 200 x 148 mmJapansk konvolut Chou #3Japansk konvolut Chou #3 roteretJapansk konvolut Chou #4Japansk konvolut Chou #4 roteretJapansk konvolut Kaku #2Japansk konvolut Kaku #2 roteretJapansk konvolut Kaku #3Japansk konvolut Kaku #3 roteretJapansk konvolut You #4Japansk konvolut You #4 roteretJapansk postkort 100 x 148 mmJapansk postkort roteret 148 x 100 mmKOI8-RKOI8-ULiggendeLedger, 17 x 11 tommerVenstre margin (mm):Legal, 8 1/2 x 14 tommerLetter lille, 8 1/2 x 11 tommerLetter, 8 1/2 x 11 tommeLetLs %s fileLser : Log gemt i filen '%s'.MDI barnMS HTML hjlpefunktio er ikke tilgngelig fordi MS HTML Hjlp- bibliotektetikke er installeret p denne computer. Vi foreslr at installere det.Ma&ksimrForskel p store og smHukommelse VFS indeholder allerede fil '%s'!MenuMetal temaMi&nimrMode %ix%i-%i er ikke tilgngelig.ModernendretMonarch Konvolut, 3 7/8 x 7 1/2 tommeFlyt nedFlyt opNavnNy folderNyt objektNytNavnNsteNste sideNejIngen indgange fundet.Fandt ikke skrifttype til at vise tekst med kodning '%s', men en alternativ kodning '%s' er tilgngelig. Vil du bruge denne kodning (eller skal du vlge en anden)?Ingen skrifttype fundet til at vise tekst i kodningen '%s'. Vil du vlge en skrifttype til brug for denne kodning (ellers bliver tekst i denne kodning ikke vist korrekt)?Ingen rutine fundet til at hndtere XML node '%s', klasse '%s'!Ingen rutine fundet til denne billedtype.Ingen billedrutine defineret for type %d.Ingen billedrutine defineret for type %s.Fandt ingen passende side endnuIngen lydNordisk (ISO-8859-10)NormalNormal skrift:Note, 8 1/2 x 11 tommeOKbn Filbn HTML dokumentbn file "%s"Handling ikke tilladt.Option '%s' krver en vrdi.Option '%s': '%s' kan ikke konverteres til en dato.IndstillingerOrienteringPCX: kunne ikke f hukommelsePCX: billedformat ikke understttetPCX: ugyldigt billedePCX: dette er ikke en PCX-fil.PCX: ukendt fejl!!!PCX: for lavt versionsnummerPNM: Kunne ikke f hukommelse.PNM: Fil format ikke genkendt.PNM: Filen synes at vre afskret.PRC 16K 146 x 215 mmPRC 16K roteretPRC 32K 97 x 151 mmPRC 32K roteretPRC 32K(Big) 97 x 151 mmPRC 32K(Big) roteretSide %dSide %d af %dSideopstningSideopstningSiderPapirstrrelsePapirstrrelseTilladelserPipe oprettelse fejledeVlg venligst en gyldig skrifttype.Vlg venligst en eksisterende fil.Vlg venligst hvilken ISP, der skal ringes op tilInstallr venligst en nyere version af comctl32.dll (mindst version 4.70, du har %d.%02d) ellers fungerer dette program ikke korrekt.Vent lidt, mens der udskrives OpretstendePostScript filUdskriftsvisning:Foregende sideUdskrivUdskriftsvisningUdskriftsvisning fejledeUdskriv siderUdskriftsopstningUdskriv i farverUdskrifts&visningUdskriftsvisningUdskriftsspoolingUdskriv denne sideUdskriv til filPrinterPrinter kommando:Printer valgmulighederPrinter valgmuligheder:Printer...Printer:Udskriver UdskriftsfejlUdskriver side %d...Udskriver...Program afbrudtQuarto, 215 x 275 mmSprgsmlLsefejl i fil '%s'KlarRefereret objekt-node med ref="%s" ikke fundet!OpdatrRegistreringsngle '%s' eksisterer allerede.Registreringsnglen '%s' eksisterer ikke og kan ikke omdbes.Registreringsnglen '%s' er ndvendig for systemets almindelige drift, hvis du sletter den vil efterlade dit system i ubrugelig tilstand: operationen blev afbrudt.Registreringsvrdien '%s' eksisterer allerede.Relevante indgange:FjernFjern den aktuelle side fra bogmrkerne&ErstatErstat &alleErstat med:Resourcefilerne skal have samme versionsnummer!Tilbage til originalHjre margin (mm):RomanGemGem %s filGem &som...Gem somGen log indhold til filScriptSgSg indholdet af hjlpebog/bger efter alle forekomster af den indtastede tekstSgeretningSg efter:Sg i alle bgerSger...AfsnitSgefejl i filen '%s'Sgefejl i fil '%s' (store filer er ikke understttet af stdio)Vlg &altVlg en dokumentskabelonVlg en dokumentvisningMarkeringSeparator forventet efter optionen '%s'.Opstning...Har fundet flere netvrk via modem forbindelser, vlger en tilfldig.Vis alleVis alle punkter i indexVis skjulte mapperVis/skjul navigationspaneletStrrelseSpring overHldningBeklager, kunne ikke bne denne fil til gemning.Beklager, kunne ikke bne denne fil.Beklager, kunne ikke gemme denne fil.Beklager, der er ikke nok hukomelse til Udskriftsvisning.Beklager, udskriftsvisning krver at en printer er installeret.Lyddata er i et ikke understttet format.Statement, 5 1/2 x 8 1/2 tommeStatus: Status: Underklasse '%s' ikke fundet til resource '%s', danner ikke underklasse!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSwissTIFF: Kunne ikke f hukommelse.TIFF: Fejl ved lsning af billedeTIFF: Fejl ved lsning af billede.TIFF: Fejl ved gemning af billede.TIFF: Fejl ved skrivning af billede.Tabloid, 11 x 17 tommerTeletypeSkabelonerThai (ISO-8859-11)FTP serveren understtter ikke passiv mode.Tegnsttet '%s' er ukendt. Du kan vlge et andet til at erstatte det, eller vlg [Afbryd] hvis det ikke kan erstattesUdklipsholder format '%d' findes ikke.Mappen '%s' eksisterer ikke Opret den nu?Filen '%s' eksisterer ikke og kunne ikke bnes. Den er fjernet fra listen over senest brugte filer.Fontfarven.Fontfamilien.Stien '%s' indeholder for mange ".."!Den ndvendige parameter '%s' blev ikke angivet.Teksten kunne ikke gemmes.Vrdien til optionen '%s' skal angives.Problem ved sideopstning: du skal muligvis vlge en standardprinter.Trdmodul initialisering fejlede: kan ikke gemme vrdi i trdens private lagerTrdmodul initialisering fejlede: kunne ikke oprette trdngleTrdmodul initialisering fejlede: umuligt at allokere index i trdens private lager.Prioritetsindstilling for trd ignoreret.Fordel &vandretFordel &lodretDagens tipTips ikke tilgngelige, beklager!Til:For mange farver i PNG, billedet kan vre en smule uskarpt.Top margin (mm):Prver at fjerne filen '%s' fra hukommelsen VFS, men den er ikke indlst!Forsgte at lse et NULL hostname: giver opTyrkisk (ISO-8859-9)TypeUS Std Fanfold, 14 7/8 x 11 tommerKunne ikke bne det nskede HTML-dokument: %sKan ikke afspille lyd asynkront.GendanUventet parameter '%s'Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Ukendt DDE fejl %08xUkendt dynamisk bibliotek fejlUkendt kodning (%d)Ukendt lang option '%s'Ukendt option '%s'Ukendt stilflag Uparret '{' i en indgang for mime type %s.Unavngiven kommandoIkke-understttet udklipsformat.Ikke-understttet tema '%s'.OpBrug: %sValideringskonfliktSe filer med detaljerSe filer som listeVisningerAdvarselAdvarsel: Vesteuropisk (ISO-8859-1/Latin 1)Vesteuropisk med Euro (ISO-8859-15/Latin 0)Hele ordKun hele ordWin32 temaWin32s p Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabisk (CP 1256)Windows Baltisk (CP 1257)Windows Centraleuropisk (CP 1250)Windows Forenklet kinesisk (CP 936)Windows Traditionel kinesisk (CP 950)Windows Kyrillisk (CP 1251)Windows Grsk (CP 1253)Windows Hebrisk (CP 1255)Windows Japansk (CP 932)Windows Koreansk (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Thai (CP 874)Windows Tyrkisk (CP 1254)Windows Vesteuropisk (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Skrivefejl i fil '%s'XML tolkningsfejl: '%s' ved linje %dXPM: pixeldata drligt formet!XRC resource '%s' (klasse '%s') ikke fundet!XRC resource: Kan ikke lave bitmap fra '%s'.JaDu kan ikke tilfje en mappe til denne sektion.Zoom &IndZoom &UdZoom &Tilpaset[TOM]en DDEML applikation har lavet en forlnget race condition.en DDEML funktion blev kaldt uden at kalde DdeInitialize frst, eller der er sendt en ugyldig instance identifier til en DDEML funktion.en klients forsg p at starte en konversation slog fejl.en hukommelsestildeling fejlede.en parameter kunne ikke valideres af DDEML.en anmodning om synkron advise transaktion fik timeout.en anmodning om en synkron datatransaktion fik timeout.en anmodning om en synkron execute transaktion fik timeout.en anmodning om en synkron poke transaktion fik timeout.en anmodning om at afslutte en advise transaktion fik timeout.en server-side transaktion blev forsgt i en konversation der blev lukket af klienten, eller serveren lukkede inden afslutning af en transaktion.en transaktion mislykkedesaltet program initialiseret som APPCLASS_MONITOR har forsgt at lave en DDE transaktion, eller et program initialiseret som APPCMD_CLIENTONLY har forsgt at udfre servertransaktioner.et internt kald til PostMessage funktionen mislykkedes. intern fejl opstet i DDEML.en ugyldig transaktions identifikation er sendt til en DDEML funktion. Nr programmet er returneret fra en XTYP_XACT_COMPLETE callback, er transaktion identifikationen for dette callback ikke lngere gyldig.forsg p at ndre uforanderlig ngle '%s' ignoreret.drlige argumenter til biblioteksfunktionbinrfedkan ikke lukke filen '%s'kan ikke lukke fildeskriptor %dkan ikke udfre ndringer til fil '%s'kan ikke oprette fil '%s'kan ikke slette brugerkonfigurationsfil '%s'kan ikke afgre om slutningen af filen er net p deskriptor %dkan ikke finde lngden af filen p fildeskriptor %dkan ikke finde brugerens HOME, bruger aktuelle mappe.kan ikke skylle fildeskriptor %d udkan ikke f sgeposition p fildescriptor %dkan ikke bne nogen skrift, afbryderkan ikke bne filen '%s'kan ikke bne global konfigurationsfil '%s'.kan ikke bne brugerkonfigurationsfil '%s'.kan ikke bne brugerkonfigurationsfil.kan ikke lse fra fildeskriptor %dkan ikke fjerne filen '%s'kan ikke fjerne midlertidig fil '%s'kan ikke sge p fildeskriptor %dkan ikke skrive buffer '%s' til disk.kan ikke skrive til fildeskriptor %dkan ikke skrive brugerkonfigurationsfil.katalogfil for domne '%s' blev ikke fundet.ctrldatostandardattendeottendeelfteindgang '%s' optrder mere end en gang i gruppe '%s'kunne ikke flushe filen '%s'femtendefemtefil '%s', linie %d: '%s' ignoreret efter gruppe header.fil '%s', linje %d: '=' forventet.fil '%s', linje %d: ngle '%s blev frst fundet p linje %d.fil '%s', linje %d: vrdi af uforanderlig ngle '%s' blev ignoreret.fil '%s': uventet karakter %c p linje %d.frstefjortendefjerdelav udfrlige logbeskedderugyldig meddelelsesboks returvrdikursivletlocale '%s' kan ikke sttes.sger efter katalog '%s' i sti '%s'.midnatnittendeniendeingen DDE-fejl.unavngivetmiddagnummerreentrancy problem.andensgefejlsyttendesyvendeskiftvis denne hjlpebeskedsekstendesjetteangiv skrmindstillinger (fx 640x480-16)angiv tema at brugegemt fillngde ikke i Zip headerstrtiendesvaret p transaktionen bevirkede, at bitten DDE_FBUSY blev sat.tredjetrettendetiff modul: %si dagi morgentolvtetyvendeunderstegetuventet " p position %d i '%s'.ukendtukendt fejlukendt fejl (fejlkode %08x).ukendt sgestartukendt-%dunavngivetunavngivet%dbruger katalog '%s' fra '%s'.wxGetTimeOfDay mislykkedes.wxSocket: ugyldig signatur i ReadMsg.wxSocket: ukendt event!wxWidgets kunne ikke bne display for '%s': stopper.wxWidgets kunne ikke bne diplay. Stopper.i grzlib fejl %d|<<wxMaxima-13.04.2/locales/wxwin/de.mo000644 000765 000024 00000234016 11670654443 017625 0ustar00andrejstaff000000 000000 L;@OAOROVO_O~OOOOOP P &P1P:P IPTP eP'pP&P$P P PPQQQQ%Q.Q5Qt#bt3t"tt$tTusu'uu"u-u!v.@v$ovv vvv# w"1w-Tw'w"w'w5w+x&Kx-rx/x+x&x,#y2Py-y&y&yy+z(Iz!rz)zz3z-{>{\{$|{){!{ { {| |=$|4b|| || || |/|!} 6} A}M}m}t}}}'}}}~ ~#$~!H~#j~2~8~~ % 3H _i*| '#( = H V2b"ǀ ,'Em 7܁2)Gq$ʂj%S+y%/˃(F=`(#DŽ66:#q1  (;Mb~0 ˆ ؆42#K)o ԇ1އ| 3 ˈ&ֈ  8Qnu"~  Ɖω׉ ܉$6/ ϋ%%<W'`& ! ,6I+b0ݍ -@]t#ӎ   0+4\% Ï؏"17i/ 8F LZ p | Ƒԑ  * >J[py/!ɒ3#œד"DX a n-| Ô ДܔN [ lx  ƕ )#0T?]֖ +& R s-5—+%$)JtF6 ;8tzЙ ",,?0lz(0A]roЛ@Qbw%.0 :M˝P@jY#)<BMџ;՟A"*d%Ϡ*$>Ga$y'ơ$ޡ'+AW+n(٢+-Yi  ͣ) 5 ==G(̤  *C"\#$ȥ.F"`"ئ&)-DDr/0 % /<;D:K0g=;֩>;Q5êZpt91,k-b! ǭ̭ҭ!))@>j/0ٮ -)Wu*(#ޯ8";^ u E !$@'e#ұױܱ $ -/9i~  ò4ɲ!8 9Y.³ ȳ ҳݳ+.7 St{&˴ Դߴ " / =HPd k v -CL R]ms| $ʶҶ * >I Q[ y'̷3* E O]Xa̹й ߹!"@^ ~ º̺ ۺ 0.7*f Ļ̻һ ۻ  #*2 A N Xdkry  ɼӼܼ - 6 C Q[m v  ƽ ҽ ߽%87*p$3ܾ02At | "̿) )3 6 DO'V2~<%<Sp .A6Ax FJ5]"  %<%V+|(+8<6(s: !7@Ic}3!0<!m ; +LGj3<1#U*p!!0-->2lD<9!A[/-WS&r=%" 4@u;}*+:$K!pB-<\'z&#3+!,Mz*0 (1*Z*'(:9<!v-  4@ Q[+l- ,0G9 & 6(%%N t%!(B"_%;/VM*5#BC C 3@Wo4$& %!Fh +{.!pw2 SZb{+RV]&e! ,)&/F"X2{3)!+$M:r$$'&CF7,G.7=f+,%3#(WA"69OV@C7+#c$=*%00V26*5*R"}'_!(2J}+)F/U ()#;'Y885/)KY'3;C=32AG*Br:34$5Y@8= ,GDt6&1<I7'E:E"   %51g ~&)/Ni +(+?@N" /2G!z!)" ( 3 A6N %  !)=g=6-M{-C855> t ~, ;#*&Nu=?&6=3Z   +C5H~EF'",J w) -x s>"/  "6.(e$  4#9*]X<)6%`%"1 *A2H {% . 0<Q  $& )E%d&  = A^4%'$*L)w&*  Q \  m w            1 > T  k  v        C  B 0O K t +A m   - M   % 4 5D z        7  ( 5B Z do  /+:@K !!'A/3q4$E0E1v8h)q+O&#D#h!!<3O7;<kxdv$3'!2Ir|dvTWs#+U?^*mGr<j(%?1P$'$5'Z2-Ecz=1:RWf ~ 4  Y q % $    !!1!$L!)q!*!!!""7"S"!n"""+"#"*#0A#3r#<##/#3$ J$ V$c$t$D{$$Iq%)%0%Q&Oh&R&O 'N[''!8(Z(^(@A),))B*.*+&+,+1+7++W+,++.+?+;>,Fz,2,5,$*-O-4l-,-0-O-'O.w.%.0.h.%V/+|/3/9/0(0,A0n0s0y000 000 0.0 1#1 @10J1 {1181#1C1G.20v22 2 22&2(2 3 %3&F3m3t3y3/3+3 3 333 444&4**4U4 k4v4|44 4 4444 44F4$95^5b5=i55 55555 5 55&6 ,666K6%^666 6 6 6*6 7 77(57 ^7B7/777 8o*wSe79\x]g1diSG 2)%t84= 8[FQF[hlVO#$h=}B'(3H?HN=38VuZe5D$E$bjc1 KY% W7VFtZ,"XM}^*~jJLyyP`=UE(TZ?\b) 0j#z&Cls\Z'&;["ob\Y)Rd'|9:>{.M0]-NekB-h,>(`s<s pw^>69D4V4"d .Dw mfp!6A&x*{CStaa8gvU}Ai5nLG irx#f|BTrW1 T 7kY,UXl|r ):Hn@<xOIRQoh/X;,q<iXc. 2?^3+GAO]JmB{uv1>Q]T` Cm(+@~P5 Qy J$u UW`w/He 3n%6&uS kFsPvqNfECN@ckMIJ-GKpP2af*;+RKO.6^!4 n-g{?}~tj0Y#%_RopI0 W!29_<A/z:zMIc+|aqd_;bm!@7[rlE~'/_y5q:  vLKDgzL"  (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%ld bytes%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message%s not a bitmap resource specification.%s not an icon resource specification.%s: ill-formed resource file syntax.&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&OK&Open&Open...&Paste&Point size:&Preferences&Previous&Print&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)...10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A non empty collection must consist of 'element' nodesA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAddToPropertyCollection called on a generic accessorAddToPropertyCollection called w/o valid adderAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open URL '%s'Cannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCannot wait on thread to exit.Cant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find tab for idCould not load Rich Edit DLL '%s'Could not locate file '%s'.Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDelete itemDeleted stale lock file '%s'.Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?DoneDone.Doubly used id : %dDownE sheet, 34 x 44 inEdit itemElapsed time : Enter a page number between %d and %d:Entries foundEnvironment variables expansion failed: missing '%c' at position %d in '%s'.ErrorError Error creating directoryError in reading image DIB .Error reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Estimated time : Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExtended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to %s dialup connection: %sFailed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory %s/.gnome.Failed to create directory %s/mime-info.Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to match '%s' in regular expression: %sFailed to modify file times for '%s'Failed to open '%s' for %sFailed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.Files (%s)FindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound Found %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGetProperty called w/o valid getterGetPropertyCollection called on a generic accessorGetPropertyCollection called w/o valid collection getterGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Ill-formed resource file syntax.Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal Parameter Count for ConstructObject MethodIllegal Parameter Count for Create MethodIllegal directory name.Illegal file specification.Image and mask have different sizes.Image file is not of type %d.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.JustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Loading Grey Ascii PNM image is not yet implemented.Loading Grey Raw PNM image is not yet implemented.Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.Long Conversions not supportedMDI childMP Thread Support is not available on this SystemMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMailcap file %s, line %d: incomplete entry ignored.Match caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMime.types file %s, line %d: unterminated quoted string.Mode %ix%i-%i not available.ModernModifiedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOperation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint spoolingPrint this pagePrint to FilePrinter command:Printer optionsPrinter options:Printer...Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'Referenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Right margin (mm):RomanSave %s fileSave &As...Save asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Select &AllSelect a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.SetProperty called w/o valid setterSetup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow hidden filesShow/hide navigation panelShows the font preview.SizeSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sString conversions not supportedSubclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown encoding (%d)Unknown field in file %s, line %d: '%s'.Unknown long option '%s'Unknown option '%s'Unknown style flag Unkown Property %sUnmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictVideo OutputView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XPM: malformed colour definition '%s'!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.ZIP handler currently supports only local files!Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.attempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebinaryboldbold can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't query for GUI plugins name in console applicationscan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't seek on file descriptor %d, large files support is not enabled.can't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infoeighteentheightheleventhencoding %sentry '%s' appears more than once in group '%s'error in data formaterror opening fileestablishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinitiateinvalid eof() return value.invalid message box return valueitaliclightlight locale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryread errorreadingreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunderlined unexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown line terminatorunknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.write errorwritingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets-2.5.2 Report-Msgid-Bugs-To: POT-Creation-Date: 2005-02-15 01:23+0100 PO-Revision-Date: 2004-12-03 00:29+0100 Last-Translator: Herbert Breunung Language-Team: wxWidgets Team MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit (Fehler %ld: %s) - Seitenansicht#10 Umschlag, 4 1/8 x 9 1/2 Zoll#11 Umschlag, 4 1/2 x 10 3/8 Zoll#12 Umschlag, 4 3/4 x 11 Zoll#14 Umschlag, 5 x 11 1/2 Zoll#9 Umschlag, 3 7/8 x 8 7/8 Zoll#define %s muss ein integer sein%i von %i%ld Bytes %s (oder %s)%s Fehler%s Information%s Warnung%s Dateien (%s)|%s%s Nachricht%s gibt keine Quelle fr eine Bitmap-Graphik an.%s gibt keine Quelle fr eine Icon-Graphik an.%s: inkorrekter Syntax der Resource-Datei.be&r...&Aktuelle GrebernehmenIcons anordnen&Zurck&FettAb&bruchKaskadieren&Lschen&Schlieen&KopierenLschen&Einzelheiten&Runter&Datei&Suchen&Fertigstellen&Schriftart:&VorwrtsGehe zu ...&Hilfe&Start&Index&Kursiv&Log&Bewegen&Neu&Weiter&Weiter >&Nchster Tip&Nein&OK&ffnen...ffnen...EinfgenSchriftgre in &Punkt:&EinstellungenZurck&DruckenDrucken...&Eigenschaften&Beenden&Wiederholen&Wiederholen &Ersetzen&Wiederherstellen&Sichern&Sichern...&Tipps beim Programmstart zeigen&Gre&Stop&Stil:&Unterstrichen&Rckgngig&Rckgngig &Einrcken&Hoch&Dicke:&Fenster&Ja'%s' hat extra '..', ignoriert.'%s' ist ungltig'%s' ist kein gltiger numerischer Wert fr Option '%s'.'%s' ist kein gltiger Nachrichtenkatalog.'%s' ist vermutlich ein Binrpuffer.'%s' sollte numerisch sein.'%s' sollte ausschlielich ASCII Zeichen enthalten.'%s' sollte nur alphabetische Zeichen enthalten.'%s' sollte nur alphanumerische Zeichen enthalten.(Hilfe)(Lesezeichen)...10 x 14 Zoll11 x 17 Zoll6 3/4 Umschlag, 3 5/8 x 6 1/2 Zoll: Datei existiert nicht!: unbekannter Zeichensatz: unbekannte Verschlsselung ('encoding')< &Zurck<<Fette kursive Schrift
fett kursiv unterstrichen
Fette Schrift. Kursive Schrift. >>>>|Eine nicht leere Sammlung muss aus 'element'-Knoten bestehenA3 Blatt, 297 x 420 mmA4 Blatt, 210 x 297 mmA4 klein Blatt, 210 x 297 mmA4 Blatt, 148 x 210 mmABCDEFGabcdefg12345ASCIIHinzufgenAktuelle HTLM-Seite den Lesezeichen hinzufgenZu Benutzerfarben hinzufgenAddToPropertyCollection aufgerufen fr einen allgemeinen accessorAddToPropertyCollection aufgerufen ohne gltigen adderBuch %s wird hinzugefgtLinksbndigRechtsbndigAlleAlle Dateien (%s)|%sAlle Dateien (*)|*Alle Dateien (*.")|*Alle Dateien (*.")|*."Ein bereits registriertes Objekt wurde an SetObjectClassInfo bergebenWhle bereits ISP.An Logdatei '%s' anhngen ([Nein] wird sie ersetzen)?Arabisch (ISO-8859-6)Archiv enthlt keine #SYSTEM dateiEigenschaftenB4 Umschlag, 250 x 353 mmB4 Blatt, 250 x 354 mmB5 Umschlag, 176 x 250 mmB5 Blatt, 182 x 257 mmB6 Umschlag, 176 x 125 mmBMP: Speicheranforderung gescheitert.BMP: Konnte ungltige Format nicht sichern.BMP: Konnte RGB Tabelle nicht speichern.BMP: Datei konnte nicht gespeichert werden.BMP: Dateikopf (Bitmap) konnte nicht geschrieben werden.BMP: Dateikopf (BitmapInfo) konnte nicht geschrieben werden.BMP: wxImage hat keine eigene wxPalette.Baltisch (ISO-8859-13)Baltisch (alt) (ISO-8859-4)Spezifikation zu Bitmap Graphik Quellen %s nicht gefunden.FettUnterer Rand (mm)C Blatt, 17 x 22 Zoll&Lschen&Farbe: C3 Umschlag, 324 x 458 mmC4 Umschlag, 229 x 324 mmC5 Umschlag, 162 x 229 mmC6 Umschlag, 114 x 162 mmC65 Umschlag, 114 x 229 mmCHM Handler untersttzt derzeit nur lokale Dateien.Kann Mutex nicht anlegen.Kann Dateien '%s' nicht auflistenKann Dateien in Verzeichnis '%s' nicht auflistenKann Thread %lu nicht fortsetzen.Kann Thread %x nicht fortsetzen.Kann Thread nicht starten: Fehler beim Schreiben der 'TLS'.Kann Thread %lu nicht anhalten.Kann Thread %x nicht anhalten.Kann nicht auf Threadende wartenKann nicht rckgngig machen Kann Bildformat nicht berprfen bei Datei '%s': Datei nicht vorhanden.Kann Registrierungs-Schlssel '%s' nicht schlieen.Kann Inhalte des nicht untersttzten Typs %d nicht kopieren.Kann Registrierungs-Schlssel '%s' nicht anlegen.Kann Thread nicht erzeugenKann kein Fenster der Klasse '%s' anlegen.Kann Schlssel '%s' nicht lschenKann INI-Datei '%s' nicht lschenKann Wert '%s' von Schlssel '%s' nicht lschen.Kann Unter-Schlssel von '%s' nicht auflistenKann Werte von Schlssel '%s' nicht auflistenKann aktuelle Position in Datei '%s' nicht finden.Kann keine Information ber den Registrierungs-Schlssel '%s' findenKann das Entkomprimieren der zlib-Daten nicht initialisierenKann das komprimieren der zlib-Daten nicht initialisierenKann Bild aus Datei '%s' nicht laden : Datei ist nicht vorhanden.Kann Registrierungs-Schlssel '%s' nicht ffnenKann nicht vom entpackten Datenstrom lesen:%sKann den Entkomprimier-Strom nicht lesen: Unerwartetes EOF im zugrunde liegenden Strom.Kann Wert von '%s' nicht lesenKann Wert von Eintrag '%s' nicht lesenKann Bild nicht aus Datei '%s' laden: Unbekannte Dateiendung.Kann Logtexte nicht in Datei sichern.Kann Thread-Prioritt nicht setzenKann Wert von '%s' nicht setzenKann nicht in den gepackten Datenstrom schreiben: %sAbbruchKann Dialog-Einheiten nicht konvertieren: Dialog unbekannt.Kann nicht von Kodierung (%s) konvertierenKann keine aktive DF-Verbindung finden: %sKann keinen Container fr unbekanntes Control '%s' finden.Kann keinen Font-Knoten '%s' finden.Kann Adressbuchdatei nicht findenKann Prioritts 'range' fr 'scheduling policy' %d nicht bekommen.Bekomme den Hostnamen nichtKann den offiziellen Hostnamen nicht bekommenKann nicht auflegen - keine aktive DF-Verbindung vorhanden.Kann OLE nicht initialisierenKann SciTech MGL nicht initialisieren !Kann das Display nicht initialisieren.Kann das Icon nicht von "%s" laden.Kann die Resourcen nicht aus der Datei '%s' laden.HTML-Dokument %s kann nicht geffnet werdenHTML-Hilfebuch %s kann nicht geffnet werdenKann URL '%s' nicht ffnenKann den Inhalt der Datei %s nicht ffnen!Konnte Datei "%s" nicht ffnenKann Datei fr den Postscriptdruck nicht ffnen!Kann Indexdatei %s nicht ffnen!Kann die Plural-Formen: '%s' nicht lesenKann die Koordinaten nicht aus '%s' lesen.Kann die Dimensionen nicht aus '%s' lesen.Leere Seite kann nicht gedruckt werden.Kann die Typnamen nicht aus '%s' lesen !Kann Regeln fr die Zeitplanung von Threads nicht abrufen.Kann 'Thread' nicht starten : Fehler beim 'TLS' schreibenKann nicht auf Threadende warten.Kann Ereigns-Queue des Threads nicht erzeugenGro-/KleinschreibungKeltisch (ISO-8859-14)ZentriertZentral Europisch (ISO-8859-2)Whle ISP um anzurufenWhle FarbeWhle SchriftartSchlieenLogtexte lschenKlicken um Wahl der Schriftart abzubrechen.Klicken um Wahl der Schriftart zu besttigen.SchlieenSchlieen ALT-F4Alles SchlieenFenster schlieenKomprimierte HTML Hilfe Datei (*.chm)|*,chm|ComputerDie Bezeichnung des Konfigurations-Eintrags kann nicht mit %c beginnen.BesttigenAktualisierung der Registry besttigenVerbinde...InhalteKonvertierung zum Zeichensatz '%s' funktioniert nicht.In Zwischenablage kopiert:"%s"Kopien:Konnte temporre Datei %s nicht erzeugenKonnte nicht %s in %s extrahieren: %sKonnte Seite fr ID nicht findenKann 'Rich Edit'-DLL nicht laden '%s'Konnte Datei %s nicht finden.Kann Druckvorschau nicht starten.Kann Ausdruck nicht beginnen.Kann Daten nicht ins Fenster bertragen.Konnte Mutex nicht freigebenKonnte Mutex-Sperre nicht bekommenKann Bild nicht zur Liste hinzufgen.Kann keinen Timer anlegen.Konnte Cursor nicht erzeugen.Kann Symbol '%s' in der dynamischen Bibliothek nicht findenKann den aktuellen Threadzeiger nicht bekommen.Konnte PNG-Bild nicht laden - Datei ist beschdigt oder der Speicher reicht nicht aus.Kann die Klang Daten nicht von '%s' laden.Kann Ton %s nicht ffnen!Konnte Zwischenablage-Format '%s' nicht registrieren.Konnte einen Mutex nicht freigeben.Kann keine Informationen ber das ListControl Element %d bekommen.Konnte PNG-Bild nicht speichern.Kann Thread nicht beendenCreate Parameter nicht in den deklarierten RTTI-Parametern gefundenVerzeichnis anlegenNeues Verzeichnis anlegenAusschneidenAktuelles Verzeichnis:Kyrillisch (ISO-8859-5)D Blatt, 22 x 34 ZollDDE 'poke' Anfrage gescheitertDIB Header: Kodierung entspricht der Bittiefe nicht.DIB Header: Bildhhe > 32767 pixels.DIB Header: Bildbreite > 32767 pixels.DIB Header: Unbekannte Bittiefe.DIB Header: Unbekannte Kodierung.DL Umschlag, 110 x 220 mmDekorativStandard KodierungElement lschenUngenutzte Sperr-Datei '%s' wurde gelscht.DF-Verbindungs-Funktionen stehen nicht zur Verfgung, da der RAS-Dienst (Remote Access Service) auf dieser Maschine nicht installiert ist. Bitte installieren.Wussten Sie schon...Verzeichnis '%s' konnte nicht angelegt werden.Verzeichnis '%s' existiert nicht.Verzeichnis existiert nichtVerzeichnis existiert nichtZeige alle Indexelemente an, die den gegebenen Suchbegriff enthalten. Gro-/Kleinschreibung wird nicht beachtet.Einstellungen-Dialog anzeigenWollen Sie den Befehl zum %s von Dateien mit der Erweiterung "%s" ndern ? Aktueller Wert ist; %s, Neuer Wert ist %s %1Mchten Sie die nderungen im Dokument %s sichern?fertigFertig.ID doppelt verwendet: %dHerunterE Blatt, 34 x 44 ZollElement bearbeitenbisher bentigte Zeit: Geben Sie eine Zahl zwischen %d und %d ein:Eintrge gefundenEinstzen der Umgebungsvariablen schlug fehl. Es fehlt '%c' an Position %d in '%s'.FehlerFehler Fehler beim Anlegen des VerzeichnissesFehler beim Lesen des DIB-Bildes.Fehler beim Parsen der Optionen.Fehler beim Speichern der Benutzer-Optionen.Fehler whrend des Wartens auf ein SignalFehler: Esperanto (ISO-8859-3)Geschtzte Zeit :Befehlsausfhrung '%s' schlug fehlBefehlsausfhrung '%s' schlug fehl mit Fehler: %ulExecutive, 7 1/4 x 10 1/2 ZollErweiterter Unix-Zeichensatz fr Japanisch (EUC-JP)Extrahieren von '%s' in '%s' schlug fehl.Fehlerhafte %s DF-Verbindung: %sFehler beim Zugriff auf Sperr-Datei.Anforderung von %lu KByte Speicher fr Bitmap gescheitert.nderung des Video-Modus gescheitertKonnte Datei-Handle nicht schlieen.Konnte Sperr-Datei '%s' nicht schlieenKonnte Zwischenablage nicht schlieen.Verbindung fehlgeschlagen : Es fehlt der Username bzw. das PasswortVerbindungs-Versuch gescheitert : kein anwhlbares ISP.Kopieren des Registry-Werts '%s' gescheitertKopieren des Inhalts des Registry-Schlssels '%s' nach '%s' gescheitertKonnte die Datei '%s' nicht nach '%s' kopierenKopieren des Registry-Schlssels von '%s' in '%s' gescheitertErstellung des DDE-Zeichenkette gescheitertErstellung des MDI-Hauptrahmens gescheitert.Erstellung der Statusbar gescheitert.Konnte keinen vorbergehenden Dateinamen erstellen.Konnte keine anonyme Unix-Pipe erstellenAufbau der Verbindung zur Server '%s' 'on topic' '%s' gescheitertCursor konnte nicht erzeugt werdenDas Verzeichnis %s/.gnome konnte nicht erzeugt werden.Das Verzeichnis %s/mime-info konnte nicht erzeugt werden.Konnte Verzeichnis '%s' nicht erstellen (Haben Sie die ntigen Zugriffsrechte?)Konnte keinen Registrierungs-Eintrag fr '%s'-Dateien erstellen.Konnte keinen Standard Finden/Ersetzen-Dialog erstellen (Fehler %d)Konnte HTML-Dokument nicht in der Kodierung %s anzeigenKonnte Zwischenablage nicht leeren.Auflisten der Video-Modi gescheitertAufbau einer 'advise Schleife" mit dem DDE Server gescheitertAufbau der DF-Verbindung gescheitert : %sKann '%s' nicht ausfhren Konnte ISP Namen '%s' nicht ermittelnKonnte Daten nicht von der Zwischenablage holen.Konnte Daten nicht aus der Zwischenablage kopierenVersuch, rtliche Systemzeit zu bekommen, gescheitert.Konnte Arbeits-Verzeichnis nicht ermittelnKonnte GUI nicht initialisieren: kein Thema gefunden.Konnte MS HTML-Hilfe nicht initialisieren.Konnte OpenGL nicht initialisierenKonnte die Sperr-Datei '%s' nicht lesenThread-Verbindung gescheitert. Dies ist ein mgliches Speicherleck - Bitte Programm neu startenKonnte Prozess %d nicht abbrechenKonnte das Bild %d aus der Datei '%s' nicht laden.Konnte mpr.dll nicht laden.Laden der DLL '%s' gescheitertLaden der DLL '%s' gescheitert: Fehler '%s'Konnte die Sperr-Datei '%s' nicht sperrenKonnte in '%s' keine bereinstimmung mit regulrem Ausdruck %s findenKonnte Zugriffszeit von Datei '%s' nicht ndernKonnte '%s' nicht fr %s ffnen.CHM-Archiv '%s' lsst sich nicht ffnen.Konnte vorbergehende Datei nicht ffnen.Konnte Zwischenablage nicht ffnen.Versuch, Daten in der Zwischenablage abzulegen, gescheitertKonnte keine PID von Sperr-Datei lesen.Umleitung des Ein/Ausgabe des Unterprozesses gescheitertUmleitung des Ein/Ausgabe des Unterprozesses gescheitertVersuch, DDE-Server '%s' zu registrieren, gescheitertKonnte OpenGL Fensterklasse nicht registrieren.Versuch gescheitert, an die Kodierung fr den Zeichensatz '%s' zu erinnern.Konnte Sperr-Datei '%s' nicht lschen.Konnte unbenutzte Sperr-Datei '%s' nicht entfernen.Umbenennen des Registrieungswertes '%s' in '%s' gescheitertUmbenennen des Registrieungsschlssels von '%s' in '%s' gescheitertKonnte Daten von der Zwischenablage nicht bekommen.Konnte Zugriffszeit von Datei '%s' nicht ermittelnVersuch, den Inhalt der RAS-Fehlernachricht zu holen, gescheitertKonnte die von der Zwischenablage untersttzten Formate nicht ermittelnDas Bitmap-Bild konnte nicht in der Datei "%s" geschrieben werden.Versuch gescheitert, eine DDE-Benachrichtigung zu schickenKonnte den FTP-Transfermodus nicht auf '%s' setzen.Konnte Dateien nicht in die Zwischenablage kopieren.Konnte die Zugriffsrechte fr Datei '%s' nicht setzenKonnte die Zugriffsrechte der vorbergehenden Datei nicht setzenVersuch gescheitert, die Thread-Prioritt %d zu setzten.Versuch, das Bild '%s' im VFS-Speicher zu laden, gescheitert!Versuch, den Thread zu beenden, gescheitert.Versuch gescheitert, die 'advise Schleife mit DDE-Server zu beenden.Versuch gescheitert, die DF-Verbindung zu beenden: %sKonnte die Datei '%s' nicht 'berhren'Konnte die Sperrung von Datei '%s' nicht aufhebenVersuch gescheitert, den DDE-Server '%s' zu entregistrieren.Kann Benutzer-Konfigurations-Datei nicht aktualisieren.Konnte Sperr-Datei '%s' nicht schreibenNicht-behebbarer FehlerNicht-behebbarer Fehler: DateiDatei '%s' existiert nicht.Datei '%s' existiert bereits, mchten Sie sie wirklich berschreiben?Datei '%s' existiert bereits. Mchten Sie sie wirklich berschreiben?Datei konnte nicht geladen werden.DateifehlerDateiname bereits vorhandenDateien (%s)SuchenFixed font:Schrift fester Breite.
fett kursiv Folio, 8 1/2 x 13 ZollFont Gre:'Fork' gescheitertForward hrefs werden nicht untersttztGefundenSuchbegriff %i mal gefundenVon:GIF: Ungltiger Index.GIF: Datei scheint unvollstndig zu sein.GIF: Fehler im GIF-Bildformat.GIF: nicht genug Speicher.GIF: unbekannter Fehler!GTK+ ThemaGerman Legal Endlospapier, 21,59 x 33,02 cmGerman Std Endlospapier, 8 1/2 x 12 ZollGetProperty aufgerufen ohne gltigen getterGetPropertyCollection aufgerufen fr einen allgemeinen accessorGetPropertyCollection aufgerufen ohne gltigen Collection getterVorherige HTML-Seite zeigenNchste HTLM Seite zeigenIn die nchste Dokumentebene gehenGehe zum Home-VerzeichnisGehe zum 'Parent'-VerzeichnisGehe zur SeiteGriechisch (ISO-8859-7)Gzip wird nicht fr diese zlib Version untersttztHTML Hilfe Projekt (*.hhp)|*.hhp|HTML 'anchor' %s existiert nicht.HTML Dateien (*.html;*.htm)|*.html;*.htm|Hebrisch (ISO-8859-8)HilfeHilfe zu den Browser-EinstellungenHilfeindexHilfe druckenHilfe-ThemenHilfe Bcher (*.htb)|*.htb|Hilfe Bcher (*.zip)|*.zip|Hilfe: %sStartI64ICO: Fehler beim Lesen der DIB Maske.ICO: Schreibfehler beim Sichern.ICO: Bild zu gro fr ein Icon.ICO: Bild zu breit fr ein Icon.ICO: Ungltiger Icon-Index.IFF: Datei scheint unvollstndig zu sein.IFF: Fehler im IFF Bildformat.IFF: nicht genug Speicher.IFF: unbekannter Fehler!Verformter Quelldatei syntax.Ungltige Objekt-Klasse (nicht wxEvtHandler) als Event-QuelleUngltige Anzahl Parameter fr ConstructObject-MethodeUngltige Anzahl Parameter fr Create-MethodeUngltiger VerzeichnisnameUngltige DateiangabeBild und Bildmaske haben verschiedene Gren.Bild hat nicht den Bildtyp %d.Versuch eine 'rich edit control' zu erstellen gescheitert, verwende stattdessen ein einfaches Text-Control. Bitte 'riched32.dll' neu installierenEs war nicht mglich, die Eingabe des Unterprozesses zu verarbeitenKonnte nicht die Zugriffsrechte der Datei '%s' ermittelnVersuch, die Datei '%s' zu berschreiben, gescheitertKonnte die Zugriffsrechte fr Datei '%s' nicht setzenEinrckenHilfe-IndexIndisch (ISO-8859-12)interner Fehler (ungltige wxCustomTypeinfo)Ungltiger Index des TIFF-Bilds.Ungltige XRC-Resource '%s': Kein Wurzel-Knoten 'resource'.Ungltige Angabe '%s' des Displays.Ungltige Angabe '%s' der FenstergreUngltige Sperr-Datei '%s'.Ungltige oder Null Objekt-ID an GetObjectClassInfo bergeben"Ungltige oder Null Objekt-ID an HasObjectClassInfo bergeben"Ungltiger regulrer Ausdruck '%s': %sKursivItaly Umschlag, 110 x 230 mmJPEG: Lesefehler - Datei ist vermutlich beschdigt.JPEG: Konnte Bild nicht sichern.BndigKOI8-RKOI8-UQuerformatLedger, 17 x 11 ZollLinker Rand (mm):Legal, 8 1/2 x 14 ZollLetter Small, 8 1/2 x 11 ZollLetter, 8 1/2 x 11 ZollDnnVerweis enthielt '//', in absoluten Link umgewandelt.%s-Datei ladenLaden: Das Laden von S/W Ascii PNM'-Bilddateien wird noch nicht untersttzt.Das Laden von "S/W Ascii PNM'-Bilddateien wird noch nicht untersttzt.Sperr-Datei '%s' hat falschen Besitzer.Sperr-Datei '%s' hat falsche Zugriffsrechte.Logtext in Datei '%s' gesichert.Umwandlung in long wird nicht untersttztMDI childSystem hat keine Untersttzung fr MP ThreadsDie MS HTML-Hilfe funktioniert nicht, da die MS-HTML-Hilfe-Bibliothek nicht installiert ist. Bitte installieren Sie sie.Ma&ximierenMailcap-Datei %s, Zeile %d: unvollstndiger Eintrag ignoriert.Gro- und Kleinschreibung beachtenVFS-Speicher beinhaltet bereits der Datei '%s'!MenMetal-ThemaMi&nimierenMime.types-Datei %s, Zeile %d: nicht terminierter TextDarstellung %is%i-%i ist nicht vorhandenModernGendertMonarch Envelope, 3 7/8 x 7 1/2 ZollAbwrts verschiebenNach obenNameVerzeichnis anlegenNeues &ElementNeuerNameWeiterNchste HTLM Seite zeigenNeinKeine Mglickeit mit XBM umzugehen!Keine Mglichkeit mit XPM Icons umzugehen!Keine Eintrge gefunden.Kein Font fr die Kodierung '%s' gefunden, es ist aber eine Alternative '%s' verfgbar. Mchten Sie diesen Font fr diese Kodierung whlen (sonst mssen Sie einen anderen auswhlen)?Kein Font fr die Kodierung '%s' gefunden, Mchten Sie einen Font fr diese Kodierung whlen (sonst wird der Text mit dieser Kodierung nicht richtig angezeigt)?XML-Knoten '%s', Klasse '%s' kann nicht bearbeitet werden !"Dieses Bild-Format wird nicht untersttztBild-Format %d wurde nicht definiert.Bild-Format %s wurde nicht definiert.Passende Seite noch nicht gefundenKein TonKeine unbenutzte Farbe wurde im Bild unterdrckt.Keine unbenutzte Farbe im Bild.Nordisch (ISO-8859-10)NormalNormaler Zeichensatz
und unterstrichen Normal Font:Note, 8 1/2 x 11 ZollOKObjekte mssen ein ID-Attribut haben.Datei ffnenffne HTLM DokumentAusfhrung nicht erlaubtOption '%s' erwartet einen Wert, '=' erwartet.Option '%s' erwartet einen Wert.Option '%s': '%s' kann nicht in eine Datum umgesetzt werden.EinstellungenOrientierungPCX: Speicheranforderung gescheitertPCX: Bildformat wird nicht untersttztPCX: ungltiges BildPCX: dies ist keine PCX Datei.PCX: unbekannter Fehler !!!PCX: Versionsnummer zu niedrigPNM: Speicheranforderung gescheitert.PNM: Datei-Format wurde nicht erkannt.PNM: Datei wurde abgeschnitten.Seite %dSeite %d aus %dSeiten-EinstellungenSeitenPapierformatPapierformatEin bereits registriertes Objekt wurde an SetObject bergebenEin bereits registriertes Objekt wurde an SetObjectname bergebenEin unbekanntes Objekt wurde an GetObject bergeben"ZugriffsrechteKonnte keine Pipe anlegenBitte whlen Sie einen gltigen Font.Bitte whlen Sie eine bestehende Datei.Bitte whlen Sie die darzustellende Seite:Bitte gewnschte ISP-Verbindung auswhlenBitte installieren Sie eine neuere Version von comctl32.dll (mindestens Version 4.70 wird bentigt, aber Sie haben nur Version %d.%02d).Bitte warten Sie whrend des Druckens HochformatPostScript-DateiVorschau:Vorherige SeiteDruckenDruckvorschauFehler bei der DruckvorschauSeitenbereichDruckereinstellungenFarbig druckenDruck&vorschauDruckersteuerungDiese Seite DruckenIn Datei druckenDruckbefehl:Drucker-EinstellungenDrucker-Einstellungen:Drucker...Drucken von Fehler beim DruckenDrucke Seite %d...Drucke...Programm abgebrochen.Quarto, 215 x 275 mmFrageLesefehler in Datei '%s'Der angesprochene Objekt-Knoten mit ref="%s" wurde nicht gefunden !AktualisiereRegistrierungs-Schlssel '%s' bereits vorhanden.Registriersschlssel '%s' existiert nicht, Umbenennung daher nicht mglich.Registrierungs-Schlssel '%s' wird vom System bentigt, durch seine Entfernung wird das System unbrauchbar: Abbruch.Registrierungs-Wert '%s' bereits vorhanden.Relevante Eintrge:Verbleibende Zeit : EntferneAktuelle HTLM-Seite als Lesezeichen entfernenRenderer "%s" hat eine ungltige Version %d.%d und kann nicht geladen werden.&ErsetzenAlle &ersetzenErsetzen durch:Resource-Datei muss die gleiche Versionsnummer haben!Rechter Rand (mm):RomanDatei %s speichern&Speichern unter...Sichern alsLogtexte in Datei speichernScriptSuchenAlle Hilfebcher nach eingegebenem Begriff durchsuchen.SuchrichtungSuchen nach:Alle Bcher durchsuchenSuchen...AbschnitteSuchfehler in Datei '%s'Alles auswhlenDokument-Vorlage whlenDokument-Anzeige ('View') whlenDatei whlenTrennungszeichen nach der Option '%s' erwartet.SetProperty aufgerufen ohne gltigen SetterEinstellungen...Mehrere aktive DF-Verbindungen gefunden, whle einer davon aus.Alles zeigenAlle Themen im Index anzeigenVersteckte Verzeichnisse anzeigenVersteckte Dateien anzeigenSuchbaum Ein-/AusschaltenSchrift Vorschau.GreGeneigtBedauere, diese Datei konnte zur Sicherung nicht geffnet werden.Bedauere, diese Datei konnte nicht geffnet werden.Bedauere, diese Datei konnte nicht gesichert werden.Nicht genug Speicher fr Voransicht.Tut mir leid: Die Druck-Vorschau bentigt einen installierten DruckerBedauere, das Format dieser Datei ist unbekannt.Klang Daten haben ein nicht untersttztes Format.Klang Datei '%s' besitzt ein nicht untersttztes Format.Statement, 5 1/2 x 8 1/2 ZollStatus: Streaming delegates sind noch nicht untersttzt, wenn es sich nicht bereits um streaming objects handeltStringTo Colour: Falsche Farb-Angabe '%s'Umwandlung in String wird nicht untersttztUnterklasse '%s' fr Resource '%s' nicht gefunden, keine Unterklasse erstellt !SwissTIFF: Speicheranforderung gescheitert.TIFF: Fehler beim Laden des Bildes.TIFF: Fehler beim Lesen des Bildes.TIFF: Schreibfehler beim Sichern.TIFF: Schreibfehler beim Sichern.Tabloid, 11 x 17 ZollSchreibmaschineVorlagenThai (ISO-8859-11)Der FTP-Server untersttzt den passiven Transfermodus nicht.Der FTP-Server untersttzt nicht das PORT Kommando.Die Zeichensatz '%s' ist nicht bekannt. Whlen Sie einen Ersatzzeichensatz oder 'Abbruch', falls er nicht ersetzt werden kann.Das Format '%d' fr die Zwischenablage existiert nicht.Verzeichnis '%s' existiert nicht. Soll es erstellt werden ?Die Datei '%s' konnte nicht geffnet werden. Sie wurde aus der Liste krzlich verwendeter Dateien entfernt.Die Datei '%s' existiert nicht und konnte nicht geffnet werden. Sie wurde aus der Liste krzlich verwendeter Dateien entfernt.Die Schriftfarbe.Die Schriftart.Die Schriftgre in Punkten.Die Schriftschitt.Die Schriftdicke.Der Pfad '%s' enthlt zu viele "..".Der bentigte Parameter '%s' wurde nicht angegeben.Der Text konnte nicht gesichert werden.Der Wert fr die Option '%s' muss angegeben werdenDer installierte RAS-Dienst Version ist zu alt, bitte auf den neusten Stand bringen (folgende Funktion fehlt: %s).Es gab ein Problem bei der Seiteneinrichtung: eventuell mssen Sie einen Standarddrucker einrichten.Thread-Modul-Initialisierung gescheitert: Kann den Wert nicht im lokalen Speicherbereich des Thread gespeichert werdenThread-Modul-Initialisierung gescheitert: Thread-Schlssel konnte nicht erstellt werdenThread-Modul-Initialisierung gescheitert: Index konnte nicht im lokalen Speicherbereich des Thread allokiert werdenThread Priorittseinstellung wird ignoriertHorizontal anordnenVertikal anordnenTimeout beim Warten auf eine Verbindung zum FTP-Server, versuchen Sie passiven Modus.Konnte Zeitgeber nicht anlegenTipp des TagesBedauere, Tipps stehen nicht zur VerfgungBis:Zu viele Farben in PNG; das Bild wird vielleicht verschmiert angezeigt.Oberer Rand (mm):Beim Versuch, die Datei '%s' aus dem VFS-Speicher zu entfernen, wurde festgestellt, da sie gar nicht geladen war!Beim Versuch, einen NULL-Hostnamen aufzulsen, gebe ich aufTrkisch (ISO-8859-9)TypTyp muss eine enum-long Umwandlung habenUS Std Endlospapier, 14 7/8 x 11 ZollDas angeforderte HTML-Dokument konnte nicht geffnet werden: %sDer Klang kann nicht asynchron abgespielt werden.Lschen rckgngig machenUnerwarteter Parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 Bit Big Endian (UTF-16BE)Unicode 16 Bit Little Endian (UTF-16LE)Unicode 32 Bit (UTF-32)Unicode 32 Bit Big Endian (UTF-32BE)Unicode 32 Bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unbekannter DDE-Fehler %08xUnbekanntes Objekt an GetObjectClassInfo bergebenUnbekannte Kodierung (%d)Unbekanntes Feld in Datei %s, Zeile %d: '%s'.Unbekannte 'long'-Option '%s'Unbekannte Option '%s'Unbekanntes Flag fr den Stil Unbekannte Eigenschaften %sUnzutreffendes '{'-Zeichen in einem Eintrag des MIME-Typs %s.Ungenanntes KommandoNicht untersttztes Format in der Zwischenablage.Unbekanntes Thema '%s'.HochVerwendung: %sVerifizierungs KonfliktVideo-AusgabeDateien mit Details anzeigenDateien als Liste anzeigenDarstellungWartezeit fr das Ende eines Subprozesses abgelaufenWarnungWarnung: Warnung: Es wurde versucht, einen 'HTML-Tag-Handler' von einem leeren Stack zu entfernen.Westeuropisch (ISO-8859-1)Westeuropisch mit Euro (ISO-8859-15)Ob der Schrifttyp unterstrichen ist.Ganzes WortNur ganze WorteWin32 ThemaWin32s on Windows 3.1Windows Arabisch (CP 1256)Windows Baltisch (CP 1257)Windows Zentral Europisch (CP 1250)Windows Vereinfachtes Chinesisch (CP 936)Windows Traditionelles Chinesisch (CP 950)Windows Kyrillisch (CP 1251)Windows Griechisch (CP 1253)Windows Hebrisch (CP 1255)Windows Japanisch (CP 932)Windows Koreanisch (CP 949)Windows Trkisch (CP 1254)Windows West Europisch (CP 1252)Windows/DOS OEM (CP 437)Schreibfehler bei Datei '%s'Fehler beim Lesen des XML: '%s' in Zeile %dXPM: Pixel-Daten in falscher Form !XPM: Farbdefinition in falscher Form '%s'!XRC Resource '%s' (Klasse '%s') nicht gefunden !XRC Resource: Kann aus '%s' keine Bitmap erstellen.XRC Resource: Falsche Farb-Angabe '%s' fr Eigenschaft '%s'.JaSie knnen hier kein neues Verzeichnis anlegen.ZIP Handler untersttzt derzeit nur lokale Dateien.Ver&grernVer&kleinern&Passende Grsse[leer]Eine DDEML-Anwendung hat eine 'prolonged race condition' ausgeloest.Eine DDEML-Funktion wurde aufgerufen, ohne vorher die Deinitialisierungs- Funktion aufzurufen, oder ein ungltiger 'instance identifier' wurde an eine DDEML-Funktion bergeben.Der Versuch eines Clients, eine Verbindung herzustellen, ist gescheitert.Eine Speicheranforderung ist gescheitert.Ein Parameter wurde von DDEML nicht verifiziert.Eine Anfrage fr eine 'synchronous advise transaction' ist gescheitert (time-out)Eine Anfrage fr eine 'synchronous data transaction' ist gescheitert (time-out)Eine Anfrage fr eine 'synchronous execute transaction' ist gescheitert (time-out)Eine Anfrage fr eine 'synchronous poke transaction' ist gescheitert (time-out)Eine Anfrage, eine 'advise transaction' zu beenden ist, gescheitert (time-out)Ein Verbindungs-Versuch vom Server wurde vom Client abgebrochen, oder der Server terminierte bevor die Transaktion vollstndig beendet wurde.Eine Transaktion ist gescheitert.altEine Anwendung, die als ein 'APPCLASS_MONITOR' gestartet wurde, versuchte eine DDE-Transaktion auszufhren, oder eine Anwendung, die als ein 'APPCMD_CLIENTONLY' gestartet wurde, versuchte eine Server-Transaktion auszufhren.Ein interner Aufruf zur 'PostMessage'-Funktion ist gescheitert. Ein interne Fehler ist im DDMEL aufgetreten.Eine ungltige Transaktions-Identifizierung wurde an eine DDEML-Funktion bergeben. Sobald die Anwendung aus einem 'XTYP_XACT_COMPLETE'-Callback zurckgekehrt ist, ist die Transaktions-Identifizierung fr dieses Callback nicht mehr gltig.Versuch, Eintrag '%s' zu ndern, verweigert. Ist nicht schreibbar.Falsche Argumente fr die Bibliotheks-FunktionFalsche Unterschriftbinrfettfett Kann Datei '%s' nicht schlieenKann Dateibeschreibung '%d' nicht schlieenKann nderungen in Datei '%s' nicht sichern.Kann Datei '%s' nicht anlegen.Kann Konfigurations-Datei '%s' nicht lschen.Kann auf Dateibeschreibung '%d' das Dateiende nicht FeststellenKann auf Dateibeschreibung '%d' die Dateilnge nicht findenKann Benutzerverzeichnis nicht finden, verwende aktuelles Verzeichnis.Kann auf die Dateibeschreibung '%d' nicht entladenKann auf die Dateibeschreibung %d nicht positionierenKann keine Fonts mehr laden, AbbruchKann Datei '%s' nicht ffnenKann globale Konfigurations-Datei '%s' nicht ffnen.Kann Konfigurations-Datei '%s' nicht ffnen.Kann Benutzer-Konfigurations-Datei nicht ffnen.In einer Konsolen-Anwendung kann nicht nach den GUI-Plugin-Namen gefragt werdenKann Dateibeschreibung '%d' nicht lesenKann Datei '%s' nicht lschen.Kann Temporrdatei '%s' nicht lschenKann auf die Dateibeschreibung '%d' nicht suchenKann auf der Dateibeschreibung '%d' nicht suchen, die Untersttzung grosser Dateien ist nicht aktiviert.Kann den Puffer '%s' nicht schreiben.Kann Dateibeschreibung '%d' nicht schreibenKann Benutzer-Konfigurations-Datei nicht schreiben.Nachrichtenkatalog fr Sprachbereich '%s' nicht gefunden.Prfsummen-FehlerFehler beim KomprimierenUmwandlung in 8-Bit Codierung fehlgeschlagenctrlDatumFehler beim EntkomprimierenStandardDelegate hat keine Typ-InfoachtzehnteachteelfteKodierung %sEintrag '%s' erscheint in Gruppe '%s' mehrfachFehler im DatenformatFehler beim ffnen der DateiVerbundenVersuch, die Datei '%s' zu entladen, gescheitertfnfzehntefnfteDatei '%s', Zeile %d: '%s' hinter Gruppenkopf ignoriert.Datei '%s', Zeile %d: '=' erwartet.Datei '%s', Zeile %d: Eintrag '%s' taucht erstmals in Zeile %d auf.Datei '%s', Zeile %d: Wert fr nicht-nderbaren Eintrag '%s' ignoriert.Datei '%s': unerwartetes Zeichen %c in Zeile %d.ersteFont Gre:vierzehntevierteausfhrliche Log-Nachrichten erstellenEvent-Handler-String falsch, Punkt fehlteinleitenungltiger 'eof()'-Rckgabewert.ungltiger 'message box'-Rckgabewert.kursivdnndnn Lokale Umgebung '%s' kann nicht gesetzt werden.Suche Nachrichtenkatalog '%s' in Pfad '%s'.Mitternachtneunzehnteneuntekein DDE-Fehlerkein FehlernamenlosmittagsnumObjekte knnen keine XML-Text-Knoten habennicht genug Speicher.LesefehlerLesenProbleme beim WiedereintretenzweiteSeek-FehlersiebzehntesiebteUmschaltZeige diesen HilfstextsechzehntesechsteGeben Sie eine zu verwendende Bildschirmauflsung ein (Z.B. 640x48-16)geben Sie das zu benutzende Thema anstrzehntedas Ergebnis zur Transaktion hat der 'DDE_FBUSY'-Bit gesetzt.drittedreizehnteTiff-Modul: %sheutemorgenzwlftezwanzigsteunterstrichenunterstrichen unerwartete " bei Position %d in '%s'.unbekanntUnbekannte Klasse %sunbekannter Fehlerunbekannter Fehler (Fehlercode %08x).Unbekanntes ZeilenendeUnbekannte Suchpositionunbekannt-%dUnbenanntUnbenannt%dVerwende Nachrichtenkatalog '%s' von '%s'.SchreibfehlerSchreibenwxGetTimeOfDay gescheitert.wxSocket: ungltige Signatur in ReadMsg.wxSocket: unbekanntes Ereignis!.wxWidgets konnte 'open display' nicht ausfhren fr '%s': Abbruch.wxWidgets konnte Display nicht ffnen: Abbruch.Gestern zlib-Fehler %d|<<wxMaxima-13.04.2/locales/wxwin/el.mo000644 000765 000024 00000234137 11670654443 017641 0ustar00andrejstaff000000 000000 l8KKKKKKKL,LHLfL oLzLL LL L L LLLLLLLM MMMM(M.M4M:M BMPMYMbMhMnMuM}MMMMM MMMMM M M M M MMMN NNN"N+NANGNMN UN`NfN mNwN{NNNNN4N$N!O;O*SO/~O:OO O O P P3PJP\PoPwPzPPP#P/PPP QQ6QIQ`QwQQQQQQQQ R R#R'R9RIR[R6oRR:RR# S /S:STSkSSSS!S"S"T-;&5b/EI9,@m-7!e !֢)>9#x/0̣-Jh*}(#Ѥ''"Eh  !$')Q`#r ֦/!6#Im/ ڧ4!8A9z. +# Op&ѩ ک  " 5 C&N)u ŪѪ٪ߪ -4$MrvC| ƫѫ $ 2: K Yz  "ά '73Q* ȭ{̭HJ\`!o"ӯ   '1@Q cmv  ̰ ذ  "= ER[ cn v   ȱӱ   *6 E P\ k DzԲ۲ (>+/j2 ͳ)5DN #˴!8@ CO X$b5ϵ޵@&=Tq2ܶ -1G[q=1Ƿpj%͸3-6a-)ƹ>B/-rԺۺ 3Le~=(ֻ.<.;k:PF3EzQN.D}?¾E<H1-0=6T9=>KB66R?O*G.71KiNE)J/t[;?BVEC=cOR'D/l,1>-:5h<-@ =J.30+AH9\=!_x # ' 82<k0 N% t/ 2 9++e&07)!2K'~-;2.CKrIc4l(G)H<))?.HQcz8KM1), 3AF`/qm^}3 AH"Psx+#'-A$o#2 2,#_54&><T-5K*AHl-=6!DX80'T/]GbG8/,6@w/(35!AW,!<%.46 B>a<+* &4.[77_IZ6.M =XR9<#A`(6O1R1(/A0Q5D5,S>G49<v=5"+N] { 7 #%Ibg5}#  '%G mz47$Mr(<' d p~%1*,1D5v">:!U*wCF1$5 *,?!lIX61-h??9PWEt'5Oo <56/.f 4C']< %$4EK Zgpx W'303d( J1H^*g4$ @=a&$;!S'u'+  $;CS4c8-  -"$P+uX+ #,!Dfv .@ S `k;"^#g> r 1J/>R8d  1 K  ^ qh     , .4  c q  .  N  8 )F p 6 .    D 1M 4 E K 2F 2y 0    M6`I %&8(_%H22e52Jg}w] z")0!&R4y3t;C,?]S%?HN\R,"G-j%$'*R$j'2.Hb!w:6: @*J+u" & 70 hv    "(&K%r ("Cf-871<P@  F J ^ !5j!1!y!uL"x"j;#u#$$$$%(%B &%M&s&9k'/' '''-'6(.V(.(A(Y(HP)Q)H)K4*V*?*,+DD+A+0+6+63,9j,,,7,? -@I-E-+-;-8.H.)Y.. ...1. ...D/G/"f/C/C/?04Q0 00J0(0L1B\1611112: 2.E2/t222 2#242 .3 83E3K3 \3i3q3z38~333.304,84e4m4 444%4 44J4'5?D555<55 555556 6#6?6G6 X6"e6)6 6 66'67!717>L7"7Q7F8G8L8[8.gWWfx&|(cC~ }pgalZ J{+ %p  (te!ONJG<QJ=G 1EaaI5/Vo$L1rVUH'0+;yO<fn|-; o]sAPz9<43YzF,4UumqUeu H3T97KG2gnS\c$]?]?;,Ls+@.m6wb5? AUC/@h4K%CDx#iN#Gjh1om E(qFX.&8xRh`5l$RwYO^Q-gV6k:5 H Yu b0>Ove=#I->kp|6nFajy^/oS@Lf\H>\ sS[ycK!0 *m2P @ZrETc:+q~BP `'k8teKTW37J7VRj" X}N_{.QB17bq_:>*BBM]-Th:8[I r\pz*du3?EA_)0dxsii9[6'j$w|v;92`2,"[~ }d)tI&~=PNn,"D4M)XkRXLM/_^<vAZY C#lflb{wd)8` i*MZy%^!!{Wzv'QD&Dtr (=% S}F" (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&OK&Open...&Paste&Point size:&Preferences&Previous&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A non empty collection must consist of 'element' nodesA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find tab for idCould not locate file '%s'.Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?DoneDone.Doubly used id : %dDownE sheet, 34 x 44 inEdit itemEnter a page number between %d and %d:Entries foundErrorError creating directoryError reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExtended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to execute '%s' Failed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.Files (%s)FindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal directory name.Illegal file specification.Image and mask have different sizes.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.JustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMode %ix%i-%i not available.ModernModifiedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOperation not permitted.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save AsSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Select &AllSelect a document templateSelect a document viewSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelShows the font preview.SizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sSubclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWarningWarning: Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows Turkish (CP 1254)Windows Western European (CP 1252)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.attempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebinaryboldcan't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infoeighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinvalid message box return valueinvalid zip fileitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryread errorreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodusing catalog '%s' from '%s'.write errorwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets 2.5.4 Report-Msgid-Bugs-To: POT-Creation-Date: 2008-04-24 09:31+0200 PO-Revision-Date: 2005-02-16 09:03+0200 Last-Translator: InterZone Language-Team: Tsolakos Stavros , Nassos Yiannopoulos MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 8bit ( %ld: %s) - #10 , 4 1/8 x 9 1/2 #11 , 4 1/2 x 10 3/8 #12 , 4 3/4 x 11 #14 , 5 x 11 1/2 #9 , 3 7/8 x 8 7/8 %i %i%s ( %s)%s %s %s %s (%s)|%s%s &...& && &&&&&&&&&&&&& :&&...&&&&&&&&& >& Tip&&OK&...& :&&&...&&&& &&&&...& tips &&&:&&& &&&:&&'%s' '..', .'%s' '%s' '%s'.'%s' .'%s' ( binary ) buffer'%s' .'%s' ASCII .'%s' .'%s' .()()10 x 14 11 x 17 6 3/4 , 3 5/8 x 6 1/2 : !: : < &<<<><><> .

.>>>>| 'element' A3, 297 x 420 mm A4, 210 x 297 mm A4, 210 x 297 mm A5, 148 x 210 mm12345ASCII %s (%s)|%s (*)|* (*.*)|* (*.*)|*.* Registered SetObjectClassInfo Internet(ISP). (append) (log) '%s' ( [] (overwrite)); (ISO-8859-6) #SYSTEMB4 , 250 x 353 mm B4, 250 x 354 mmB5 , 176 x 250 mm B5, 182 x 257 mmB6 , 176 x 125 mmBMP: (allocation) .BMP: .BMP: RGB.BMP: .BMP: Bitmap.BMP: BitmapInfo.BMP: wxImage wxPalette. (ISO-8859-13) () (ISO-8859-4) (mm) C, 17 x 22 &&:C3 , 324 x 458 mmC4 , 229 x 324 mmC5 , 162 x 229 mmC6 , 114 x 162 mmC65 , 114 x 229 mm CHM ! mutex. '%s' '%s' (resume) (thread) %lu (resume) (thread) %x (thread): TLS (suspend) (thread) %lu (suspend) (thread) %x (wait) (thread) %s: . (registry key) '%s' %d. (registry key) '%s' (thread) %s '%s' INI '%s' '%s' '%s' '%s' '%s' %d. '%s' (registry) '%s' zlib deflate. zlib inflate. '%s': . (registry) '%s' inflate: %s inflate: EOF . '%s' '%s' '%s': (log) . (thread) '%s' deflate: %s (dialog units): . '%s'! : %s (container) (control) '%s'. (font mode) '%s'. (hostname) (official hostname) - . OLE SciTech MGL . '%s' (resources) '%s' HTML: %s HTML: %s : %s '%s'. PostScript! (index): %s Plural-Forms:'%s'. '%s'. '%s'. . (typenames) '%s' thread scheduling policy. (thread): TLS - (ISO-8859-14) (ISO-8859-2) Internet & (log) . . Alt-F4 . HTML (*.chm)|*.chm| (Config entry name) '%c' (registry update) ... '%s' :"%s": '%s' %s %s: %s tab id '%s'. . . . mutex mutex . (timer) . '%s' . toy (thread) PNG - . '%s' : %s (clipboard format) '%s' mutex %d. PNG. thread Create RTTI & : (ISO-8859-5)D sheet, 22 x 34 DDE poke DIB Header: bit.DIB Header: > 32767 .DIB Header: > 32767 .DIB Header: bit .DIB Header: . DL, 110 x 220 mm (stale) (lock file) '%s' (functions) (dialup) (remote access service, RAS) . . ... '%s' '%s' ! . substring. /. %s "%s" ? %s, %s %1 %s ;.Id : %dE sheet, 34 x 44 %d %d:(entries) . . : (ISO-8859-3) '%s' '%s' : %ulExecutive, 7 1/4 x 10 1/2 Unix (EUC-JP) '%s' '%s' ''(lock file). %luKb bitmap. (file handle) ''(lock file) '%s' (clipboard) : / : Internet (ISP) . '%s' '%s' '%s'. '%s' '%s' '%s' '%s'. DDE (string) (parent frame) MDI. (status bar) pipe (server) '%s' '%s' . '%s' ( (permissions);) (registry entry) '%s' . / ( %d) HTML %s (clipboard). . advise DDE '%s' ISP: %s (working directory) GUI: . MS HTML Help. OpenGL ''(lock file) '%s' (join) (thread), - (process) %d %d '%s'. - '%s'. mpr.dll. (shared library) '%s' ''(lock file) '%s' '%s' arxe;ioy CHM '%s'. (clipboard). (clipboard) PID (lock file). / (child process input/output) IO (child process IO) DDE (server) '%s' OpenGL (charset) '%s'. ''(lock file) '%s' (stale) ''(lock file) '%s' '%s' '%s'. '%s' '%s'. (clipboard). '%s' RAS (clipboard formats) "%s". DDE advise FTP transfer mode '%s' (clipboard). '' '%s' '%s' VFS ! thread advise loop DDE (server) : %s (touch) '%s' ''(lock file) '%s' - (unregister) DDE (server) '%s' . ''(lock file) '%s' : %s . '%s' , ; '%s' . ; . . (%s) : .
Folio, 8 1/2 x 13 :Fork forward hrefs %i :GIF: gif index.GIF: stream .GIF: GIF.GIF: .GIF: !!! GTK+ PostScriptGerman Legal Fanfold, 8 1/2 x 13 German Std Fanfold, 8 1/2 x 12 (ISO-8859-7) Gzip zlib HTML (*.hhp)|*.hhp| HTML %s . HTML (*.html;*.htm)|*.html;*.htm| (ISO-8859-8) (*.htb)|*.htb| (*.zip)|*.zip|: %s I64ICO: DIB.ICO: !ICO: (icon).ICO: (icon).ICO: (index) (icon).IFF: stream .IFF: IFF.IFF: .IFF: !!! (-wxEvtHandler) Events . . . (control) rich edit, simpe text . riched32.dll (process) (child) '%s' '%s' '%s' (ISO-8859-12) , wxCustomTypeInfo TIFF. XRC '%s': (root) (node) 'resource'. (specification) (mode) (display) '%s'. (specification) '%s' (lock file) '%s'. Null ID GetObjectClassInfo Null ID HasObjectClassInfo (regular expression) '%s': %sItaly Envelope, 110 x 230 mmJPEG: - (corrupted).JPEG: .KOI8-RKOI8-ULedger, 17 x 11 (mm), 8 1/2 x 14 , 8 1/2 x 11 , 8 1/2 x 11 (light) '//', . %s : '' '%s' . '' '%s' . (log) '%s'MDI (functions) MS HTML Help MS HTML Help . .& /VFS '%s'! & (mode) %ix%i-%i . Monarch, 3 7/8 x 7 1/2 (entries). (font) (encoding) '%s', '%s' . ( ) ; (font) (encoding) '%s'. ( ) ; (handler) XML (node) '%s', (class) '%s'! . %d. %s. (ISO-8859-10)
. :, 8 1/2 x 11 OK id HTML . '%s' . '%s': '%s' .PCX: PCX: PCX: PCX: PCX.PCX: !!!PCX: PNM: .PNM: .PNM: . %d %d %d(setup) (setup) registered SetObject registered SetObjectName GetObject pipe . . : Internet (ISP) comctl32.dll ( 4.70 %d.%02d) . PostScript: (setup) & Spooling : :...: %d... ... .Quarto, 215 x 275 mm '%s' ref="%s" ! '%s' . '%s' , . '%s' , : . '%s' . : Renderer "%s" %d.%d .& & : ! (mm): %s &... (log) (Script) / / : ... (seek error) '%s'. & '%s'.... , . / (navigation panel) , ., ., ., ., ., . . '%s' ., 5 1/2 x 8 1/2 : : String To Colour : : %s - '%s' '%s', subclassing!(Swiss)TIFF: .TIFF: .TIFF: .TIFF: .TIFF: .11 x 17 (ISO-8859-11) FTP (mode) 'passive'. FTP PORT. (charset) '%s' . [] O (clipboard format) '%d' . '%s' ; '%s' . . '%s' . . . . . . '%s' ".."! '%s' . . '%s' , (page setup): (default) . (thread module) : (thread local storage) (thread module) : (thread key) (thread module) : (allocate) (index) (thread local storage) (thread) . FTP, passive mode. timer .Tip Tip , !: PNG, . (mm) '%s' VFS , ! NULL (hostname): (ISO-8859-9) enum - longUS Std Fanfold, 14 7/8 x 11 HTML: %s . '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8) DDE %08x GetObjectClassInfo (%d) long '%s' '%s' (style flag). '{' (entry) mime %s. (clipboard format). '%s' .: %s (validation conflict) : - (ISO-8859-1)- Euro (ISO-8859-15) . Win32 Win32s Windows 3.1Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows (CP 1256)Windows (CP 1257)Windows - (CP 1250)Windows (CP 936)Windows (CP 950)Windows (CP 1251)Windows (CP 1253)Windows (CP 1255)Windows (CP 932)Windows (CP 949)Windows MEWindows (CP 1254)Windows - (CP 1252)Windows/DOS OEM (CP 437) (write error) '%s'XML (parsing error): '%s' %dXPM: (pixel)!XRC resource '%s' ((class) '%s') !XRC resource: bitmap '%s'. .& & [] DDEML race condition. (function) DDEML DdeInitialize (function), (identifier) instance DDEML (function). (client) (establish) (conversation) . (allocation) . DDEML. (synchronous) (advise) (transaction) (timed out) (synchronous) (transaction) (data) (timed out) (synchronous) (transaction) (execute) (timed out) (synchronous) poke (transaction) (timed out) (advise) (transaction) (timed out) (server-side) (conversation) (client), (server) ( transaction). (transaction) .alt APPCLASS_MONITOR (transaction) DDE, APPCMD_CLIENTONLY (server transactions). (function) PostMessage . DDEML. (identifier) (transaction) DDEML (function). XTYP_XACT_COMPLETE callback, callback . '%s' . '%s' (descriptor) %d '%s' '%s' '%s' (descriptor) %d (file desciptor) %d HOME , . (flush) %d (seek position) (descriptor) %d , '%s' (global) %s '%s' . zlib deflate. zlib inflate. i (descriptor) %d '%s' '%s' (seek) (descriptor) %d (buffer) '%s' . (file descriptor) %d . (domain) '%s' . checksum 8-bit ctrl (delegate) (entry) '%s' '%s' zip '%s': crc buffer (flush) '%s'- '%s', %d: '%s' . '%s', %d: '=' . '%s', %d: '%s' %d. '%s', %d: '%s' . '%s': %c %d. (verbose) (log) string event, (light) '%s' '%s' '%s'. DDE num XML zip ( %s): crc zip ( %s): (reentrancy problem). -shift (.. 640x480-16) Zipstr DDE_FBUSY bit . tiff module: %s " %d '%s'. %s ( %08x) (origin) (seek)-%d%d Zip '%s' '%s' wxGetTimeOfDay .wxSocket: (invalid signature) ReadMsg.wxSocket: (event)! wxWidgets '%s': ... wxWidgets . '... zlib %d|<<wxMaxima-13.04.2/locales/wxwin/es.mo000644 000765 000024 00000246364 11670654443 017655 0ustar00andrejstaff000000 000000 lQ>TTTTT!T@T`T|TTTT T TTT UU 'U'2U&ZU$U U UUUUUUUUUUV VVV!V'V /V=VFVOVUV[VbVjVoVuVzVV VVVVVV V V VV V VVVVW WWW%W;WAWGW OWZW`W gWqWuW~WWWW4W$W!X5X*MX/xX:XX X>X5Y7Y :Y EY PYqYYYYYYYY#Y/Y!Z4ZIZLZ6PZZZZZZZ[[%[4;[.p[[ [ [[[[[[6\H\:^\\#\ \\\ ]']F]`]!]"]]-]1 ^(>^g^|^+^^^^^^^_3_M_g_0___)_`*`(C`l``#` `;`a),aVauaaaa%a#b"(b*Kb(vb&b%b%b5cHc"ec?ccc1c 0dQdkd!dd,d%d(d/(eXe-te3ee e-f=fSfrff%fff g!g?g)Vggg#g!ghh)9h&ch"hhhhhh i i%i,i#Ci$gii i ii(ii)ijj 7jEj(Njwjj$j j(jk!kw=kjk! lBl!\l~ll(lll. m';mCcm#mm(m n9%n_nxn6nnnnnoo1o,Io1vo0o%o%o%p ?pJp[p kpwpp~pq",qOqmqqQqqvr+r rrrrrr rr&s /s=sCsJscss%s ssst t07tht$t$t'tJt,Bu$ou"uu4uv$v@v_v-~v"v"v9v$,w0Qww"ww&w"x8*xcx%|x(xGx/yACy.yyy2y)&zPzGhzEzGz>{Z{%x{!{#{#{3|"<|_|${|T||'}'7}_}"w}-}!}.}$~>~ Y~z~~#~"~-~',"T'w5&-/J+z&,̀2--&[&+ǁ(!)>h3-$&)K!u =΃4 A Ze  /˄ /5'Mu Å΅#!#'2K8~ %ʆ &*9 d'̇  2R[`os" ׈'9Yq)$ ։72/)b$j%n+%/#(8a={(#66U#1ԍ !+2 9CVh}0 423#f)Џ 1|+ 3 &  )83l" ƑΑ ӑ ?Q/ % %1Wr'{Ӕ&ڔ "!% GQd+}0Ǖ  *H[x#ʖ   *5 ; F0Q4% ݗ":1] <EU ^l r  ͙ۙ !1 BM V`o ֚/ܚ !36j#"4";D^ -ǜ # 0<D^eNl ̝؝ < Wc~ )#͞?:C[sŸ+ȟ -65d+%Ơ)2:FC6 ;$D_zâ ̢֢,0zG(£0]oz !1%B.h0Mu\æP @qY# 0CBTب;ܨA)*k%֩*$ E.N}$'Ԫ$'9aw+Ы(-FZn+- ! $. BOm) =ɭ(%N ny  ĮϮ ߮  $"=#`$įܯ '2Po"°۰"&2)Y-D/* 3 =J;R:Y0u=;> ;_5Ѵh~9?,y.p-!ͷ  %+A!`)>ø#/&0V-Թ*(2#[8''"+ B c !$ǻ'##5Y^cw  /#</[  4ý!89S. ¾ ̾׾޾+(1 Mn&ֿ ߿ " : HS&[)   -A$ZC    $&KS d r  " 5AI'`3*  n ;Z c mw 904" W er{   '/8=D K Vcy}    ,"8[ci r | %=*.)Y),0" *=6tv y $!"*2MB6L`f m>6$7Nch1G\)p !)7.a#:>*.Yn:2I`0x'5."*Q@|.-;VNl-5,&L(s &142K7~;<7/:g?,3MC!*B9!9[$15<+)hE1: QE6>/ =$Y%~$*',I0g"8'/,L)y&"I?7:w  '5=+[/ / ?& f$p 2* 4<T%%}i5!&?f'.!<9YT5.2MC"*I.x#E =O;:27 NYu P`c3rR2  ,2EU-l,8 Wx#5'!'I*qN6#"&F'mI!(** U-v,*D&A6h,%3Bv$'@;IZ6 %8"#[QJO4#*'()$)N2x#0v+5*,6W-02 "> a'(==1'o.F* +82d5(,-#;Q>)4*+=V-:5'37[! +*<--j >=Pp)  1&&<M ,$)D _i#}!.<E/u{, /%5[*y"< S]dvz-)*'=$e6+'%;M:1 03#dh-/ 'O 2w    &  = ,\ + " C C $`   A      # . F ] r   6   I SL ; 6 )3];n~ ):4o,  H1 8Ccu{  #/ !B<>:1:l8F*<g|5 '/>$n5 #"7W(t!&& '9KSd+u/)""'$J/o0s &!4Ob}   , 7CVo~#; %<E%#Iex&S 8$]x +S ^t|  $W* &< "c  - 1  J! Y!$f!!!#!%! """* "K"i"1"M"5 #5?#:u####V#85$#n$6$$"$$%,%K%k%% %%*%+%%)&,&S&a:''''''''&'(N(3m((SC)e)t)Yr*s*C@+++^+%,.,&A,h,Bo,,K,O-d-y-,~--.-2-,.1<.n..%.(..% /(//X/n//./(//300I0 z000>01/#1%S1y111111113242:2BB22(2222 3 363 N3Y3 i3 t3333"3#3"414L4d4}44 4444"545J5%c5+55'5-56*6La66366667B 7N7978(788`8B8E8E"9Fh99G:_:c:8+;&d;;6h<2<.< =2=B=J=R="Z=.}=8=!==>PE>5>;>=?.F?Hu?,?!?: @>H@7@V@9A<PA2AA+A1 B,>B3kB:B4BC-C+ACmCrCxCC(C CCCC7D9DSD+lD/DBD E+E BEPECWE'EQEAF1WFFF FF$F<FG$!G-FGtGGGG!G*G G GH H H ,H7H@H.DHsHHH/H5HII"I2IAIIIOI mIzI,II=IJ JEJWJ_JnJJJ JJ J J'J JJJ K/KOKnK }K K)KKKK LL#,LPL9pL/LLLLz]J@?oxzwr_R/Fs2gYk+qyyGqewIfj5)Mr_c3KK(S sSl[;,oV6[f#!49T`~5hJS gp/:rRWA60|+a[/0&kawG-'DZXzOO+96xT$ 7'w^ M=n;{P3Tl>8 Si B@qnE1_I U>Wfd8|[u-=2mt>.H"::=<*6fn Rlo:CN?Q%]&sR Nce3\Jt2O`()2,^!n;D#5yE}eM,-Y\1zl* d$.1G7iDu'Pav H1/?c.vju ;4A(BiXAL%9`4 W^N&Y\^NhUmE"FV - k E\V{'o94p|7?>VCj vg)I0c)gjdWH #e~"P,!BL{.mhMtbQDpr%p_ 3Z *b *P<UIH}$bF]u <v=J$t+AZF| Q{LUkT~d<}~0OmCCQ7"Yx!@]}#% ia(&Z`BLX5X8KbGhy@sqKx8 (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%ld bytes%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message%s not a bitmap resource specification.%s not an icon resource specification.%s: ill-formed resource file syntax.&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&OK&Open&Open...&Paste&Point size:&Preferences&Previous&Print&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks), expected static, #include or #define while parsing resource....10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A non empty collection must consist of 'element' nodesA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAddToPropertyCollection called on a generic accessorAddToPropertyCollection called w/o valid adderAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open URL '%s'Cannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find resource include file %s.Could not find tab for idCould not locate file '%s'.Could not resolve control class or id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not resolve menu id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.DesktopDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?Don't SaveDoneDone.Doubly used id : %dDownE sheet, 34 x 44 inEdit itemElapsed time : Enter a page number between %d and %d:Entries foundErrorError Error creating directoryError in reading image DIB .Error reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Estimated time : Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExpected '*' while parsing resource.Expected '=' while parsing resource.Expected 'char' while parsing resource.Exporting registry key: file "%s" already exists and won't be overwritten.Extended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to %s dialup connection: %sFailed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory %s/.gnome.Failed to create directory %s/mime-info.Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to find XBM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to find XBM resource %s. Forgot to use wxResourceLoadIconData?Failed to find XPM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get stack backtrace: %sFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to match '%s' in regular expression: %sFailed to modify file times for '%s'Failed to open '%s' for %sFailed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.Files (%s)FindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound Found %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGetProperty called w/o valid getterGetPropertyCollection called on a generic accessorGetPropertyCollection called w/o valid collection getterGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Icon resource specification %s not found.Ignoring value "%s" of the key "%s".Ill-formed resource file syntax.Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal Parameter Count for ConstructObject MethodIllegal Parameter Count for Create MethodIllegal directory name.Illegal file specification.Image and mask have different sizes.Image file is not of type %d.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.JustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Loading Grey Ascii PNM image is not yet implemented.Loading Grey Raw PNM image is not yet implemented.Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.Long Conversions not supportedMDI childMP Thread Support is not available on this SystemMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMailcap file %s, line %d: incomplete entry ignored.Match caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMime.types file %s, line %d: unterminated quoted string.Mode %ix%i-%i not available.ModernModifiedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOperation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.SetProperty called w/o valid setterSetup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow hidden filesShow/hide navigation panelShows the font preview.SizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sString conversions not supportedSubclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).There was a problem during page setup: you may need to set a default printer.This system doesn't support date picker control, please upgrade your version of comctl32.dllThread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected end of file while parsing resource.Unexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown dynamic library errorUnknown encoding (%d)Unknown field in file %s, line %d: '%s'.Unknown long option '%s'Unknown option '%s'Unknown style flag Unkown Property %sUnmatched '{' in an entry for mime type %s.Unnamed commandUnrecognized style %s while parsing resource.Unsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictVideo OutputView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XPM: malformed colour definition '%s'!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.assuming this is a multi-part zip concatenatedattempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebad zipfile offset to entrybinaryboldbold can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't query for GUI plugins name in console applicationscan't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infoeighteentheightheleventhencoding %sentry '%s' appears more than once in group '%s'error in data formaterror opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthestablishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinitiateinvalid eof() return value.invalid message box return valueinvalid zip fileitaliclightlight locale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryread errorreadingreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunderlined unexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown line terminatorunknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodunsupported zip archiveusing catalog '%s' from '%s'.write errorwritingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets 2.5.4 POT-Creation-Date: 2005-04-11 22:24+0200 PO-Revision-Date: 2005-02-19 18:06+0100 Last-Translator: Francisco Vila Language-Team: wxWidgets translators MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Report-Msgid-Bugs-To: (error %ld: %s) - PrevisualizacinSobre #10, 4 1/8 x 9 1/2 inSobre #11, 4 1/2 x 10 3/8 inSobre #12, 4 3/4 x 11 inSobre #14, 5 x 11 1/2 inSobre #9, 3 7/8 x 8 7/8 in#define %s debe ser un entero.%i de %i%ld bytes%s (o %s)%s Error%s Informacin%s Avisoficheros %s (%s)|%s%s mensaje%s no es un recurso con especificaciones de mapa de bits.%s no es una especificacin de recurso de icono.%s: mal formacin de la sintaxis del fichero fuente.&Acerca de...Tamao re&al&Aplicar&Organizar iconos&Atrs&Netrita&Cancelar&Cascada&Limpiar&Cerrar&Copiar&Borrar&DetallesA&bajo&Archivo&Buscar&Finalizar&Fuente:AdelanteIr a...&Ayuda&Iniciond&iceCurs&iva&Log&Mover&Nuevo&Siguiente&Siguiente >&Siguiente Sugerencia&No&AceptarA&brir...A&brir...&PegarTamao en &puntos:&Preferencias&AnteriorIm&primirIm&primir...&Propiedades&Salir&Rehacer&Rehacer &Sustituir&Restaurar&Guardar...&Guardar...%Mostrar las sugerencias al inicio&TamaoPararE&stilo:Subrayada&Deshacer&Deshacer Reducir margenArribaPeso&Ventana&S'%s' tiene '..' adicional, se ignora.'%s' es invlido'%s' no es un valor numrico correcto para el parmetro '%s'.'%s' no es un catlogo de mensajes vlido.'%s' es probablemente un fichero binario.'%s debe ser numrico.'%s' debe contener slo caracteres ASCII.'%s' debe contener slo caracteres de texto.'%s debe contener slo caracteres alfanumricos.(Ayuda)(favoritos), se esperaba static, #include o #define al analizar recurso....10 x 14 in11 x 17 inSobre 6 3/4, 3 5/8 x 6 1/2 in: el fichero no existe!: conjunto de caracteres desconocido: codificacin desconocida< &Atrs<<Negrita cursiva.
negrita cursiva subrayada
Negrita. Cursiva. >>>>|Una coleccin no vaca debe consistir en nodos del tipo 'elemento'Hoja A3, 297 x 420 mmHoja A4, 210 x 297 mmHoja Pequea A4, 210 x 297 mmHoja A5, 148 x 210 mmABCDEFGabcdefg12345ASCIIAadirAadir pgina actual a favoritosAadir a colores personalizadosSe llam a AddToPropertyCollection sobre un accedente genricoSe llam a AddToPropertyCollection sin aadidor vlidoAadiendo libro %sAlinear a la izquierdaAlinear a la derechaTodoTodos los ficheros (%s)|%sTodos los ficheros (*)|*Todos los ficheros (*.*)|*Todos los ficheros (*.*)|*Se pas Objeto Ya Registrado a SetObjectClassInfoLlamando al ISPAadir el log al fichero '%s' (elegir [No] sobreescribir el fichero)?Arabic (ISO-8859-6)El paquete no contiene un archivo #SYSTEMAtributosSobre B4, 250 x 353 mmHoja B4, 250 x 354 mmSobre B5, 176 x 250 mmHoja B5, 182 x 257 mmSobre B6, 176 x 125 mmBMP: No se pudo reservar memoria.BMP: No se pudo guardar imagen no vlida.BMP: No se pudo escribir el mapa de color RGB.BMP: No se pudieron escribir datos.BMP: No se pudo escribir la cabecera (Bitmap) del fichero.BMP: No se pudo escribir la cabecera (BitmapInfo) del fichero.BMP: wxImage no tiene su propia wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Fuente de especificacin de mapa de bits %s no encontrada.GruesaMargen inferior (mm):Hoja C, 17 x 22 in&LimpiarC&olor:Sobre C3, 324 x 458 mmSobre C4, 229 x 324 mmSobre C5, 162 x 229 mmSobre C6, 114 x 162 mmSobre C65, 114 x 229 mmEl manejador CHM slo permite ficheros locales!No se puede crear el mutexNo se pueden enumerar los ficheros '%s'No se pueden enumerar los ficheros en directorio '%s'No se puede continuar el hilo de ejecucin %luNo se puede continuar hilo de ejecucin %xNo se puede empezar el hilo de ejecucin: error al escribir TLS.No se puede suspender el hilo de ejecucin %luNo se puede suspender el hilo de ejecucin %xNo se puede esperar a la finalizacin del hilo de ejecucinNo se puede deshacer No se puede comprobar formato de imagen de fichero '%s': el fichero no existe.No se puede cerrar la clave del registro '%s'No se pueden copiar valores del tipo no soportado %d.No se puede crear la clave del registro '%s'No se puede crear el hilo de ejecucinNo se puede crear la ventana de clase %sNo se puede borrar la clave '%s'No se puede borrar el fichero INI '%s'No se puede borrar el valor '%s' de la clave '%s'No se pueden enumerar las subclaves de la clave '%s'No se pueden enumerar los valores de la clave '%s'No se puede exportar el valor del tipo no soportado %d.No se puede encontrar la posicin actual en el fichero '%s'No se pudo obtener informacin de la clave del registro '%s'No se puede inicializar el flujo de compresin de zlib.No se puede inicializar el flujo de descompresin de zlib.No se pudo cargar imagen de fichero '%s': el fichero no existe.No se puede abrir la clave del registro '%s'No se puede leer desde el flujo de descompresin %sImposible leer flujo de descompresin: EOF inesperado en el flujo subyacente.No se puede leer el valor de '%s'No se puede leer el valor de la clave '%s'No se puede guardar imagen en fichero '%s': extensin desconocida.No se pueden guardar los contenidos del log a un fichero.No se puede establecer la prioridad del hilo de ejecucinNo se puede establecer valor de '%s'No se puede escribir en el flujo de compresin %sCancelarNo se pueden convertir unidades: dilogo desconocido.No se puede convertir desde el conjunto de caracteres '%s'!No se puede encontrar conexin activa: %sNo se puede encontrar el contenedor para el control desconocido '%s'.No se puede encontrar nodo de tipo de letra '%s'.No se puede localizar el fichero de libreta de direccionesNo se puede obtener un rango de prioridades para la poltica de planificacin %d.No se puede obtener el nombre de la mquina (hostname)No se puede obtener el nombre oficial de la mquina (hostname)No se puede colgar - no hay conexiones activas.No se puede inicializar OLENo se puede inicialzar SciTech MGL!No se puede inicializar el 'display'.No se puede cargar el icono de '%s'.No puede cargar el fichero de recursos %s.No se puede abrir el documento HTML: %sNo se puede abrir el libro de ayuda HTML: %sNo se puede abrir la URL '%s'No se puede abrir los contenidos del fichero: %sNo se puede abrir el fichero '%s'.No se puede abrir el fichero para impresin PostScript!No se puede abrir el fichero ndice: %sNo se pueden analizar las formas plurales '%s'.No se pueden parsear coordenadas desde '%s'.No se puede parsear dimensin desde '%s'.No se puede imprimir una pgina vaca.No se puede leer tipo desde '%s'!No se puede recuperar la poltica de planificacin de hilos de ejecucin.No se puede empezar el hilo de ejecucin: error escribiendo TLSNo se puede crear la cola de eventos del hilo de ejecucinSensible a May/MinCeltic (ISO-8859-14)CentradoEuropa Central (ISO-8859-2)Elegir ISP al que conectarElegir colorElegir fuente&CerrarBorrar los contenidos del logHaga clic para cancelar seleccin de fuenteHaga clic para confirmar la seleccin de fuenteCerrarCerrar Alt-F4Cerrar TodoCerrar esta ventanaArchivo de ayuda HTML comprimido (*.chm)|*.chm|OrdenadorUn nombre de entrada de configuracn no puede empezar por '%c'.ConfirmarConfirmar actualizacin del registroConectando...ContenidosConversin a juego de caracteres '%s' no funciona.Copiado en el portapapeles:"%s"Copias:No se puedo crear el fichero temporal '%s'No se pudo extraer %s en %s: %sNo puede encontrarse el fichero de inclusin de recursos %s.No se puede encontrar pestaa para idNo se pudo encontrar el fichero '%s'.No se puede resolver la clase de control o el id '%s'. Usar un entero distinto de cero o proporcionar el #define (ver consejos del manual)No se puede resolver el id de menu '%s'. Usar un entero distinto de cero o proporcionar el #define (ver consejos del manual)No puede iniciarse la previsualizacin del documento.No se puede iniciar la impresin.No puede transferir datos a la ventanaNo se pudo desbloquear el mutexNo se pudo adquirir un bloqueo de mutexNo se puede aadir imagen a lista de imagenes.No se puede crear un temporizadorNo se puedo crear el cursor.No se pudo encontrar el smbolo '%s' en la librera dinmicaNo se pudo obtener el puntero al hilo de ejecucin actualNo se pudo cargar imagen PNG - el fichero est corrupto o no hay suficiente memoria.No se pudieron cargar los datos de sonido desde '%s'.No se pudo abrir el dispositivo de sonido '%s'No se puede registrar formato de portapapeles '%s'No se pudo liberar un mutexNo se puede recuperar informacin sobre el elemento %d de la lista.No se puede guardar la imagen PNG.No se puedo finalizar el hilo de ejecucinNo se encontr el parmetro de creacin en los parmetros RTTI declaradosCrear directorioCrear nuevo directorio&CortarDirectorio actual:Cirlico (ISO-8859-14)Hoja D, 22 x 34 inFallo en la peticin de rastreo DDECabecera DIB: La codificacin no coincide con la profundidad de bits.Cabecera DIB: Altura de la imagen > 32767 pixels por fichero.Cabecera DIB: Anchura de imagen > 32767 pixels por fichero.Cabecera DIB: Profundidad de color desconocida en fichero.Cabecera DIB: Codificacin desconocida en fichero.Sobre DL, 110 x 220 mmDecorativeCodificacin predeterminadaImpresora predeterminada&Borrar elementoFichero de bloqueo '%s' borrado.EscritorioLas funciones de marcado no estn disponibles porque los servicios de acceso remoto (RAS) no estn instalados. Por favor instlelos.Sabas que...?No pudo crearse directorio '%s'El directorio '%s' no existe!El directorio no existeEl directorio no existeMostrar todos los elementos del ndice que contengan la subcadena dada. La bsqueda es Insensitiva.Mostrar el dilogo de opcionesQuiere sobreescribir el comando usado en ficheros %s con la extensin "%s"? Valor actual %s, Nuevo valor %s %1Desea guardar los cambios hechos al documento %s?No guardarHechoHecho.Identificador duplicado: %dAbajoHoja E, 34 x 44 inEditar elementoTiempo transcurrido : Introduzca un nmero de pgina entre %d y %d:Documentos encontradosErrorError Error creando directorioError al leer imagen DIB.Error al leer las opciones de configuracin.Error al guardar los datos de configuracin del usuario.Error al escribir en el semforoError: Esperanto (ISO-8859-3)Tiempo estimado : Fall la ejecucin del comando '%s'Fall la ejecucin del comando '%s' con el error: %ulExecutive, 7 1/4 x 10 1/2 inSe esperaba '*' al analizar el recurso.Se esperaba '=' al analizar el recurso.Se esperaba 'char' al analizar el recurso.Exportando clave de registro: archivo "%s" existente que no se sobreescribir.Pgina de Cdigos Unix Extendida para Japons (EUC-JP)Fall la extraccin de '%s' de '%s'Fallo al %s marcado de la conexin: %sFallo al acceder al fichero de bloqueo.No se pudieron reservar %luKb de memoria para los datos del mapa de bits.Error al cambiar el modo de vdeoError al cerrar el manejador del ficheroError al cerrar el fichero de bloqueo '%s'Error al cerrar el portapapeles.Fallo al conectar: faltan usuario/contrasea.Fallo al conectar: no hay ISP al que llamar.Error al copiar el valor '%s' del registroFallo al copiar los contenidos de la clave del registro '%s' a '%s'.Error al copiar el fichero '%s' a '%s'Error al copiar la subclave del registro '%s' en '%s'.Fallo al crear cadena DDEFallo al crear panel MDI padreFallo al crear barra de estado.Fallo al crear un nombre temporal de ficheroFallo al crear canal annimoFallo al crear la conexin al servidor '%s' en '%s'Fallo al crear el cursor.Fallo al crear directorio %s/.gnome.Fallo al crear directorio %s/mime-info.Fallo al crear directorio '%s' (Tiene los permisos necesarios?)Fallo al crear entrada del registro para los ficheros '%s'.Fallo al crear el dilogo estndar de buscar/reemplazar (cdigo error %d)Error al mostrar el documento HTML con codificacin %sFallo al vaciar el portapapeles.Fallo al enumerar los modos de vdeo.Fallo al establecer un lazo de aviso con el servidor DDEFallo al establecer la conexin: %sError al ejecutar '%s' Error al buscar el recurso XPBM %s. Se olvid de usar xwResourceLoadBitmapData?Error al buscar fuente XBM %s. Se olvid de usar wxResourceLoadIconData?Error al buscar el fuente XPM %s. Se olvid de usar wxResourceLoadBitmapData?Error al obtener nombres de ISP: %sError al obtener informacin portapapeles.Error al obtener datos del portapapelesFallo al obtener la traza de la pila: %sError al obtener el sistema horario localError al obtener el directorio de trabajoFallo al inicializar GUI: no se encontraron temas.Fallo al inicializar Ayuda MS HTML.Fallo al inicializar OpenGL.Error al inspeccionar el archivo de bloqueo '%s'Error al sincronizar con un hilo de ejecucin, prdida potencial de memora detectada - por favor reinicie el programaError al matar el proceso %dError al cargar imagen %d del fichero '%s'.Error al cargar el metaarchivo desde el fichero "%s".Error al cargar mpr.dll.No se pudo abrir la librera dinmica '%s'No se pudo abrir la librera dinmica '%s'. Error '%s'Error la bloquear el bloqueo del fichero '%s'Fallo al buscar '%s' en la expresin regular: %sError al modificar las horas del fichero para '%s'Error al abrir '%s' para '%s'Error al abrir el archivo CHM '%s'Error al abrir fichero temporal.Error al abrir el portapapeles.Error al poner datos en el portapapelesError al leer PID de fichero de bloqueo.Error en la redireccin de la entrada/salida del proceso hijoError en la redireccin de la entrada/salida del proceso hijoError al registrar el servidor DDE '%s'Fallo al registrar la clase de ventana OpenGL.Error al recordar la codificacin para el conjunto de caracteres '%s'.Error al quitar el fichero de bloqueo '%s'Error al borrar el fichero de bloqueo '%s'.Fallo al renombrar valor del registro '%s' a '%s'.Error al renombrar la clave del registro '%s' a '%s'.Error al obtener datos del portapapeles.Error al obtener horas del fichero para '%s'Fallo al recuperar el mensaje de error de RASFallo al recuperar los formatos soportados del portapapelesError al guardar la imagen de mapa de bits en el fichero "%s".Fallo al enviar notificacin de aviso DDEError al establecer modo de transferencia FTP a '%s'Error al colocar datos en el portapapeles.Imposible establecer permisos para el fichero de bloqueo '%s'Error al cambiar permisos de fichero temporalError al establecer la prioridad del hilo de ejecucin %d.Error al almacenar la imagen '%s' en VFS de memoria!Error al terminar un hilo de ejecucin.Error al terminar el bucle de aviso con el servidor DDEError al terminar la conexin: %sError al 'tocar' el fichero '%s'Fallo al quitar el bloqueo del fichero '%s'Error al desregistrar el servidor DDE '%s'No puede actualizarse el fichero de configuracin de usuarioError al escribir al bloquear el fichero '%s'Error fatalError fatal: ArchivoEl fichero %s no existe.El fichero '%s' ya existe, realmente quieres sobreescribirlo?El fichero '%s' ya existe. Realmente quiere sobreescribirlo?El fichero no pudo ser cargado.Error de ficheroYa existe un fichero con el mismo nombre.Ficheros (%s)BuscarFuente fija:Monoespaciado.
negrita cursiva Folio, 8 1/2 x 13 inTamao de fuente:Error en bifurcacin de proceso (fork)Las hiper-referencias del tipo "forward" no estn soportadasEncontrado Encontrada(s) %i coincidenciasDe:GIF: Indice de gif no vlido.GIF: flujo de datos parece haberse truncado.GIF: error en formato de imagen GIF.GIF: memoria insuficiente.GIF: error desconocido!!Tema GTK+PostScript genricaGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inSe llam a GetProperty sin un obtenedor vlidoSe llam a GetPropertyCollection sobre un accedente genricoSe llam a GetPropertyCollection sin un obtenedor de coleccin vlidoAtrsAdelanteSubir un nivel en la jerarqua del documentoIr al directorio principalIr al directorio superiorIr a PginaGreek (ISO-8859-7)Gzip no est soportado por esta versin de zlibProyecto de ayuda HTML (*.hhp)|*.hhp|El anclaje HTML %s no existe.Archivos HTML (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)AyudaOpciones del Navegador de la AyudaIndice de la AyudaAyuda de ImpresinTemas de ayudaLibros de ayuda (*.htb)|*.htb|Libros de ayuda (*.zip)|*.zip|Ayuda: %sInicioCarpeta de inicioI64ICO: Error al leer mscara DIB.ICO: Error al escribir el fichero de imagen!ICO: Imagen demasiado alta para un icono.ICO: Imagen demasiado ancha para un icono.ICO: Indice de icono no vlido.IFF: el flujo de datos parece truncado.IFF: error en formato de imagen IFF.IFF: memoria insuficiente.IFF: error desconocido!!!Especificacin de recursos de iconos %s no encontrada.Se ignorar el valor "%s" de la clave "%s".Sintaxis incorrecta del fichero fuente.Clase de objeto (Non-wxEvtHandler) como Event Source ilegalNmero ilegal de parmetros para el mtodo ConstructObjectNmero ilegal de parmetros para el mtodo CreateNombre de directorio ilegalEspecificacin de fichero IlegalLa imagen y la mscara tienen tamaos diferentesfichero de imagen no es de tipo %d.Imposible crear control 'rich edit', se usar el control de texto simple. Por favor instale riched32.dllImposible obtener la entrada del proceso hijoImposible obtener permisos para el fichero '%s'Imposible sobreescribir el fichero '%s'Imposible establecer permisos para el fichero '%s'Aumentar margenndiceIndian (ISO-8859-12)Error interno, wxCustomTypeInfo ilegalndice invlido de fichero TIFF.Recurso XRC no vlido '%s': no tiene el nodo raz 'resource'.Especificacin de 'display' no vlida: '%s'.Especificacin de geometra no vlida: '%s'fichero de bloqueo '%s' no vlido.Identificador de objeto pasado a GetObjectClassInfo nulo o invlidoIdentificador de objeto pasado a HasObjectClassInfo nulo o invlidoExpresin regular no vlida '%s': %sItlicaSobre Italy, 110 x 230 mmJPEG: No se pudo cargar - el fichero est probablemente corrupto.JPEG: No pudo guardarse imagen.JustificadoKOI8-RKOI8-UHorizontalLibro Mayor, 17 x 11 inMargen Izquierdo (mm):Legal, 8 1/2 x 14 inSobre Pequeo, 8 1/2 x 11 inSobre, 8 1/2 x 11 inLigeraEl enlace contiene '//', convertido a enlace absoluto.Cargar el fichero %sCargando :Cargar un fichero ascii PNM de escala de grises an no est implementado.Cargar un fichero de imagen PNM 'raw' de escala de grises an no est implementado.El archivo de bloqueo '%s' tiene un propietario incorrecto.El archivo de bloqueo '%s' tiene permisos incorrectos.Log guardado a el fichero '%s'.Las conversiones Long no estn soportadasVentana hija MDIEl soporte para hilos MP no est disponible en este sistemaLa funciones de Ayuda MS HTML no estn disponibles porque la librera de Ayuda MS HTML no est instalada. Por favor instlela.Ma&ximizarFichero Mailcap %s, linea %d: entrada incompleta ignorada.Coincidir may./min.VFS de memoria ya contiene el fichero '%s'!MenTema MetalMi&nimizarTipos Mime del fichero %s, linea %d: cadena entrecomillada no terminada.Modo %ix%i-%i no disponible.ModernModificadoSobre Monarch, 3 7/8 x 7 1/2 inMover hacia abajoSubirNombreCrear directorioElemento nuevoNuevo NombreSiguientePgina siguienteNoNo est disponible el soporte XBM!No est disponible el soporte para iconos XPM!No se han encontrado documentos.No hay un tipo de letra para la codificacin '%s', pero existe una codificacin '%s' alternativa. Le gustara usar esta codificacin (de otra forma deber elegir otra)?No existe un tipo de letra para la codificacin '%s'. Le gustara seleccionar una fuente para usarse con esta codificacin (de otra forma el texto con esta codificacin no se mostrar correctamente)?No se encontr manejador para el nodo XML '%s', clase '%s'!No se ha encontrado ningn manipulador para el tipo de imagen.No hay definido ningn manipulador de imagen para tipo %d.No hay definido ningn manipulador de imagen para tipo %s.Todava no se ha encontrado una pgina con coincidenciasNo hay ningn sonidoNo hay ningn color sin utilizar en la imagen que se est enmascarandoNo hay ningn color sin usar en la imagen.Nordic (ISO-8859-10)NormalNnormal
y subrayado. Fuente normal:Nota, 8 1/2 x 11 inAceptarLos objetos deben tener un atributo de identificacinAbrir archivoAbrir documento HTMLOperacin no permitidaEl parmetro '%s' necesita un valor, falta '='.El parmetro '%s' necesita un valor.El parmetro '%s': '%s' no puede convertirse a fecha.OpcionesOrientacinPCX: no pudo reservarse memoriaPCX: formato de imagen no soportadoPCX: imagen invlidaPCX: esto no es un fichero PCX.PCX: error desconocido!!!PCX: nmero de versin demasiado antiguaPNM: No se pudo reservar memoria.PNM: Formato de fichero no reconocido.PNM: El fichero parece estar truncado.Pgina %dPgina %d de %dConfigurar PginaConfigurar pginaPginasTamao del PapelTamao del papelPaso de un objeto ya registrado a SetObjectPaso de un objeto ya registrado a SetObjectNamePaso de un objeto desconocido a GetObjectPermisosError en la creacin de la tuberaPor favor elija una fuente vlida.Por favor elige un fichero existentePor favor elija la pgina que quiere presentar:Por favor elija el ISP al que se quiere conectarPor favor instale una versin ms nueva de comctl32.dll (se necesita al menos la versin 4.70 pero Ud. tiene %d.%02d) o este programa no funcionar correctamente.Imprimiendo. Por favor espere VerticalFichero PostScriptPrevisualizacin:Pgina anteriorImprimirPrevisualizacin de la impresinError en previsualizacin de impresinRango de ImpresinConfiguracin de ImpresinImpresin en color&Vista previa de impresinVista previa de impresinCola de ImpresinImprimir esta pginaImprimir a FicheroImpresoraComando de impresin: Opciones de impresinOpciones de impresora:Impresora...Impresora:ImprimiendoError de impresinImprimiendo pgina %d...Imprimiendo...Programa abortado.Quarto, 215 x 275 mmPreguntaError de lectura en el fichero '%s'ListoNo se ha encontrado objeto nodo referenciado con ref="%s"!RefrescarLa clave del registro '%s' ya existe.La clave del registro '%s' no existe, no se puede renombrar.La clave del registro '%s' se necesita para el funcionamiento normal del sistema, si se borra puede dejar es sistema en un estado inestable: operacin abortada.La clave del registro '%s' ya existe.Documentos significantivos:Tiempo restante : QuitarEliminar la pgina actual de favoritosEl renderizador "%s" tiene una versin %d.%d incompatible y no se ha podido cargar.&SustituirSustituir &todoSustituir por:Los ficheros de recursos deben ser de la misma versin!Recuperar versin guardadaMargen derecho (mm):Roman&GuardarGuardar el fichero %sGuardar &como...Guardar comoGuardar los contenidos del log a un ficheroScriptBuscarBuscar contenidos en libro(s) de ayuda para todas las ocurrencias del texto escritoDireccin de bsquedaBuscar:Buscar en todos los librosBuscando...SeccionesError de bsqueda en el fichero '%s'Error de acceso en el archivo '%s' (los archivos grandes no estn soportados por stdio)Seleccionar &TodoSeleccionar una plantilla de documentoSeleccionar una vista de documentoSeleccionar un ficheroSe esperaba separador despus de opcin '%s'.Se llam a SetProperty sin un establecedor vlidoConfiguracin...Se han encontrado varias conexiones activas, eligiendo una aleatoriamente.Mostrar todoMostrar todos los datos en el ndiceMostrar directorios ocultosMostrar ficheros ocultosMostrar/Ocultar panel de navegacinMuestra la vista previa de la fuente.TamaoSaltarCursivaNo pudo abrirse este fichero para guardar.No pudo abrirse este fichero.No pudo guardarse este fichero.Memoria insuficiente para crear previsualizacin.Disculpe, la impresin de vista previa requiere que se instale una impresora.Lo sentimos, el formato de este archivo se desconoce.Los datos de sonido estn en un formato no soportado.El archivo de sonido '%s' est en un formato no soportado.Statement, 5 1/2 x 8 1/2 inEstado: Estado: An no estn soportados los delegados de flujo para los objetos que no son ya de flujoCadena a Color: Especificacin de color '%s' incorrecta.Conersiones de cadena no soportadasNo se encontr la subclase '%s' para el recurso '%s'!SwissTIFF: No se pudo reservar memoria.TIFF: Error al cargar imagen.TIFF: Error al leer imagen.TIFF: Error al guardar imagen.TIFF: Error al escribir imagen.Tabloide, 11 x 17 inTeletypePlantillasThai (ISO-8859-11)El servidor FTP no soporta el modo pasivo.El servidor FTP no soporta el comando PORT.El conjunto de caracteres '%s' es desconocido. Puede seleccionar otro conjunto para reemplazarlo o elegir [Cancelar] si no puede ser reemplazadoEl formato %d del portapapeles no existe.El directorio '%s' no existe Crearlo ahora?El fichero '%s' no pudo abrirse. Ha sido borrado de la lista de archivos recientes.El fichero '%s' no existe y no pudo abrirse. Tambin ha sido borrado de la lista MRU de ficheros.El color de fuente.El tipo de letra.Tamao en puntos:El estilo de fuente.El peso de la fuente.La ruta '%s' contiene demasiados ".."!El parmetro '%s' no fue especificado.El texto no pudo ser guardado.El valor para el parmetro '%s' debe especificarse.La versin del servicio de acceso remoto (RAS) instalada en esta mquina es demasiado vieja, por favor actualcela (la siguiente funcin no est disponible: %s).Hubo un problema al configurar la pgina: se necesita una impresora predeterminada.El sistema no soporta el control de seleccin de fecha, srvase actualizar la versin de comctl32.dllError en la inicializacin del mdulo de hilos de ejecucin: no se pudo almacenar valor en el almacen local de hilosError en la inicializacin del mdulo de hilos de ejecucin: error al crear clave de hiloError en la inicializacin del mdulo de hilos de ejecucin: imposible reservar ndice en el almacen local de hilosLa configuracin de la prioridad del hilo de ejecucin es ignorada.Mosaic &HorizontalMosaico &VerticalTiempo de espera de la conexin del servidor FTP excedido, pruebe a establecer el modo pasivo.Error en la creacin del temporizadorSugerencia del DaSugerencias no disponibles, qu pena!Hasta:Demasiados colores en el PNG, la imagen podra estar algo borrosa.Margen superior (mm):Intentando borrar el fichero '%s' de VFS de memoria, pero no est cargado!Intentando resolver un nombre de mquina (hostname) nulo: imposible de resolverTurkish (ISO-8859-9)TipoEl tipo debe tener conversin de enum a longUS Std Fanfold, 14 7/8 x 11 inIncapaz de abrir el docuemento HTML pedido: %sImposible reproducir el sonido de forma asncrona.Deshacer borrarFin de fichero inesperado al analizar el recurso.Parmetro '%s' inesperadoUnicode 16 bits (UTF-16)Unicode 16 bits Big Endian (UTF-16BE)Unicode 16 bits Little Endian (UTF-16LE)Unicode 32 bits (UTF-32)Unicode 32 bits Big Endian (UTF-32BE)Unicode 32 bits Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Error DDE desconocido %08xObjeto desconocido pasado a GetObjectClassInfoError desconocido de biblioteca dinmicaCodificacin desconocida (%d)Campo desconocido en el fichero %s, linea %d: '%s'.El parmetro '%s' de entero largo es desconocidoEl parmetro '%s' es desconocidoFlag de estilo desconocidoPropiedad '%s' desconocidaParntesis '(' no emparejado en una entrada para tipo mime %s.Mandato sin nombreEstilo %s no reconocido al analizar el recurso.Formato de portapapeles no soportado.Tema no soportado '%s'.ArribaUso: %sConflicto de validacin.Salida de vdeoVer ficheros en detalleVer ficheros como listaVistasError en la espera de la terminacin del subprocesoAvisoAviso: Atencin: intentando eliminar una etiqueta HTML de una pila vaca Europa Occidental (ISO-8859-1)Europa Occidental coh Euro (ISO-8859-15)Si la fuente est subrayada.Palabras completasSlo palabras completasTema Win32Win32s en Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chino Tradicional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japons (CP 932)Windows Coreano (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Error de escritura en el fichero '%s'Error de parseo de XML: '%s' en la lnea %dXPM: Datos de pixel errneos!XPM: Definicin de color '%s' errnea!Recurso XRC '%s' (clase '%s') no encontrado!Recurso XRC: No se pudo crear el mapa de bits de '%s'.Recurso XRC: Especificacin de color '%s' incorrecta para la propiedad '%s'.SNo puede aadir un nuevo directorio a esta seccin.AcercarAlejarAjustar tamao[VACO]una aplicacin DDEML ha creado una condicin acelerada prolongada.una funcin DDEML fue llamada sin llamar primero a la funcin DdeInitialize, o se pas un identificador de instancia no vlido a una funcin DDEML.el intento de un cliente de establece conversacin fall.fallo al reservar memoria.fallo al validar un parmetro por DDEML.una peticin para una transacin sncrona ha finalizado.una peticin para una transaccin de datos sncrona ha finalizado.una peticin para una transacin de ejecucin sncrona ha finalizado.una peticin para una transaccin sncrona de revisin ha finalizado.una peticin para una transaccin sncrona de auditora ha finalizado.se intent una transaccin de servidor en una conversacin que fue finalizada por el cliente, o el servidor termin antes de completar una transaccin.fallo en la traduccin.altuna aplicacin inicializada como APPCLASS_MONITOR ha intentado llevar a cabo una transaccin DDE, o una aplicacin inicializada como APPCMD_CLIENTONLY ha intentado realizar transacciones de servidor.ha fallado una llamada interna a la funcin PostMessage.ha ocurrido un error interno en DDEML.se pas un identificador de transaccin no vlido a la funcin DDEML. Una vez que la aplicacin haya retornado desde una llamada XTYP_XACT_COMPLETE, el identificador de la transaccin para esa llamada deja de ser vlido.suponemos que es un archivo zip multiparte concatenadointento de cambiar clave inmutable '%s', ignorado.argumentos errneos a la funcin de bibliotecafirma errneadesplazamiento errneo al elemento del archivo zipbinarionegritanegritano se puede cerrar el fichero '%s'no se puede cerrar el descriptor de fichero %dno se pueden hacer efectivos los cambios en fichero '%s'no se puede crear el fichero '%s'no puede borrarse el fichero de configuracin de usuario '%s'no se puede determinar si el final del fichero con descriptor %d se ha alcanzadono se puede encontrar el directorio central en el zipno se puede obtener el tamao del fichero con descriptor %dno se encontr HOME del usuario, usando el directorio actual.no se puede vaciar el descriptor de fichero %dno se puede alcanzar posicin de bsqueda en el descriptor de fichero %dno se puede cargar ninguna fuente, abortandono se puede abrir el fichero '%s'no se puede abrir el fichero de configuracin global '%s'.no se puede abrir el fichero de configuracin de usuario '%s'.no puede abrirse el fichero de configuracin de usuariono se pueden solicitar los nombres complementos del GUI en las aplicaciones de consolano se puede reinicializar el flujo de compresin de zlib.no se puede reinicializar el flujo de descompresin de zlib.no se puede leer desde el descriptor de fichero %dno se puede borrar fichero '%s'no se puede borrar el fichero temporal '%s'no se puede buscar en el descriptor de fichero %dno se puede guardar el buffer '%s' al disco.no se puede escribir en el descriptor de fichero %dno puede escribirse el fichero de configuracin de usuariofichero de catlogo para dominio '%s' no encontrado.error de suma de comprobacinerror de compresinfall la conversin a codifiacin de 8 bitsctrlfechaerror de descompresinpredeterminadoel delegado no tiene informacin de tipodcimo octavooctavoundcimocodificacin %s desconocidala entrada '%s' aparece ms de una vez en el grupo '%s'error en formato de datoserror al leer el ficheroerror al leer el directorio central del ziperror al leer la cabecera local del archivo ziperror al escribir el elemento de zip '%s': crc o longitud errneosestablecerError al vaciar la memoria del fichero '%s'dcimo quintoquintofichero '%s', lnea %d: '%s' ignorado despus de cabecera de grupo.fichero '%s', lnea %d: '=' inesperado.fichero '%s', lnea %d: clave '%s' fue encontrada por primera vez en la lnea %d.fichero '%s', lnea %d: valor ignorado para clave inmutable '%s'.fichero '%s': carcter inesperado %c en lnea %d.primerotamao de fuentedcimo cuartocuartogenerar mensajes de log explicativoscadena incorrecta de identificador de evento, falta el puntoiniciarvalor devuelto por eof() es invlidovalor de retorno de caja de mensajes invlidofichero zip invlido.cursivaligeraligeralocale '%s' no pudo establecerse.buscando catlogo '%s' en directorio '%s'.medianochedcimo novenonovenono hay error DDE.ningn errorsin nombremediodanmlos objetos no pueden tener nodos XML de textomemoria agotada.error de lecturaleyendoal leer flujo de zip (elemento %s): crc errneoal leer flujo de zip (elemento %s): loingitud errneaproblema de reentrada.segundoerror de accesodcimo sptimosptimoshiftmostrar este mensaje de ayudadcimo sextosextoespecifique el modo a usar (ej.: 640x480-16)especifique el tema a usarlongitud almacenada del fichero no est en la cabecera de Zipcaddcimola respuesta a la transaccin caus que se activase el bit DDE_FBUSY.tercerodcimo terceromdulo de TIFF: %shoymaanaduodcimovigsimosubrayadosubrayado" inesperado en la posicin %d en '%s'.desconocidoclase %s desconocidaerror desconocidoerror desconocido (cdigo %08x).terminador de linea desconocidoorigen de bsqueda desconocidodesconocido-%dsinnombresin nombre%dmtodo de compresin de Zip no sooportadopaquete zip no soportadousando catlogo '%s' de '%s'.error de escrituraescribiendoError en wxGetTimeOfDaywxSocket: firma invlida en ReadMsgwxSocket: evento desconocido!.wxWidgets no pudo abrir el 'display' para '%s': saliendo.wxWidgets no pudo abrir el 'display'. Saliendo.ayererror de zlib %d|<<wxMaxima-13.04.2/locales/wxwin/fr.mo000644 000765 000024 00000176375 11670654443 017661 0ustar00andrejstaff000000 000000 <-X<Y<j<n<w<<<<< =+= 4=?=H= W='b=&=$======> >>>>%>+> 3> =>G>M>T>]>f>o>>>>>>>4>$?!(?J?*b?/?:?? ? @ @ @ @ &@G@^@p@@@@@@@@@AA2AHAWA[AkA:AAAABB:BTB!sB"BB-B1C(2C[CpC+CCCCCCDD8DRDmD)DD(DD#E 4E;AE}E)EEEEF.F%MF#sF"F(F&F5 G@G]GvG1G GGHH,H(LH/uHH-H3H#I ;I-\IIIII%IJ:JYJnJJ)JJ#J! K.KGK)gK&KKKKK LL0L 6LCLUL)^LLL LL(LL(LMw3MjM!N8N!RN(tNNN.N'NC$O(hO9OOOOP$P7PMPaP,yP1P0P% Q%/QUQ oQzQQ~Q(R"8R[RyRQRRvR+rSSSSSS SSSST#T+TBT TTuT"TTTT U-+U"YU"|U9U$UU"V=V&\V"V8VGV/'WAWW.WW2W)XDXG\XEXGX2YNY%lY#Y#Y3Y"Z1ZTMZZ'ZZ"Z-[!M[.o[$[[[[#\"?\-b\'\"\5\]&1]-X]/]+]&], ^26^&i^&^^(^!^) _J_3h_-___$`!-` O` [`i`=`4`` aa2a 7aCa Xa caoavaaa'aaab b#&b!Jblb tb%bbb bbb c!c&c ;c FcTc]c"}c c cc'c#dCd[d)qd ddddje%ye+e%e/e!f'fi ri&}i i i8iij"j:j?j GjQjTjojjjVk/ l :l%[l%llll lllmm+.mZm0xmm mmmm n)n@n\n#{nnn n nn n n noo4o1Toop3ptGt_tzt t)tt?tuu3uKu]uxu}u+u u u-uv;v;Dvvvvvvvw%w .w8w,Kwzxw(w0xoMx%x.xy0.y_yMyP>z@zYz#*{N{a{r{{{{A{*{|3|*R|}|||||(|}2}F}+Z}}}}} }}} ~%~)+~U~ ]~=g~~(~ ~~ *C"\#$.F"`"؀&)-DDr/;/:0=G;>;5<r #9,G-?FKQg!)>/(0X-ֈ* (4#]" ܉ !$@'e /  4"!W8y9. !,3QZ v&nj  "&.B IU]c z-эՍCۍ %06? G Q \$h Ď ؎ '2Z3t* ӏjݏH[_#g$ ё"5 > IS b6l50ْ (19BKPV _i r}  Ó#ԓ &C@Y/)ʔ2:DHȕ ϕٕەޕ%"=Z lv|Ֆ$#-QejC(C\1w'5ј9 =Z)™֙;05Ndmٚ':$X>}$&Q,p9+ל0! R(s22ϝ0?3>sH+$'+LKx?ğ2)7aWi.@91DkP%.'3V% Ϣ*3)O$y6$=+W0/$7 AA=ե(/Db iw H $ ?2r9{+*"E1h*ũD6Jd9P 'q̫$+?P??Ь7,Hu +ڭ{( ծk!\~?W\bf$ϰ (% N"o",ձ&?):i/FԲ+!G+i(15C&NjGR9T%L)+WGUW&M5t1+ܷ4U=,e"F9i3@/6:f7 ٺ*%%5KG=ɻ=,EDr.5:7W5-Ž8B,3o02ԾD/L8|!L׿($*M1x</ %6=T7"#:Siz#-+; U.`1 /(8Jj~  (+%$;`-+@0Q"&/m4.:<BY?x-&!H!QDs(  !9[u{ XY#Rv 9X.k C&!+)U Y dr'v-G>CNC(.FIa6v#6 1!Np!"1- Fgo~#%6-d(%NWjs 1(<Uk'<&E7l$F,35EBT4 z%  ( %Fe'{W &?['w8',;= yS1&0%W&}%.1->z$%0$0LvRcML)Q{2[5p,12H^x1= I%[ !!0 :AeJ+  !-D\t"% #=Un&($,4DFyPAWf^9V 178:T5<40>$1,6^#AOLKiGKJ<#<A4<v<'25K25<3'[` e p}:' ? .MG|S1J R ^+h&5 3&Ip w @"cE   /NV%f  &,ILfDWB nAtbtoPo}Q8"6dpKZ\!@ I ?80~B<<5Jf&hp#:?#-]EY)rl$n./{bF"31!' 5Q9^+[eyH >X|]<ojzR(U;A TwgMcA*Kg 444m!_ >}0;`[7uW,eW2`\a0.:2X(U/C.Z],=nO)@u/QMV-La:&q&hNv{D_B 7j@miXP vK"(U=3yJkfpkO9 )Z#N9sgL5r *MYxN?+ b |Hk%q{PO stY}+CuF['\8i*DlTD;RE3~F2~7S$cTGH6^'I%%dx$alSLj ycEx1w>h_GViw`Je-rmR^S=16dVv|GCq ,zfsIz (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%s (or %s)%s Error%s Information%s Warning%s not a bitmap resource specification.%s not an icon resource specification.%s: ill-formed resource file syntax.&Arrange Icons&Cancel&Cascade&Close&Details&Find&Finish&Help&Log&Move&Next&Next >&Next Tip&Previous&Redo&Redo &Replace&Restore&Save...&Show tips at startup&Size&Undo&Undo &Window'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)...10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &BackA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAdd current page to bookmarksAdd to custom coloursAdding book %sAllAll files (*)|*Already dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)B4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCan not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'CancelCannot convert dialog units: dialog unknown.Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open URL '%s'Cannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCase sensitiveCeltic (ISO-8859-14)Central European (ISO-8859-2)Choose ISP to dialChoose fontClear the log contentsCloseClose Alt-F4Close this windowComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copies:Could not find resource include file %s.Could not find tab for idCould not resolve control class or id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not resolve menu id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not start document preview.Could not start printing.Could not transfer data to windowCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't register clipboard format '%s'.Couldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate directoryCreate new directoryCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDeleted stale lock file '%s'.Dial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDisplay all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?DoneDone.DownE sheet, 34 x 44 inElapsed time : Entries foundErrorError Error creating directoryError in reading image DIB .Error: Esperanto (ISO-8859-3)Estimated time : Execution of command '%s' failedExecutive, 7 1/4 x 10 1/2 inFailed to %s dialup connection: %sFailed to access lock file.Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to find XBM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to find XBM resource %s. Forgot to use wxResourceLoadIconData?Failed to find XPM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to match '%s' in regular expression: %sFailed to modify file times for '%s'Failed to open '%s' for %sFailed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to write to lock file '%s'Fatal errorFatal error: File %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FindFixed font:Folio, 8 1/2 x 13 inFont size:Fork failedFound Found %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)HTML anchor %s does not exist.Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp: %sICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Icon resource specification %s not found.Ill-formed resource file syntax.Illegal directory name.Illegal file specification.Image file is not of type %d.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexIndian (ISO-8859-12)Invalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.KOI8-RLandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLoad %s fileLoading : Loading Grey Ascii PNM image is not yet implemented.Loading Grey Raw PNM image is not yet implemented.Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMailcap file %s, line %d: incomplete entry ignored.Match caseMemory VFS already contains file '%s'!Metal themeMi&nimizeMime.types file %s, line %d: unterminated quoted string.Mode %ix%i-%i not available.ModernMonarch Envelope, 3 7/8 x 7 1/2 inNameNewNameNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNordic (ISO-8859-10)NormalNormal font:Note, 8 1/2 x 11 inOKOpen HTML documentOperation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPagesPaper SizePaper sizePermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint spoolingPrint this pagePrint to FilePrinter command:Printer optionsPrinter options:Printer...Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'Referenced object node with ref="%s" not found!Registry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : Remove current page from bookmarksReplace &allReplace with:Resource files must have same version number!Right margin (mm):RomanSave %s fileSave asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Select a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow hidden filesShow/hide navigation panelSizeSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Statement, 5 1/2 x 8 1/2 inStatus: Subclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTip of the DayTips not available, sorry!To:Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)US Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnexpected parameter '%s'Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown encoding (%d)Unknown field in file %s, line %d: '%s'.Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XPM: malformed colour definition '%s'!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.attempt to change immutable key '%s' ignored.binaryboldbold can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.ctrldatedefaulteighteentheightheleventhentry '%s' appears more than once in group '%s'establishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfourteenthfourthgenerate verbose log messagesinitiateinvalid eof() return value.invalid message box return valueitaliclightlight locale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.nonamenoonnumreadingreentrancy problem.secondseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtodaytomorrowtwelfthtwentiethunderlinedunderlined unexpected " at position %d in '%s'.unknownunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.writingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayProject-Id-Version: wxWidgets-2.5.2 POT-Creation-Date: 2005-04-11 22:24+0200 PO-Revision-Date: 2002-11-20 21:42+0100 Last-Translator: Stephane Junique Language-Team: wxWidgets translators MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Report-Msgid-Bugs-To: (erreur %ld : %s) - AperuEnveloppe #10, 4 1/8 x 9 1/2 poucesEnveloppe #11, 4 1/2 x 10 3/8 poucesEnveloppe #12, 4 3/4 x 11 poucesEnveloppe #14, 5 x 11 1/2 poucesEnveloppe #9, 3 7/8 x 8 7/8 pouces#define %s doit tre un entier.%i de %i%s (ou %s)%s Erreur%s Information%s Alarme%s n'est pas une spcification d'une ressource bitmap.%s n'est pas une spcification d'une ressource icne.%s : syntaxe du fichier de ressource incorrecte.&Arranger les icnes&Annuler&Cascade&Fermer&Dtails&Trouver&Fin&Aide&Journal&Deplacer&Suivant&Suivant >&Prochain Conseil&Prcdent&Refaire&Refaire &Remplacer&Restaurer&Enregistrer ...&Afficher les conseils au dmarrage&Taille&Annuler&Annuler &Fentre'%s' a trop de '..', ils sont ignors.'%s' n'est pas valide'%s' n'est pas une valeur numrique correcte pour l'option '%s'.'%s' n'est pas un catalogue de messages valide.'%s' est probablement un fichier binaire.'%s' devrait tre numrique.'%s' ne devrait contenir que des caractres ASCII.'%s' ne devrait contenir que des caractres alphabtiques.'%s' ne devrait contenir que des caractres alphabtiques ou numriques.(Aide)(signets)...10 x 14 pouces11 x 17 poucesEnveloppe 6 3/4, 3 5/8 x 6 1/2 pouces: le ficheir n'existe pas! : jeu de caractres inconnu : codage inconnu< &Retourfeuille A3, 297 x 420 mmfeuille A4, 210 x 297 mmpetite feuille A4, 210 x 297 mmfeuille A5, 148 x 210 mmABCDEFGabcdefg12345ASCIIAjouter la page courante aux signetsAjouter aux couleurs personnalisesAjouter le livre %sToutTous les fichiers (*)|*Dj en cours d'appel ISP.Ajouter le journal au fichier '%s' (choisir [Non] pour l'craser) ?Arabe (ISO-8859-6)Enveloppe B4, 250 x 353 mmfeuille B4, 250 x 354 mmEnveloppe B5, 176 x 250 mmfeuille B5, 182 x 257 mmEnveloppe B6, 176 x 125 mmBMP : Impossible d'allouer la mmoire ncessaire.BMP : Sauvegarde de l'image impossible.BMP : Impossible d'crire la palette de couleurs RGB.BMP : Erreur d'criture.BMP : Erreur d'criture de l'en-tte du fichier (Bitmap).BMP : Erreur d'criture de l'en-tte du fichier (BitmapInfo).BMP: wxImage n'a pas sa propre wxPalette.Balte (ISO-8859-13)Balte (l'ancien) (ISO-8859-4)La spcification de la ressource bitmap %s est introuvable.GrasMarge bas de page (mm) :feuille C, 17 x 22 mmE&ffacerEnveloppe C3, 324 x 458 mmEnveloppe C4, 229 x 324 mmEnveloppe C5, 162 x 229 mmEnveloppe C6, 114 x 162 mmEnveloppe C65, 114 x 229 mmImpossible d'numrer les fichiers '%s'Impossible d'numrer les fichiers dans le rpertoire '%s'Impossible de reprendre le thread %xImpossible de dmarrer le thread : erreur l'criture de TLS.Impossible de suspendre le thread %xImpossible d'attendre la fin du threadImpossible d'&AnnulerImpossible de vrifier le format du fichier image '%s' : le fichier n'existe pas.Impossible de fermer la cl de registre '%s'Impossible de copier les valeurs du type non support %d.Impossible de crer la cl de registre '%s'Impossible de crer le threadImpossible d'enregistrer la fentre de classe %sImpossible d'effacer la cl '%s'Impossible d'effacer le fichier INI '%s'Impossible d'effacer la valeur '%s' de la cl '%s'Impossible d'numrer les sous-cls de la cl '%s'Impossible d'numrer les valeurs de la cl '%s'Impossible de trouver la position courante dans le fichier '%s'Impossible d'obtenir l'information sur la cl de registre '%s'Impossible de charger l'image du fichier '%s' : le fichier n'existe pas.Impossible d'ouvrir la cl de registre '%s'Impossible de lire la valeur de '%s'Impossible de lire la valeur de la cl '%s'Impossible d'enregistrer l'image dans le fichier '%s' : extension inconnue.Impossible d'enregistrer le contenu du journal dans le fichier.Impossible de spcifier la priorit pour le threadImpossible de spcifier la valeur de '%s'AnnulerImpossible de convertir les units de la bote de dialogue: bote de dialogue inconnue.Impossible de trouver la connexion active : %sImpossible de trouver un conteneur pour le contrle inconnu '%s'Le noeud de la police de caractres '%s' est introuvable.Impossible de trouver l'emplacement du fichier du livre des adressesImpossible d'obtenir une gamme de priorit pour le choix de la planification %d.Impossible d'obtenir le nom de l'hteImpossible d'obtenir le nom officiel de l'hteImpossible de raccrocher - pas de connexion active.Impossible d'initialiser l'OLEImpossible d'initialiser Scitech MGL!Impossible d'initialiser l'cranImpossible de charger l'icone depuis '%s'.Impossible de charger les ressources du fichier %s.Impossible d'ouvrir le document HTML : %sImpossible d'ouvrir l'aide HTML : %sImpossible d'ouvrir l'URL '%s'Impossible d'ouvrir le fichier table des matires : %sImpossible d'ouvrir le fichier '%s'.Impossible d'ouvrir le fichier pour l'impression PostScript !Impossible d'ouvrir le fichier d'index : %sImpossible de trouver les coordonnes dans '%s'.Impossible de trouver les dimensions dans '%s'.Impossible d'imprimer une page vide.Impossible de lire le nom du fichier partir de '%s' !Impossible de retrouver le choix de la planification des threads.Impossible de dmarrer le thread : erreur l'criture de TLSSensible la casseBalte (ISO-8859-13)Europe Centrale (ISO-8859-2)Choisissez l'ISP pour composer le numroChoisissez la policeEffacer le contenu du journalFermerFermer Alt-F4Fermer cette fentreL'ordinateurLe nom pour l'entre de la configuration ne peut pas commencer par '%c'.ConfirmerConfirmer la mise jour du registreConnexion ...Table des matiresLa conversion vers le jeu de caractres '%s' ne fonctionne pas.Copies :Impossible de trouver le fichier de ressources inclus %s.Impossible de trouver l'tiquette pour l'idImpossible de rsoudre la classe de contrle ou l'id '%s'. Utilisez un entier (non nul) la place ou fournissez un #define (voir le manuel pour les mises en garde)Impossible de rsoudre l'id du menu '%s'. Utilisez un entier (non nul) la place ou fournissez un #define (voir le manuel pour les mises en garde)Impossible de lancer l'aperu du document.Impossible de lancer l'impression.Impossible de transfrer les donnes la fentreImpossible d'ajouter une image la liste.Impossible de crer un minuteurImpossible de crer un curseur.Impossible de trouver le symbole '%s' dans la bibliothque dynamiqueImpossible d'obtenir le pointeur sur le thread courantImpossible de charger une image PNG - le fichier est corrompu ou bien il n'y a pas assez de mmoire.Impossible d'enregistrer le format de presse-papier '%s'.Impossible d'obtenir de l'information sur un lment de la liste de contrle %d.PNG : Sauvegarde de l'image impossible.Impossible d'arrter le threadCrer le rpertoireCrer un nouveau rpertoireRpertoire courant :Cyrillique (ISO-8859-5)feuille D, 22 x 34 mmLa demande de transfert DDE a chouDIB : L'encodage ne correspond pas au nombre de bits par pixel.DIB : La hauteur de l'image est > 32767 pixels pour le fichier.DIB : La largeur de l'image est > 32767 pixels pour le fichier.DIB : Nombre de bits par pixel inconnu dans le fichier.Entte DIB : Codage inconnu dans le fichier.Enveloppe DL, 110 x 220 mmDcoratifEncodage par dfautLe fichier verrou prim '%s' a t effac.Les fonctions de composition de numros ne sont pas disponibles car le service d'accs distance (RAS) n'est pas install sur cet ordinateur. Installez-le svp.Saviez-vous ...Le rpertoire '%s' ne peut pas tre crLe rpertoire '%s' n'existe pas!Le rpertoire n'existe pasAfficher tous les lments index qui contiennent une sous-chane donne. Recherche non sensible la casse.Dialogue d'options de l'affichageVoulez-vous remplacer la commande utilise pour %s les fichiers files avec l'extension "%s" ? La valeur courante est %s, La nouvelle valeur est %s %1Voulez-vous sauvegarder les modifications dans le document %s ?FaitFait.BasFeuille E, 34 x 44 poucesTemps coul : Entres trouvesErreurErreur Erreur en crant le rpertoireDIB: Erreur la lecture de l'image.Erreur : Espranto (ISO-8859-3)Temps estim : L'excution de la commande '%s' a chouExecutive, 7 1/4 x 10 1/2 poucesImpossible de %s la connexion : %sL'accs au ficher verrou a chou.Impossible de fermer le fichierLa fermeture du fichier verrou '%s' a chouImpossible de fermer le presse-papier.Connexion impossible : nom d'utilisateur/mot de passe manquant.Impossible de se connecter : pas de numro ISP composer.Impossible de copier la valeur de registre '%s'Impossible de copier les contenus de la cl de registre '%s' vers '%s'La copie du fichier '%s' vers '%s' a chouImpossible de crer la chane DDEImpossible de crer une fentre parent MDI.Impossible de crer une barre de statut.Impossible de crer un nom de fichier temporaire.Impossible de crer un tube de communication anonyme.Impossible de crer une connexion au serveur '%s' sur le sujet '%s'Erreur la cration du rpertoire '%s' (Avez-vous les permissions requises ?)Impossible de crer une entre dans le registre pour les fichiers '%s'.La cration de la bote de dialogue rechercher/remplacer a chou (code erreur %d)Impossible d'afficher le document HTML avec l'encodage %sImpossible de vider le presse-papier.Impossible d'tablir une boucle de conseil (advise loop) avec le serveur DDEImpossible de raliser une connexion : %sImpossible d'excuter '%s' Impossible de trouver la ressource XBM %s. Oubli d'utiliser wxResourceLoadBitmapData ?Impossible de trouver la ressource XBM %s. Oubli d'utiliser wxResourceLoadIconData ?Impossible de trouver la ressource XPM %s. Oubli d'utiliser wxResourceLoadBitmapData ?Impossible d'obtenir les noms ISP : %sImpossible de rcuprer les donnes du presse-papier.Impossible d'obtenir des donnes du presse-papierImpossible d'obtenir le temps systme localImpossible de trouver quel est le rpertoire courantL'initialisation de l'interface graphique a chou: aucun thme inclu n'a te trouv.L'initialisation de l'aide MS HTML a chou.Impossible d'initialiser OpenGLImpossible d'adjoindre un thread, fuite potentielle de mmoire dtecte - redmarrez le programme svpImpossible de tuer le processus %dLa lecture de l'image %d depuis le fichier '%s' a chou.Impossible de charger mpr.dllImpossible de charger la bibliothque partage '%s'Impossible de charger la bibliothque partage '%s': erreur '%s'Le verrouillage du fichier verrou '%s' a chouImpossible de trouver '%s' dans l'expression rgulire: %sla mise a jour des heres/dates du fichier '%s' a chouImpossible d'ouvrir '%s' pour %sImpossible d'ouvrir le fichier temporaire.Impossible d'ouvrir le presse-papier.Impossible de placer des donnes sur le presse-papierImpossible de lire le numro de process (PID) depuis le fichier verrou.Impossible de rediriger les entres/sorties du processus filsImpossible de rediriger les entres/sorties du processus filsImpossible d'enregistrer le serveur DDE '%s'Impossible de se rappeler l'encodage pour le jeu de caractres '%s'.La suppression du fichier verrou '%s' a chouImpossible de supprimer le ficher verrou prim '%s'.Impossible de renommer la valeur de registre '%s' en '%s'.Impossible de renommer la cl de registre '%s' en '%s'.Impossible de retrouver des donnes du presse-papier.Impossible de lire les heures/dates pour '%s'Impossible de retrouver le texte du message d'erreur RASImpossible de retrouver les formats supports par le presse-papierImpossible d'envoyer un avis de notification au DDEImpossible d'assigner transfert FTP le mode %s..Impossible de passer les donnes au presse-papier.Impossible de changer temporairement les permissions du fichier '%s'Impossible d'assigner au thread la priorit %d.Impossible de stocker l'image '%s' dans la mmoire VFS !Impossible de terminer le thread.Impossible de terminer la boucle de conseil (advise loop) avec le server DDEImpossible de terminer la connexion : %sL'accs ('touch') au fichier '%s' a chouLe dverrouillage du fichier verrou '%s' a chouImpossible de supprimer l'enregistrement du serveur DDE '%s'L'criture dans le fichier verrou '%s' a chouErreur fataleErreur fatale : Le ficheir '%s' n'existe pas.Le fichier '%s' existe dj, voulez-vous vraiment l'craser ?Le fichier '%s' existe dj. Voulez-vous le remplacer ?Le fichier n'a pas pu tre charg.Erreur fichierCe nom de fichier existe dj.TrouverPolice taille fixe :Folio, 8 1/2 x 13 poucesTaille de la police :Le fork a chouTrouv Trouv %i correspondancesDe :GIF : Index d'image gif non valide.GIF : le flot de donnes semble tre tronqu.GIF : erreur dans le format GIF de l'image.GIF : pas assez de mmoire.GIF : erreur inconnue !!!thme GTK+Lgal allemand en accordon, 8 1/2 x 13 poucesStandard allemand en accordon, 8 1/2 x 12 poucesPrcdentSuivantNiveau suprieur dans la hirarchie du documentRpertoire initialRpertoire parentAller la pageGrec (ISO-8859-7)L'ancrage HTML %s n'existe pas.Hbreu (ISO-8859-8)AideAide Options NavigateurAide IndexAide ImpressionAide : %sICO : Erreur la lecture du masque DIB.ICO : Erreur l'criture du fichier image!ICO: image trop petite pour un icone.ICO: image trop grande pour un iconeICO : Index d'icone non valide.IFF : le flot de donnes semble tre tronqu.IFF : erreur dans le format IFF de l'image.IFF : pas assez de mmoire.IFF : erreur inconnue !!!La spcification pour la ressource icne %s n'a pas t trouve.Syntaxe incorrecte dans le fichier de ressource.Nom de rpertoire illgal.Spcification de fichier illgale.Le fichier image n'est pas de type %d.Impossible de crer un contrle de type rich edit, utilisez la place un contrle de type texte simple. Rinstallez riched32.dll svpImpossible d'obtenir l'entre du processus filsImpossible d'obtenir les permissions du fichier '%s'Impossible d'crire par-dessus le fichier '%s'Impossible de changer les permissions pour le fichier '%s'IndexNordique (ISO-8859-10)Index d'image TIFF non valide.Ressource XRC '%s' invalide: n'a pas le noeud racine 'resource'Le mode vido spcifi '%s' est non invalide.Gometrie '%s' non valide.Fichier verrou '%s' non valide.Expression rgulire '%s' invalide: %sItaliqueEnveloppe italienne, 110 x 230 mmJPEG : Chargement impossible - le fichier est probablement corrompu.JPEG : Sauvegarde de l'image impossible.KOI8-RPaysageGrand livre, 17 x 11 poucesMarge gauche (mm) :Lgal, 8 1/2 x 14 poucesLettre rduite, 8 1/2 x 11 poucesLettre, 8 1/2 x 11 poucesLgerCharger le fichier %sChargement : Le chargement d'une image PNM mode Ascii en niveau de gris n'est pas encore implmente.Le chargement d'une image PNM mode source en niveau de gris n'est pas encore implmente.Journal sauv dans le fichier '%s'.fils MDILes fonctions de l'aide MS HTMLne sont pas disponibles car la bibliothque MS HTML Help n'est pas prsente sur cette machine. Veuillez l'installer.Ma%ximiserFichier mailcap %s, ligne %d : entre incomplte ignore.Respecter la casseLa mmoire VFS contient dj le fichier '%s' !Thme mtalliqueMi&nimiserFichier types mime %s, ligne %d : chane entre quotes non termine.Le mode %ix%i-%i n'est pas accessible.ModerneEnveloppe monarchique, 3 7/8 x 7 1/2 poucesNomNouveauNomPage suivanteNonPas de fonctionalits XBM disponibles !Pas de fonctionalits icne XPM disponibles !Entres non trouves.Aucune police de caractres n'a t trouve pour afficher du texte utilisant l'encodage '%s', mais un encodage similaire '%s' est disponible. Souhaitez-vous l'utiliser ? (dans le cas contraire, vous devrez choisir par vous-mme un encodage de substitution)Aucune police de caractres n'a t trouve pour afficher du texte utilisant l'encodage '%s'. Souhaitez-vous choisir une police utiliser pour cet encodage? (sinon le texte utilisant cet encodage n'apparaitra pas correctement)Pas de fonction trouve pour grer le noeud XML '%s' de la classe '%s'!Pas de fonctions spcifiques disponibles pour ce type d'image.Pas de fonctions spcifiques disponibles pour l'image de type : %d.Pas de fonctions spcifiques disponibles pour l'image de type : %s.Pas encore trouv la page correspondanteNordique (ISO-8859-10)NormalPolice normale :Note, 8 1/2 x 11 poucesOKOuvrir un document HTMLOpration interdite.L'option '%s' ncessite une valeur, signe '=' attendu.L'option '%s' ncessite une valeur.Option '%s' : '%s' ne peut pas tre convertie en date.OptionsOrientationPCX : Impossible d'allouer la mmoire ncessaire.PCX : format d'image non supportPCX : image non validePCX: ce n'est pas un fichier PCX.PCX : erreur inconnue !!!PCX : numro de version trop petitPNM : Impossible d'allouer la mmoire ncessaire.PNM : Le format de fichier n'est pas reconnu.PNM : Le fichier semble tronqu.Page %dPage %d sur %dParamtrage de la pagePagesTaille de la pageTaille de la pageDroitsLa cration du tube a chouVeuillez choisir une police valide.Veuillez choisir un fichier existant.Veuillez choisir quel ISP vous voulez vous connecterVeuillez installer une nouvelle version de comctl32.dll Vous avez actuellement la version %d.%02d. Vous avez besoin au minimum de la version 4.70 pour que ce programme fonctionne correctement.Veuillez patienter pendant l'impression PortraitFichier postscriptAperu :Page prcdenteImpressionAperu avant impressionErreur l'excution de l'aperu avant impressionPages imprimerParamtrage d'impressionImpression couleurQueue d'impressionImprimer cette pageImprimer vers un fichierCommande imprimante :Options de l'imprimanteOptions de l'imprimante :Imprimante ...Impression en coursErreur lors de l'impressionImpression de la page %d ...Impression en cours ...Abandon du programme.Quarto, 215 x 275 mmQuestionErreur de lecture dans le fichier '%s'Le noeud objet rfrenc par ref="%s" est introuvable !La cl de registre '%s' existe dj.Impossible de renommer la cl de registre '%s', celle-ci n'existe pas.La cl de registre '%s' est ncessaire pour un fonctionnement correct du systme, l'effacer mettra votre systme dans un tat instable: opration abandonne.La valeur '%s' existe dj dans le registre.Entres pertinentes :Temps restant :Retirer la page courante de la liste de vos signetsRempl&acer toutRemplacer par:Les fichiers de ressource doivent avoir le mme numro de version!Marge de droite (mm) :RomanEnregistrer le fichier %sEnregistrer sousEnregistrement du contenu du journal dans un fichierScriptRechercheRecherche dans la table des matires du/des livre(s) d'aide de toutes les occurences du texte que vous avez tap ci-dessusDirection de la rechercheRechercher:Recherche dans tous les livresRecherche ...SectionsErreur de recherche dans le fichier '%s'Choisissez un modle de documentChoisissez une vue du documentChoisissez un fichierSeparateur attendu apres l'option '%s'.Paramtrage ...J'ai trouv plusieurs connexions par ligne tlphonique, j'en choisis une au hasard :-)Tout montrerMontrer tous les lments dans l'indexMontrer les dossiers cachsMontrer les fichiers cachsMontrer/cacher le panneau de navigationTailleItaliqueDsol, impossible d'ouvrir ce fichier pour enregistrer.Dsol, impossible d'ouvrir ce fichier.Dsol, impossible d'enregistrer ce fichier.Dsol, il n'y a pas assez de mmoire pour crer un aperu.Communiqu, 5 1/2 x 8 1/2 poucesStatut :La sous-classe '%s' pour la ressource '%s' est introuvable - pas de sous-classage !SuisseTIFF: Impossible d'allouer la mmoire ncessaire.TIFF: Erreur au chargement de l'image.TIFF: Erreur la lecture de l'image.TIFF: Erreur au chargement de l'image.TIFF: Erreur l'criture de l'image.Tabloid, 11 x 17 inTltypeModlesTha (ISO-8859-11)Le serveur FTP ne supporte pas le mode passif.Le jeu de caractres '%s' est inconnu. Vous pouvez en choisir un autre pour le remplacer ou choisir [Annuler] s'il ne peut pas l'treLe format de presse-papier '%d' n'existe pas.Le dossier '%s' n'existe pas Voulez-vous le crer maintenant ?Le fichier '%s' n'existe pas et n'a pas pu tre ouvert. Il a donc t retir de la liste des fichiers rcemments utiliss.Le chemin '%s' contient trop de ".."!Le paramtre ncessaire '%s' n'a pas t fourni.Le texte n'a pas pu tre enregistr.La valeur pour l'option '%s' doit tre prcise.La version du service d'accs distant (RAS en anglais) install sur cette machine est trop ancien. Prire de le mettre jour (la fonction '%s' est manquante).Il y a eu un problme lors du paramtrage de la page: l'installation d'une imprimante par dfaut peut tre ncessaire.Echec de l'initialisation du thread : impossible d'enregistrer une valeur en localEchec de l'initialisation du thread : chec la cration de la cl du threadEchec de l'initialisation du thread : impossible d'allouer un index en localLa priorit donne au thread est ignore.Rpartir &HorizontalementRpartir &VerticalementLe Conseil du JourDsol mais les conseils ne sont pas disponibles !Pour :Marge haut de page (mm) :Tentative de retirer le fichier '%s' du VFS de la mmoire, mais celui-ci n'est pas charg !Tenative de rsoudre le nom d'hte NULL : j'abandonneTurque (ISO-8859-9)Standard US en accordon, 14 7/8 x 11 poucesImpossible d'ouvrir le document HTML demand : %sParamtre '%s' inattenduUnicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Erreur DDE inconnue: %08xCodage inconnu (%d)Champ inconnu dans le fichier %s, ligne %d: '%s'.Option longue '%s' inconnueOption '%s' inconnueIndicateur de style inconnuSymbole '{' non assorti dans une entre pour le type mime %s.Commande sans nomFormat de presse-papier non support.Thme '%s' non support.HautUsage : %sConflit de validationVoir les fichiers - vue dtailleVoir les fichiers comme une listeVuesEchec lors de l'attente de fin de sous-processusAlarmeAlarme :Alarme : tentative de retrait d'un pointeur d'tiquette HTML de la pile alors que celle-ci est vide !Europe de l'Ouest (ISO-8859-1)Europe de l'Ouest avec l'Euro (ISO-8859-15)Mots completsMots complets seulementThme Win32Win32s sur Windows 3.1Windows Arabe (CP 1256)Windows Balte (CP 1257)Windows Hbreu (CP 1255)Windows Chinois simplifi (CP 936)Windows Chinois traditionnel (CP 950)Windows Cyrillique (CP 1251)Windows Grec (CP 1253)Windows Hbreu (CP 1255)Windows Japonais (CP 932)Windows Coren (CP 949)Windows Turque (CP 1254)Windows Latin 1 (CP 1252 )Windows/DOS OEM (CP 437)Erreur d'criture dans le fichier '%s'erreur d'analyse XML: '%s' la ligne %dXPM: donnes de pixels incorrectes !XPM: dfinition de couleur '%s' incorrecte !La ressource XRC '%s' (classe '%s') est introuvable!Ressource XRC : impossible de crer une image bitmap partir de '%s'.Ressource XRC : la couleur '%s' spcifie pour la proprit '%s' est incorrecte.OuiVous ne pouvez pas ajouter un nouveau rpertoire cette section.[VIDE]une application DDEML a cr une situation de rivalit prolonge (je n'ai bientt plus de mmoire ...)une fonction DDEML a t appele sans appel pralable la fonction DdeInitialize, ou un identifiant invalide a t fourni la fonction DDEML.une tentative client d'tablir une conversation a chou.une allocation mmoire a chou.un paramtre n'a pas pu tre valid par la DDEML.une demande de transaction synchrone (advise) a expir.une demande de transaction synchrone (donnes) a expir.une demande de transaction synchrone (excution) a expir.une demande de transaction synchrone (poke) a expir.une demande pour terminer une transaction (advise) a expir.une transaction a t tente du ct serveur lors d'une conversation dj termine par le client, ou le serveur a quitt avant d'avoir termin une transaction.une transaction a chou.altune application initialise en tant que APPCLASS_MONITOR a tent d'effectuer une transaction DDE, ou une application initialise en tant que APPCMD_CLIENTONLY a tent d'effectuer des transactions serveur.un appel interne la fonction PostMessage a chou.une erreur interne s'est produite dans le DDEML.un identifiant de transaction invalide a t fourni la fonction DDEML. Quand l'application sort d'un appel XTYP_XACT_COMPLETE, l'identifiant de transaction pour cet appel n'est plus valide.tentative de modifier la touche non configurable '%s' ignore.binaireGrasGrasimpossible de fermer le fichier '%s'impossible de fermer le descripteur de fichier %dimpossible d'appliquer les changements au fichier '%s'impossible de crer le fichier '%s'impossible d'effacer le fichier de configuration utilisateur '%s'impossible de savoir si la fin du fichier a t atteinte dans le descripteur %dimpossible de trouver la taille du fichier dans le descripteur de fichier %dimpossible de trouver le rpertoire par dfaut (HOME) de l'utilisateur - j'utilise le rpertoire courant.impossible de forcer l'criture sur disque du descripteur de fichier %dimpossible de trouver la position courante sur le descripteur de fichier %dimpossible de charger une police de caractres - j'abandonneimpossible d'ouvrir le fichier '%s'impossible d'ouvrir le fichier de configuration global '%s'.impossible d'ouvrir le fichier de configuration utilisateur '%s'.impossible d'ouvrir le fichier de configuration utilisateur.impossible de lire en utilisant le descripteur de fichier %dimpossible de supprimer le fichier '%s'impossible de supprimer le fichier temporaire '%s'recherche impossible sur le descripteur de fichier %dimpossible d'crire le fichier '%s' sur le disque.impossible d'crire dans le descripteur de fichier %dimpossible d'crire le fichier de configuration utilisateur.fichier catalogue introuvable pour le domaine '%s'.ctrldatepar dfautdix-huitimehuitimeonzimel'entre '%s' apparat plus d'une fois dans le groupe '%s'tablirla mise a jour du fichier '%s' a chouquinzimecinquimefichier %s, ligne %d: '%s' est ignor aprs l'entte de groupe.fichier %s, ligne %d: symbole '=' est attendu.fichier %s, ligne %d: premire occurence du caractre %s la ligne %d.fichier '%s', ligne %d: la valeur pour la touche non configurable '%s' est ignore.fichier %s: caractre %c inattendu a la ligne %d.premierquatorzimequatrimeCrer des messages de compte-rendus verbeuxinitialisationeof() a renvoy une valeur non valide.la fentre de message a renvoy une valeur non valideItaliqueLgerLgerle langage local '%s' ne peut pas tre slectionn.recherche le catalogue '%s' dans '%s'.minuitdix-neuvimeneuvimeerreur - pas de DDE.sansnommidinumlectureproblme de r-entrance.seconddix-septimeseptimeshiftMontrer ce message d'aideseizimesiximeVeuillez spcifier le mode vido utiliser (par ex. 640x480-16)Dsigner le thme utiliserstrdiximela rponse la transaction a provoqu l'activation du bit DDE_FBUSY.troisimetreizimeaujourd'huidemaindouzimevingtimeSoulignSoulignsymbole " inattendu la position %d dans '%s'.inconnuerreur inconnueerreur inconnue (code d'erreur %08x).origine de la recherche inconnueinconnu-%dsansnomsansnom%dutilisation du catalogue '%s' de '%s'.criture en courswxGetTimeOfDay a chou.wxSocket: signature non valide dans ReadMsg.wxSocket: vnement inconnu!wxWidgets n'a pas pu ouvrir de zone d'affichage (display) pour %s : abandon.wxWidgets n'a pas pu ouvrir de zone d'affichage (display) : abandon.hierwxMaxima-13.04.2/locales/wxwin/gl.mo000644 000765 000024 00000117363 12005452640 017630 0ustar00andrejstaff000000 000000 ;#/?//?/30D0H0Q0 Z0e0n0 }00 0 0000000001 1111 #11171=1D1L1R1W1]1 e1o1s1{111 1 1 1 1 111111111222 '22282?2C2K2P24`2$2!22*2/3:O33 3 3 3 3 3 3 33344"43(4\4l4444444445 "5 -595=5O5_5q55 555556$6>6X6m66666666 7%7 @7M7k7777%7#8")8(L8&u888818 !9B9Z9a9(}9-99 9 :#:%?:e:::::::; !; /;;;B;#Y;$};; ; ;;(;;)<-<5< M<[<(d<<<$< <<!=2=!L=(n==.=C=#">F>^>w>>>>>>>>! ?#-?Q?b? r?~?? ?"????Q@ g@r@w@}@@@ @ @ @@@A% AFANA4eA A0AJA$7B\B-{B"B9B$C0+C&\CCCGCAD.FDuDD2D%D#E#)E"MEpEEE"E EF!F#?F'cF/F+F-F&G(T<VT TT TTTTTU!U&U +U-LU+zU%U)UUUVV:VTV oVyV,V0VzV0eWWWWW.fXX0XMX0Y?YZYkYY*YYYYY Z*Z@ZTZlZ oZyZZZ ZZ(Z [[ $[ 0[;[ K[ V[d[ w[[[/[[ [:[\!\(\-\C\)Z\\0\\*\(]#1]U] l] ]$]]#] ^^^'^ /^:^A^/J^z^^^^ ^^^ ^ ^^_#_4_;_V_ __j_p_y__ __ __ ___ ___`` !`,`2`;` C` M`X``` q` ``"`` ``3 a*@a ka uaa?[cc+ccccc cd dd)d >dLd[dddtd {ddd+d d dd dd dd eee$e-e4e :e DePecehepe yeee e e e eee e e ef ff2f:fAf Jf Tf ^fifqfxf|f9f*f*fg%6g+\g-gg gggggh h0h Ihjhhh/hhhhii)i=iCi%Kiqiiiiiiijj7j JjTjjjjjjj'jk$kBkJk_kykkkkkkk, l+8l)dl"l)l0l0 m.=m6lm=m+m n&.nDUn7n'nn'o5+o8ao$o,oo' p61p'hp,p+p,p q7qKqTqoq~qqq*q+q r r r,r0>r or=yr r%r rr4r3sOs+Ws s's5s!t+$t2Ptt:t[t/8uhu uuuuuuvv1v+Lv+xvvvv v v w$ w1wOwgwpw wwx x!x(xBx/Rxxxx'x3xyyA-y"oy/yTy"z:z5Xz'z:z%z2{)J{t{{<{E{1/|a||$|"|$|%}"*}M}g}}(} }!}~"!~9D~1~~'~7~62G9z90.Bq ɀ؀߀"6Y r| (΁0%++Q}<Ђ )1,[- "׃%-9(g5Ƅ̈́ %(0FN" Յ %< Ćφ Ԇ ߆&  +0 @NW`pt1 ȇ $APe{ #Ȉ #&=,d Éۉ 'F,<E&cҋ  0 = HTf  Œ#͌;-#'  1AU\ q)} ΎڎSV!h  "ԏ$ )'AQ/0Ð6+39Vp)Ƒ*1.ѓ.c+Ҕ5 <Xr%Е* ;\ cq)̖  $ 7"Be3h>#"%AHP";?U:%Й.-%=S,њ֚ۚ 3%Ys* ț֛ݛ % 1I#Q u   !ޜ  (5;U\euz 'ӝ&!+M_8v.ޞm^`%>#io*ZC2Igqu}n(PB_Nb G|Xk2Bs>(/oY / kf! D;43716=91~;EEe_+x.r3[OLqe0 <A(K- M`{7#Wj@m,:{h"S4tdIx&)-v] ;-VP&QRL ,6U]9.S Tzn6R a),<dJb'M~88yr01^$l# ?Z5!ap'w+H+?5/ igj: A$ fXD3"F2WF87|Ohz*p %VsN !&}09@Gl\y['cQKU"TwJ4c)%5t C Y*H\$u=v:. Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) - Preview%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s&About...&Actual Size&Apply&Arrange Icons&Back&Cancel&Close&Copy&Debug report preview:&Delete&Details&Down&File&Find&Finish&Font family:&Help&Home&Index&Italic&Move&New&Next&Next >&Next Tip&No&Notes:&OK&Open...&Paste&Point size:&Preferences&Previous&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Up&Window&Yes'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 11 in10 x 14 in11 x 17 in12 x 11 in15 x 11 in9 x 11 in: file does not exist!: unknown charset: unknown encoding< &BackA debug report has been generated in the directory A2 420 x 594 mmA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA5 sheet, 148 x 210 mmA6 105 x 148 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Arabic (ISO-8859-6)AttributesB4 (ISO) 250 x 353 mmB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't write data.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCan't &Undo Can't close registry key '%s'Can't create registry key '%s'Can't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't open registry key '%s'Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set value of '%s'CancelCannot enumerate files '%s'Cannot enumerate files in directory '%s'Cannot find the location of address book fileCannot get the hostnameCannot get the official hostnameCannot initialize OLECannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open index file: %sCannot print empty page.Case sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not locate file '%s'.Could not start document preview.Could not start printing.Could not transfer data to windowCouldn't add an image to the image list.Couldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't save PNG image.Create directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDL Envelope, 110 x 220 mmDebug report "%s"Debug report couldn't be created.Debug report generation has failed.Default encodingDefault printerDelete itemDesktopDid you know...DirectoriesDirectory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Don't SaveDoneDone.Doubly used id : %dDownE sheet, 34 x 44 inEdit itemEnter command to open file "%s":Entries foundErrorError creating directoryError reading config options.Error saving user configuration data.Error: Esperanto (ISO-8859-3)Executable files (*.exe)|*.exe|All files (*.*)|*.*||Execution of command '%s' failedExecution of command '%s' failed with error: %ulExporting registry key: file "%s" already exists and won't be overwritten.Extraction of '%s' into '%s' failed.Failed to close the clipboard.Failed to connect: missing username/password.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create a temporary file nameFailed to create cursor.Failed to create directory "%s"Failed to create directory '%s' (Do you have the required permissions?)Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to execute '%s' Failed to execute curl, please install it in PATH.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize MS HTML Help.Failed to initialize OpenGLFailed to kill process %dFailed to load mpr.dll.Failed to load shared library '%s'Failed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to remove debug report file "%s"Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to save the bitmap image to file "%s".Failed to set FTP transfer mode to %s.Failed to set temporary file permissionsFailed to update user configuration file.Failed to upload the debug report (error code %d).FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FilesFiles (%s)FilterFindFont size:Found %i matchesFrom:GIF: Invalid gif index.GIF: error in GIF image format.GIF: unknown error!!!GTK+ themeGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: error in IFF image format.IFF: unknown error!!!Ignoring value "%s" of the key "%s".Image and mask have different sizes.Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexIndian (ISO-8859-12)Invalid TIFF image index.Invalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.Japanese Postcard 100 x 148 mmJustifiedLeft margin (mm):Load %s fileLoading : Log saved to the file '%s'.MS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMenuMi&nimizeModifiedModule "%s" initialization failedMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo entries found.No matching page found yetNo soundNo unused colour in image.Nordic (ISO-8859-10)NormalNormal font:OKObjects must have an id attributeOpen FileOpen HTML documentOpen file "%s"Operation not permitted.Option '%s' requires a value.OptionsOrientationPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: File format is not recognized.Page %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePermissionsPlease choose a valid font.Please choose an existing file.Please install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint SetupPrint in colourPrint previewPrint this pagePrint to FilePrinterPrinter optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...QuestionRead error on file '%s'ReadyRefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.RemoveRemove current page from bookmarksRep&laceReplace &allReplace with:Right margin (mm):SaveSave %s fileSave AsSave log contents to fileScriptSearchSearch in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelectionSetup...Show allShow all items in indexShow hidden directoriesShow/hide navigation panelSizeSkipSorry, could not open this file.Sorry, not enough memory to create a preview.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Status:SwissTIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.TemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe directory '%s' does not exist Create it now?The font colour.The font family.The font style.The report contains the files listed below. If any of these files contain private information, please uncheck them and they will be removed from the report. The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.There was a problem during page setup: you may need to set a default printer.Tip of the DayTips not available, sorry!Top margin (mm):Turkish (ISO-8859-9)TypeUnable to open requested HTML document: %sUnicode 16 bit (UTF-16)Unicode 32 bit (UTF-32)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown dynamic library errorUnknown encoding (%d)Unknown option '%s'Unsupported theme '%s'.UpUsage: %sView files as a detailed viewView files as a list viewViewsWarning: Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whole wordWhole words onlyWin32 themeWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows MEWrite error on file '%s'YesYou cannot add a new directory to this section.Zoom &InZoom &Outa client's attempt to establish a conversation has failed.altbinaryboldcan't close file '%s'can't create file '%s'can't delete user configuration file '%s'can't execute '%s'can't find user's HOME, using current directory.can't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't remove file '%s'can't remove temporary file '%s'can't write buffer '%s' to disk.can't write user configuration file.compression errorconversion to 8-bit encoding failedctrldatedecompression errordefaulteighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening '%s'error opening filefailed to flush the file '%s'fifteenthfifthfirstfont sizefourteenthfourthgenerate verbose log messagesinvalid zip fileitaliclocale '%s' cannot be set.midnightnineteenthninthno errornonamenoonout of memoryprocess context descriptionread errorsecondseventeenthseventhshow this help messagesixteenthsixthspecify the theme to usetenththirdthirteenthtodaytomorrowtwelfthtwentiethunderlinedunknownunknown class %sunknown errorunknown error (error code %08x).unnamedunsupported Zip compression methodusing catalog '%s' from '%s'.write errorwxGetTimeOfDay failed.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %dProject-Id-Version: wxstd_gl_ES Report-Msgid-Bugs-To: POT-Creation-Date: 2011-11-06 12:44+0100 PO-Revision-Date: 2006-07-28 19:50+0100 Last-Translator: Adrin Gonzlez Alba Language-Team: Adrin Gonzlez Alba MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.9.1 X-Poedit-Language: Galician X-Poedit-Country: SPAIN X-Poedit-SourceCharset: utf-8 Por favor, enve este informe mantedor do programa, grazas! Grazas e sentmola molestia! (erro %ld: %s) - Previsualizacin%i de %i%s (ou %s)%s Erro%s Informacin%s Advertencia%s ficheiros (%s)|%s&Acerca de...Tamao &Actual&Aplicar&Ordenar Iconas&Atrs&Cancelar&Pechar&CopiarPrevisualizacin do informe de &depuracin:&Eliminar&DetallesA&baixo&Ficheiro&Buscar&Finalizar&Familia da fonte:A&xuda&Inicio&Indice&Itlica&Mover&Novo&Seguinte&Seguinte >&Seguinte Consello&Non&Notas:&Aceptar&Abrir...&PegarTamao do &punto:&Preferencias&Anterior&Imprimir...&Propiedades&Sar&Refacer&Refacer &Substituir&Restablecer&Gardar&Gardar...&Amosar os consellos iniciar&Tamao&Parar&Estilo:&Subraiar&Desfacer&Desfacer &Arriba&Vent&Si'%s' incorrecto'%s' non un valor numrico correcto para a opcin '%s'.'%s' non un catlogo de mensaxes vlido.'%s' probablemente sexa un buffer binario.'%s' debe ser numrico.'%s' debe conter s caracteres ASCII.'%s' debe conter s caracteres alfabticos.'%s' debe conter s caracteres alfanumricos.(Axuda)(marcadores)10 x 11 polgadas10 x 14 polgadas11 x 17 polgadas12 x 11 polgadas15 x 11 polgadas9 x 11 polgadas: o ficheiro non existe!: xogo de caracteres descoecido: codificacin descoecida< &AtrsXerouse un informe de depuracin no directorio A2 420 x 594 mmFolla A3, 297 x 420 mmFolla A4, 210 x 297 mmFolla A5, 148 x 210 mmA6 105 x 148 mmABCDEFGabcdefg12345ASCIIEngadirEngadir a pxina actual s marcadoresEngadir s cores personalizadasEngadindo o libro %sAliar EsquerdaAliar DereitaTodosTdolos ficheiros (%s)|%sTdolos ficheiros (*)|*Tdolos ficheiros (*.*)|*Tdolos ficheiros (*.*)|*.*rabe (ISO-8859-6)AtributosB4 (ISO) 250 x 353 mmSobre B4, 250 x 353 mmFolla B4, 250 x 354 mmSobre B5, 176 x 250 mmFolla B5, 182 x 257 millimetrosSobre B6, 176 x 125 mmBMP: Non se puideron escribir os datos.Bltico (ISO-8859-13)Bltico (antigo) (ISO-8859-4)NegriaMarxe inferior (mm):Folla C, 17 x 22 polgadasC&or:Sobre C3, 324 x 458 mmSobre C4, 229 x 324 mmSobre C5, 162 x 229 mmSobre C6, 114 x 162 mmSobre C65, 114 x 229 mmNon se puido &Desfacer Non se puido pechar a clave '%s' do rexistroNon se puido crear a clave do rexistro '%s'Non se puido crear unha vent de clase %sNon se puido eliminar a clave '%s'Non se puido eliminar o ficheiro INI '%s'Non se puido eliminar o valor '%s' da clave '%s'Non se puido enumerar as subclaves da clave '%s'Non se puido enumerar os valores da clave '%s'Non se puido atopar a posicin actual no ficheiro '%s'Non se puido obter informacin sobre a clave do rexistro '%s'Non se puido abrir a clave '%s' do rexistroNon se puido ler o valor de '%s'Non se puido ler o valor da clave '%s'Non se puido gardar a imaxe no ficheiro '%s': extensin descoecida.Non se puido gardar o contido do rexistro nun ficheiro.Non se puido establecer o valor de '%s'CancelarNon se puido enumerar os ficheiros '%s'Non se puido enumerar os ficheiros do directorio '%s'Non se puido atopar a localizacin do ficheiro de axendaNon se puido obter o nome de mquinaNon se puido obter o nome de mquina oficialNon se puido inicializar OLENon se puido cargar a icona dende '%s'.Non se puido cargar os recursos dende o ficheiro '%s'.Non se puido abrir o documento HTML: %sNon se puido abrir o libro de axuda HTML: %sNon se puido abrir o ficheiro de ndice: %sNon se puido imprimir unha pxina en branco.Sensible a maisculas/minsculasCelta (ISO-8859-14)CentradoCentroeuropeo (ISO-8859-2)Elixa unha corElixa unha fonte&PecharBorrar o contido do rexistroClique para cancelar a seleccin de fonte.Clique para confirmar a seleccin de fonte.PecharPechar Alt-F4Pechar TodoPechar esta ventFicheiro de Axuda HTML Comprimido (*.chm)|*.chm|OrdenadorO nome da entrada de configuracin non pode comezar por '%c'.ConfirmarConfirmar a actualizacin do rexistroConectando...ContidosNon funciona a conversin xogo de caracteres '%s'.Copiouse portapapeis:"%s"Copias:Non se puido crear o ficheiro temporal '%s'Non se puido extraer %s a %s: %sNon se puido localizar o ficheiro '%s'.Non se puido iniciar a previsualizacin do documento.Non se puido comezar a impresin.Non se puideron transferir os datos ventNon se puido engadir unha imaxe lista de imaxes.Non se puido crear un cursor.Non se puido atopa-lo smbolo '%s' nunha librera dinmicaNon se puido cargar unha imaxe PNG - o ficheiro est corrompido ou non hai memoria dabondo.Non se puido cargar os datos de son dende '%s'.Non se puido abrir o audio: %sNon se puido gardar a imaxe PNG.Crear directorioCrear novo directorioCor&tarDirectorio actual:Cirlico (ISO-8859-5)Folla D, 22 x 34 polgadasSobre DL, 110 x 220 mmInforme de depuracin "%s"Non se puido crear o informe de depuracin.Fallou a xeracin do informe de depuracin.Codificacin predeterminadaImpresora predeterminadaEliminar elementoEscritorioSabas...DirectoriosNon se puido crear o directorio '%s'O directorio '%s' non existe!O directorio non existeO directorio non existe.Amosar tdolos elementos do ndice que conteen a subcadea dada. A busca non sensible a maisculas/minsculas.Non GardarFeitoFeito.id usado das veces: %dAbaixoFolla E, 34 x 44 polgadasEditar elementoIntroduza o comando para abrir o ficheiro "%s":Entradas atopadasErroErro crear o directorioErro ler as opcins da configuracin.Erro gardar os datos da configuracin do usuario.Erro: Esperanto (ISO-8859-3)Ficheiros executables (*.exe)|*.exe|Tdolos ficheiros (*.*)|*.*||Fallou a execucin do comando '%s'Fallou a execucin do comando '%s' co erro: %ulExportando a clave do rexistro: o ficheiro "%s" xa existe e non se vai sobrescribir.Fallou a extracin de '%s' a '%s'.Fallo pechar o portapapeis.Erro conectar: falta o nome de usuario/contrasinal.Fallo copiar o valor do rexistro '%s'Fallo copiar o contido da clave do rexistro '%s' a '%s'.Fallo copiar o ficheiro '%s' a '%s'Fallo copiar a subclave do rexistro '%s' a '%s'.Erro crear un nome de ficheiro temporalFallo crear un cursor.Erro crear o directorio "%s"Erro crear o directorio '%s' (Ten os permisos necesarios?)Erro crear o dilogo estndar Buscar/substituir (cdigo de erro %d)Erro amosar o documento HTML ca codificacin %sFallo baleirar o portapapeis.Erro executar '%s' Erro executar curl, pao no PATH.Fallo obter datos do portapapeisErro obter a hora local do sistemaErro obter o directorio de traballoErro iniciar a Axuda HTML de MS.Erro inicializar OpenGLErro matar o proceso %dErro cargar mpr.dll.Erro cargar a librera compartida '%s'Erro abrir o arquivo CHM '%s'.Erro abrir o ficheiro temporal.Fallo abrir o portapapeis.Fallo poer datos no portapapeisFallo eliminar o ficheiro de informe de depuracin "%s"Fallo renomear a clave do rexistro '%s' a '%s'.Fallo recuperar datos do portapapeis.Erro gardar a imaxe de mapa de bits no ficheiro "%s".Fallo establecer o modo de tranferencia FTP coma %s.Erro establecer os permisos do ficheiro temporalErro actualizar o ficheiro de configuracin de usuario.Erro subir o informe de depuracin (cdigo de erro %d).FicheiroO ficheiro %s non existe.O ficheiro '%s' xa existe, desexa sobrescribilo?O ficheiro '%s' xa existe. Desexa substituilo?Non se pode cargar o ficheiro.Erro de ficheiroO nome de ficheiro xa existe.FicheirosFicheiros (%s)FiltroBuscarTamao da fonte:Atopronse %i coincidenciasDende:GIF: ndice gif incorrecto.GIF: erro no formato da imaxe GIF.GIF: erro descoecido!!!Tema GTK+VoltarContinuarSubir un nivel na xerarqua do documentoIr directorio inicialIr directorio superiorGrego (ISO-8859-7)Gzip non est soportado por esta versin de zlibProxecto de Axuda HTML (*.hhp)|*.hhp|Ficheiros HTML (*.html;*.htm)|*.html;*.htm|Hebreo (ISO-8859-8)AxudaOpcins do Visor da Axudandice da AxudaTemas da AxudaLibros de axuda (*.htb)|*.htb|Libros de axuda (*.zip)|*.zip|Axuda: %sInicioDirectorio inicialICO: Erro escribir o ficheiro de imaxe!ICO: A imaxe alta de mis para unha icona.ICO: A imaxe ancha de mis para unha icona.ICO: ndice de icona incorrecto.IFF: erro no formato da imaxe IFF.IFF: erro descoecido!!!Ignorando o valor "%s" da clave "%s".A imaxe e a mscara teen tamaos diferentes. imposible sobrescribir o ficheiro '%s'Foi imposible establecer os permisos do ficheiro '%s'ndiceIndio (ISO-8859-12)ndice de imaxe TIFF incorrecto.Expresin regular incorrecta '%s': %sItlicaSobre de Italia, 110 x 230 mmJPEG: Non se puido cargar - probablemente o ficheiro estea corrompido.JPEG: Non se puido gardar a imaxe.Postal Xaponesa 100 x 148 mmXustificadoMarxe esquerda (mm):Cargar o ficheiro %sCargando: O rexistro gardouse no ficheiro '%s'.As funcins da Axuda HTML de MS non estn dispoibles porque non est instalada nesta mquina a librera de Axuda HTML de MS. Instlea.Ma&ximizarMenMi&nimizarModificadoFallou a inicializacin do mdulo "%s"Mover abaixoMover arribaNomeNovo directorioNovo elementoNovoNomeSeguinteSeguinte pxinaNonNon se atoparon entradas.Ainda non se atopou ningunha pxinda que concordeSen sonNon hai cores sen usar na imaxe.Nrdico (ISO-8859-10)NormalFonte normal:AceptarOs obxectos deben ter un atributo idAbrir FicheiroAbrir documento HTMLAbrir o ficheiro "%s"Operacin non permitida.A opcin '%s' require un valor.OpcinsOrientacinPCX: formato de imaxe non soportadoPCX: imaxe incorrectaPCX: isto non un ficheiro PCX.PCX: erro descoecido !!!PCX: nmero de versin demasiado baixoPNM: Non se recoeceu o formato do ficheiro.Pxina %dPxina %d de %dConfiguracin de PxinaConfiguracin de pxinaPxinasTamao do PapelTamao do papelPermisosEscolla unha fonte vlida.Escolla un ficheiro existente.Por favor, instale unha versin mis nova de comctl32.dll (necestase polo menos a versin 4.70 pero Vd. ten %d.%02d) ou este programa non funcionar correctamente.Agarde mentres se imprime Ficheiro PostScriptPrevisualizacin:Pxina anteriorImprimirPrevisualizacin de ImpresinFallo na Previsualizacin de ImpresinConfiguracin da ImpresinImprimir a corPrevisualizacin de impresinImprimir esta pxinaImprimir a FicheiroImpresoraOpcins da impresoraOpcins da impresora:Impresora...Impresora:Imprimindo Erro de ImpresinImprimindo a pxina %d...Imprimindo...PreguntaErro de lectura no ficheiro '%s'PreparadoActualizarA clave do rexistro '%s' xa existe.A clave do rexistro '%s' non existe, non se puido renomear.A clave do rexistro '%s' necestase para o funcionamiento normal do sistema, se se borra pode deixar o sistema inutilizable: operacin cancelada.A clave do rexistro '%s' xa existe.EliminarEliminar a pxina actual dos marcadoresSu&bstituirSubstituir &todoSubstituir por:Marxe dereita (mm):GardarGardar o ficheiro %sGardar comaGardar o contido do rexistro nun ficheiroScriptBuscarBuscar en tdolos librosBuscando...SeccinsErro de acceso no arquivo '%s'Erro de acceso no arquivo '%s' (os arquivos grandes non estn soportados por stdio)Seleccionar &TodoSeleccione un patrn de documentoSeleccinConfiguracin...Amosar todoAmosar tdolos elementos no ndiceAmosar os directorios agochadosAmosar/agochar o panel de navegacinTamaoOmitirSntoo, non se puido abrir este ficheiro.Sntoo, non hai memoria dabondo para crear unha previsualizacin.Sntoo, o formato deste ficheiro descoecido.Os datos de son estn nun formato non soportado.O ficheiro de son '%s' est nun formato non soportado.Estado:SuzoTIFF: Erro cargar a imaxe.TIFF: Erro ler a imaxe.TIFF: Erro gardar a imaxe.TIFF: Erro escribir a imaxe.PatrnsTai (ISO-8859-11)O servidor FTP non soporta o modo pasivo.O servidor FTP non soporta o comando PORT.O xogo de caracteres '%s' descoecido. Debe seleccionar outro xogo de caracteres para substituilo ou escolla [Cancelar] se non se pode substituirO directorio '%s' non existe Desexa crealo agora?A cor da fonte.A familia da fonte.Estilo da fonte.O informe contn os ficheiros listados embaixo. Se algn destes ficheiros contn informacin privada, desmrqueo e eliminarase do informe. Non se especificou o parmetro requirido '%s'.Non se puido gardar o texto.Debe especificarse o valor para a opcin '%s'.Houbo un problema mentres se configuraba a pxina: cmpre establecer unha impresora predeterminada.Consello do DaOs consellos non estn dispoibles, sntoo!Marxe superior (mm):Turco (ISO-8859-9)TipoNon foi posible abrir o documento HTML solicitado: %sUnicode de 16 bits (UTF-16)Unicode de 32 bits (UTF-32)Unicode de 7 bits (UTF-7)Unicode de 8 bits (UTF-8)Erro descoecido de librera dinmicaCodificacin descoecida (%d)Opcin descoecida '%s'Tema '%s' non soportado.ArribaUso: %sVer os ficheiros coma unha lista detalladaVer os ficheiros coma unha listaVistasAdvertencia: Europeo Occidental (ISO-8859-1)Europeo Occidental con Euro (ISO-8859-15)Palabra completaS palabras completasTema de Win32Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows MEErro de escritura no ficheiro '%s'SiNon pode engadir un novo directorio a esta seccin.A&chegarA&lonxarfallou o intento de establecemento dunha conexin dun cliente.altbinarionegrianon se puido pechar o ficheiro '%s'non se puido crear o ficheiro '%s'non se puido eliminar o ficheiro de configuracin de usuario '%s'non se puido executar '%s'non se puido atopar o DIRECTORIO PERSOAL do usuario, usando o directorio actual.non se puido abrir o ficheiro '%s'non se puido abrir o ficheiro de configuracin global '%s'.non se puido abrir o ficheiro de configuracin de usuario '%s'.non se puido abrir o ficheiro de configuracin de usuario.non se puido eliminar o ficheiro '%s'non se puido eliminar o ficheiro temporal '%s'non se pode escribir o buffer '%s' no disco.non se puido escribir o ficheiro de configuracin do usuario.erro de compresinfallou a conversin codificacin de 8 bitsctrldataerro de descompresinpredeterminadodecimo oitavooitavodcimo primeiroa entrada '%s' aparece mis dunha vez no grupo '%s'erro no formato dos datoserro abrir '%s'erro abrir o ficheiroerro baleirar a memoria do ficheiro '%s'dcimo quintoquintoprimeirotamao da fontedcimo cuartocuartoxerar mensaxes de rexistro detalladasficheiro zip incorrectoitlicaNon se pode establecer locale '%s'.medianoitedcimo novenonovenosen errossennomemediodasen memoriadescricin do contexto do procesoerro de lecturasegundodcimo stimostimoamosar esta mensaxe de axudadcimo sextosextoespecifique o tema a usardcimoterceirodcimo terceirohoxemadcimo segundovinteavosubraiadodescoecidoclase %s descoecidaerro descoecidoerro descoecido (cdigo de erro %08x).sen nomemtodo de compresin Zip non soportadoempregando catlogo '%s' de '%s'.erro de escrituraFallou wxGetTimeOfDay.wxWidgets non puido abrir o 'display' para '%s': sando.wxWidgets non puido abrir o 'display'. Sando.onteerro de zlib %dwxMaxima-13.04.2/locales/wxwin/hu.mo000644 000765 000024 00000264754 11670654443 017665 0ustar00andrejstaff000000 000000 D<"\D([)[?2[r[?t[[[[[[\-\I\g\\ \\\ \\ \'\&]$(] M] W]d]k]z]]]]]]]]]]]]]] ]]^ ^^^ ^(^-^3^8^>^ F^P^T^\^`^f^o^ v^ ^ ^^ ^ ^^^^^^^^^__ _ _ _&_ -_7_;_D_L_Q_o_4_$_!__*`/>`:n`` `&`&` a>'a fa qa |a a a a aaaab bbbb#$b/Hbxbbbb3b6bc"c 8cYcqccccccdd8dNdfddddddddd4e.Geve e eeeeee6ef:5fpf#f ffffgg4g Rgsgggggg!h";h^h-xh1h(hii+0i\iaiuiiiiiiij0jMjcj)jjj(jk!k#;k _k;lkk)kkl#lClYl%xl#l"l*l(m&9m%`m%m5mm"m?"nbn{n1n nno!o?o,Fo%so(o/oo-p3w(\www.w'wC x#Pxtx(xx9xy!y6;yryyyyyyy,y1z0Qz%z%zzz!z#{ @{K{\{ l{x{{~{| -|"9|\|z||Q||v}+} }}}-}}~~ )~3~&C~ j~ ~~L~ "%@ f4 0?$\$'J΀,$F"k4߁.*Fe-""Ղ9$20W"ǃ&" 80iG/A.\2ʅ)'2?GrEGHd%##̇3"$G$cT݈''G"_-!$҉ 3R#p"-'" '05X'&֋-/++[&,2ی-&<&c+(ԍ!)I3g-Ɏ$),2V! ŏʏ=4 U ny  /  8?PV'nΑ #!&#H2l8ؒ %& =G*Z 'œ  & 42@s|" ה '2Zz)wҕJ$! F7g2)җ$0jU%+%/8hou-(=(9#b66՚# 071T%Ǜ!!?!Y{! М& 7AH OYl~%ȝ (Ddz0 #ɞ)3 R|\ ٟ &  &0MT!]"  ǠРؠ ݠ%7/ Т%%=X'a& ! -7JY+r0 =Pm##7G`u$%զ$=$Z$$ާ$ E$b$ɨ$  ! ,7 = H0S4% ߩ"<1_">GW `n t  ϫݫ  #3 DO Xbq Hڬ !/'W!_3#7[m"D -@Pci n {N # 7DM<e ɰ )#"F?Oȱ+ 7 X-y5+ݲ% )/Yu}F6ͳ ;%aʹ#=Xt ,0۵z (0]o?ѷ%-.˸0GMع\&P@ԺY#oB ;;?{A*μ%9*X$.$'7_$w'ľھ+3Qg+-%C[ ^h |) =A(_     $2E^"w#$/I al"+"Dg)-D/#S \ fs;{:G0=; >I;59h,.-! &BI*Ny!)>P#c/0-5S*h(#''"0S j !$'<K#]" //DW#j/  4!J8l9.  )0+Nz &! *5 ;IRY^"b  &)' . 9EMS jt-z$C4 :EU[d l v$  % -"7Z x'3* D N\a`GAWgk"~#"+( T bo w (## ". >I]eks| /5 <H M Yfw|    !0? GRo v  4 5"Qt%-# **8)cL'7$Gl{  %0 :Qdg4k< %B]r9Tiy &"579q@BIY' !#<Q!m !$7(\+#05,<i}1 ";Tm2)6#;"_3(''/GF,9,"5@#v!020 :Q2*/.@I..5#)BGl+'&*/Z@a&/?-9$g8&1 ;%[%&4-(1*Z$3'5.<*k )'2 (<)e.(=F-[2( )/4 dp* -#)6M(&n1 "<$_!119H,H%%5Dz3! 3R[q112*N'y-2 7A\x 3 E,P}p"=`' <"!_*+/TN-;(1Zay:-;!/.Q-0E(%&N.u"C* D6${+!QK@4G0 8: $s - & + ) GC $ , T =2 Qp < # *# BN 3 ! E V- T R /,%\ %*<)1 [1|g%3<4p"2C/?,o$1'!&=/d87117+iI-5 8C8|(/2:A5|"3' 713i.0@1]$.A9%?_) 6,>k  34$G*l '5MV,k,*.1 Q ]6h+ *K(h6-6;J"Nq%&' 8P.hc* !!E@!6!.!!"""<"+"&"*#.B#q#z##5#"##7$+G$$s$$;$;$",%O%T%6p%#%/%%!&4&!J&l&!&&!&& &' 1' R']'d'k'r'''''$'"(%:(#`((((<() )($)(M)%v)%) )t) C*P*#n*** *** *(*(+++ :+H+ L+ X+e+ k+v++++++k,;-)V-,-,-%- .+ .!7.Y.n.#u....5.//3/M/3l/$/5/ / 0!0 50V0k000"0 0 0111E1Y1m111(11(2,2(H2q2(22(22(3@3(\33(33(34(+4 T4^4q444 4 4+4/4&5 55C5*b5!5(5@566666 6 6677/7F7W7g7z7777777 8 8 8"828 O8\\8&88889@!9b9%k9>99%`::::(:K:(;7; N;<X;;;;;;;; <*<1<N9<<<< < <<G<8=Q=m== =<=)= >O>k>.z>!>&>>???0!?+R?+~?6?;?,@'J@/r@!@@ @S@1+A ]AM~AAABB#B#ABeBBBBBBCC!C04C1eCxC'D.8DagDjD4EIEaEvEE+EE)FF*FFa|GWG[6HRH]H+CIoIIRI$I J JFTT>"U#aU6U;U9UA2VAtVHVVWWW2rXXX5wYOY*Y (Z6ZLZTZ.]Z"Z%Z6Z% [<2[Vo[ [%[G \UU\;\A\2)]#\];]?]8]/5^/e^2^&^/^3_1S_._3_2_`2`)B`l`q`w``!`+`` ` `? aIa[asa"a*a6a b.b FbRbAYb"bJbL c/Vccc cc%c+c d%d+7dcdsdxd)d4ddd dd ee#e'e2+e^eqe ee0e1e f f (f 6fCfKf%Qf wff>ff/fgg8%g^g gguggg gg g1g ggh h4hKh ihwh h%h1h hh#h+iEi>ci1ii iiEP:!Rk.[79uY(@uq0D3 8FApo/[1|ZQmD"/+pp\(\&W^H;L\) X5!kg<UGZK !^8z|,f6ya_bxLhy?XEjyyt"IB .B-j($J|Z4i74D _8LZVOGgfH[AUVRhle#%q?U,NE_lx0aeQ1Iuk262"H$ E.*)iTt$lcq9I5os #<e7%D]x$ Gfd/*mO/6w`:p )}>; 7j CF 0cH1o'PWQwmV>r(^[' (d_ <;Rd>la9-P<j&:<g14e v  YM,{ 32M)=:;+=z)18-&F2W@ObCPNu~6A  wzWc}]?},h^@'sNJ'~3@S.:d` 4*  qX,"8ktw=>F=%9b{c!]'?|#J~NAXr5KS5+~/JS#YTzi@  $a DK?+9MivoAhsS2v*.6L=bCY{Ur  fx;>{}TOBv43%K n30n-nr&Vg7T``BC&"M0*+s\QB-]m!%nICt#5RG %s: %s Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message%s not a bitmap resource specification.%s not an icon resource specification.%s: ill-formed resource file syntax.&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Debug report preview:&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&Notes:&OK&Open&Open...&Paste&Point size:&Preferences&Previous&Print&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)*** A debug report has been generated *** And includes the following files: *** It can be found in "%s" , expected static, #include or #define while parsing resource.10 x 11 in10 x 14 in11 x 17 in12 x 11 in15 x 11 in6 3/4 Envelope, 3 5/8 x 6 1/2 in9 x 11 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A debug report has been generated in the directory A non empty collection must consist of 'element' nodesA2 420 x 594 mmA3 Extra 322 x 445 mmA3 Extra Transverse 322 x 445 mmA3 Rotated 420 x 297 mmA3 Transverse 297 x 420 mmA3 sheet, 297 x 420 mmA4 Extra 9.27 x 12.69 inA4 Plus 210 x 330 mmA4 Rotated 297 x 210 mmA4 Transverse 210 x 297 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 Extra 174 x 235 mmA5 Rotated 210 x 148 mmA5 Transverse 148 x 210 mmA5 sheet, 148 x 210 mmA6 105 x 148 mmA6 Rotated 148 x 105 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAddToPropertyCollection called on a generic accessorAddToPropertyCollection called w/o valid adderAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 (ISO) 250 x 353 mmB4 (JIS) Rotated 364 x 257 mmB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) Rotated 257 x 182 mmB5 (JIS) Transverse 182 x 257 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 (JIS) 128 x 182 mmB6 (JIS) Rotated 182 x 128 mmB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCannot wait for thread termination.Cant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find resource include file %s.Could not find tab for idCould not locate file '%s'.Could not resolve control class or id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not resolve menu id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDebug report "%s"Debug report couldn't be created.Debug report generation has failed.DecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.DesktopDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...DirectoriesDirectory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?Don't SaveDoneDone.Double Japanese Postcard Rotated 148 x 200 mmDoubly used id : %dDownE sheet, 34 x 44 inEdit itemElapsed time : Enter a page number between %d and %d:Enter command to open file "%s":Entries foundEnvelope Invite 220 x 220 mmEnvironment variables expansion failed: missing '%c' at position %u in '%s'.ErrorError creating directoryError reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Estimated time : Executable files (*.exe)|*.exe|All files (*.*)|*.*||Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExpected '*' while parsing resource.Expected '=' while parsing resource.Expected 'char' while parsing resource.Exporting registry key: file "%s" already exists and won't be overwritten.Extended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to %s dialup connection: %sFailed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to clean up debug report directory "%s"Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory "%s"Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to execute curl, please install it in PATH.Failed to find XBM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to find XBM resource %s. Forgot to use wxResourceLoadIconData?Failed to find XPM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open '%s' for %sFailed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove debug report file "%s"Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to upload the debug report (error code %d).Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FilesFiles (%s)FilterFindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound Found %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGetProperty called w/o valid getterGetPropertyCollection called on a generic accessorGetPropertyCollection called w/o valid collection getterGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Icon resource specification %s not found.If you have any additional information pertaining to this bug report, please enter it here and it will be joined to it:If you wish to suppress this debug report completely, please choose the "Cancel" button, but be warned that it may hinder improving the program, so if at all possible please do continue with the report generation. Ignoring value "%s" of the key "%s".Ill-formed resource file syntax.Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal Parameter Count for ConstructObject MethodIllegal Parameter Count for Create MethodIllegal directory name.Illegal file specification.Image and mask have different sizes.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Initialization failed in post init, aborting.Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.Japanese Double Postcard 200 x 148 mmJapanese Envelope Chou #3Japanese Envelope Chou #3 RotatedJapanese Envelope Chou #4Japanese Envelope Chou #4 RotatedJapanese Envelope Kaku #2Japanese Envelope Kaku #2 RotatedJapanese Envelope Kaku #3Japanese Envelope Kaku #3 RotatedJapanese Envelope You #4Japanese Envelope You #4 RotatedJapanese Postcard 100 x 148 mmJapanese Postcard Rotated 148 x 100 mmJustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal Extra 9 1/2 x 15 inLegal, 8 1/2 x 14 inLetter Extra 9 1/2 x 12 inLetter Extra Transverse 9.275 x 12 inLetter Plus 8 1/2 x 12.69 inLetter Rotated 11 x 8 1/2 inLetter Small, 8 1/2 x 11 inLetter Transverse 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.Long Conversions not supportedMDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMode %ix%i-%i not available.ModernModifiedModule "%s" initialization failedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOpen file "%s"Operation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.PRC 16K 146 x 215 mmPRC 16K RotatedPRC 32K 97 x 151 mmPRC 32K RotatedPRC 32K(Big) 97 x 151 mmPRC 32K(Big) RotatedPRC Envelope #1 102 x 165 mmPRC Envelope #1 Rotated 165 x 102 mmPRC Envelope #10 324 x 458 mmPRC Envelope #10 Rotated 458 x 324 mmPRC Envelope #2 102 x 176 mmPRC Envelope #2 Rotated 176 x 102 mmPRC Envelope #3 125 x 176 mmPRC Envelope #3 Rotated 176 x 125 mmPRC Envelope #4 110 x 208 mmPRC Envelope #4 Rotated 208 x 110 mmPRC Envelope #5 110 x 220 mmPRC Envelope #5 Rotated 220 x 110 mmPRC Envelope #6 120 x 230 mmPRC Envelope #6 Rotated 230 x 120 mmPRC Envelope #7 160 x 230 mmPRC Envelope #7 Rotated 230 x 160 mmPRC Envelope #8 120 x 309 mmPRC Envelope #8 Rotated 309 x 120 mmPRC Envelope #9 229 x 324 mmPRC Envelope #9 Rotated 324 x 229 mmPage %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Processing debug report has failed, leaving the files in "%s" directory.Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelect a document viewSelect a fileSelectionSeparator expected after the option '%s'.SetProperty called w/o valid setterSetup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelShows the font preview.SizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sString conversions not supportedSubclass '%s' not found for resource '%s', not subclassing!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSwissTIFF library error.TIFF library warning.TIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid Extra 11.69 x 18 inTabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The report contains the files listed below. If any of these files contain private information, please uncheck them and they will be removed from the report. The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).There was a problem during page setup: you may need to set a default printer.This system doesn't support date picker control, please upgrade your version of comctl32.dllThread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected end of file while parsing resource.Unexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown dynamic library errorUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unkown Property %sUnmatched '{' in an entry for mime type %s.Unnamed commandUnrecognized style %s while parsing resource.Unsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictVideo OutputView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Thai (CP 874)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.assuming this is a multi-part zip concatenatedattempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebad zipfile offset to entrybinaryboldbuffer is too small for Windows directory.can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't execute '%s'can't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infodump of the process state (binary)eighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening '%s'error opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthestablishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinitiateinvalid eof() return value.invalid message box return valueinvalid zip fileitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryprocess context descriptionread errorreadingreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown line terminatorunknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodusing catalog '%s' from '%s'.write errorwritingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets 2.5.5 Report-Msgid-Bugs-To: POT-Creation-Date: 2006-10-29 14:59+0100 PO-Revision-Date: 2005-11-01 20:50+0100 Last-Translator: Vegh, Janos Language-Team: wxWidgets translators MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: 8bit %s: %s Krem kldje el ezt a jelentst a program karbantartjnak! Ksznm. Ksznjk s elnzst krnk a knyelmetlensgrt! (hiba %ld: %s) - Nyomtatsi elkp#10 Boritk, 4 1/8 x 9 1/2 hvelyk#11 Boritk, 4 1/2 x 10 3/8 hvelyk#12 Boritk, 4 3/4 x 11 hvelyk#14 Boritk, 5 x 11 1/2 hvelyk#10 Boritk, 3 7/8 x 8 7/8 hvelyk#define %s-nek egsz tpusnak kell lennie.%i. (ssz %i)%s (vagy %s)%s Hiba%s Informci%s Figyelmeztets%s fjl (%s)|%s%s zenet%s nem bittrkp erforrs meghatrozs.%s nem ikon erforrs meghatrozs.%s: nyelvtani hibs erforrs file.&Nvjegy...&Aktulis mret&AlkalmazdIkonok &elrendezse&VisszaKvr&Mgsem&Zuhatag&Trls&Bezr&Msols&Elkp a hiba jelentsrl:&Trls&Rszletek&Le&Fjl&KeresBe&fejezJelkszlet csald:&Elre&Vlasszon oldalszmot... &Sg&Haza&Tartalom mutat&Dlt&Napl&thelyezs&j &Kvetkez &Kvetkez >&Kvetkez tlet&Nem&Megjegyzsek:&Igen&Megnyits&Megnyits...&BeillesztsJelkszlet &pontmrete:&Elvlaszts&Elz&Nyomtats&Nyomtats...&Tulajdonsgok&Kilps&jra&jra&Helyettests&Helyrellts&Ments&Ments...&Mutass tleteket inditskor&Mret&Lellts&Stlus:Al&hzs&Visszavons&Visszavons&Kikezds&FelHang&sly:&Ablak&Igen'%s' utn felesleges '..'-t talltam, elhanyagoltam.'%s' rvnytelen'%s' nem megfelel szmrtk a(z) '%s' belltshoz.'%s' rvnytelen zenet katalgus.'%s' valsznleg binris fjl.'%s' csak szmrtk lehet.'%s' csak ASCII jeleket tartalmazhat.'%s' csak betket tartalmazhat.'%s' csak betket vagy szmokat tartalmazhat.(Sg)(knyvjelzk)*** Elkszlt a hibakeressrl a jelents *** s a kvetkez fjlokat tartalmazza: *** Ez a "%s"-ben tallhat , static, #include or #define kulcsszt vrtam az erforrs rtelmezsekor.10 x 11 hvelyk10 x 14 hvelyk11 x 17 hvelyk12 x 11 hvelyk15 x 11 hvelyk6 3/4 Bortk, 3 5/8 x 6 1/2 hvelyk9 x 11 hvelyk: a file nem ltezik!: ismeretlen jelkszlet: ismeretlen kdols< &Vissza<<Flkvr dlt bet.
flkvr dlt alhzott
Flkvr bet. Dlt bet. >>>>|A hibakeressrl a jelents ebben a knyvtrban van Egy nem-res gyjtemnynek 'elem' csompontokbl kell llniaA2 420 x 594 mmA3 Extra, 322 x 445 mmA3 Extra Transverse 322 x 445 mmA3 elfordtott, 420 x 297 mmA3 Transverse 297 x 420 mmA3 lap, 297 x 420 mmA4 Extra 9.27 x 12.69 inA4 plus, 210 x 330 mmA4 297 x 210 mm, elfordtottA4 Transverse 210 x 297 mmA4 lap, 210 x 297 mmA4 kis lap, 210 x 297 mmA5 Extra 174 x 235 mmA5 Elfordtott 210 x 148 mmA5 Transverse 148 x 210 mmA5 lap, 148 x 210 mmA6 105 x 148 mmA6 elfordtott 148 x 105 mmABCDEFGabcdefg12345ASCIIAdd hozzAdd hozz ezt a lapot a knyvjelzkhzAdd hozz a felhasznli sznekhezAddToPropertyCollection hvs generikus hozzfrsselAddToPropertyCollection hvs rvnyes hozzads nlklAdd hozz a %s knyvetBalra igaztsdJobbra igaztsMindetMinden fjlt (%s)|%sMinden fjlt (*)|*Minden fjlt (*.*)|*Minden fjlt (*.*)|*.*Egy mr regisztrlt objektumot adott t a SetObjectClassInfo-nakMr trcszom az ISPt.A naplt a(z) '%s' file vghez rjam? (Ha [Nem]-et vlaszt, fellrom!)Arab (ISO-8859-6)Az archvum nem tartalmaz #SYSTEM fjltTulajdonsgokB4 (ISO) 250 x 353 mmB4 (JIS) Elfordtott 364 x 257 mmB4 Bortk, 250 x 353 mmB4 lap, 250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) Elfordtott 257 x 182 mmB5 (JIS) Transverse 182 x 257 mmB5 Boritk, 176 x 250 mmB5 lap, 182 x 257 millimterB6 (JIS) 128 x 182 mmB6 (JIS) Elfordtott 182 x 128 mmB6 Boritk, 176 x 125 mmBMP: Nem sikerlt memrit foglalni.BMP: Nem tudtam elmenteni a hibs kpet.BMP: Nem tudtam kirni az RGB szntrkpet.BMP: Nem tudtam kirni az adatokat.BMP: Nem tudtam kirni a fjl (bittrkp) fejet.BMP: Nem tudtam kirni a fjl (bittrkp info) fejet.BMP: a wxImage-nek nincs sajt wxPalette-je.Balti (ISO-8859-13)Balti (rgi) (ISO-8859-4)Nem tallom a(z) '%s' bitmap erforrst lerst.FlkvrAls marg (mm):C lap, 17 x 22 hvelykTr&lsS&znC3 Bortk, 324 x 458 mmC4 Bortk, 229 x 324 mmC5 Bortk, 162 x 229 mmC6 Bortk, 114 x 162 mmC65 Bortk, 114 x 229 mmA CHM kezel jelenleg csak helyi fjlokat tmogat!Nem tudom ltrehozni a mutex-etNem tudom megszmolni a(z) '%s' fjlokatNem tudom megszmolni a(z) '%s' knyvtrban a fjlokatNem tudom folytatni a(z) %lu szlatNem tudom folytatni a(z) %x szlatNem tudom elindtani a szlat: hiba a TLS rsakor.Nem tudom felfggeszteni a(z) %lu szlatNem tudom felfggeszteni a(z) %x szlatNem tudom megvrni a szl befejezdstNem lehet &VisszavonniNem tudom megvizsglni a(z) '%s' kp fjl formtumt: nincs ilyen fjl.Nem tudom lezrni a(z) '%s' registry kulcsotNem tudom a nem tmogatott %d tpus rtkeket lemsolni.Nem tudom ltrehozni a '%s' registry kulcsotNem tudom ltrehozni a szlatNem tudom ltrehozni a(z) %s osztlyhoz tartoz fjltNem tudom trlni a(z) '%s' kulcsotNem tudom trlni a '%s' INI fjtNem tudom trlni a '%s' rtket a '%s' kulcsblNem tudtam megszmllni a(z) '%s' kulcs alkulcsaitNem tudtam megszmllni a(z) '%s' kulcs rtkeitNem tudom a nem tmogatott %d tpus rtkeket exportlni.Nem tallom a(z) '%s' fjlban a jelenlegi pozcitNincs informcim a '%s' registry kulcsrlNem tudom elindtani a zlib folyam tmrtst.Nem tudom elindtani a zlib folyam kifejtst.Nem tudom betlteni a kpet a(z) '%s' fjlbl: nincs ilyen fjl.Nem tudom megnyitni a(z) '%s' registry kulcsotNem tudok olvasni a(z) %s tmrtett folyamblNem tudom olvasni a folyamot, nem vrt EOF-t talltamNem tudom olvasni a(z) '%s' rtktNem tudom olvasni a(z) '%s' kulcs rtktNem tudom elmenteni a kpet a(z) '%s' fjlba: nincs ilyen kiterjeszts.Nem tudom a napl tartalmt fjlba menteni.Nem tudom a szl prioritst belltaniNem tudom a(z) '%s' rtket belltaniNem tudok rni a(z) %s tmrtett folyambaMgsemNem tudom talaktani a dialgus egysgeit; ismeretlen dialgus.Nem tudok talaktani '%s' kdolsrl!Nem tallom a(z) %s aktv telefonos kapcsolatotNem tallok trol elemet a(z) '%s' ismeretlen irnyitelemhez.Nem tallom a(z) '%s' betkszlet csompontotNem tallom a cmjegyzk fjl helytNincs prioritsi tartomny a(z) %d temezsi elrshoz.Nem ismerem a gazdagp nevtNem ismerem a gazdagp hivatalos nevtNem tudom letenni - nincs aktv telefonkapcsolat.Nem tudom inicializlni az OLEtNem tudom elindtani az SciTech MGLt!Nem tudom elindtani a megjelentst.Nem tudom betlteni az ikont '%s'-bl.Nem tudom betlteni az erforrst a(z) '%s' fjlbl.Nem tudom megnyitni a(z) %s HTML dokumentumotNem tudom megnyitni a(z) %s sg knyvetNem tudom megnyitni a(z) %s tartalom fjltNem tudom megnyitni a(z) '%s' fjlt.Nem tudom a fjlt PostScript nyomtatsra megnyitni!Nem tudom a(z) %s index fjlt megnyitniNem tudom rtelmezni a(z) '%s' tbbes szm alakotatNem tudom rtelmezni a koordintkat '%s'-bl.Nem tudom rtelmezni a dimenzit '%s'-bl.Nem tudok res oldalt nyomtatni.Nem tudom elolvasni '%s' tpusnak nevt.Nem tallom a szl temezs elrsait.Nem tudom elindtani a szlat: hiba a TLS rsakorNem tudom megvrni a szl befejezdst.Nem tudom ltrehozni a szl esemny sortKis/nagybetk klnbzekKelta (ISO-8859-14)Kzpre igaztvaKzp-eurpai (ISO-8859-2)Vlassza ki a trcszand szolgltatt (ISPt)!Vlasszon szntVlasszon bettpustBe&zrsA napl fjl trlseKattints ide a bettpus vlaszts trlshezKattints ide a bettpus vlaszts megerstshezBezrsBezrs Alt-F4Minden fjl bezrsaZrja be ezt az ablakotTmrtett HTML sg file (*.chm)|*.chm|SzmtgpKonfigurcis bejegyzs nem kezddhet '%c'-vel.MegerstsRegistry frissts megerstseKapcsolds...TartalomA '%s' jelkszlett alakts nem mkdik.tmsolva a "%s" vglapraMsolat(ok):Nem tudom ltrehozni a(z) '%s' tmeneti fjltNem tudtam kifejteni %s-t %s-be: %sNem tudtam megtallni a(z) '%s' erforrs bett fjlt.Nem tallok lapvlasztt az azonosthozNem tudtam megtallni a(z) '%s' fjlt.Nem talltam a kontroll osztlyt vagy a '%s' azonostt. Hasznljon (nem-nulla) egszt helyette vagy adja meg #define hasznlatval (lsd a kziknyvet)Nem talltam meg a(z) '%s' men azonostt. Hasznljon (nem-nulla) egszet helyette vagy adja meg #define hasznlatval (lsd a kziknyvet a rszletekrt)Nem tudom a dokument megtekintst kezdemnyezni.Nem tudom elindtani a nyomtatst.Nem tudtam adatot tvinni az ablakbaNem tudtam kinyitni a mutex-etNem tudtam mutex zrat ltrehozniNem tudok egy kpet a kpek listjhoz hozzadni.Nem tudtam idztt ltrehozniNem tudtam ltrehozni a kperny pozici mutatt.Nem tallom a(z) '%s' szimblumot a dinamikus knyvtrbanNem kaptam meg a mutatt a jelenlegi szlhozNem tudtam betlteni a PNG kpet - hibs a fjl vagy nincs elg memria.Nem tudtam betlteni hangot '%s'-bl.Nem tudtam megnyitni a(z) '%s' audiotNem tudtam regisztrlni a(z) '%s' vglap formtumot.Nem tudtam elengedni a mutex-etNem kaptam informcit a lista vezrl %d elemrl.Nem tudtam elmenteni a PNG kpet.Nem tudtam befejezni a szlatNem talltamHozzon ltre knyvtratHozzon ltre egy j knyvtrat&KivgsA jelenlegi knyvtr:Ciril (ISO-8859-5)D lap, 22 x 34 hvelykDDE adatbers nem sikerltDIB fej: A kdols nem felel meg a bitmlysgnek.DIB fej: A kpmagassg a fjl-ban > 32767 pixel.DIB fej: A kpszlessg a fjl-ban > 32767 pixel.DIB fej: Ismeretlen bitmlysg a fjl-ban.DIB fej: Ismeretlen kdols a fjl-ban.DL Bortk, 110 x 220 mmHibakeressi jelents "%s"Nem sikerlt ltrehozni a(z) '%s' knyvtrat.A hibakeressrl nem sikerlt jelentst kszteni.DekoratvAz alaprtelmezett kdolsAz alaprtelmezett nyomtatBejegyzs trlseA rgi '%s' lakat fjt trltem.AsztalA trcsz funkcik nem hasznlhatk, mert a tvoli elrs szolgltats (RAS) nincs installlva ezen a gpen. Krem installlja.Tudta n, hogy...KnyvtrakNem sikerlt ltrehozni a(z) '%s' knyvtratA(z) '%s' knyvtr nem ltezik!A knyvtr nem ltezikA knyvtr nem ltezik.rja ki az sszes index bejegyzst, ami tartalmazza az adott bejegyzst. A keress kis/nagy betre nem rzkeny.Kperny belltsi prbeszdablakAkarja, hogy trjam a fjloknl hasznlt % parancsot (csak "%s" kiterjeszts esetn)? A jelenlegi rtk %s, Az j rtk %s %1Elmentsem a(z) %s dokument vltozsait?Ne mentsd elKszKsz.Ktszeres mret japn levelezlap, elfordtott 148 x 200 mmMsodszor hasznlt azonost : %dLeE lap, 34 x 44 hvelykBejegyzs szerkesztseAz eltelt id : Adjon meg egy oldalszmot %d s %d kztt:rja be a(z) "%s" fjlt megnyit parancsot:A tallt bejegyzsekMeghv Bortk, 220 x 220 mmA krnyezeti vltozk kifejtse nem sikerlt: hinyzik '%c' a(z) %u helyen '%s'-bl.HibaHiba a knyvtr ltrehozsakorHiba a konfigurcis belltsok olvassakor.Hiba a felhasznli konfigurcis belltsok elmentsekor.Hiba trtnt a semaforra vrakozs sornHiba: Eszperant (ISO-8859-3)A becslt id : Vgrehajthat fjlok (*.exe)|*.exe|Minden fjl (*.*)|*.*||Nem sikerlt vgrehajtani a(z) '%s' parancsotNem sikerlt vgrehajtani a(z) '%s' parancsot, hibakd: %ulExecutive, 7 1/4 x 10 1/2 hvelyk'*'-ot vrtam az erforrs rtelmezse sorn. '='-et vrtam az erforrs rtelmezse sorn.'char'-t vrtam az erforrs rtelmezse sorn. Registry kulcs exportls: a fjl "%s" mr ltezik s nem rom fell.Kiterjesztett japn Unix kdlap (EUC-JP)Nem sikerlt kifejteni '%s'-t '%s'-beNem sikerlt %s a(z) %s telefonos kapcsolatbanNem sikerlt elrni a lakat fjlt.Nem sikerlt %luKb trterletet foglalni a memriatrkp adatoknak.Nem sikerlt megvltoztatni a video mdot.Nem sikerlt ltrehozni a(z) hibakeressi jelentsek "%s" knyvtrtNem sikerlt lezrni a file kezelt.Nem sikerlt lezrni a(z) '%s' lakat fjlt.Nem sikerlt lezrni a vglapot.Nem sikerlt ltrehozni a kapcsolatot: hinyzik a felhasznli nv vagy a jelsz.Nem sikerlt ltrehozni a kapcsolatot: nincs trcszhat szolgltat (ISP).Nem sikerlt lemsolni a(z) '%s' registry bejegyzstNem sikerlt lemsolni a(z) '%s' registry kulcs tartalmt a(z) '%s'-be.Nem sikerlt lemsolni a(z) '%s' fjlt '%s'-be.Nem tudtam a(z) '%s' registry kulcsot '%s'-re tmsolni.Nem sikerlt ltrehozni a DDE lncotNem sikerlt ltrehozni az MDI szl keretet.Nem sikerlt lrehozni az llapotsort.Nem sikerlt ltrehozni tmeneti fjlnevet.Nem sikerlt lrehozni a nvtelen csvet.Nem sikerlt kapcsolatot ltrehozni a '%s' kiszolglval a '%s' tmbanNem sikerlt lrehozni egr mutatt.Nem sikerlt ltrehozni a(z) "%s" knyvtratNem sikerlt ltrehozni a '%s' knyvtrat. (Rendelkezik a szksges jogosultsggal?)Nem tudtam ltrehozni registry bejegyzst a(z) '%s' fjlokra.Nem sikerlt ltrehozni a keress-helyettests prbeszd ablakot (hibakd : %d) Nem sikerlt a HTML dokumentumot %s kdolssal megjelenteniNem sikerlt kirteni a vglapot.Nem sikerlt megszmllni a video mdokat.Nem sikerlt ltrehozni tancsadi kapcsolatot a DDE kiszolglvalNem sikerlt ltrehozni a telefonos kapcsolatot: %sNem sikerlt vgrehajtani '%s'-t Nem sikerlt a curl-t vgrehajtani, krem tegye elrhetv a PATH-on.Nem tallom a(z) %s XBM erforrst. Elfelejtette hasznlni wxResourceLoadBitmapData-t?Nem tallom a(z) %s XBM erforrst. Elfelejtette hasznlni wxResourceLoadIconData-t?Nem tallom a(z) %s erforrst. Elfelejtette hasznlni wxResourceLoadBitmapData-t?Nem kaptam meg a(z) %s ISP(szolgltat) neveketNem tudtam a vglap adatot elvenni.Nem kaptam a vglaprl adatokatNem kaptam meg a helyi rendszer idt.Nem sikerlt ltrehozni a munkaknyvtrat.Nem sikerlt elindtani a GUIt: nem talltam beptett brt.Nem sikerlt elindtani az MS HTML sgt.Nem tudom elindtani az OpenGLt.Nem sikerlt megvizsglni a(z) '%s' lezr fjlt.Nem tudtam a szlhoz csatlakozni, valsznleg memria lyukat talltam - krem indtsa jra a programotNem tudtam meglni a '%d' folyamatot.Nem tudtam betlteni a(z) %d kpet a '%s' fjlbl.Nem tudtam betlteni a metafjlt a(z) '%s' fjlbl.Nem tudtam betlteni az mpr.dll-t.Nem tudtam betlteni a(z) '%s' osztott knyvtrat.Nem tudtam betlteni a(z) '%s' osztott knyvtrat, '%s' hiba miatt.Nem sikerlt lelakatolni a(z) '%s' lakat fjlt.Nem sikerlt mdostani a(z) idket '%s'-re.Nem tudtam megnyitni '%s'-t %s-knt.Nem tudtam megnyitni a(z) '%s' CHM archive fjlt.Nem tudtam megnyitni az tmeneti fjlt.Nem tudtam megnyitni a vglapot.Nem tudtam adatokat tenni a vglapra.Nem sikerlt elolvasni a PID-t a lakat fjlbl.Nem tudtam tirnytani a gyermek processz be/kimenett.Nem tudtam tirnytani a gyermek processz be/kimenettNem tudtam regisztrlni a(z) '%s' DDE kiszolgltNem tudom regisztrlani az OpenGL ablak osztlyt.Nem emlkszem a '%s' jelkszlet kdolsra.Nem tudom eltvoltani a(z) '%s' hibekeressi jelentst tartalmaz fjlt.Nem tudom eltvoltani a(z) '%s' lakat fjlt.Nem tudtam eltvoltani az elavult '%s' lakat fjlt.Nem tudtam a(z) '%s' registry rtket '%s'-re tnevezni.Nem tudtam a(z) '%s' registry kulcsot '%s'-re tnevezni.Nem tudtam adatot elvenni a vglaprl.Nem sikerlt helyrehozni a fjl idket '%s'-re.Nem sikerlt rtelmezni a RAS hibazenet szvegt.Nem tudtam meghatrozni a tmogatott vglap formtumokat.Nem tudtam elmenteni a bittrkpet a(z) '%s' fjlba.Nem sikerlt DDE tancsot kldeni.Nem tudtam a(z) '%s' FTP tviteli mdot belltani.Nem tudtam a vglap adatot belltani.Nem lehet belltani a(z) '%s' lezr fjl engedlyeitNem tudtam az tmeneti fjl engedlyeit belltani.Nem tudtam a(z) %d szl prioritst belltani.Nem tudtam a '%s' kpet a VFS memriba trolni!Nem tudtam befejezni a szlat.Nem tudtam befejezni a tancskozsi ciklust a DDE kiszolglval.Nem tudtam befejezni a(z) %s telefon kapcsolatot.Nem sikerlt megrinteni a(z) '%s't.Nem sikerlt felnyitni a(z) '%s' lakat fjlt.Nem tudtam a(z) '%s' DDE kiszolgl regisztrcijt megszntetni.Nem tudom frissteni a felhasznl konfigurcis fjljt.Nem sikerlt ltrehozni a hibakeres jelentstt (hibakd : %d) Nem sikerlt rni a(z) '%s' lakat fjlba.Vgzetes hibaVgzetes hiba:FjlA(z) '%s' file nem ltezik.A(z) '%s file mr ltezik, valban fell akarja rni?A(z) '%s file mr ltezik. Akarja fellrni?A fjlt nem tudtam betlteni.Fjl hibaMr van ilyen nev fjl.FjlokFjlok (%s)SzrKeresNem sklzhat jelkszlet:Rgztett mret bet.
bold dlt Folio, 8 1/2 x 13 hvelykJelkszlet mrete:A folyamat elgaztatsa nem sikerltElre mutat href-eket nem tudok hasznlniMegtalltam%i megfelelt talltamTl:GIF: Hibs gif index.GIF: az adatfolyam csonktottnak tnik.GIF: hiba a GIF kpformtumban.GIF: nincs elg trol.GIF: ismeretlen hiba!!!GTK+ brGenerikus PostScriptNmet brsgi leporell, 8 1/2 x 13 hvelykNmet standard leporell, 8 1/2 x 12 hvelykGetProperty hvskor nincs rvnyes fogadGetPropertyCollection generikus accessor hvsGetProperty hvskor nincs rvnyes gyjt fogadMenj visszaMenj elreMenj a dokumentum hierarchia eggyel magasabb szintjreMenj a sajt (hon) knyvtrbaMenj a szl knyvtrbaMeghatrozott oldalraGrg (ISO-8859-7)A zlib ezen vltozata nem tmogatja gzip-etHTML Help Project (*.hhp)|*.hhp|A(z) %s horgony nem ltezik.HTML fjlok (*.html;*.htm)|*.html;*.htm|Hber (ISO-8859-8)SgSg Bngsz belltsokSg tartalomjegyzkSg nyomtatsSg tmakrkSg knyvek (*.htb)|*.htb|Sg knyvek (*.zip)|*.zip|Sg: %sHazaSajt knyvtrI64ICO: Hiba a DIB maszk olvassakor.ICO: Hiba a kp rsakor!ICO: A kp tl magas az ikon szmra.ICO: A kp tl szles az ikon szmra.ICO: Hibs icon index.IFF: az adatfolyam csonktottnak tnik.IFF: hiba a GIFF kpformtumban.IFF: nincs elg trol.IFF: ismeretlen hiba!!!Nem tallom a(z) '%s' ikon erforrs lerst.Ha van erre a hibra vonatkoz egyb informcija, krem rja be ide s azt a jelentshez csatolom:Ha teljesen mellzni akarja ennek a hibajavtsi jelentsnek az elkldst, krem vlassza a "Mgsem" gombot, de krem vegye figyelembe hogy ez htrltathatja a program fejlesztst, teht ha csak lehetsges, krem folytassa a jelents ellltst. Nem rom be a "%s" rtket a "%s" kulcsba.Nyelvtani hibs erforrs fjlHibs objektum osztly (Nem-wxEvtHandler) szerepel esemny forrskntA ConstructObject mdszer hibs paramterszmot kapottA Create mdszer hibs paramter szmot kapottHibs knyvtr nv.Hibs fjl meghatrozs.A kp s a maszk mrete klnbz.Nem tudok formzott szvegkontrollt kszteni, egyszer szvegkontrollt hasznlok helyette. Krem installlja jra a riched32.dll fjltNem kapom meg a gyermek processz bemenett.Nem kapom meg a '%s' fjl engedlyeit.Nem sikerlt fellrni ni a(z) '%s' fjlt.Nem lehet belltani a '%s' fjl engedlyeit.BekezdsTartalom mutatIndiai (ISO-8859-12)Az inicializls utols fzisa nem sikerlt, kilpek.Bels hiba, hibs wxCustomTypeInfoHibs TIFF kp index.rvnytelen '%s' erforrs: nincs 'resource' csompont.Hibs megjelentsi md meghatrozs: '%s'.Hibs geometriai meghatrozs: '%s'.Hibs a(z) '%s' lakat fjl.rvnytelen vagy Null Object ID-t kapott GetObjectClassInforvnytelen vagy Null Object ID-t kapott HasObjectClassInfoHibs szablyos kifejezs '%s': %sDltOlasz bortk, 110 x 230 mmJPEG: nem tudtam betlteni - a fjl valsznleg hibsJPEG: Nem tudtam elmenteni a kpet.Ktszeres mret japn levelezlap 200 x 148 mmJapn chou bortk #3Japn chou bortk #3 elfordtottJapn chou bortk #4Japn chou bortk #4 elfordtottJapn kaku bortk #2Japn kaku bortk #2 elfordtottJapn kaku bortk #3Japn kaku bortk #3 elfordtottJapn you bortk #4Japn you bortk #4 elfordtottJapn levelezlap 100 x 148 mmJapn levelezlap 148 x 100 mm cJvhagyvaKOI8-RKOI8-UTjkpLedger, 17 x 11 hvelykBal marg (mm):Jogi extra, 9 1/2 x 15 hvelykJogi, 8 1/2 x 14 hvelykLevl extra, 9 1/2 x 12 hvelykLevl Extra Transverse 9.275 x 12 inLevl plusz, 8 1/2 x 12.69 hvelykLevl 11 x 8 1/2 hvelyk, elfordtottKismret levl, 8 1/2 x 11 hvelykLevl Transverse 8 1/2 x 11 inLevl, 8 1/2 x 11 hvelykVkonyA mutat '//'-t tartalmazott, abszolt mutatv alaktottam.A(z) %s fjl betltseBetlts : A(z) '%s' lezr fjl tulajdonosa hibs.A(z) '%s' lezr file hozzfrse hibs.A naplt a(z) '%s' fjl-ba mentettem.A hossz talaktsokat nem tmogatomMDI gyermekA MS HTML funkcik nem hasznlhatk, mert a MS HTML Help knyvtr nincs installlva ezen a gpen. Krem installlja.Ma&ximalizlKis/nagybet megklnbztetsA VFS memriban mr van '%s' fjl!MenuFm brMi&nimalizlA %ix%i-%i md nem ltezik.ModernMdostvaNem sikerlt inicializlni a "%s" modultBirodalmi bortk, 3 7/8 x 7 1/2 hvelykMozgasd lefelVidd &feljebbNvj knyvtrj bejegyzsjNvKvetkez Kvetkez oldalNemNincs XBM lehetsg!Nincs XPM ikon lehetsg!Nem talltam elemet.Nem talltam jelkszletet a(z) '%s' kdolshoz, de a vagylagos '%s' kdols elrhet. Akarja hasznlni ezt a kdolst (egybknt msikat kell vlasztania)?Nem talltam jelkszletet a(z) '%s' kdolshoz. Szeretne vlasztani egy jelkszletet ehhez a kdolshoz (klnben az e kdolssal ksztett szveg nem jelezhet ki helyesen)?A '%s', class '%s' XML csomponthoz nem talltam meghajtt!Ilyen tpus kphez nem talltam kezelt.%d tpus kphez nincs kezel meghatrozva.%s tpus kphez nincs kezel meghatrozva.Mg nem talltam egy megfelel oldaltNincs hangA kpben nincs maszkolva nem hasznlt szn.A kpben nincs nem hasznlt szn.szaki (ISO-8859-10)NormlNorml bt
and alhzva. Norml jelkszlet:Feljegyzs, 8 1/2 x 11 hvelykIgenAz objektumoknak id jellemzvel is rendelkeznik kellFjl megnyitsNyisd meg a HTML dokumentumotA(z) "%s" fjl megnyitsaEz a mvelet nincs megengedve.A(z) '%s' bellts egy rtket kr, '='-et vrtam.A(z) '%s' bellts egy rtket kr.A(z) '%s' belltsa: '%s' nem alakthat t dtumm.LehetsgekIrnyultsgPCX: nem tudtam memrit foglalniPCX: nem tmogatott kp formtumPCX: rvnytelen kpPCX: ez nem PCX fjl.PCX: ismeretlen hiba !!!PCX: tl alacsony verziszmPNM: nem tudtam memrit foglalni.PNM: Azonostalan fjl formtum.PNM: A fjl csonktottnak tnik.PRC 16K 146 x 215 mmPRC 16K elfordtottPRC 32K 97 x 151 mmPRC 32K elfordtottPRC 32K(Nagy) 97 x 151 mmPRC 32K(Nagy) elfordtottPRC Bortk #1 102 x 165 mmPRC Bortk #1 165 x 102 mm, elfordtottPRC Bortk #10 324 x 458 mmPRC Bortk #10 458 x 324 m, elfordtottPRC Bortk #2 102 x 176 mmPRC Bortk #2 176 x 102 mm, elfordtottPRC Bortk #3 125 x 176 mmPRC Bortk #3 176 x 125 mm, elfordtottPRC Bortk #4 110 x 208 mmPRC Bortk #4 208 x 110 mm, elfordtottPRC Bortk #5 110 x 220 mmPRC Bortk #5 220 x 110 mm, elfordtottPRC Bortk #6 120 x 230 mmPRC Bortk #6 230 x 120 mm, elfordtottPRC Bortk #7 160 x 230 mmPRC Bortk #7 230 x 160 mm, elfordtottPRC Bortk #8 120 x 309 mmPRC Bortk #8 309 x 120 mm, elfordtottPRC Bortk #9 229 x 324 mmPRC Bortk #9 324 x 229 mm, elfordtott%d. oldal%d. oldal (%d-bl)Oldal belltsOldal bellts OldalakPapr mretPapr mretSetObject mr regisztrlt objektumot kapottSetObjectName mr regisztrlt objektumot kapottGetObject ismeretlen objektumot kapottJogosultsgokA cs ltrehozsa nem sikerltKrem vlasszon egy rvnyes jelkszletet.Krem vlasszon egy ltez fjlt.Krem vlassza ki a ltni kvnt oldalt:Krem vlassza ki, melyik szolgltathoz (ISP) akar kapcsoldni.Krem installlja a comctl32.dll jabb verzijt (legalbb a 4.70 kellene, de nnek a %d.%02d van) vagy ez a program nem mkdik megfelelen.Krem vrjon amg nyomtatok llPostScript fjlElkp:Elz oldalNyomtatsNyomtatsi kpNyomtatsi kp hibaNyomtatsi tartomnyNyomtatsi belltsokSznes nyomtatsNyomtatsi &kpNyomtatsi el&kpNyomtats sorballtssalNyomtasd ezt az oldaltNyomtats fjlbaNyomtatNyomtat parancs:Nyomtat lehetsgekNyomtat lehetsgek:Nyomtat...Nyomtat:NyomtatsNyomtatsi hibaA(z) %d. oldalt nyomtatom...Nyomtats...A hibakeressi jelents feldolgozsa nem sikerlt, a fjlokat a(z) "%s" knyvtrban hagytam.A program rendellenesen fejezdtt be.Quarto, 215 x 275 mmKrdsOlvassi hiba a(z) '%s' fjlbanKszA ref="%s" szmmal hivatkozott objektum csompontot nem tallom!FrisstsMr ltezik a(z) '%s' registry kulcs.A(z) '%s' registry kulcs mg nem ltezik, nem tudom tnevezni.A(z) '%s' registry kulcs a normlis mkdshez szksges, annak trlse hasznlhatatlann teszi az n rendszert: a mveletet nem hajtom vgre.Mr ltezik a(z) '%s' registry rtk.A megfelel tagok:A htralev id : TrldTrld ezt az oldalt a knyvjelzk kzlA "%s" renderer verzija %d.%d nem megfelel s ezrt nem lehet betlteni.&HelyettestsdHelyettestsem &mindetHelyette:Az erforrs fjloknak azonos verziszmaknak kell lennik!Cserld vissza az elmentettreJobb marg (mm):RomanMentsA(z) %s fjl elmentse&Ments msknt...Ments mskntMentsd a napl tartalmt fjlbaScriptKeressKeresd meg a fentebb bert szveg valamennyi elfordulst a sg knyv(ek)benKeressi irnyKeress:Keress az sszes knyvbenKeresek...SzakaszokKeressi hiba a(z) '%s' fjlbanKeressi hiba a(z) '%s' fjlban (a nagy fjlokat nem tmogatja a stdio)Vlassz ki &minden fjltVlasszon dokumentum minttVlasszon dokumentum nzetetVlasszon fjltKivlasztottA(z) '%s' vlasztsi lehetsg utn elvlaszt jelet vrtam.GetProperty hvskor nincs rvnyes kldBellts...Tbb aktv telefonkapcsolatot talltam, az egyiket vletlenszeren kivlasztom.Mutatsd mindetMutasd meg a tartalom mutat valamennyi elemtMutasd meg a rejtett knyvtrokatBemutatja/elrejti az irnyt elemeketBetkszlet elkp bemutatsMretUgrsFerdeSajnlom, nem tudtam megnyitni a fjlt mentsre.Sajnlom, nem tudtam megnyitni ezt a fjlt.Sajnlom, nem tudtam elmenteni ezt a fjlt.Sajnlom, nincs elg memria az elkp ltrehozshoz.Sajnlom, a nyomtatsi elkphez lltson be egy nyomtatt.Sajnlom, ezt a fjl formtumot nem ismerem.A hang adat ismeretlen formtumban van.A(z) '%s' hang fjl ismeretlen formtumban van.Bejelents, 5 1/2 x 8 1/2 hvelykllapot:llapot: Kldemnyek soros trolsa mg nem sorostott objektumok szmra mg nem tmogatottSzveget sznn: Helytelen szn meghatrozs '%s'Szveg talaktst nem tmogatokA(z) '%s' alosztlyt nem talltama(z) '%s' erforrshoz, nem tudom hasznlni!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSvjciTIFF knyvtr hiba.TIFF knyvtr figyelmeztets.TIFF: Nem tudtam memrit foglalni.TIFF: Hiba a kp betltsekor.TIFF: Hiba a kp olvassakor.TIFF: Hiba a kp elmentsekor.TIFF: Hiba a kp rsakor.Tabloid Extra 11.69 x 18 inTabloid, 11 x 17 hvelykTeletypeMintkThai (ISO-8859-11)Az FTP kiszolgl nem tmogatja a passzv mdot.Az FTP kiszolgl nem tmogatja a PORT parancsot.A(z) '%s' jelkszlet ismeretlen.Vlaszthat msik kszletet ennek helyettestsre vagy [Mgsem]-t ha nem helyettesthetA(z) '%d' vglap formtum nem ltezik.A '%s' knyvtr nem ltezik. Ltrehozzam most?A(z) '%s' fjlt nem sikerlt megyitni. A legutbb hasznlt fjlok listjrl is el van tvoltva.A(z) '%s' fjl nem ltezik s nem nyithat meg. A legutbb hasznlt fjlok listjrl is el van tvoltva.A betkszlet szne.A betkszlet csaldja.A jelkszlet mrete.A betkszlet stlusa.A betkszlet hangslya.A(z) '%s' tvonal tl sok ".."-t tartalmaz!A jelents az albb felsorolt fjlokat tartalmazza. Ha a fjlok valamelyike magnjelleg informcit tartalmaz, szntesse meg a kijellst ls az nem fog szerepelni a jelentsben. A szksges '%s' paramter nincs megadva.A szveget nem tudom elmenteni.A(z) '%s' bellts rtkt meg kell adni.Az ezen a gpre installlt tvoli hozzfrsi lehetsg (RAS) tl rgi, krem frisstsen (A(z) %s szksges funkci hinyzik).Az oldal belltsakor hiba trtnt: lehet hogy az alaprtelmezett nyomtatt kellene belltania.Ez a rendszer nem tmogatja a dtumkiolvas egysget, krem frisstse a comctl32.dll-t.A szl modul inicializlsa nem sikerlt: nem tudok rtket trolni a szl helyi troljbaA szl modul inicializlsa nem sikerlt: nem sikerlt a szlhoz kulcsot kszteniA szl modul inicializlsa nem sikerlt: nem lehet indexet foglalni a szl helyi troljbanA szl priorits belltst elhanyagoltam.Csempk &VzszintesenCsempk &FgglegesenIdkifuts az FTP kiszolglhoz val kapcsoldskor, prblja meg a passzv mdot.Az idzts ltrehozsa nem sikerltA Nap TippjeNincsenek tippek, sajnlom!Ig:Tl sok szn a PNG-ben, a kp kicsit homlyos lehet.Fels marg (mm):Megprbltam eltvoltani a(z) '%s' fjlt a VFS trolbl, de nincs betltve!Megprbltam feloldani a NULL gazdagp nevet: feladomTrk (ISO-8859-9)TpusA tpust enum-rl long-ra kell alaktaniUSA standard leporell, 14 7/8 x 11 hvelykNem tudom megnyitni a krt %s HTML dokumentumot.Nem tudok aszinkron mdon hangot jtszani.Trls visszaVratlanul vget rt a fjl az erforrs rtelmezse sorn. Vratlan '%s' paramterUnicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Ismeretlen DDE hiba %08xGetObjectClassInfo ismeretlen objektumot kapottIsmeretlen dinamikus knyvtr hibaIsmeretlen (%d) kdolsIsmeretlen hossz opci '%s'Ismeretlen opci '%s'Ismererlen stlus jelIsmeretlen tulajdonsg %sPratlan '{' a(z) %s mime tpus egyik elemben.Nv nlkli parancs%s: Ismeretlen stlus az erforrs rtelmezse sorn.Nem tmogatott vglap formtum.A(z) '%s' br nem tmogatott.FelHasznlat: %srvnyessgi tkzsVideo kimenetA fjlok bemutatsa rszletezveA fjlok bemutatsa lista szerenNzetekNem sikerlt megvrni az alprocessz befejezdstFigyelmeztetsFigyelmeztets: Figyeleztets: res veremtrolbl prbl eltvoltani HTML kifejezs kezelt.Nyugat-eurpai (ISO-8859-1)Nyugat-eurpai Euro-val (ISO-8859-15)Hogy alhzza-e a betket.Egsz szCsak egsz szavakWin32 brWin32s a Windows 3.1-enWindows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arab (CP 1256)Windows Balti (CP 1257)Windows Kzp-eurpai (CP 1250)Windows egyszerstett knai (CP 936)Windows hagyomnyos knai (CP 950)Windows Orosz (CP 1251)Windows Grg (CP 1253)Windows Hber (CP 1255)Windows japn (CP 932)Windows koreai (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Thai (CP 874)Windows Trk (CP 1254)Windows Nyugat-eurpai (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Irsi hiba a(z) '%s' fjlbanXML rtelmezsi hiba: '%s' a(z) %d sorbanXPM: Hinyos pixel adat!Nem tallom a(z) '%s' XRC erforrst ('%s' osztly).XRC erforrs: Nem tudom ltrehozni a(z) '%s'-bl a bittrkpet.XRC erforrs: Helytelen szn meghatrozs '%s' a '%s' tulajdonsgnl.IgenNem tud knyvtrat hozzadni ehhez a szakaszhoz.&Nagyts&Kicsinyts&Ablakmret nagyts[RES]a DDEML alkalmazs meghosszabtott versenyhelyzetet teremtett.egy DDEML fggvnyt hvott anlkl, hogy elszr a DdeInitialize fggvnyt hvta volna, vagy rvnytelen instance azonostt adott t a DDEML fggvnynek.nem sikerlt az gyfl prblkozsa a prbeszd ltrehozsra.a memria lefoglalsa nem sikerlt.a paramtert nem sikerlt rvnyesttetni a DDEML-lel.a szinkron tancskrsi tranzakci nem fejezdtt be idre.a szinkron adatkrsi tranzakci nem fejezdtt be idre.a szinkron vgrehajts krsi tranzakci nem fejezdtt be idre.a szinkron adatleraks krsi tranzakci nem fejezdtt be idre.a tancskozsi tranzakci befejezsnek krse nem fejezdtt be idre.a kiszolgl olyan prbeszdben ksrelt meg tranzakcit vgrehajtani amelyiket az gyfl mr befejezett, vagy a kiszolgl a tranzakci befejezse eltt kilpett.sikertelen tranzakci.altegy APPCLASS_MONITOR-knt inicializlt alkalmazs DDE tranzakcit prblt vgezni, vagy APPCMD_CLIENTONLY-knt inicializlt alkalmazs prblt meg kiszolgl tranzakcit vgezni.egy bels PostMessage fggvnyhvs nem sikerlt. bels hiba trtnt a DDEML-ben.rvnytelen azonostt adott t a DDEML fggvnynek. Ha az alkalmazs visszatrt egy XTYP_XACT_COMPLETE visszahvsbl, a tranzakci azonostja erre a hvsra mr nem rvnyes.azt hiszem ez egy tbb-rszes zip egyms utn pakolvaelhanyagoltam a vltoztathatatlan '%s' kulcs megvltoztatsra tett ksrlett.hibs argumentumok a knyvtri fggvnybenhibs alrshibs zip-fjl offsetbinrisflkvra puffer tl kicsi a Windows knyvtr szmra.nem tudom lezrni a(z) '%s' fjlt.nem tudom lezrni a(z) %d fjl lertnem tudom rvnyre juttatni a(z) '%s' fjl vltozsaitnem tudom ltrehozni a(z) '%s' fjl-tnem tudom trlni a(z) '%s' felhasznli konfigurcis fjltnem tudom meghatrozni, hogy a fjl vgt rtk-e el a(z) %d lerval megadott fjlbanNem sikerlt vgrehajtani '%s'-tnem tallom a f knyvtrat a zip-bennem tudom meghatrozni a fjl hosszt a(z) %d lerval megadott fjlbannem tudom meghatrozni a felhasznl sajt knyvtrt, a jelenlegit hasznlom tovbb.nem tudom kirteni a(z) %d lerval megadott fjl puffertnem tallom a keressi pozcit a(z) %d lerval megadott fjlbanegyetlen jelkszletet sem tudok betlteni, kilpeknem tudom megnyitni a(z) '%s' fjltnem tudom megnyitni a(z) '%s' globlis konfigurcis fjlt.nem tudom megnyitni a(z) '%s' felhasznli konfigurcis fjlt.nem tudom megnyitni a felhasznl konfigurcis fjljt.Nem tudom megkezdenii a zlib folyam kifejtst.Nem tudom elindtani a zlib folyam tmrtst.nem tudok olvasni a(z) %d lerval megadott fjblnem tudom eltvoltani a(z) '%s' fjltnem tudom eltvoltani a(z) '%s' tmeneti fjltnem tudok keresni a(z) %d lerval megadott fjlbannem tudom a mgneslemezre rni a(z) '%s' puffert.nem tudok rni a(z) %d lerval megadott fjbanem tudom rni a felhasznl konfigurcis fjljt.a(z) '%s' domn konfigurcis fjljt nem tallom.hibs ellenrz sszegtmrtsi hibanem sikerlt 8 bites kdolsv alaktanictrldtumkifejtsi hibaalaprtelmezsa delegltnak nincs tpus jelzsea folyamat llapotnak (binris) nyomtatsatizennyolcadiknyolcadiktizenegyedika(z) '%s' elem egynl tbbszr jelenik meg a(z) '%s' csoportbanadatformtum hibahiba '%s' megnyitsakorfjl megnyitsi hibahiba a zip f knyvtr olvassakorhiba a zip loklis fejrsznek olvassakorhiba a(z) '%s' zip adat rsakor: hibs crc vagy hosszmegalapoznem sikerlt kirteni a(z) '%s' fjl pufferttizentdiktdik'%s' fjl, %d. sor: '%s' -t elhanyagoltam a csoport fejlce utn.'%s' fjl, %d. sor: '=' -t vrtam.'%s' fjl, %d. sor: a(z) '%s' kulcsot elszr a(z) %d sorban talltam meg.file '%s', line %d: a vltoztathatatlan '%s' kulcs j rtkt elhanyagoltam.'%s' fjl: a(z) %c nem vrt jel a(z) %d sorban.elsJelkszlet mrettizennegyediknegyedikkszts bbeszd naplbejegyzseket hibs esemnykezel szveg, a pont hinyzikkezdemnyezrvnytelen eof() visszatrsi rtk.rvnytelen zenet ablak visszatrsi rtkHibs zip fjl.dltvkonyA(z) '%s' helyi vltoz nem llthat be.keresem a(z) '%s' katalgust a(z) '%s' elrsi ton.jfltizenkilencedikkilencediknincs DDE hiba.nincs hibanvtelendlnumaz objektumoknak nem lehet XML szveg csompontjuknincs elg trol.a folyamat jellemzinek lersaolvass hibaolvasoka zip folyam olvassa ( a(z) %s adat): hibs crca zip folyam olvassa ( a(z) %s adat): hibshosszjrabelpsi problma.msodikkeressi hibatizenhetedikhetedikeltolmutassa meg ezt az zenetet a sgbantizenhatodikhatodikjellje ki a hasznland megjelentsi mdot (pl.. 640x480-16)jellje ki a hasznland brta Zip fejrszben nincs meg a trolt fjl hosszastrtizedika tranzakci eredmnyeknt a DDE_FBUSY bit belltdott.harmadiktizenharmadiktiff modul: %smaholnaptizenkettedikhuszadikalhzottvratlan " a(z) %d pozciban, a(z) '%s' fjlban.ismeretlenismeretlen osztly: %sismeretlen hibaismeretlen hiba (hiba kd %08x).ismeretlen sorhatrolismeretlen keressi kezdpontismeretlen-%dnvtelennvtelen%dnem tmogatott Zip tmrtsi mdszera(z) '%s' katalgust hasznlom (a(z) '%s' kzl).rsi hibakirswxGetTimeOfDay hibt eredmnyezett.wxSocket: rvnytelen alrs ReadMsg-ben.wxSocket: ismeretlen esemny.a wxWidgets nem tudott kpernyt nyitni '%s' szmra: kilps.A wxWidgets nem tudott kpernyt nyitni. Kilps.tegnapzlib hiba %d|<<wxMaxima-13.04.2/locales/wxwin/it.mo000644 000765 000024 00000140407 11670654443 017651 0ustar00andrejstaff000000 000000 l*8&89 9)9<9E 9a 9m9w9 999999 : : :':4:G:M:`:x::::::::; ;' ;-;7;F;X;g;|;; ;; ; ; ;;<<<* =]=y'= =1==&> >/>;T>A>>>> >>">? ????5?: ?A ?M?[ ?p ?~???????<@@?"@O @r @| @@#@%@@1A#A6#AZA~@AAABB2B%8BXAB(B'BHC$1Cm1CCCCD>D%Dd Di DtDD2D$D%E)E+EU>En EEE0EFF$F,FAFHFZFlFF"FFFGGG(G1GI GQG_GqGGGGGG H H H*H5 HI HW Hd/HnHH.H(H I II(I?(IT I} IIIII%II I JJ JJ%J:JLJ^"J~JJ JJ JJJ(KK:KIK[ KqK}K)KKKLL/LOLk LpL} L!LLL LLLL$M7M%3M]MM,MMMM+M3N)N],Nl,N'NNNO O$O/O5OU OZ OhOrOzO~OsOOPP2PQPpPv P}&P$P P!P"QnQ' Q QQ QQ)Q R R R%R/RMR]R|RRRR RRRRR RS SS-S? SRS_ SnSxSSSS SS"ST T%T0T@TV?TeTTTT)TWU&U~UU UUUUVVVVV V6VCV\Vd VmV{dVV%W W1W<WLW[WrWW1W3W X XX$X5 X= XHXT X\ Xg XsXX X X XX#X Y YY%Y+Y: YBYMYVY_YqYYY YY YYZZZ1Z7Z?ZDZLZ^ ZuZ Z"Z4Z Z[ [+[+ [W[b[v![[[[[\ \!\8 \?\I\X \k\\\ \:\]3]M]^ ]n]x ]] ]]]^^^23^P^*^^^ ^!_ )_,_V__ _r _,__'__`!`$ `F`P`V`e`` ` `` ``#a2a)a\ana0a1aa bb)b;8bQAbbbbbbcc)c@c[ccci cpc{ c c cccccccc#c dBd:d}d d d]deeef>`fg)g@gWglggg gggggh+h h> hH hRh]hehy,iTiojjYk2krllm|m m m mm mmm m mm m n nnn$n4 n9 nDnN n_nkn{nn nnnnn n nno ooo/ o5o?oGoP oUo_ oeor owo oo ooo o oo o oooo ppp2 pCpQpbptpp pp pp pp pp pqq qqqq!q' q.q8q? qH qS q` qkquqy qqqq qq qq q qq qr rrrr(r.r5r; rDrQDrhrCs1bsustu+lu:uuuvn vu<v/www x$x xAxOxXxhxxxxxx xy yy% y6y@y\yvyyyyyyyzzz; zB zOz\zozzzzz z zz{{{0{G{W {w{ {{{{ { {|||:|V |e|r|-|#|#|0}}D3}Z},}}}X}~A~I~g ~y ~ ~&~~~~~ ~~ ~ 3L alI;-O} &)4!&V%} G )<E:Y7@3 4AWv89AYlG &;G.(69DL!42 1=S[p%/#@Vlu #*?F f q~ 0 7"7Z), * 8C"Jmu/ +$?.d -?Qe y!0(#$<(a3 + '!IR [gx)58#'-6dl3;E'7m1 *!3U[ k u y/ )<$f$ ;4K2[3N_g w.  ! #BKS W3a .GY j v!#*E M[nE +7bc4;QWZa#f jW+o /9C}  *BSbq$   !!C\ c m#y 'BT n5|E@1r'36Vl;&(=f'K.BWl !%0EV5%)#O.s 310 b% !# > JVs)F%;>P@$ #E=I # 3Lirx ~   @-SH(y)w4#O,s$  'AX.g :7Y"|{   ' / = IU]o u    2 = KY hv        + >JYas    /:KTg o}     * 8D K Weh q {    O pTkYlk~ @sq%ahCg.KnoAeF2ZN)-/Xlya5V9hSv1j]1s+(;fWL&*,MO9  OX3V0"g=z~GhA&`$b4z`Bi}Nji5Z)R'"2/.+Gty0I*R2PPWs>:w\HcYF|Embrx-IDwKMxze/3CN >wL(O;SUJ9uB(IL`#  k$& *trVT]fQTUEW_[\\l+?C k~7n P| YF# S[%{^#uQ=d?1 lXb}QrJ!o0uik@cR}c[pp^Z yHtG T6{{H?K-m4! U8<"gfM8ed4 p,oE=8 v:j $7nA. 5'~^6d|<%)_D<D'qq;3,>YJ:6!mB7]xva_@ << Expression too long to display! >>&Algebra&Apply to list ...&Apropos&Boundary value problem ...&Bug report&Calculus&Canonical form&Characteristic polynomial ...&Clear memory&Combine factorials&Complex simplification&Continued fraction&Copy&Delete selection&Demoivre&Describe Ctrl-H&Determinant&Differentiate ...&Edit&Edit input Ctrl-E&Eliminate variable ...&Enter matrix ...&Example&Expand expression&Expand trigonometric&Exponentialize&Export to HTML&Factor expression&File&Generate matrix ...&Greatest common divisor ...&Help&Input F7&Integrate ...&Interrupt Ctrl-G&Invert matrix&Load package Ctrl-L&Map to list ...&Maxima&Modulus computation ...&Monitor file&Numeric&Open Ctrl-O&Plotting&Print Ctrl-P&Re-evaluate input Ctrl-R&Reduce trigonometric&Restart maxima&Roots of polynomial (real)&Save Ctrl-S&Section Ctrl-F6&Simplify&Simplify expression&Simplify factorials&Simplify trigonometric&Solve ...&Text F6&Transpose matrix&Trigonometric simplification(Use default language)A&t value ...AboutAbout wxMaximaAd&joint matrixAdd a directory to search pathAdd algebraic e&quality ...Add dir to path:Add equality to the rational simplifierAdd to &pathAdditional parameters for maxima (e.g. -l clisp).Additional parameters:Adjustment for the size of greek font.Adjustment:All|*All|*|Maxima package (*.mac)|*.mac|Demo file (*.dem)|*.dem|Lisp file (*.lisp)|*.lispApplyApply function to a listApply function:AproposAt point:AtvalueAutoload a file when it is updatedBC2BackgroundBasicBat files (*.bat)|*.bat|All|*BoldBrowseBuild &infoButton panel:C&hange variable ...C&lear screenC&onfigureCalculate &product ...Calculate modulus:Calculate productsCalculate su&m ...Calculate sumsCancelChange &2d displayChange the 2d display algorithm used to display math output.Change variableChange variable in integral or sumChar polyChar poly of:Choose fontColumns:Combine factorials in an expressionCompute continued fraction of a valueCompute the adjoint maxrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Configuration warningConfigure wxMaximaConstantContract logarithmsConver trigonometric functions to exponential formConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &factorialsConvert to &gammaConvert to &polarformConvert to &rectformConvert trigonometric expression to canonical quasilinear formCopyCopy &textCopy as imageCopy selectionCopy selection from consoleCopy selection from console (including linebreaks)Copy selection from console as imageCopy selection from console to a fileCopy selection from console to input lineCopy selection on selectCopy selection to clipboard when selection is made in console.Copy textCutCut selection from consoleDecompose rational function to partial fractionsDecrease fontsize in consoleDefaultDefinite integrationDeleteDelete a functionDelete a variableDelete all values from memoryDelete f&unctionDelete function(s):Delete selected input/output groupDelete selectionDelete the contents of console.Delete v&ariableDelete variable(s):DescribeDi&vide polynomials ...Diff...DifferentiateDifferentiate ...Differentiate expressionDisplay Te&X formDisplay algorithmDisplay expression in TeX formDisplay time used for executionDivideDivide numbers or polynomialsE&quationsE&xit Ctrl-QEdit inputEdit selected inputEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter a matrixEnter an equation for rational simplification:Enter comma separated list of variables.Enter commandEnter matrixEnter new plot format:Enter new precision:Enter the path to the maxima executable.Equation %d:Equation:ErrorError opening fileError!Evaluate &noun formsEvaluate all noun forms in expressionExampleExample textExit wxMaximaExpandExpand (tr)Expand an expressionExpand expressionExpand logarithmsExpand trigonometric expressionExport console output to HTML fileExport to HTML fileExporting to HTML failed!ExpressionExpression(s):Expression:FactorFactor an expressionFactor an expression in Gaussian numbersFactor complexFactor expressionFactorials and &gammaFatal errorFind &limit ...Find a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind eigenvalues of a matrixFind eigenvectors of a matrixFind real roots of a polynomialFixed font in text controlsFontFont family:Font size in console window.Font size:Font used for display in console.Format:FrenchFrom array:From equations:FullFunctionFunctions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGenerate MatrixGenerate a matrix from a 2-dimensional arrayGermanGet &imaginary partGet &series ...Get Laplace transformation of an expressionGet inverse Laplace transformation of an expressionGet real p&artGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGo to input F4Go to output window F3Greek constantsGreek fontGrid:HTML file (*.html)|*.html|All|*HelpHidden groupsHighlightI&nsertIC1IC2INPUT:If you want to input more than one line at a time, use the 'Multiline input' button at the right of the input line.Increase fontsize in consoleInfo about maxima buildInitial value problem (&1) ...Initial value problem (&2) ...InputInsertInsert inputInsert new input before selected inputInsert section before selected inputInsert textInsert text before selected inputInsert title before selected inputInstead of typing a long pathname of a file to input line, you can select that file using 'File->Select file'.Integral/sum:IntegrateIntegrate (risch)Integrate ...Integrate expressionIntegrate expression with Risch algorithmIntegrate...Integrate:InterruptInterrupt current computationInverse LaplaceInverse Laplace t&ransform ...ItalianItalicLCMLabelsLanguage used for wxMaxima GUI.Language:LaplaceLaplace &transform ...Least common multiple ...LimitLimit of:Limit...Load a maxima package fileLong input Ctrl-IMa&p to matrix ...Main promptsMake &list ...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMap function:Map...Match parenthesis in text controlsMatrixMatrix mapMaxima &help F1Maxima is calculatingMaxima optionsMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima sessionMaxima session (*.wxm)|*.wxmMaxima started. Waiting for connection...Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').ModulusMultiline inputNot a valid matrix dimension!Not a valid number of equations!Number of equations:NumbersNumerical integrationNusumOKOffOpenOpen multiline input dialogOpen sessionOpen session from a fileOptionsOptions:Other promptsP&ade approximation ...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesParametricParametric plotParsing outputPartial &fractions ...Partial fractionsPastePaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d ...Plot &3d ...Plot &format ...Plot 2DPlot 2D...Plot 2d ...Plot 3DPlot 3D...Plot 3d ...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Polynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*Power seriesPrecisionPrintPrint documentProductProduct...Product:RationalRe-evaluate inputRe-evaluate selected inputReading maxima outputReady for user inputRectformReduce (tr)Reduce trigonometric expressionReport bugRestart maximaRisch integration ...Roots of &polynomialRows:RussianSaveSave asSave plot to fileSave selection to fileSave sessionSave session to a fileSave to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.Select &fileSelect a constantSelect a fileSelect a file (copy filename to input line)Select allSelect file to openSelect last input F2Select last input in the console!Select math display algorithmSelect maxima programSelect package to loadSelection to imageSelection to input F5Send ranges to gnuplotSeriesSeries...Server startedSet &precision ...Set fixed font in text controls.Set focus to the input lineSet focus to the output windowSet plot formatSet the floating point precisionSetup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &definitionShow &functionsShow &tipShow &variablesShow a tipShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow initial header with maxima system information.Show long expressionsShow long expressions in wxMaxima console.Show maxima headerShow maxima helpShow the definition of function:Show the description of a commandShow the description of command/variable:SimplifySimplify &radicalsSimplify (r)Simplify (tr)Simplify an expression containing factorialsSimplify expressionSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve &ODE ...Solve &algebraic system ...Solve &linear system ...Solve &numerically ...Solve ...Solve ODESolve ODE with Lapla&ce ...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve equation(s):Solve equation:Solve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve numericallySolve numerically ...Solve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStarting maxima process failedStarting maxima...Starting server failedStarting server on port %dStringsStyleStylesSubstituteSubstitute ...Substitute...Substitute:SubstitutionSumSum of:Sum...T&itle Ctrl-Shift-F6Taylor series:TellratTextThe bigfloat value of an expressionThe float value of an expressionThere was an error in generated XML! Please report this as a bug.Ticks:Tips not available, sorry!To &bigfloatTo &floatTo enter a matrix A, type 'A : ' to input line and select 'Algebra->Enter matrix' from menus.To floatTo plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.To put parenthesis around an expression you previously typed into the input line, select the expression with mouse and then type '('.To repeat a long command you previously entered in the input line, type in the first few letters to the input line and then pres tab key.To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.Toggle &algebraic flagToggle &numeric outputToggle &time displayToggle algebraic flagToggle numeric outputTranspose a matrixType:UnderlinedUnfoldUnfold all folded groupsUse Gosper algorithmUse Taylor seriesUse greek fontUse greek font to display greek characters.Variable:VariablesVariables:WarningWelcome to wxMaximaWhen applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, enter it into the input line. You can also select a previous (sub)expression for this value.Write matching parenthesis in text controls.You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.You can delete output/input group if you select the input label and choose 'Edit->Delete selection' from menus.You can hide the output by clicking on the output label. Clicking on the input label hides input and output. Clicking on the label again, shows hidden expressions.You can load a file into maxima by dragging it from a file browser to the console window.You can load files into maxima if you drop them on the console window. You can select a custom function for loading your file. If your custom function is 'A:read_matrix(%file%, csv)', then %file% will be replaced with the filename of your file.You can select the output of maxima in wxMaxima console with mouse and copy it to the clipboard with 'Edit->copy'.You can use the maxima tex command to print the expression in TeX form. Then you can copy it to text editor to include it in you paper.Zoom &in Alt-IZoom ou&t Alt-O[ unsaved ]antisymmetricaquamarinearound:at point:blackblueblue violetboth sidesbrownby variable:cadet bluechange var:coralcornflower bluecyandark greendark greydark olive greendark orchiddark slate bluedark slate greydark turquoisedefaultdenom deg:depth:diagonaldim greyeliminate variables:equation:firebrickfor function(s):for variable(s):forest greenfrom expression:from:function:generalgoes to:goldgoldenrodgreengreen yellowgreyhas value:height:in variable:in:indian redkhakileftlight bluelight greylight steel bluelime greenlower bound:magentamaroonmedium aquamarinemedium bluemedium forrest greenmedium goldenrodmedium orchidmedium sea greenmedium slate bluemedium spring greenmedium turquoisemedium violet redmidnight bluenavynew variable:num deg:old variable:orangeorange redorchidpale greenpinkplumpm3dpurpleredrightsalmonsea greensiennasky blueslate bluespring greensteel bluesymmetrictanthe derivative is:the value is:thistletimes:to list:to matrix:to:turquoiseuntitleduntitled.wxmupper bound:variablevariable:violetviolet redwheatwhen variable:whitewidth:with:wxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find help files. Please check your installation.wxMaxima could not find maxima! Please configure wxMaxima with 'Edit->Configure'. Then start maxima with 'Maxima->Restart maxima'.wxMaxima could not find tip files. Please check your installation.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima dialogs set default values for inputs entries, one of which is '%'. To change this argument to some other value, enter it to the input line or select an expression in the console window.wxMaxima has nice plot dialogs. If you want to modify previous plot commands, access them using command history and then push the plot button.wxMaxima inputwxMaxima is a wxWidgets interface for the computer algebra system MAXIMA. Version: %s. License: GPL. %s %swxMaxima optionswxMaxima session (*.wxm)|*.wxmwxMaxima's input line has command history available using up and down keys and command completion based on previous input available using the tab key.yellowyellow greenProject-Id-Version: wxMaxima Report-Msgid-Bugs-To: POT-Creation-Date: 2006-08-09 20:02+0200 PO-Revision-Date: 2006-10-27 00:30+0200 Last-Translator: Marco Ciampa Language-Team: Italian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit << Espressione troppo lunga da visualizzare! >>&Algebra&Applica all'elenco ...&ApropositoPro&blema del valore al contorno ...Rapporto &bug&CalcoloForma &canonicaPolinomio &caratteristico ...&Cancella la memoria&Combina i fattorialiSemplificazione &ComplessaFrazione &continua&Copia&Elimina la selezione&Demoivre&Descrivi Ctrl-H&Determinante&Differenzia ...&ModificaModifica l'ingr&esso Ctrl-E&Elimina la variabile ...Ins&erire la matrice ...&Esempio&Espandi l'espressione&Espandi trigonometrica&Esponenzializza&Esporta in HTMLScomponi in &fattori&File&Genera la matrice ...&Massimo comun denominatore ...&Aiuto&Ingresso F7&Integra ...&Interrompi Ctrl-G&Inverti la matriceCarica i&l pacchetto Ctrl-L&Mappa in un'elenco ...&MaximaCalcolo &modulo ...Co&ntrolla file&Numerico&Apri Ctrl-A&DisegnoStam&pa Ctrl-P&Ri-elabora l'ingresso Ctrl-R&Riduci trigonometrica&Riavvia maxima&Radici del polinomiale (reali)&Salva Ctrl-S&Sezione Ctrl-F6&Semplifica&Semplifica l'espressione&Semplifica fattoriali&Semplifica trigonometricaRis&olvi ...&Testo F6&Trasponi la matriceSemplificazione &trigonometrica(usa la lingua predefinita)A&l valore ...InformazioniInformazioni su wxMaximaMatrice ag&giuntaAggiungi una directory al percorso di ricercaAggiungi &uguaglianza algebrica ...Aggiungi una directory al percorso:Aggiungi uguaglianza al semplificatore razionaleAggiungi al &percorsoParametri aggiuntivi per maxima (per es. -l clisp).Parametri aggiuntivi:Aggiustamento per l'ampiezza del font greco.Aggiustamento:Tutti|*Tutti|*|Pacchetto Maxima (*.mac)|*.mac|File demo (*.dem)|*.dem|File lisp (*.lisp)|*.lispApplicaApplica funzione ad un elencoApplica funzione:ApropositoAl punto:Al valoreAutocaricamento del file se modificatoBC2SfondoBaseFile bat (*.bat)|*.bat|Tutti|*GrassettoNaviga&Informazioni sulla compilazionePannello pulsanti:Cambia la &variabile ...Cancel&la lo schermoC&onfiguraCalcola il &prodotto ...Calcola il modulo:Calcola i prodottiCalcola la so&mma ...Calcola le sommeAnnullaCambia la finestra &2dCambia l'algoritmo della finestra 2D usato per visualizzare il risultato.Cambia la variabileCambia variabile nell'integrale o nella sommaPolin. caratt.Polin. caratt. di:Scegli fontColonne:Combina i fattoriali in un'espressioneCalcola la frazione continua di un valoreCalcola la matrice aggiuntaCalcola la polinomiale caratteristica di una matriceCalcola il determinante di una matriceCalcola il massimo comun denominatoreCalcola l'inversa di una matriceCalcola il minimo comune multiplo (esegui load(functs) prima di usarlo)Avvertenze di configurazioneConfigura wxMaximaCostanteContrai i logaritmiConverti le funzioni trigonometriche in forma esponenzialeConverti binomiali, funzioni beta e gamma in fattorialiConverti binomiali, fattoriali e funzione beta in funzione gammaConverti l'espressione complessa nella forma polareConverti l'espressione complessa nella forma normaleConverti la funzione esponenziale dell'argomento immaginario nella forma trigonometricaConverti il logaritmo del prodotto in somma di logaritmiConverti la somma dei logaritmi in logaritmo del prodottoConverti in &fattorialiConverti in &gammaConverti in forma &polareConverti in forma no&rmaleConverti l'espressione trigonometrica nella forma canonica quasilineareCopiaCopia il &testoCopia come immagineCopia la selezioneCopia la selezione dalla consoleCopia la selezione dalla console (inclusi i ritorni a capo)Copia la selezione dalla console come immagineCopia la selezione dalla console su fileCopia la selezione dalla console sulla riga d'ingressoCopia la selezione negli appunti se selezionata col mouseCopia la selezione sugli appunti quando viene effettuata in console.Copia il testoTagliaTaglia la selezione dalla consoleDecomponi la funzione razionale in frazioni parzialiRimpicciolisci il carattere nella finestra consolePredefinitoIntegrazione definitaEliminaElimina una funzioneElimina una variabileCancella tutti i valori dalla memoriaElimina una f&unzioneElimina le funzioni:Elimina i gruppi di ingresso/uscita selezionatiElimina la selezioneElimina il contenuto della console.Elimina la v&ariabileElimina le variabili:DescriviDi&vidi le polinomiali ...Diff...DifferenziaDifferenzia ...Differenzia l'espressioneMostra in Te&XMostra l'algoritmoMostra l'espressione in formato TeXMostra il tempo impiegato per l'esecuzioneDividiDividi i numeri o i polinomialiE&quazioni&Esci Ctrl-QModifica l'ingressoModifica l'ingresso selezionato&AutovettoriAuto&valoriAnnullaAnnulla una variabile da un sistema di equazioniIngleseInserisci una matriceInserire un'equazione per la semplificazione razionale:Inserire un'elenco di variabili separate dalla virgola.Inserire comandoInserire la matriceInserire un nuovo formato per il grafico:Inserisci nuova precisione:Inserire il percorso dell'eseguibile maxima.Equazione %d:Equazione:ErroreErrore durante l'apertura del fileErrore!Valuta le forme &nominaliValuta tutte le forme nominali nell'espressioneEsempioEsempio di testoEsci da wxMaximaEspandiEspandi (tr)Espandi un'espressioneEspandi l'espressioneEspandi i logaritmiEspandi l'espressione trigonometricaEsporta l'uscita della console in un file HTMLEsporta su un file HTMLEsportazione su HTML fallita!EspressioneEspressioni:Espressione:FattoreFattore di un'espressioneFattore di un'espressione di numeri GaussianiFattore complessoScomponi in fattoriFattoriali e &gammaErrore fataleTrova il &limite ...Trova il limite di un'espressioneTrova la radice di un'equazione in un intervalloTrova tutte le radici di una polinomialeTrova gli autovalori di una matriceTrova gli autovettori di una matriceTrova le radici reali di una polinomialeCarattere di ampiezza fissa nei controlli di testo.CarattereFamiglia del carattere:Grandezza carattere nella finestra console.Grandezza carattere:Carattere usato nella finestra console.Formato:FranceseDall'array:Dalle equazioni:AvanzatoFunzioneFunzioni per la semplificazione complessaFunzioni per semplificare fattoriali e funzione gammaFunzioni per semplificare le espressioni trigonometricheMCDGenera matriceGenera una matrice da un array bidimensionaleTedescoCalcola la parte &immaginariaRicava le &serie ...Calcola la trasformata di Laplace di un'espressioneCalcola la trasformata inversa di Laplace di un'espressioneCalcola la p&arte realeCalcola la serie di Taylor o la serie di potenze di un un'espressioneRicava la parte immaginaria da un'espressione complessaRicava la parte reale da un'espressione complessaRiga di ingresso F4Vai alla finestra di uscita F3Costanti grecheCarattere grecoGriglia:File HTML (*.html)|*.html|Tutti|*AiutoGruppi nascostiEvidenziaI&nserisciIC1IC2Ingresso:Se si vuole inserire più di una riga alla volta, usare il tasto "Ingresso multiriga" alla destra della riga di ingresso.Ingrandisci il carattere nella finestra consoleInformazioni sulla compilazione di maximaProblema ai valori iniziali (&1) ...Problema ai valori iniziali (&2) ...IngressoInserimentoInserimento ingressoInserisci il nuovo ingresso prima dell'ingresso selezionatoInserisci la sezione prima dell'ingresso selezionatoInserisci testoInserisci il testo prima dell'ingresso selezionatoInserisci il titolo prima dell'ingresso selezionatoInvece di battere un lungo percorso di un file nella riga di ingresso è possibile selezionare il file da usare con "File->Seleziona file".Integrale/somma:IntegraIntegra (Risch)Integra ...Integra l'espressioneIntegra l'espressione con l'algoritmo di RischIntegra...Integra:InterruzioneInterruzione del calcolo correnteInversa di LaplaceT&rasformata inversa di Laplace ...ItalianoCorsivomcmEtichetteLingua usata per l'interfaccia grafica di wxMaxima.Lingua:Laplace&Trasformata di Laplace ...Minimo comune multiplo ...LimiteLimite di:Limite...Carica un file pacchetto maximaIngresso lungo Ctrl-IMap&pa sulla matrice ...Prompt principaliCrea e&lenco ...Crea elencoCrea un'elenco da un'espressioneSostituisci in un'espressioneMappaMappa la funzione su di un'elencoMappa la funzione su di una matriceMappa funzione:Mappa...Controllo parentesi nei controlli di testoMatriceMappa matriceGuida di Maxima F1Maxima sta calcolandoOpzioni di MaximaPacchetto Maxima (*.mac)|*.mac|Pacchetto Lisp (*.lisp)|*.lisp|Tutti|*Processo Maxima terminato.Programma maxima:Sessione MaximaSessione Maxima (*.wxm)|*.wxmMaxima avviato. In attesa di connessione...Maxima usa ":" per impostare i valori ("a : 3;") e ":=" per definire le funzioni ("f(x) := x^2;").ModuloIngresso multirigaDimensione matrice non valida!Numero di equazioni non valido!Numero di equazioni:NumeriIntegrazione numericaSomnuOKSpentoApriApri finestra di ingresso multirigaApri la sessioneApri sessione da fileOpzioniOpzioni:Altri promptApprossimazione di P&ade ...Immagine PNG (*.png)|*.png|immagine JPEG (*.jpg)|*.jpg|bitmap Windows (*.bmp)|*.bmp|pixmap X (*.xpm)|*.xpmApprossimazione di PadeApprossimazione Pade di una serie di TaylorParametricaStampa parametricaAnalisi risultato&Frazioni parziali ...Frazioni parzialiIncollaIncolla dagli appuntiConfigurare wxMaxima con "Modifica->Configura".Riavviare wxMaxima perché i cambiamenti abbiano effetto!Grafico &2d ...Grafico &3d ...&Formato grafico ...Grafico 2DGrafico 2D...Grafico 2d ...Grafico 3DGrafico 3D...Grafico 3d ...Formato graficoGrafico in 2 dimensioniGrafico in 3 dimensioniGrafico su file:Polinomiale 1:Polinomiale 2:Portoghese (Brasiliano)File postscript (*.eps)|*.eps|Tutti|Serie di potenzePrecisioneStampaStampa documentoProdottoProdotto...Prodotto:RazionaleRi-elabora l'ingressoRi-elabora l'ingresso selezionatoLettura risultati maximaProntoFormanormRiduci (tr)Riduci l'espressione trigonometricaRiporta un bugRiavvia maximaIntegrazione di Risch ...Radici di una &polinomialeRighe:RussoSalvaSalva comeSalva il grafico su fileSalva la selezione su fileSalva la sessioneSalva la sessione su fileSalva su fileSalva l'ampiezza/posizione della finestra di wxMaximaSalva l'ampiezza/posizione della finestra di wxMaxima tra le sessioniSeleziona &fileSeleziona una costanteSeleziona un fileSeleziona un file (copia il nome del file nella riga d'ingresso)Seleziona tuttoSeleziona file per l'aperturaSeleziona l'ultimo ingresso F2Seleziona l'ultimo ingresso in console!Seleziona l'algoritmo di visualizzazione matematicaSeleziona programma maximaSeleziona pacchetto da caricareSelezione su immagineSelezione su ingresso F5Imposta i limiti di gnuplotSerieSerie...Server avviatoImposta la &precisione ...Imposta carattere ad ampiezza fissa nei controlli di testo.Imposta il focus sulla riga d'ingressoImposta il focus sulla finestra d'uscitaImposta il formato del graficoImposta la precisione in virgola mobileImposta i valori puntuali per risolvere l'ODE con la trasformata di LaplaceImposta il calcolo del moduloMostra la &definizioneMostra le &funzioniMostra suggerimen&tiMostra le &variabiliMostra un suggerimentoMostra tutti i comandi simili a:Mostra un esempio per il comando:Mostra un esempio di usoMostra comandi simili aMostra le funzioni definiteMostra le variabili definiteMostra la definizione di una funzioneMostra intestazione iniziale con le informazioni di sistema di maximaMostra le espressioni lungheMostra l'espressione lunga nella console di wxMaxima.Mostra l'intestazione di maximaMostra la guida di maximaMostra la definizione della funzione:Mostra la descrizione di un comandoMostra la descrizione di un comando/variabile:SemplificaSemplifica i &radicaliSemplifica (r)Semplifica (tr)Semplifica un'espressione contenente dei fattorialiSemplifica l'espressioneSemplifica un'espressione contenente dei radicaliSemplifica espressione razionaleSemplifica la sommaSemplifica espressione trigonometricaSoluzione:RisolviRisolvi &ODE ...Risolvi il sistema &algebrico ...Risolvi il sistema &lineare ...Risolvi &numericamente ...Risolvi ...Risolvi ODERisolvi ODE con Lapla&ce ...Risolvi ODE...Risolvi il sistema algebricoRisolvi il sistema algebrico di equazioniRisolvi il problema del valore al contorno per un'ODE di secondo gradoRisolvi le equazioniRisolvi le equazioni:Risolvi l'equazione:Risolvi problema del valore iniziale per un'ODE di primo gradoRisolvi problema del valore iniziale per un'ODE di secondo gradoRisolvi sistema lineareRisolvi sistema lineare di equazioniRisolvi numericamenteRisolvi numericamente ...Risolvi l'equazione differenziale ordinaria per un grado massimo di 2Risolvi l'equazione differenziale ordinaria con la trasformata di LaplaceRisolvi...SpagnoloSpecialeCostanti specialiProcesso di avvio di maxima fallitoAvvio di maxima...Avvio del server fallitoAvvio del server sul port %dStringheStileStiliSostituisciSostituisci ...Sostituisci...Sostituisci:SostituzioneSommaSomma di:Somma...T&itolo Ctrl-Maiusc-F6Serie di Taylor:SemprazTestoIl valore di un'espressione in virgola mobile precisa (bigfloat)Il valore in virgola mobile di un'espressioneC'è stato un'errore nell'XML generato! Fate un rapporto di questo bug.Tacche:Spiacente, suggerimenti non disponibili!In virgola mobile &precisaIn &virgola mobilePer immettere una matrice A, battere "A : " nella riga di ingresso e selezionare "Algebra->Inserire la matrice" dai menu.In virgola mobilePer disegnare un grafico in coordinate polari selezionare "imposta polari" nella voce Opzioni della finestra di dialogo Grafico2D. È anche possibile fare grafici in coordinate sferiche e cilindriche in 3D.Per mettere le parentesi attorno ad un'espressione battuta in precedenza nella riga di ingresso, selezionare l'espressione con il mouse e premere "(".Per ripetere un lungo comando che si era battuto in precedenza nella riga di ingresso, battere i primi caratteri dello stesso e premere il tasto di tabulazione.Per salvare l'ampiezza e posizione della finestra di wxMaxima tra le sessioni, usare la finestra "Modifica->Configura".Mostra/nascondi &algebricaMostra/nascondi risultati &numericiMostra/nascondi la visualizzazione del tempoMostra/nascondi algebricaMostra/nascondi i risultati numericiTrasponi una matriceTipo:SottolineatoApriApri tutti i gruppi chiusiUsa l'algoritmo di GosperUsa le serie di TaylorUsa font grecoUsa font greco per mostrare i caratteri greci.Variabile:VariabiliVariabili:AttenzioneBenvenuti in wxMaximaApplicando le funzioni da un'argomento da menu, l'argomento predefinito è "%". Per applicare le funzioni ad altri valori, inserirli nella riga d'ingresso. Per questo valore è possibile selezionare anche una precedente (sotto)espressione.Scrivi le parentesi corrispondenti nei controlli di testo.Puoi accedere all'ultimo risultato usando la variabile "%". Per accedere ai risultati dei comandi precedenti usare le variabili "%on" dove n è il numero del risultato.Puoi cancellare un'insieme di equazioni immesse o risultanti selezionando le etichette e scegliendo dai menu "Modifica->Elimina selezione".Puoi nascondere i risultati facendo clic sull'etichetta del risultato. Facendo clic sull'etichetta dell'ingresso nascondi sia l'ingresso che il risultato. Facendo clic nuovamente vengono mostrate le equazioni nascoste precedentemente.Puoi caricare un file in maxima trascinandolo dal navigatore file nella finestra console.Puoi caricare i file in maxima anche trascinandoli sulla finestra console. È anche possibile selezionare una funzione personalizzata per caricare il file. Se la funzione personalizzata è "A:read_matrix(%file%, CSV) allora %file% verrà sostituito con il nome del file.Puoi selezionare il risultato di maxima nella console wxMaxima con il mouse e copiarlo negli appunti con "Modifica->Copia".Puoi usare il comando tex maxima per stampare l'espressione in formato TeX. Poi si può copiarlo in un editor di testi per inserirlo in uno scritto.&Ingrandisci Alt-IRimpicci&olisci Alt-O[ non salvato ]antimmetricaacquamarinaintorno:al punto:neroblublu violettoentrambi i latimarroneper variabileblu cadettocambia var:corallocarta da zuccherocianoverde scurogrigio scuroverde oliva scuroviola scuroblu ardesia scurogrigio ardesia scuroturchese scuropredefinitodenom deg:profondità:diagonalegrigio pallidoelimina variabili:equazione:rosso mattoneper funzioni:per variabili:verde forestaper espressione:da:funzione:generaleva a:orogiallo caricoverdegiallo verdegrigioha valore:altezza:in veriabile:in:rosso indianokakisinistroblu chiarogrigio chiaroblu chiaro acciaioverde calceintorno basso:magentamarrone rossiccioacquamarina medioblu medioverde foresta mediogiallo carico medioviola medioverde mare medioblu ardesia medioverde primavera medioturchese mediorosso violetto medioblu mezzanotteblu marinanuova veriabile:num deg:vecchia variabile:aranciorosso arancioviolaverde pallidorosaprugnapm3dporporarossodestrosalmoneverde mareterra di sienablu cieloblu ardesiaverde primaverablu acciaiosimmetricatanla derivata è:il valore è:verde cardovolte:all'elenco:alla matrice:a:turchesesenzanomesenzanome.wxmintorno alto:variabilevariabile:violettorosso violapagliase la variabile:biancoampiezza:con:wxMaximawxMaxima %s Configurazione di wxMaximawxMaxima non riesce a trovare i file della guida. Controllare l'installazione.wxMaxima non riesce a trovare maxima! Configurare wxMaxima con "Modifica->Configura". Successivamente avviare maxima con "Maxima->Riavvia maxima".wxMaxima non riesce a trovare i file dei suggerimenti. Controllare l'installazione.wxMaxima non riesce a eseguire il server. Controllare che il supporto alla rete sia abilitato e riprovare!wxMaxima imposta le finestre di ingresso dati ai valori predefiniti, uno dei quali è "%". Per cambiare questo argomento in un'altro valore, inserirlo nella riga d'ingresso o selezionare un'espressione nella finestra di console.wxMaxima ha delle utili finestre di inserimento dati per la stampa dei diagrammi. Se si vuole modificare la stampa precedente basta usare la cronologia dei comandi e premere il tasto diagrammi.Ingresso wxMaximawxMaxima è un'interfaccia a wxWidgets per il sistema algebrico Maxima. Versione: %s. Licenza: GPL. %s %sOpzioni wxMaximaSessione wxMaxima (*.wxm)|*.wxmLa riga d'ingresso di wxMaxima mantiene la cronologia dei comandi. Essa è accessibile tramite i tasti freccia in su e freccia in giu oppure con il completamento automatico della riga usando il tasto di tabulazione.giallogiallo verdewxMaxima-13.04.2/locales/wxwin/ja.mo000644 000765 000024 00000274327 11670654443 017640 0ustar00andrejstaff000000 000000 T e@ V?!VaV?cVVVVVVWW8WVW _WjWsW WW W W WWWWWWWWWXXX&X/X5X;XAX IXWX`XiXoXuX|XXXXXX XXXXXX X X X X XY YYY"Y+Y1Y:YPYVY\Y dYoYuY |YYYYYYY4Y$Z!(ZJZ*bZ/Z:ZZ Z [ [ ![ ,[ 7[ B[ c[m[[[[[[[[#[/[\0\E\H\3L\6\\\ \\]1]H]a]v]]]]]] ^&^=^M^e^y^^^^^ ^ ^^^^__6)_`_:v__#_ __ `(`B`Y`u` ````a!a;a!Za"|aa-a1a(bBbWbqbvbbbbbbbbc01cbcxc)ccc(cd6d#Pd td;dd)de$e8eXene%e#e"e*e(%f&Nf%uf%f5ff"g?7gwgg1g ghh!2hTh,[h%h(h/hi-#i3Qii i-iij!jEK-`(=ю(#8\6t6# 1*\%w!ِ!!/Q!k Ǒ&  %/BTn%Ē:P0V #)Ó | &̔ є ݔ !"6 Yck p~ h/ L%m%ԗ'ݗ 5&< cp! Ƙ՘0 = EQoԙ#3NcsŚ$%$Bg$$ƛ$-$Jo$$Μ$5 = K Va g r0}4% *F"f1Lhq   Ÿ Οڟ  &4<M] ny  H*3K/Q!3ߡ#a"D  -*Xh{ ȣNϣ /; O\e<} Ƥ ),?5u~ɥ+  >-_5+æ%)?[cFl6;&Dbh|ͨ9M V`,s0zѩ(L0u]ot%̫.0۬M PZ@Y#Fj}BѮ;RAc*Я%*/$Z$'߰$'Dl+۱(<+P|² Ųϲ! )3(Qz  ³س  $7P"i#$մ!; S^|"˵"6Y)t-̶/ж  ;(d:/0K=|;>;55q>TX9,O|.F-u! żӼ*&<![})>#/40d-*(@#i''"ݿ  8 Y!z$'# .38LT"n /#;/Z 4!89H. + >OV\&x  "  -&8)_  -$7\`Cf  $$ 5 Cd x " '!3;*o J] $%C!i!#  (;X oz  ( ( 3 >L ] hs     * 8F JXi    #(1 Z hs  ?=MUD5/BNJS 0 <HZl~%& 6CF[ j3vH ,/L3f .BVo#7Pdx*  $B^|W'To<3OoG >QG;\aq<(DKd W*n*B)(1AZ2135kO?733$g7$-33K*RKEI66e9c=b>$\S6- #:1^M1R ]sEKOc$*HL'l05B9>9x>3W%A}A>>@**E>6Z9 " ,K[ n!|H? '1BR7n< )39:m0*; -H<v!3- E7?}$'Q 9\{93L<-T*@'kO$$5+U1N:4X#*'<.k'r9 00%$V'{$4Y, .)Xls=<$?a\ !33*R }<0A0X9/K?{T3CD?B< DH/<TBOB*394<n-Z047egK[QS0<2>o>$@(SB|<6S34'9 4 O Q7 , < < 50 6f 9 < Q Gf B B 44 $i T 9 6ETBE?#5cFT]564?E??:G-HLv>3B6:y?NBC (PG53}-  !(A@#.% )%5M[3) (!7FY?$ /Ng7/,.H e)oB  %/K'O0wDJ58Mn*) 2 ;a!q90 < -!<J!!!!x!15"0g"T"/"(##F#Wj#W#$9$!I$Zk$E$% %2%I%i%%%%%%&%&E&(e& &&&&&& &#& '>']'}'(''''T(!Z(|(E(H(6)Q)d) =* K*CV* * * *,* **6*-6+d+t+{++++++ +6+5,L-K`.?.D.81/6j//6/*/ 0 06,0c0z00J000!1!@10b1B111D1522h2822,2G32L3M33 33 44'484S4r4444455<5W5v555556$6?6 ^6k6}66 666K6O7<c777-7*7.8'N8v8 99$999: :": >: L:Y:i:::::::;';G;Z; k;u;; ;;2<H<f<*m< <F<<<<W<==9F>>>*>>S?g?x?W??? ? @@,@L@$e@@@Q@ @A A )A6A)GAsqAA-A$$BIBKPB BuB C*)C$TC/yC-C C CCSCKIDED?D]EByETE]F.oFFFuF4%GmZGGG H)H28H6kH-H'H$H'I#EI"iIIIIKIFJWJ<JJ)KtK LLL$LLM3*M^MEHN0N0NtNteO_O:P9PPQr,QQQ$Q Q`Q[RmRBR5SLS,PS%}SKSBS2T#ETiT$T'TT$T' U3UIU_UEzU*UU# V-VKVRjV'VBV)(WRW VWdW$tW'WWWWW,W*$XOXeXXXX XX X XXY.Y1JY#|Y#YYYYZ6Z NZ!YZ"{ZZZ$ZZ['*[%R[>x[?[I[A\QH\\\\\V\6]N]-,^MZ^Z^T_QX_T_W_W`02acaga>vb/bbOcN,d6{dd9d d eD e6ReIe3e*f<2faof#fIfU?g{gIhX[hBh0hK(iHtiBi9j9:jItj*j0j@k<[k=k9kQlbl~lCllll l3l6,m cmmm tmH~mm?m%#n0In3znNn6n 4o>oTEo4oXoT(pN}ppp pp'pZ%q?qqqq-q6rUr Yrcr*jrrrrr?rs's;sCQsFs$stt t%t ,t-6t dtntPut0t@t 8u EujOuu uuuu u u v=vQvXvwv,v!v v vv&v0&wWw0mw:w(wYxQ\xxxxIA5Eg"#dx")HwIvY8&'~5)cB3Y(!` ,/d_Wb*ZL? wlo'4Koy'9I][--+}>N.sApP0;-|a qcY,YcA3\oX/+Zukh LM z||p*_c\$94^}a@m&X]Fyrobf. d[1[@<>-:z*<O`:Cgi}8F%t5jKW sz.t,~Qm H2=5/z0bsxGEXqi;%j6J yO<=kC>jS{ lV!aQxfVi?CnUu)<x=ggMW}PPuh{R"Tj 0IN VBC?k6 ws8+1v3$_2( @] qDK!p$m:e+#l?rG&/%^H4.(b=\V#U^%tQJeSe $fJ(n niPXU6tn` e *:2~NvNT{7^pl7GR;\yQ;w`1EK hD0'9OE~&1q7{Tv#Fdr|HA,9"MDBFB]u)6f rZM TD>R3hWOmGR84Z[2SaSLU7k L_ @J! Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Debug report preview:&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&Notes:&OK&Open...&Paste&Point size:&Preferences&Previous&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 11 in10 x 14 in11 x 17 in12 x 11 in15 x 11 in6 3/4 Envelope, 3 5/8 x 6 1/2 in9 x 11 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A debug report has been generated in the directory A non empty collection must consist of 'element' nodesA2 420 x 594 mmA3 Extra 322 x 445 mmA3 Extra Transverse 322 x 445 mmA3 Rotated 420 x 297 mmA3 Transverse 297 x 420 mmA3 sheet, 297 x 420 mmA4 Extra 9.27 x 12.69 inA4 Plus 210 x 330 mmA4 Rotated 297 x 210 mmA4 Transverse 210 x 297 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 Extra 174 x 235 mmA5 Rotated 210 x 148 mmA5 Transverse 148 x 210 mmA5 sheet, 148 x 210 mmA6 105 x 148 mmA6 Rotated 148 x 105 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 (ISO) 250 x 353 mmB4 (JIS) Rotated 364 x 257 mmB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) Rotated 257 x 182 mmB5 (JIS) Transverse 182 x 257 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 (JIS) 128 x 182 mmB6 (JIS) Rotated 182 x 128 mmB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCannot wait for thread termination.Cant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find tab for idCould not locate file '%s'.Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDebug report "%s"Debug report couldn't be created.Debug report generation has failed.DecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.DesktopDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...DirectoriesDirectory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?Don't SaveDoneDone.Double Japanese Postcard Rotated 148 x 200 mmDoubly used id : %dDownE sheet, 34 x 44 inEdit itemEnter a page number between %d and %d:Enter command to open file "%s":Entries foundEnvelope Invite 220 x 220 mmEnvironment variables expansion failed: missing '%c' at position %u in '%s'.ErrorError creating directoryError reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Executable files (*.exe)|*.exe|All files (*.*)|*.*||Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExporting registry key: file "%s" already exists and won't be overwritten.Extended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to clean up debug report directory "%s"Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory "%s"Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to execute curl, please install it in PATH.Failed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove debug report file "%s"Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to upload the debug report (error code %d).Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FilesFiles (%s)FilterFindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!If you have any additional information pertaining to this bug report, please enter it here and it will be joined to it:If you wish to suppress this debug report completely, please choose the "Cancel" button, but be warned that it may hinder improving the program, so if at all possible please do continue with the report generation. Ignoring value "%s" of the key "%s".Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal directory name.Illegal file specification.Image and mask have different sizes.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Initialization failed in post init, aborting.Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.Japanese Double Postcard 200 x 148 mmJapanese Envelope Chou #3Japanese Envelope Chou #3 RotatedJapanese Envelope Chou #4Japanese Envelope Chou #4 RotatedJapanese Envelope Kaku #2Japanese Envelope Kaku #2 RotatedJapanese Envelope Kaku #3Japanese Envelope Kaku #3 RotatedJapanese Envelope You #4Japanese Envelope You #4 RotatedJapanese Postcard 100 x 148 mmJapanese Postcard Rotated 148 x 100 mmJustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal Extra 9 1/2 x 15 inLegal, 8 1/2 x 14 inLetter Extra 9 1/2 x 12 inLetter Extra Transverse 9.275 x 12 inLetter Plus 8 1/2 x 12.69 inLetter Rotated 11 x 8 1/2 inLetter Small, 8 1/2 x 11 inLetter Transverse 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMode %ix%i-%i not available.ModernModifiedModule "%s" initialization failedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOpen file "%s"Operation not permitted.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.PRC 16K 146 x 215 mmPRC 16K RotatedPRC 32K 97 x 151 mmPRC 32K RotatedPRC 32K(Big) 97 x 151 mmPRC 32K(Big) RotatedPRC Envelope #1 102 x 165 mmPRC Envelope #1 Rotated 165 x 102 mmPRC Envelope #10 324 x 458 mmPRC Envelope #2 102 x 176 mmPRC Envelope #2 Rotated 176 x 102 mmPRC Envelope #3 125 x 176 mmPRC Envelope #3 Rotated 176 x 125 mmPRC Envelope #4 110 x 208 mmPRC Envelope #4 Rotated 208 x 110 mmPRC Envelope #5 110 x 220 mmPRC Envelope #5 Rotated 220 x 110 mmPRC Envelope #6 120 x 230 mmPRC Envelope #6 Rotated 230 x 120 mmPRC Envelope #7 160 x 230 mmPRC Envelope #7 Rotated 230 x 160 mmPRC Envelope #8 120 x 309 mmPRC Envelope #8 Rotated 309 x 120 mmPRC Envelope #9 229 x 324 mmPRC Envelope #9 Rotated 324 x 229 mmPage %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Processing debug report has failed, leaving the files in "%s" directory.Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save AsSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelect a document viewSelectionSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelShows the font preview.SizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sSubclass '%s' not found for resource '%s', not subclassing!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSwissTIFF library error.TIFF library warning.TIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid Extra 11.69 x 18 inTabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The report contains the files listed below. If any of these files contain private information, please uncheck them and they will be removed from the report. The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown dynamic library errorUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWarningWarning: Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Thai (CP 874)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.assuming this is a multi-part zip concatenatedattempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebad zipfile offset to entrybinaryboldbuffer is too small for Windows directory.can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't execute '%s'can't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infodump of the process state (binary)eighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening '%s'error opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinvalid message box return valueinvalid zip fileitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryprocess context descriptionread errorreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodusing catalog '%s' from '%s'.write errorwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: $Id: ja.po 53330 2008-04-24 07:36:18Z VS $ Report-Msgid-Bugs-To: POT-Creation-Date: 2008-04-24 09:31+0200 PO-Revision-Date: 2010-09-15 12:14+0900 Last-Translator: Language-Team: Japanese MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 問題が発生したプログラムの作成者・保守担当者にこの情報を送信してください。ご協力お願いいたします。 ご利用ありがとうございます。ご不便な点恐れ入ります。 (エラー %ld: %s) -プレビュー#10 封筒、4 1/8 x 9 1/2 インチ#11 封筒、4 1/2 x 10 3/8 インチ#12 封筒、4 3/4 x 11 インチ#14 封筒、5 x 11 1/2 インチ#9 封筒、3 7/8 x 8 7/8 インチ%i (%i 中)%s (または %s)%s エラー%s 情報%s 警告%s ファイル (%s)|%s%s メッセージバージョン情報(&A)...実際のサイズ(&A)適用(&A)アイコンを並べる(&A)戻る(&B)太字(&B)キャンセル(&C)カスケード(&C)クリア(&C)閉じる(&C)コピー(&C)デバッグ情報プレビュー(&D):削除(&D)明細(&D)ダウン(&D)ファイル(&F)検索(&F)終了(&F)フォントファミリ(&F): 前へ(&F)先へ(&G)...ヘルプ(&H)ホーム(&H)索引(&I)イタリック(&I)ログ(&L)移動(&M)新規(&N)次へ(&N)次へ(&N) >次へ(&N)いいえ(&N)注記(&N):&OK開く(&O)...貼り付け(&P)ポイントサイズ(&P): 設定項目(&P)以前の(&P)印刷(&P)...プロパティー(&P)辞める(&Q)やり直す(&R)やり直す(&R)書き換える(&R)復元(&R)保存(&S)保存(&S)...起動時にヒントを表示する(&S)サイズ(&S)停止(&S)スタイル(&S):下線(&U)元に戻す(&U)元に戻す(&U) アンインデント(&U(上(&U)幅(&W):ウィンドウ(&W)はい(&Y)'%s' には余分な'..'がありました。無視します。'%s' は無効です。'%s' はオプション '%s' に指定できる数値ではありません。'%s' は有効なメッセージカタログではありません。'%s' はおそらくバイナリバッファです。'%s' は数字でなければなりません。'%s' に含むことができるのは ASCII 文字だけです。'%s' に含むことができるのはアルファベットだけです。'%s' に含むことができるのはアルファベットと数字だけです。(ヘルプ)(しおり)10 x 11 インチ10 x 14 インチ11 x 17 インチ12 x 11 インチ15 x 11 インチ6 3/4 封筒, 3 5/8 x 6 1/2 インチ9 x 11 インチ: ファイルは存在しません。: 不明な文字セット: 不明なエンコード< 戻る(&B)<<<ディレクトリ><ドライブ><リンク>太字でイタリックの書体
太字でイタリックに下線を付ける
太字の書体 イタリックの書体 >>>>|修正のための情報を次のディレクトリに生成しました。 空でないコレクションは、「要素」ノードから構成されなくてはいけませんA2 420 x 594 mmA3 Extra 322 x 445 mmA3 Extra Transverse 322 x 445 mmA3 縦 420 x 297 mmA3 横 297 x 420 mmA3 用紙、297 x 420 mmA4 Extra 9.27 x 12.69 inA4 Plus 210 x 330 mmA4 縦 297 x 210 mmA4 横 210 x 297 mmA4 sheet 210 x 297 mmA4 small sheet、210 x 297 mmA5 Extra 174 x 235 mmA5 横 210 x 148 mmA5 横 148 x 210 mmA5 用紙、148 x 210 mmA6 横 105 x 148 mmA6 縦 148 x 105 mmABCDEFGabcdefg12345ASCII追加今のページをしおりに加える。カスタム色に加える。ブック %s を追加する。左に整列右に整列全て全てのファイル (%s)|%s全てのファイル (*)|*全てのファイル (*.*)|*全てのファイル (*.*)|*SetObjectClassInfoに渡されたオブジェクトはすでに登録されていますすでにISPにダイヤル中です。ログをファイル '%s' へ追加しますか ([いいえ]で上書きします)?アラビア (ISO-8859-6)アーカイブは #SYSTEM ファイルを含みません。属性B4 ISO 250 x 353 mmB4 横向き (JIS) 364 x 257 mmB4 封筒、250 x 353 mmB4 用紙、250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) 横向き 257 x 182 mmB5 JIS 横 182 x 257 mmB5 封筒、176 x 250 mmB5 用紙,、182 x 257 mmB6 (JIS) 128 x 182 mmB6 (JIS) 横向き 182 x 128 mmB6 封筒、176 x 125 mmBMP: メモリーを割り当てることができませんでした。BMP: 無効なイメージを保存できませんでした。BMP: RGBカラーマップを書くことができませんでした。BMP: データを書くことができませんでした。BMP: ファイル(ビットマップ )ヘッダを書くことができませんでした。BMP: ファイル(ビットマップ情報)ヘッダを書くことができませんでした。BMP: wxImageは自前のwxPaletteを持っていません。バルト (ISO-8859-13)バルト(旧) (ISO-8859-4)太字下側マージン (mm):C 用紙, 17 x 22 インチクリア(&l)カラー(&o):C3 封筒, 324 x 458 mmC4 封筒, 229 x 324 mmC5 封筒, 162 x 229 mmC6 封筒, 114 x 162 mmC65 封筒, 114 x 229 mmCHMハンドラは、現在ローカルファイルのみサポートしています。ミューテクスを生成できませんファイル '%s' を列挙できませんディレクトリ '%s' 内のファイルを列挙できませんスレッド %lu を再開できませんスレッド %x を再開できませんスレッドを開始できません: TLS書き込みエラー。スレッド %lu をサスペンドできませんスレッド %x をサスペンドできませんスレッド終了を待つことができません復元できません(&U)ファイル '%s' のイメージ形式をチェックできません: ファイルは存在しません。レジストリキー '%s' が閉じることができません未対応の型 %d の値はコピーできません。レジストリキー '%s' を生成できませんスレッドを生成できませんクラス %s のウインドウを生成できませんキー '%s' を削除できませんINIファイル '%s' を削除できません値 '%s' をキー '%s' から削除できませんキー '%s' のサブキーを列挙できませんキー '%s' の値を列挙できませんサポートされていない型 %d の値をエクスポートできません。ファイル '%s' 内の現在位置を見つけることができませんレジストリキー '%s' に関する情報を取得できませんzip収縮ストリームを初期化できません。zip膨張ストリームを初期化できません。ファイル '%s' からイメージをロードできません: ファイルが存在しません。レジストリキー '%s' をオープンできません展開ストリーム %s から読むことができません膨張ストリームを読めません: アンダーラインストリームの予期しないEOF'%s' の値を読めませんキー '%s' の値を読めませんファイル '%s' へのイメージを保存できません: 不明な拡張子。ログ内容をファイルに保存できません。スレッド優先度を設定できません'%s' の値を設定できません圧縮ストリーム %s に書き出せませんキャンセルダイアログユニットを変換できません: 不明なダイアログ文字セット '%s' から変換できません!使用中のダイアルアップ接続を見つけることができません: %s不明なコントロール '%s' のコンテナーを見つけることができません。フォントノード '%s' を見つけることができません。アドレス帳ファイルの場所を見つけることができませんスケジュールポリシー %d の優先度範囲を取得できません。ホスト名を取得できません公式ホスト名を取得できません切断できません - 使用中のダイアルアップ接続なし。OLE を初期化できませんSciTech MGLを初期化できません!ディスプレイを初期化できません。'%s' からアイコンをロードできません。ファイル '%s' からリソースをロードできません。HTMLドキュメント: %s をオープンできませんHTMLヘルプブック: %s をオープンできませんコンテンツファイル: %s をオープンできませんファイル '%s' をオープンできません。ポストスクリプト印刷のためのファイルをオープンできません。インデックスファイル: %s をオープンできません'%s' から複数形をパースすることができません。'%s' からコーディネートをパースできません。'%s' からディメンジョンをパースできません。空のページを印刷できません。'%s' から型名を読み込めません!スレッドスケジュールポリシーを検索できません。スレッドを開始できません: TLS書き込みエラースレッド終了を待つことができません。スレッドイベントキューを生成できません大/小文字の区別ケルト (ISO-8859-14)センター中央ヨーロッパ (ISO-8859-2)ダイヤルするISPを選択カラー選択フォント選択閉じる(&o)ログコンテンツのクリアクリックしてフォント選択をキャンセルして下さい。クリックしてフォント選択を確認して下さい。閉じる閉じる Alt-F4全て閉じるウインドウを閉じる圧縮されたHTMLヘルプファイル (*.chm)|*.chm|コンピュータConfigエントリー名は '%c' で開始できません。確認レジストリ更新を確認接続中...コンテンツ文字セット '%s' への変換は無効です。クリップボードに"%s"がコピーされました。部数:一時ファイル '%s' を作成できません %s へ %s から抽出できません: %sidのためのタブを見つけることができませんファイル '%s' を配置できません。ドキュメントプレビューを開始できません。印刷を開始できません。データをウインドウへ転送できませんミューテックスを開放できませんミューテックスロックを獲得することができませんイメージリストにイメージを追加できません。タイマーを生成できませんカーソルを生成できません。シンボル '%s' がダイナミックライブラリ中に見つかりません現在のスレッドポインタを取得できませんPNGイメージをロードできませんでした - ファイルが壊れているか、メモリーが足りません。サウンドデータ '%s' をロードできません。オーディオ '%s' をオープン出来ませんクリップボード形式 '%s' を登録できません。ミューテックスを開放できませんリストコントロール項目 '%d' に関する情報を抽出できません。PNGイメージを保存できません。スレッドを終了できません。RTTIパラメーター宣言に、バラメータ生成は見つかりませんディレクトリを作成新しいディレクトリを作成切り取り(&t)カレントディレクトリ:キリルアルファベット (ISO-8859-5)D 用紙 22 x 34 インチDDE を探るリクエストは失敗しましたDIBヘッダー: エンコーディングは bitdepth に適合しません。DIBヘッダー: イメージの高さ > 32767ピクセルDIBヘッダー: イメージ幅 > 32767ピクセルDIBヘッダー: 未知の bitdepthDIB ヘッダー: 未知のエンコードDL 封筒, 110 x 220 mm瑕疵報告 "%s"瑕疵情報を作成できません。修正のための情報も生成できませんでした。装飾デフォルトエンコーディングデフォルトプリンター削除古いロックファイル '%s' を削除しました。デスクトップリモートアクセスサービス(RAS)がインストールされていないため、ダイアルアップ機能は利用できません。RASをインストールしてください。ご存知ですか... ディレクトリディレクトリ '%s' を作成できませんディレクトリ '%s' は存在しません。ディレクトリがありませんディレクトリがありません。与えられた部分文字列を含むすべてのインデックス項目を表示します。検索は大/小文字を区別しません。ダイアログオプション表示%s ファイル(拡張子 "%s")に使用されるコマンドを上書きしますか? 現在の値は %s, 新しい値は %s %1文書 %s への変更を保存しますか?保存しない完了完了。往復葉書横向き(日本) 200 x 148 mm重複するID : %d下へE 用紙, 34 x 44 インチ項目を編集%d と %d の間のページ番号を入力してくださいファイル '%s' を開くためのコマンドを入力:エントリが見つかりました招待用封筒 220 x 220 mm環境変数の拡張に失敗しました: '%c' が位置 %u ('%s' 内)にありません。エラーディレクトリ作成エラーconfigオプションでエラーを読みます。ユーザ構成データの救済エラーです。セマフォの待機中にエラー発生エラー:エスペラント (ISO-8859-3)実行可能ファイル (*.exe)|*.exe|All files (*.*)|*.*||コマンド '%s' の実行に失敗しましたコマンド '%s' の実行はエラーで失敗しました: %ulエクゼクティブ、7 1/4 x 10 1/2 インチエクスポートしているレジストリキー: ファイル"%s"は、すでに存在しているため上書きされません。日本語(EUC_JP)のための拡張Unixコードページ'%s' の '%s' から抽出に失敗しましたロックファイルへのアクセスに失敗しました。ビットマップデータ用のメモリー割当( %luKb )に失敗しました。ビデオのモード変更に失敗しました。瑕疵報告ディレクトリ %s の清掃に失敗しました。ファイルハンドルのクローズに失敗しました。ロックファイル '%s' のクローズに失敗しました。クリップボードのクローズに失敗しました。接続失敗: ユーザー名/パスワードがありません。接続失敗: 接続先ISPがありません。レジストリ値 '%s' のコピーに失敗しました。レジストリキー '%s' の内容を '%s' へコピーできませんでした。ファイル '%s' から '%s' へのコピーに失敗しましたレジストリサブキー '%s' を '%s' 複製できません。DDE文字列の生成に失敗しましたMDI親フレームの生成に失敗しました。ステータスバーの生成に失敗しいました。テンポラリファイル名の生成に失敗しました匿名パイプの生成に失敗しましたサーバー '%s' へのトピック '%s' に対する接続の作成に失敗しましたカーソルの生成に失敗しいました。ディレクトリ %s の作成に失敗しました。ディレクトリ '%s' の作成に失敗しました。 (必要なアクセス権はありますか?)ファイル '%s' のレジストリキーの作成に失敗しました。標準の検索/置換ダイアログの生成に失敗しました (エラーコード %d)HTMLドキュメントの %s エンコードによる表示に失敗しました。クリップボードを空にできません。ビデオのモードを列挙するのに失敗しましたDDE サーバーとの advice loop 確立に失敗しましたダイアルアップ接続: %s の確立に失敗しました'%s' の実行に失敗しました curl を実行できません。PATH を通してください。ISP名の取得に失敗しました: %sクリップボードからのデータ取得に失敗しましたローカルシステム時刻の取得に失敗しました作業ディレクトリの取得に失敗しましたGUIの初期化に失敗しました: 内蔵のテーマが見つかりません。MS HTMLヘルプの初期化に失敗しました。OpenGLの初期化に失敗しましたロックファイル '%s' の調査に失敗しましたスレッドの結合に失敗しました。メモリリークが発生した可能性があります - プログラムを再起動して下さいプロセス %d の強制終了に失敗しましたイメージ %d をファイル '%s' からロードできませんでした。ファイル '%s' からメタファイルをロードできませんでした。mpr.dll のロードに失敗しました。共有ライブラリ '%s' のロードに失敗しましたロックファイル '%s' のロックに失敗しました'%s' のファイル時刻変更に失敗しましたCHMアーカイブ '%s' は開けませんでした。一時ファイルのオープンに失敗しました。クリップボードのオープンに失敗しました。クリップボードにデータを書き込む事はできませんでした。ロックファイルからの PID を読み出せませんでした。子プロセス入出力のリダイレクトに失敗しました子プロセス入出力のリダイレクトに失敗しましたDDE サーバー '%s' の登録に失敗しましたOpenGLの登録に失敗しましたキャラクタセット '%s' のエンコーディングを想起できません。瑕疵情報ファイル '%s' を除去できません。ロックファイル '%s' を除去できません。古いロック・ファイル '%s' の除去に失敗しました。レジストリ値 '%s' を '%s' に名前変更できません。レジストリキー '%s' を '%s' に名前変更できません。クリップボードからデータを取り出せません。'%s' のファイル時刻取得に失敗しましたRAS エラーメッセージのテキスト取得に失敗しましたサポートされているクリップボード形式の取得に失敗しましたビットマップイメージをファイル '%s' に保存する事に失敗しました。DDEアドバイス通知の送信に失敗しましたFTP転送モードを %s に設定できません。クリップボードデータの設定に失敗しました。ロックファイル '%s' のアクセス権を設定できません一時ファイルのアクセス権設定に失敗しましたスレッド優先度 %d の設定に失敗しました。メモリー VFSへのイメージ '%s' の記録に失敗しました!スレッドの終了に失敗しました。DDE サーバーでアドバイス・ループの終了に失敗しましたダイアルアップ接続: %s の切断に失敗しましたファイル '%s' のタッチに失敗しましたロックファイル '%s' のロック解除に失敗しましたDDE サーバー '%s' の登録解除に失敗しましたユーザー設定ファイルの更新に失敗しました。瑕疵情報のアップロードに失敗しました (エラーコード %d)ロックファイル '%s' への書き込みに失敗しました致命的エラー致命的エラー: ファイルファイル %s は存在しません。ファイル '%s' はすでに存在します。 本当に上書きしますか?ファイル '%s' はすでに存在します。 置き換えますか?ファイルはロードできませんでした。ファイルエラーファイル名はすでに存在します。ファイルファイル (%s)フィルタ検索固定幅フォント: 固定幅フォント
太字 イタリック フォリオ、8 1/2 x 13 インチフォントの大きさ: フォーク失敗前方の hrefs はサポートされません一致箇所が %i 点ありました差出人: GIF: 無効な gif インデックスGIF: データストリームは途切れている可能性があります。GIF: GIF 画像形式にエラーがあります。GIF: メモリが不足しています。GIF: 未知のエラーです。GTK+ テーマ一般的ポストスクリプトドイツ リーガル ファンフォールド、8 1/2 x 13 インチドイツ 標準ファンフォールド、8 1/2 x 12 インチ戻る進む文書階層を1つ上るホームディレクトリに行く親ディレクトリに行く指定ページに行くギリシャ語 (ISO-8859-7)本版の zlib は Gzip に対応しておりません HTML ヘルププロジェクト (*.hhp)|*.hhp|HTMLアンカー %s は存在しません。HTML ファイル (*.html;*.htm)|*.html;*.htm|ヘブライ語 (ISO-8859-8)ヘルプヘルプ ブラウザー オプションヘルプ 索引ヘルプ 印刷ヘルプトピックスヘルプブック (*.htb)|*.htb|ヘルプブック (*.zip)|*.zip|ヘルプ: %sホームホームディレクトリI64ICO: マスクDIB 読込みエラー。ICO: イメージファイル書込みエラー!ICO: イメージはアイコンとしては縦が長すぎます。ICO: このイメージはアイコンとしては幅が広すぎます。ICO: 無効なアイコンインデックスです。IFF: データストリームは途切れている可能性があります。IFF: IFF イメージ形式のエラー。IFF: メモリが不足しています。IFF: 未知のエラーです。この不正な動作に関する追加情報を頂けるのであれば ここに入力することで瑕疵の基本情報に追加されます:この瑕疵情報を完全に抑制する場合はキャンセルボタンを使用してください。 その場合、おそらくプログラムの改良を遅らせることになります。 できれば瑕疵情報の生成と送信にご協力ください。 "%s" はキー "%s" の値としては無視されます。wxEvtHandler ではないオブジェクトクラスはイベントソースとして不正です不正なディレクトリ名。不正なファイル仕様。イメージとマスクの寸法が一致しません。リッチ エディットコントロールが作成できません。 代りに単純なテキスト コントロールを使います。riched32.dll を再インストールして下さい。子プロセスの入力を取得できませんファイル '%s' のアクセス権を取得できませんファイル '%s' を上書きできませんファイル '%s' のアクセス権を設定できませんインデント索引インド英語 (ISO-8859-12)アプリケーションの初期化直後に行われるwxWidgetsの初期化に失敗しました。終了します。内部エラー、不正なwxCustomTypeInfoです無効な TIFF イメージインデックス。無効な XRC リソース '%s': ルートノード 'resource' がありません。無効なディスプレイモード指定 '%s'無効なジオメトリー指定 '%s'無効なロックファイル '%s'不正もしくはNULLオブジェクトIDは、GetObjectClassInfoに渡されました不正もしくはNULLオブジェクトIDは、HasObjectClassInfoに渡されました無効な正規表現 '%s': %sイタリックイタリア封筒、110 x 230 mmJPEG: ロードできませんでした - おそらくファイルが壊れています。JPEG: イメージを保存することができませんでした。往復葉書(日本) 200 x 148 mm長形3号(日本)長形3号横向き(日本)長形4号(日本)長形4号横向き(日本)角形2号(日本)角形2号横向き(日本)角形3号(日本)角形3号横向き(日本)洋形4号(日本)洋形4号横向き(日本)葉書(日本) 100 x 148 mm葉書横向き(日本) 148 x 100 mm正当化KOI8-RKOI8-U横長元帳、17 x 11 インチ左の余白 (mm):リーガル Extra 9 1/2 x 15 inリーガル、8 1/2 x 14 インチレター Extra 9 1/2 x 12 inLetter Extra 縦 9.275 x 12 inレター Plus 8 1/2 x 12.69 inレター 横 11 x 8 1/2 in小さいレター, 8 1/2 x 11 インチレター 縦 8 1/2 x 11 inレター, 8 1/2 x 11 インチ簡単リンクに '//' が含まれていました。絶対リンクに変換します。ファイル '%s' を読み出すロード中 :ロックファイル '%s' は、適切でないオーナーです。ロックファイル '%s' は不正確な権限を持っています。ログはファイル '%s' に保存されました。MDIにおける子MS HTMLヘルプライブラリがこのマシンにインストールされていないため、MS HTMLヘルプ機能は利用できません。MS HTMLヘルプライブラリをインストールして下さい。最大化(&x)Match caseVFSメモリーは、すでに、ファイル '%s' を含みます!メニューMetal theme最小化(&n)モード %ix%i-%i は利用できません.モダン修正モジュール "%s" の初期化に失敗しましたモナーキ 封筒、3 7/8 x 7 1/2 インチ下に動かす移動名前新しいディレクトリ新しい項目新しい名前次へ次のページいいえいかなるエントリーも見つかりません。エンコーディング '%s' でテキストを表示するフォントが見つかりません。 代替エンコーディング '%s' が利用可能です。 代替エンコーディングを使用しますか? (使用しない場合、別のエンコーディングを選択しなければなりません)エンコーディング '%s' でテキストを表示するフォントが見つかりません。 このエンコーディングで使用するフォントを選択しますか? (選択しない場合、このエンコードのテキストは正しく表示されません)XMLノード '%s'、クラス '%s' のハンドラが見つかりません!画像の型に対するハンドラが見つかりません。'%d' 型のイメージハンドラは定義されていません。'%s' 型のイメージハンドラは未定義です。該当するページはまだ見つかりません。無音マスクに使える未使用色がありません。画像に未使用色がありません。北欧 (ISO-8859-10)ノーマル通常の文字
下線付きの文字. 通常のフォント:ノート, 8 1/2 x 11 インチOKオブジェクトは、ID属性を持っていなくてはいけませんファイルを開くHTMLドキュメントを開くファイル "%s" を開きます許可されない操作です。オプション '%s' には値が必要です。オプション '%s': '%s' は、日付に変換できません。オプション向きPCX: メモリーを割り当てることができませんでしたPCX: サポートされていないイメージ形式PCX: 無効なイメージPCX: これは、PCXファイルではありません。PCX: 不明なエラー!!!PCX: バージョン番号が古すぎますPNM: メモリーを割り当てることができませんでした。PNM: 認識できないファイル形式です。PNM: データストリームは途切れている可能性があります。PRC 16K 146 x 215 mmPRC 16K 横PRC 32K 97 x 151 mmPRC 32K 横PRC 32K(Big) 97 x 151 mmPRC 32K(Big) 横PRC 封筒 #1 102 x 165 mmPRC 封筒 #1 横 165 x 102 mmPRC 封筒 #10 324 x 458 mmPRC 封筒 #2 102 x 176 mmPRC 封筒 #2 横 176 x 102 mmPRC 封筒 #3 125 x 176 mmPRC 封筒 #3 横 176 x 125 mmPRC 封筒 #4 110 x 208 mmPRC 封筒 #4 横 208 x 110 mmPRC 封筒 #5 110 x 220 mmPRC 封筒 #5 横 220 x 110 mmPRC 封筒 #6 120 x 230 mmPRC 封筒 #6 横 230 x 120 mmPRC 封筒 #7 160 x 230 mmPRC 封筒 #7 横 230 x 160 mmPRC 封筒 #8 120 x 309 mmPRC 封筒 #8 横 309 x 120 mmPRC 封筒 #9 229 x 324 mmPRC 封筒 #9 横 324 x 229 mm%d ページ%d / %d ページページ設定ページ設定ページ用紙サイズ用紙サイズすでに登録されたオブジェクトは、SetObjectに渡されますすでに登録されたオブジェクトは、SetObjectNameに渡されます未知のオブジェクトは、GetObjectに渡されますアクセス権パイプ生成失敗有効なフォントを選んで下さい。既存ファイルを選んで下さい。表示すべきページを選んで下さい:接続先ISPを選択してください新しいバージョンの comctl32.dll をインストールして下さい。 (少なくとも、バージョン 4.70が要求されますが、 %d.%02d が使用されています) インストールしない場合、このプログラムは正常に動作しません。印刷中 お待ちください ポートレートポストスクリプトファイルプレビュー:前のページ印刷印刷プレビュー 印刷プレビュー失敗印刷範囲 印刷設定カラー印刷印刷プレビュー(&w)印刷プレビュー印刷スプールこのページを印刷ファイルへ印刷プリンタープリンターコマンド:プリンターオプションプリンターオプション:プリンター...プリンター:印刷中印刷エラー印刷中 ページ %d...印刷中...瑕疵情報提供までの処理中に問題が発生しました。ディレクトリ "%s" に関連ファイルを残します。 プログラム中断四つ折り判, 215 x 275 mm質問ファイル '%s' の読み込みエラー準備完了参照オブジェクトノード ref="%s" が見つかりません。リフレッシュレジストリキー '%s' は、すでに存在します。レジストリキー '%s' は存在しないので、名前を変更できません。レジストリキー '%s' は、通常のシステム運用に必要ですので 削除すると、システムを不安定な状態にします: 操作を中断しました。レジストリ値 '%s' は、すでに存在します。関連するエントリー:削除しおりから現在のページを削除レンダラ "%s" は、互換性がないバージョン%d.%dを持っています。ロードされないかもしれません。書き換える(&l)全て置換(&a)置換: リソースファイルは同じバージョン番号でなければなりません。保存に戻る右の余白 (mm):ローマン 保存'%s' ファイルを保存名前を付けて保存(&A)...名前を付けて保存ログ内容をファイルへ保存スクリプト検索上で入力した文字列が出現するすべてのヘルプブックを探す検索方向 検索: すべてのブックを検索検索中...セクション '%s' ファイルでのシークエラーファイル '%s' でシークエラーが起きました(大きなファイルはstdioでサポートしません)全て選択(&A)ドキュメントテンプレートを選択ドキュメントビューを選択選択オプション '%s' の後にはセパレーターが求められます。設定...接続中のダイアルアップ接続が複数見つかりましたので、1つを無作為に選択します。全て表示インデックス内の全項目を表示隠しディレクトリーを表示ナビゲーションパネル 表示/非表示フォントプレビューを表示する。サイズスキップ傾きこのファイルをオープン(保存)することができませんでした。このファイルをオープンすることができませんでした。このファイルを保存することができませんでした。プレビュー生成に必要なメモリがありません。印刷プレビューは、インストールされたプリンターを必要とします。このファイルのフォーマットは未知のものです。サウンドデータは、サポートされていないフォーマットです。サウンドファイル '%s' は、サポートされていないフォーマットです。ステートメント, 5 1/2 x 8 1/2 インチ状態:状態: ストリームの委譲は、まだストリームになっていないオブジェクトに対して未実装ですカラー文字列: 不正確なカラー指定 '%s'サブクラス '%s' はリソース'%s'から見つけられません, サブクラスではありません!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmスイスTIFF ライブラリでエラー発生。TIFF ライブラリが警告を出しました。TIFF: メモリー割り当てに失敗しました。TIFF: イメージロード中にエラー。TIFF: イメージ読込みエラー。TIFF: イメージ保存エラー。TIFF: イメージ書込みエラー。タブロイド Extra 11.69 x 18 inタブロイド, 11 x 17 インチテレタイプテンプレートタイ (ISO-8859-11)このFTPサーバは、パッシブモードをサポートしません。このFTPサーバは、PORTコマンドをサポートしません。文字セット '%s' は未知のものです。 代替文字セットを選ぶか、代替できない場合 [キャンセル]してください。クリップボード形式 '%d' は、存在しません。ディレクトリー '%s' は存在しません。 今作成しますか?ファイル '%s' は存在しないので開けませんでした。 それは最近使われたファイルリストから削除されました。ファイル '%s' は存在しないので開けませんでした。 最近使われたファイルのリストから削除されました。フォントの色。フォントファミリー。フォントポイントサイズ。フォントスタイル。フォントウエイト。パス '%s' に ".." が多すぎるようです。情報提供のために以下のファイルが含まれます。もしその中に個人情報等が含まれる場合、 チェックボックスの印を解除すれば外部へ情報が出るのを防ぐことができます。 必要なパラメーター '%s' が指定されませんでした。テキストは保存されませんでした。オプション '%s' には値が必要です。ページ設定中に問題が発生しました: 通常使うプリンターを設定する必要があります。スレッドモジュール初期化に失敗: スレッドローカルストレージに値を保存できませんスレッドモジュール初期化に失敗: スレッドキーの生成に失敗しましたスレッドモジュール初期化に失敗: スレッドローカルストレージに索引を割り当てることができませんスレッド優先度の設定が無視されました。水平に並べる(&H)垂直に並べる(&V)FTPサーバの接続タイムアウトを待っている間に、パッシブモードを試してください。タイマー生成失敗今日のヒントヒントが利用できません。宛先:PNGに含まれる色が多すぎます。画像が多少ぼかされるかもしれません。上の余白(mm):メモリーVFSからファイル '%s' を削除しようとしましたが、そのファイルは読み込まれていません。NULLホスト名の解決を試みました: あきらめましたトルコ (ISO-8859-9)型enum から long への変換が必要ですUS Std Fanfold, 14 7/8 x 11 インチ要求されたHTMLドキュメントを開くことができません: %s 同時にサウンドをプレーすることができません。アンデリート予期せぬパラメーター '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)未知のDDEエラー %08x未知のオブジェクトはGetObjectClassInfoに渡されました未知の動的なライブラリエラー不明なエンコード (%d)不明な長いオプション '%s'不明なオプション '%s'不明なスタイルフラグMIMEタイプのエントリー %s で対応がとれない '{' があります。コマンドに名前がありませんサポートされていないクリップボード形式です。サポートされないテーマ '%s'。上使い方: %s検証の競合詳細ビューでファイル表示リストビューでファイル表示表示警告警告:西ヨーロッパ (ISO-8859-1)ユーロ圏西ヨーロッパ (ISO-8859-15)フォントが下線付きかどうか。単語全体に一致単語全体への一致のみWin32テーマWindows 3.1上のWin32s Windows 2000 (ビルド %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows アラビア (CP 1256)Windows バルト (CP 1257)Windows セントラル ヨーロッパ (CP 1250)Windows 簡体字中国語 (CP 936)Windows 繁体字中国語 (CP 950)Windows キリル (CP 1251)Windows ギリシャ (CP 1253)Windows ヘブライ (CP 1255)Windows 日本 (CP 932)Windows 韓国 (CP 949)Windows MEWindows NT %lu.%lu (ビルド %luWindows Server 2003 (ビルド %luWindows タイ (CP 874)Windows トルコ (CP 1254)Windows 西ヨーロッパ (CP 1252)Windows XP (ビルド %luWindows/DOS OEM (CP 437)ファイル '%s' 書き込みエラーXML構文解析エラー: '%s' %d 行XPM: ピクセルデータ形式に不整合があります。XRCリソース '%s' (クラス '%s') が見つかりません!XRCリソース: '%s' からビットマップを生成できません。はいこのセクションに新しいディレクトリーは追加できません。ズームイン(&I)ズームアウト(&O)ズーム適用(&F)[空]DDEMLアプリケーションが、長時間の競合状態を作り出しました。最初にDdeInitialize関数を実行せずに、DDEML関数が呼ばれたか または、無効なインスタンス識別子が DDEML関数に渡されました。通信を確立させるクライアントの試みは、失敗しました。メモリ割り当ては失敗しました。パラメーターが、DDEMLによる有効性検査に失敗しました。同期アドバイストランザクションの要求がタイムアウトしました。同期データトランザクションの要求がタイムアウトしました。同期実行トランザクションの要求がタイムアウトしました。同期ポークトランザクションの要求がタイムアウトしました。アドバイストランザクション終了要求がタイムアウトしました。サーバー側トランザクションが実行されようとしましたが クライアント、あるいはサーバーによって会話が切断され トランザクションを完了できませんでした。トランザクションは失敗しました。altAPPCLASS_MONITORとして初期化されたアプリケーションが DDEトランザクションを実行しようしたか APPCMD_CLIENTONLYとして初期化されたアプリケーションが サーバートランザクションを実行しようとしました。PostMessage関数の内部呼び出しが失敗しました。DDEMLで内部エラーが発生しました。無効なトランザクション識別子が DDEML関数に渡されました。 XTYP_XACT_COMPLETE コールバックからアプリケーションが戻った場合 トランザクション識別子は、もはや有効ではありません。これはマルチ-部品であることを想定してzipを連結しました不変キー '%s' を変更しようとしましたが無視されました。ライブラリー機能への不正な引き数です署名エントリへの不正なzipファイルオフセットバイナリボールドWindows ディレクトリ用のバッファが小さすぎます。ファイル '%s' を閉じることができませんファイルデスクリプター %d を閉じることができません変更をファイル '%s' に保存できませんファイル '%s' を作成できませんユーザー設定ファイル '%s' を削除できませんデスクリプター %d でファイルの終端に達したかどうかを決定できません'%s' の実行に失敗しましたzip 内の主要ディレクトリを見つけることができませんファイルデスクリプター %d でファイルの長さを取得できません現在のユーザーのホームディレクトリが見つかりません。現在のディレクトリを使います。ファイルデスクリプター %d への変更を書き出せませんファイルデスクリプター %d に対するシーク位置を取得できませんどのフォントもロードできません。中断します。ファイル '%s' をオープンできませんグローバル設定ファイル '%s' を開くことができません。ユーザー設定ファイル '%s' を開くことができません。ユーザー設定ファイルを開くことができません。zip収縮ストリームを再初期化できません。zip膨張ストリームを再初期化できません。ファイルデスクリプター %d から読むことができませんファイル '%s' を削除できません一時ファイル '%s' を削除できませんファイルデスクリプター %d でシークできませんバッファー '%s' をディスクに書き込めませんファイルデスクリプター %d に書き出せませんユーザー設定ファイルを書き出せません。ドメイン '%s' のためのカタログファイルが見つかりません。チェックサムエラー圧縮エラー8ビットエンコーディングへの変換に失敗しましたctrl日付伸張エラー初期値デリゲートが型情報を持っていませんプロセスの状態に関するバイナリダンプ第18第8第11エントリー '%s' は、グループ '%s' に複数回出現しますデータ形式のエラーファイル '%s' を開く際にエラーが発生しましたファイル の読み込みエラーzipの主要ディレクトリー読取エラーzipローカルヘッダーの読み込みエラーzipエントリ %s の書き込みエラー: 不正な長さかCRC異常ですファイル '%s' の書き出しに失敗しました第15第5ファイル '%s', %d 行目: '%s' グループヘッダの後は無視しました.ファイル '%s', %d 行目: '=' が必要です。ファイル '%s', %d 行目: キー '%s' は %d 行で最初に見つかりました。ファイル '%s', %d 行目: 不変キー '%s' への値は無視されました。ファイル '%s': 予期せぬ文字 %c が %d 行目に見つかりました第1フォントの大きさ第14第4冗長なログメッセージを生成不正確なイベントハンドラ文字列です。ドットが入っていません。メッセージボックスからの戻り値が不正です。不正なzipファイルイタリック軽量ロケール '%s' を設定できません。カタログ '%s' をパス '%s' で検索します。夜第19第9DDEエラーはありませんでした。エラーなし名称未設定昼数値オブジェクトがXMLテキストノードを持てませんメモリー不足プロセスコンテキストの内容読み込みエラーzipストリーム読み込み(エントリ %s): 不正なCRCですzipストリーム読み込み(エントリ %s): 不正な長さです再入可能製に関する問題。第2シークエラー第17第7シフトこのヘルプメッセージを表示する第16第6使用するディスプレイモードを指定して下さい (例 640x480-16)使用するテーマを指定してくださいzip ヘッダになかったファイル長を格納しました文字家膣第10トランザクションへの応答が、DDE_FBUSY ビットをセットする原因となりました。第3第13tiff モジュール: %s今日明日第12第20下線付き位置 %d ( '%s' 内)に想定外の " があります。不明不明なクラス名称: %s不明なエラー不明なエラー (エラーコード %08x)シークの基点が不明です不明-%d名前なし名前なし%d対応していない zip 書庫ですカタログ '%s' として '%s' を使います書き込みエラーwxGetTimeOfDay を実行できませんでしたwxSocket : ReadMsg に無効な署名がありました。wxSocket: 不明なイベントです。wxWidgetsは '%s' のディスプレイをオープンできません: 終了します。wxWidgetsはディスプレイをオープンできません。終了します。昨日zlib のエラーです: %d|<<wxMaxima-13.04.2/locales/wxwin/pl.mo000644 000765 000024 00000120361 11670654443 017645 0ustar00andrejstaff000000 000000 tG\'x4&y4 444444 5 55(5 G5U5i55 55 5 5 55556 6)6<6R6Z6m6s6666666667"7*7 C7O7b7k77 77 7 7 7777 8 8808E8 ]8h8q88888 888899;9 L91Y99&9 99 999: :: :':-:K:P: W: c:q: :::::::::<;L;"\; ; ;;#;;;%;$<1?<#q<#<<@<=0=C=L=2`=8=A=(>'7>H_>1>1> ?#?5?K?>`??? ? ????%@*,@&W@>~@@@ @ @@A0!ARA pA ~AAAAAAAAB!B2B FBRB YBeB}B BBB B BBBBC:CACA_C8C C C C D D/DGDOD ^DkDD(D D D D DDDDEE-E@E%`EEEE E EE EEFF&F#FFjF~FF FF FFF(FG+G=G SG_GdGjGzG)GGGGH \P\`\\\\\\\\ \\ ]]]]*]/]#?]Dc] ]B] ^^^ 5^B^S^\^`^w^^^^^^ ^ ^ ^+ _6_F_ M_ Z_ d_ n_y___,___ _ _ ` `` ` %` 1`<` B`M`S`c` h` s`}` ``````` ` ``a aa a$a )a4a;aAa Fa Qa\a maxaaa aaa aaaab!b3b8b ?bJb Qb\babfbmbqbwb ~bbb b b bb bb bb bbbb ccD)cncbcaUdade*e;eDZee e1e6fg+g4gKg Tgbgxggggggggh#h>h Nh Xh dhrhzhh hhh hhi i"i"7iZi ainiiiiiii ii jj,j3j CjOjaj pjzjj'jj jj kk:k IkTkdkxkkkk k kk)l".lQlml?lll l l mmm7m?mHm\m amlm m mm mm mmmnn 1n>nEn Nn onn"n nnnAn3*o3^o5oo+op+,pXp\rppp qqB q9cq@q1q3rNDr.r.rrss,s:@s{s sssssss!t5t=Qttttttt/u3uMuaupuvuu$uuuuuvv(v 8v BvLv cvov xvvv vvv*v% w1w 9wVZwWw xx#x4xGx#Ox sx}xxxx&x x y y y*y 1y;y[ycy{y yay z%9z _ziz|zz zzzzUz 1{R{+j{*{ {{ { {,{*|J|a|w||||||?|(}"F} i}+}}/}}!~<~E~ M~W~ [~h~ p~ ~~~,~7~4~-1'A is!*F0C4t8  $ 3#>bā!ف$ @ LY` oz/ ȂЂX#Dhpx|(σ  3Gfu$!" %,R$[  ˅؅=2R2b "҆ 0 M[mtw| Ňj" ʈވ $@+V=ωމ   -;J^ t~  ܊ : Ra`‹ы(1 8DSj **!2J'cҍ ٍ2B2Y$͎ߎ&$@e~ȏ16/fz  Ő'ӐRk e '(F o }'Ē(ޒCKHbF#W4U !(J"aǕ̕ҕ ڕ  sB:֖J \ gqΗҗ(Dcv ~ -Ԙ  P p1} ˙ܙ   .8AQZcl {Ěٚ  "*1AIZ` t~   ě Λ ڛ )?Pl ̜    ! /:I OZk }   ԝߝ FX`JҟXgvDؠmN*2@wn 4i$S<aK/^;5}OJ|qg5L/"b5bH!tD'=Y=`)Ld`!Ji^acR.E6\heW<68f[ B(&Rl2OQMD9kl#:m2@vxNIU:^s#Uh-+Z%_rF[C-K(ujtj4lp> X fz] SeT|b &WKWCPUS?/~ 9Tp0{Y}IouA'1 \oTiG1d07+?E"_qN\8Y *'ynB,{r9)F4:)$Vj>BDfzI <( g@G sQ >g`MAOLHA#R 3]he0ZkoV=qX G,J"w3xPyH8*;.an c6dp7cP%V3%kmQsC ,t[rv7 $]?F1XE!-.+ZM&_;~ << Expression too long to display! >> << Unfold >>&Algebra&Apply to list ...&Apropos&Batch file Ctrl-B&Boundary value problem ...&Bug report&Calculus&Canonical form&Characteristic polynomial ...&Clear memory&Combine factorials&Complex simplification&Continued fraction&Copy Ctrl-C&Definite integration&Delete cells&Demoivre&Determinant&Differentiate ...&Edit&Eliminate variable ...&Enter matrix ...&Example&Expand expression&Expand trigonometric&Export&Factor expression&File&Find root ...&Generate matrix ...&Greatest common divisor ...&Help&Integrate ...&Interrupt Ctrl-.&Interrupt Ctrl-G&Invert matrix&Load package Ctrl-L&Map to list ...&Maxima&Modulus computation ...&New Ctrl-N&New window Ctrl-N&Numeric&Numerical integration&Nusum&Open Ctrl-O&Plot&Power series&Print Ctrl-P&Rational&Reduce trigonometric&Restart maxima&Roots of polynomial (real)&Save Ctrl-S&Simplify&Simplify expression&Simplify factorials&Simplify trigonometric&Solve ...&Special&Taylor series&Transpose matrix&Trigonometric simplification&pm3d(Use default language)A&t value ...AboutAbout wxMaximaAd&joint matrixAdd a directory to search pathAdd algebraic e&quality ...Add dir to path:Add to &pathAdditional parameters for maxima (e.g. -l clisp).Additional parameters:Adjustment for the size of greek font.Adjustment:All|*AnimationApplyApply function to a listAproposArray:At valueBackgroundBasicBat files (*.bat)|*.bat|All|*BoldBrowseBuild &infoButton panel:C&hange variable ...C&onfigureCalculate &product ...Calculate modulus:Calculate productsCalculate su&m ...Calculate sumsCancelCellChange &2d displayChange the 2d display algorithm used to display math output.Change variableChange variable in integral or sumChar polyChoose fontColumns:Combine factorials in an expressionComma separated x coordinatesComma separated y coordinatesCompute continued fraction of a valueCompute the adjoint maxrixCompute the characteristic polynomial of a matrixCompute the determinant of a matrixCompute the greatest common divisorCompute the inverse of a matrixCompute the least common multiple (do load(functs) before using)Configuration warningConfigure wxMaximaConstantContract logarithmsConver trigonometric functions to exponential formConvert binomials, beta and gamma function to factorialsConvert binomials, factorials and beta function to gamma functionConvert complex expression to polar formConvert complex expression to rect formConvert exponential function of imaginary argument to trigonometric formConvert logarithm of product to sum of logarithmsConvert sum of logarithms to logarithm of productConvert to &factorialsConvert to &gammaConvert to &polarformConvert to &rectformConvert trigonometric expression to canonical quasilinear formCopyCopy TeXCopy as imageCopy cellsCopy selected cellsCopy selectionCopy selection from documentCopy selection from document as imageCopy selection from document in TeX formatCopy selection from document to a fileCopy selection to clipboard when selection is made in console.Copy to clipboard on selectCutCut Ctrl-XCut cellsCut selected cellsCut selection from documentDecompose rational function to partial fractionsDecrease fontsize in documentDefault font:Default port:DeleteDelete a functionDelete a variableDelete all values from memoryDelete f&unctionDelete function(s):Delete selected cellsDelete selectionDelete v&ariableDelete variable(s):Denom. deg:Depth:Derivative:Di&vide polynomials ...Diff...DifferentiateDifferentiate ...Differentiate expressionDirection:Discrete plotDisplay Te&X formDisplay algorithmDisplay expression in TeX formDisplay time used for executionDivideDivide numbers or polynomialsDocument not saved! Close current document and lose all changes?Document not saved! Quit wxMaxima and lose all changes?E&quationsE&xit Ctrl-QEige&nvectorsEigen&valuesEliminateEliminate a variable from a system of equationsEnglishEnter a matrixEnter matrixEnter new plot format:Enter new precision:Enter the path to the maxima executable.Equation %d:Equation(s):Equation:Equations:ErrorError %dError opening fileError!Evaluate &noun formsEvaluate all cellsEvaluate all cells Ctrl-Shift-REvaluate all noun forms in expressionEvaluate cell Shift-EnterEvaluate selected cellExampleExample textExit wxMaximaExpandExpand (tr)Expand an expressionExpand expressionExpand logarithmsExpand trigonometric expressionExport document output to HTML fileExport to HTML fileExporting to HTML failed!Exporting to TeX failed!ExpressionExpression(s):Expression:FactorFactor an expressionFactor an expression in Gaussian numbersFactor complexFactor expressionFactorials and &gammaFatal errorFileFile:Find &limit ...Find a limit of an expressionFind a root of an equation on an intervalFind all roots of a polynomialFind eigenvalues of a matrixFind eigenvectors of a matrixFind real roots of a polynomialFind root ...Fixed font in text controlsFont used for display in console.Font used for displaying greek characters in console.FontsFormat:FrenchFrom:FullFunctionFunction namesFunction(s):Function:Functions for complex simplificationFunctions for simplifying factorials and gamma functionFunctions for simplifying trigonometric expressionsGCDGenerate MatrixGenerate a matrix from a 2-dimensional arrayGermanGet &imaginary partGet &series ...Get Laplace transformation of an expressionGet inverse Laplace transformation of an expressionGet real p&artGet the Taylor or power series of expressionGet the imaginary part of complex expressionGet the real part of complex expressionGreek constantsGrid:HTML file (*.html)|*.html|pdfLaTeX file (*.tex)|*.tex|All|*Height:HelpHidden groupsHighlightHungarianIncrease fontsize in documentInfo about maxima buildInitial value problem (&1) ...Initial value problem (&2) ...InputInsert input groupInsert new input cellInsert new text cellInsert new title cellInsert textIntegral/Sum:IntegrateIntegrate (risch)Integrate ...Integrate expressionIntegrate expression with Risch algorithmIntegrate...InterruptInterrupt current computationInvalid entry for maxima program. Please enter the path to maxima program again.Inverse Laplace t&ransform ...ItalianItalicLCMLabelsLanguage used for wxMaxima GUI.Language:LaplaceLaplace &transform ...Least common multiple ...LimitLimit...List:Load a maxima file using batch commandLoad a maxima package fileLower bound:Ma&p to matrix ...Main promptsMake &list ...Make listMake list from expressionMake substitution in expressionMapMap function to a listMap function to a matrixMap...Match parenthesis in text controlsMatrixMatrix mapMatrix:Maxima &help F1Maxima is calculatingMaxima optionsMaxima package (*.mac)|*.macMaxima package (*.mac)|*.mac|Lisp package (*.lisp)|*.lisp|All|*Maxima process terminated.Maxima program:Maxima started. Waiting for connection...Method:ModulusNew §ion cell Ctrl-F6New &text cell F6New t&itle cell Ctrl-Shift-F6New value:New variable:Not a valid matrix dimension!Not a valid number of equations!Num. deg:Number of equations:NumbersOKOffOld value:Old variable:OpenOpen a new windowOpen sessionOpen session from a fileOptionsOptions:Other promptsP&ade approximation ...PNG image (*.png)|*.png|JPEG image (*.jpg)|*.jpg|Windows bitmap (*.bmp)|*.bmp|X pixmap (*.xpm)|*.xpmPade approximationPade approximation of a Taylor seriesParametric plotParsing outputPartial &fractions ...Partial fractionsPastePaste Ctrl-VPaste cellsPaste cells to documentPaste text from clipboardPlease configure wxMaxima with 'Edit->Configure'.Please restart wxMaxima for changes to take effect!Plot &2d ...Plot &3d ...Plot &format ...Plot 2DPlot 2D...Plot 2d ...Plot 3DPlot 3D...Plot 3d ...Plot formatPlot in 2 dimensionsPlot in 3 dimensionsPlot to file:Point:PolishPolynomial 1:Polynomial 2:Portuguese (Brazilian)Postscript file (*.eps)|*.eps|All|*PrecisionPrintPrint documentProductProduct...Quit?Reading maxima outputReady for user inputReduce (tr)Reduce trigonometric expressionReport bugRestart maximaRisch integration ...Roots of &polynomialRows:RussianSaveSave asSave imageSave plot to fileSave selection to fileSave sessionSave session to a fileSave to fileSave wxMaxima window size/positionSave wxMaxima window size/position between sessions.Select a constantSelect allSelect all Ctrl-ASelect file to openSelect math display algorithmSelect maxima programSelect package to loadSelection to imageSeriesSeries...Server startedSet &precision ...Set fixed font in text controls.Set plot formatSet the floating point precisionSetup atvalues for solving ODE with Laplace transformationSetup modulus computationShow &definitionShow &functionsShow &variablesShow Maxima headerShow all commands similar to:Show an example for the command:Show an example of usageShow commands similar toShow defined functionsShow defined variablesShow definition of a functionShow initial header with Maxima system information.Show long expressionsShow long expressions in wxMaxima console.Show maxima helpShow the definition of function:SimplifySimplify &radicalsSimplify (r)Simplify (tr)Simplify an expression containing factorialsSimplify expressionSimplify expression containing radicalsSimplify rational expressionSimplify the sumSimplify trigonometric expressionSolution:SolveSolve &ODE ...Solve &algebraic system ...Solve &linear system ...Solve ...Solve ODESolve ODE with Lapla&ce ...Solve ODE...Solve algebraic systemSolve algebraic system of equationsSolve boundary value problem for second degree ODESolve equation(s)Solve initial value problem for first degree ODESolve initial value problem for second degree ODESolve linear systemSolve linear system of equationsSolve ordinary differential equation of maximum degree 2Solve ordinary differential equations with Laplace transformationSolve...SpanishSpecialSpecial constantsStart animationStarting maxima process failedStarting maxima...Starting server failedStarting server on port %dStop animationStringsStyleStylesSubstituteSubstitute ...Substitute...SumSum...Taylor series:TextText backgroundThe bigfloat value of an expressionThe default port used for communication between Maxima and wxMaxima.The float value of an expressionThere was an error in generated XML! Please report this as a bug.Ticks:Times:Tips not available, sorry!To &bigfloatTo &float Ctrl-FTo floatTo:Toggle &algebraic flagToggle &numeric outputToggle &time displayToggle algebraic flagToggle numeric outputTranspose a matrixType:UkrainianUnderlinedUpper bound:Use greek font to display greek characters.Use greek font:Value:Variable(s):Variable:VariablesVariables:WarningWelcome to wxMaximaWidth:Write matching parenthesis in text controls.Zoom &in Alt-IZoom ou&t Alt-O[ unsaved ][ unsaved* ]antisymmetricaquamarineblackblueblue violetboth sidesbrowncadet bluecoralcornflower bluecyandark greendark greydark olive greendark orchiddark slate bluedark slate greydark turquoisedefaultdiagonaldim greyfirebrickforest greengeneralgoldgoldenrodgreengreen yellowgreyindian redinlinekhakileftlight bluelight greylight steel bluelime greenmagentamaroonmedium aquamarinemedium bluemedium forrest greenmedium goldenrodmedium orchidmedium sea greenmedium slate bluemedium spring greenmedium turquoisemedium violet rednavyorangeorange redorchidpale greenpinkplumpurpleredrightsalmonsea greensiennasky bluespring greensteel bluesymmetrictanturquoiseuntitleduntitled.wxmvioletviolet redwheatwhitewxMaximawxMaxima %s wxMaxima configurationwxMaxima could not find help files. Please check your installation.wxMaxima could not find maxima! Please configure wxMaxima with 'Edit->Configure'. Then start maxima with 'Maxima->Restart maxima'.wxMaxima could not start the server. Please check you have network support enabled and try again!wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.wxMaxima is a graphical user interface for the computer algebra system Maxima based on wxWidgets.wxMaxima optionswxMaxima sessionwxMaxima session (*.wxm)|*.wxmwxMaxima session (*.wxm)|*.wxm|Maxima batch file (*.mac)|*.mac|All|*yellowyellow greenProject-Id-Version: pl Report-Msgid-Bugs-To: POT-Creation-Date: 2008-12-15 19:37+0100 PO-Revision-Date: 2007-07-16 22:32+0100 Last-Translator: Rafał Topolnicki MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit << Wyrażenie jest zbyt długie aby je wyświetlić >> << Rozwiń >>&Algebra&Zastosuj do listy ...&AproposPlik &wsadowyWarunek &brzegowy ...Zgłoś &błąd&RRCPostać &kanonicznaWielomian charakterystyczny ...&Wyczyść pamięć&Połącz silnie Uproszczenia &zepoloneUłamek ł&ańcuchowy&Kopiuj Ctrl-C&Granice całki oznaczonej&Usuń komórki&Demoivre&Wyznacznik&Pochodna ...&Edycja&Wyznacz zmienną ...&Wprowadź macierz ...&Przykład&Rozwiń wyrażenieRozwiń &trygonometrycznie&Eksportuj&Faktoryzuj wyrażenie&PlikZnajdź &pierwiastek ...&Generuj macierz ...&Największy wspólny dzielnik ...&Pomoc&Całkuj ...&Przerwij Ctrl-.&Przerwij Ctrl-GMacierz &odwrotnaWczytaj pakiet Ctrl-L&Mapuj listę ...&MaximaObliczenia &modulo ...&Nowy Ctrl-N&Nowe okno Ctrl-N&NumeryczneCałkowanie &numeryczne&Nusum&Otwórz Ctrl-O&KreślenieSzereg &potęgowy&Drukuj Ctrl-P&Wymierny&Redukuj trygonometrycznie&Uruchom maxime ponownie&Pierwiastki wielomianiu (rzeczywiste) &Zapisz Ctrl-S&Uprość&Uprość wyrażenie wymierneUprość &silnie&Uprość trygonometrycznie&Rozwiąż ...&SpecjalneSzereg &Taylora&Transponuj macierzUproszczenia &trygonometryczne&pm3d(Użyj domyślnego języka)Ustaw wartość wyrażenia ...O programieO wxMaximaMacierz &dołączonaDodaj katalog do ścieżki przeszukiwaniaDodaj algebraiczną równość ...Podaj katalog do ścieżki:&Dodaj do ścieżkiParametry z jakimi ma zostać uruchomiona maxima (np. -l clisp)Dodatkowe parametryWielkość greckich czcionekWielkość:Wszystkie|*AnimacjeZastosujZastosuj funkcję do listyAproposTablica:Wartość w punkcieTłoPodstawowyPliki bat (*.bat)|*.bat|All|*PogrubionyPrzeglądaj&Informacje o kompilacjiDolny panel&Zmiana zmiennych ...P&referencjeOblicz &iloczyn ...Obliczenia modulo:Oblicz iloczynOblicz &sumę ...Oblicz sumęAnulujKomórkaZmień format podawania wynikówZmień format podawania wynikówZmiana zmiennychZamień zmienne w całce lub sumieWiel charWybierz czionkęKolumny:Połącz silnie występujące w wyrażeniu - np. 'n*(n-1)! => n!'Przecinek oddziela kolejne współrzędne na osi OXPrzecinek oddziela kolejne współrzędne na osi OYPrzedstaw wyrażenie w postaci ułamka łańcuchowegoZnajdź macierz dołączonąOblicz wielomian charakterystyczny macierzyOblicz wyznacznik macierzyZnajdź największy wspólny dzielnik (NWD)Znajdź macierz odwrotnąZnajdź najmniejszą wspólną wielokrotność (NWW) (przed użyciem wykonaj 'load(functs)')Uwaga na temat konfiguracjiPreferencje programu wxMaximaStałaZwiń logarytmyZamień funkcje trygonometryczne i hiperboliczne na ekspotencjalneZamień dwumian Newtona, funkcje beta lub gamma na silnieZamień dwumian Newtona, silnie, funkcję beta na funkcję gammaZamień wyrażenie zepolone na postać biegunowąZamień wyrażenie zepolone na postać alebraicznąZamień postać wykładniczną liczby zespolonej na postać trygonometryczną.Zamień logarytm iloczynu na sumę logarytmówZamień sumę logarytmów na logarytm iloczynuZamień na &silnieZamień na fun. &gammaForma &biegunowaForma &algebraicznaUprość wyrażenie trygonometryczne zawierające ułamki.KopiujKopiuj TeXKopiuj jako obrazekKopiuj komórkęKopiuj zaznaczone komórkiKopiuj zaznaczenieKopiuj zaznaczenieKopiuj zaznaczenie jako obrazekKopiuj zaznaczenie do formatu TeXKopiuj zaznaczenie do plikuKopiuj zaznaczenie do schowka gdy jest ono zrobione w konsoliKopiuj zaznaczenie to schowkaWytnij&Wytnij Ctrl-XWytnij komórkiWytnij zaznaczoną komórkęWytnij zaznaczeniePrzedstaw wyrażenie w postaci ułamka prostegoZmniejsz rozmiar czcionkiDomyślna czcionka:Domyślny portUsuńUsuń funkcjęUsuń zmiennąUsuń wszystkie wartości z pamięciUsuń &funkcjęUsuń funkcję(e)Usuń zaznaczone komórkiUsuń zanaczenieUsuń &zmiennąUsuń zmienną(e)st. mianownika:Stopień:Pochodna:Podziel wielomiany ...Pochodna...PochodnaPochodna ...Oblicz pochodną wyrażeniaZ:DyskretnyWyświetl w formacie Te&XPrzedstawianie wynikówWyświetl ostatnie wyjście w formacie TeXWyświetl czas potrzebny na wykonaniePodzielDzielenie liczb lub wielomianówDokument nie jest zapisany! Zamknąć bieżący dokument i stracić wszystkie zmiany?Dokument nie jest zapisany! Czy chcesz wyjść z wxMaximy i stracić wszystkie zmiany?&Równania&Wyjdź Ctrl-QW&ektory własneW&artości własneWyznaczWyznacz zmienną z układu równańAngielskiWprowadź macierzWprowadź macierzWprowadź nowy formatUstaw nową dokładnośćWprowadź scieżkę do programu maximaRównanie %d:Równanie(a):Równanie:Równania:BłądBłąd %dBłąd podczas otwierania plikuBłąd!Oblicz formy &nominalneOblicz wszystkie komórkiOblicz wszystkie komórki Ctrl-ROblicz wszystkie zablokowane przed obliczaniem części wyrażenia. Zobacz w pomocy rozdział 6.3Oblicz komórkę ponownie Ctrl-ROblicz ponownie zaznaczoną komórkęPrzykładPrzykładowy tekstWyjdź z wxMaximaRozwińRozwiń (tr)Rozwiń wyrażenieRozwiń wyrażenieRozwiń logarytmyRozwiń wyrażenie trygonometryczne. Zapisz w postaci funkcji pojedynczego argumentu.Eksportuj dokument do pliku HTMLEskportuj do pliku HTMLEksport do formatu HTML nie powiódł się!Eksport do formatu TeX nie powiódł się!WyrażenieWyrażenie(a):Wyrażenie:FaktoryzujFaktoryzuj wyrażenie. Rozkład na czynniki.Rozkład wyrażenia na czynniki zespolone.Faktoryzuj &zespolenieFaktoryzuj wyrażenieSilnie i funkcje &gammaKrytyczny błądPlikPlik:Znajdź &granicę ...Znajdź granicę wyrażeniaZnajdź numerycznie rozwiązania równania w podanym przedzialeZnajdź wszystkie pierwiastki wielomianuZnajdź wartości własne macierzyZnajdź wektory własne macierzyZnajdź rzeczywiste pierwiastki wielomianiuZnajdź &pierwiastek ...Stała szerokość czcionki w polach tekstowychCzionka używana w konsoliCzcionka greckich liter w konsoliCzcionkiFormat:FrancuskiOd:ZaawansowanyFunkcjaNazwy funkcjiFunkcja(e):Funkcja:Funkcje służące do uproszczeń zepolonychFunkcje służące do uproszczeń silni i funkcji gammaFunkcje służące do uproszczeń trygonometrycznychNWDGeneruj macierzGeneruj macierz z dwuwymiarowej tablicyNiemieckiCzęść &urojonaZnajdź &szereg ...Transformata Laplace'a wyrażeniaOdwrotna transformata Laplace'a wyrażeniaCzęść &rzeczywistaZnajdź szereg Taylora lub szereg potęgowy przybliżający wyrażenieZnajdź urojoną część zespolonego wyrażeniaZnajdź rzeczywistą część zespolonego wyrażeniaGreckie stałeSiatka:HTML (*.html)|*.html|pdfLaTeX (*.tex)|*.tex|Wszystkie|**Wysokość:PomocUkryte (zwinięte) liniePodświetlenieWęgierskiZwiększ rozmiar czcionki w konsoliInformacje o kompilacji maximyWarunek początkowy (&1) ...Warunek początkowy (&2) ...WejścieWstaw grupę wejśćWstaw nową komórkę wejściowąWstaw nową komórkę z tekstemWstaw nową komórkę z nagłówkiemWstaw tekstCałka/Suma:CałkaCałka (risch)Całka ...Całkuj wyrażenieCałkuj wyrażenie z użyciem alogorytmu RischaCałka ...PrzewijPrzerwij bieżące zadanieBłędna lokalizacja programu maxima. Wprowadź ponownie ścieżkę do programu maxima.Odwrotna transformata Laplace'a ...WłoskiKursywaNWWEtykietyJęzyk użwany w GUI wxMaximyJęzyk:Laplace&Transformata Laplace'a ...Najmniejsza wspólna wielokrotność ...GranicaGranica ...Lista:Wczytaj plik maximy .mac z użyciem polecenia batchWczytaj pakiet programu maximaDolna granica:Mapuj &macierz ... Znaki zachętyUtwórz &listę ...Utwórz listęUtwórz listę za pomocą wyrażeniaWykonaj podstawienie w wyrażeniuMapujMapuj (zastosuj) funkcję do listyMapuj (zastosuj) funkcję do macierzyMapuj...Paruj nawiasy w okienkach tekstowychMacierzMapuj macierzMacierz:Maxima &pomoc F1Maxima wykonuje obliczeniaMaxima opcjepakiet Maximy (*.mac)|*.macpakiet Maximy (*.mac)|*.mac|pakiet Lisp (*.lisp)|*.lisp|All|*Maxima zakończyła działanie.Program Maxima:Uruchomiono maxime. Oczekiwanie na połączenie...Algorytm:Modulo&Sekcja Ctrl-F6Niwa komórka z &tekstem F6Nowy tytuł komórki Ctrl-Shift-F6Nowa wartość:Nowa zmienna:Niepoprawny wymiar macierzy!Niepoprawna ilość równańst. licznika:Ilość równań:LiczbyOKBrakStara wartość:Stara zmienna:WybierzOtwórz nowe oknoOtówrz sesjęOtwórz zapisaną sesję z plikuOpcjeOpcje:Inne komunikatyPrzybliżenie P&ade ...PNG obrazek (*.png)|*.png|JPEG obrazek (*.jpg)|*.jpg|Windows bitmapa (*.bmp)|*.bmp|X pixmapa (*.xpm)|*.xpmPrzybliżenie PadePrzybliżenie Pade szeregu TayloraParametrycznyParsowanie wyjściaUłamek &prosty ...Ułamek prostyWklej&Wklej Ctrl-VWklej komórkiWklej komórki do dokumentuWklej tekst z schowkaSkonfiguruj wxMaxime 'Edycja->Preferencje'.Uruchom ponownie wxMaximie aby zmiany zaczęły obowiązywaćWykres &2d ...Wykres &3d ...Format wykresu ...Wykres 2DWykres 2D...Wykres 2d ...Wykres 3DWykres 3D...Wykres 3d ...Format wykresuDwuwymiarowy wykresTrójwymiarowy wykresDo pliku:Punkt:PolskiWielomian 1:Wielomian 2:Portugalski (Brazylia)Postscript (*.eps)|*.eps|All|*DokładnośćDrukujDrukuj dokumentIloczynIloczyn ...Wyjść?Wczytywanie wyjścia maximyOczekiwanie na wejścieRedukcja (tr)Zastąpienie potęg i iloczynów funkcji tryg kombinacjami funkcji tryg wielokrotnych argumentówZgłoś błądUruchom ponownie maximeCałkuj algorytmem Rischa ...Pierwiastki &wielomianuWiersze:RosyjskiZapiszZapisz jakoZapisz obrazekZapisz wykres do plikuZapisz zaznaczenie do plikuZapisz sesjęZapisz sesję do plikuZapisz do plikuZapisz rozmiar i położenie okna wxMaximyZapisz położenie i rozmiar okna wxMaximyWybierz stałąZaznacz wszystkoZaznacz wszystko Ctrl-AWybierz plik do otwarciaWybierz sposób przedstawiania wynikówWybierz program maximaWybierz plik do wczytaniaZaznacznie do obrazkaSzeregSzereg...Uruchomiono serwer&Ustaw dokładność ...Stała szerokość czcionki w okienkach tekstowychUstaw format wykresówUstaw dokładność obliczeń zmiennoprzecinkowychUstaw wartość wyrażenia w punkcieUstawienia obliczeń moduloPokaż &definicjePokaż &funkcjePokaż &zmiennePokazuj nagłówek maximyPokaż wszystkie polecenia podobne do:Pokaż wszystkie przykłady komendy:Pokaż przykład użyciaPokaż polecenia podobne doPokaż własne funkcjePokaż własne zmiennePokaż definicję funkcjiPokazuj nagłówek maximy o systemie i kompilacjiPokazuj długie wyrażeniaPokazuj długie wyrażenia w konsoli programu wxMaximaPokaż pomoc maximyPokaż definicję funkcji:Uprość (ww)Uprość &wyrażenieUprość (w)Uprość (tr)Uprość wyrażenie zawierające silnieUprość wyrażenie wymierneUprość wyrażenie zawierające pierwiastki, funkcje wykładnicze i logarytmiczneUprość wyrażenie wymierneUprość sumyUprość wyrażenie trygonometryczne w oparciu o jedynkę trygonometryczną i jedynkę hiperbolicznąRozwiązanie:RozwiążRozwiąż RR&Z ...Rozwiąż układ &równań ...Rozwiąż układ równań &liniowych ...Rozwiąż ...Rozwiąż RRZRozwiąz układ RRZ przy użyciu TL ...Rozwiąż RRZ...Rozwiąż układ równańRozwiąż układ równań algebraicznychDefiniuj warunki brzegowe równania różniczkowego drugiego rzęduRozwiąż równanie(a)Definiuj warunki początkowe równania różniczkowego pierwszego rzęduDefiniuj warunki początkowe równania różniczkowego drugiego rzęduRozwiąż układ równań linRozwiąż układ równań liniowychRozwiąż równanie różniczkowe zwyczajne (ang. ODE) pierwszego lub drugiego stopnia.Rozwiąż układ liniowych równań różniczkowych przy pomocy transformat Laplace'aRozwiąż...HiszpańskiSpecjalneSpecjalne stałeUruchom animacjęNie udało się uruchomić maximyUruchamianie maximy...Nie udało się uruchomić serweraUruchomiono serwer na porcie %dZatrzymaj animacjęCiągi znakówStylStylePodstawPodstaw ...Podstaw...SumaSuma...Szereg TayloraTekstTło tekstuWartość wyrażenie o podwyższonej precyzji, którą można zmienić za pomocą 'Numeryczne->Ustaw dokładność'Domyślny port używany do komunikacji między Maximą i wxMaximąWartość zmiennoprzecinkowa wyrażenia. Zwykła precyzja.Wystąpił błąd w wygenerowanym pliku XML! Proszę zgłosić ten błądZnaczniki:Stopień:Wskazówki niedostępne!&Dokładna wartość&Wartość Ctrl-FWartość zmiennoprzecinkowaDo:Przełącz tryb 'alegbraic'Przełącz wyjście &numerycznePrzełącz czas wykonaniaPrzełącz tryb 'algebraic'Przełącz wyjście numeryczneTransponuj macierzRodzaj:UkraińskiPodkreślonyGórna granica:Używaj greckiej czcionki do greckich symboliGrecka czcionka:Wartość:Zmienna(e):Zmienna:ZmienneNiewiadome:UwagaWitaj w wxMaxima. Polskie tłumaczenie w wesji beta, proszę zgłaszać błędy.Szerokość:Automatycznie zamyka nawiasty w polach tekstowychPrzybliż Alt-IOddal Alt-O[ nie zapisane ][ nie zapisane* ]antysymetrycznaakwamarynaczarnyniebieskiniebiesko-fioletowyobu stronbrązowyniebiesko-szarykoralowychabrowycyjanowyciemno zielonyciemno szaryciemno oliwkowyciemno storczykowyciemno stalowo-niebieskiciemno stalowo-szaryciemo turkusowydomyślnydiagonalnablado-szaryceglastyleśna zieleńzwykłazłotyżółto-złotyzielonyzielono-żółtyszaryindiański czerwonywbudowanykhakilewej stronyjasno-niebieskijasno-szaryjasno-stlowo-niebieskilimonkowykarmazynowykasztanowyakwamarynastonowany niebstonowana leśna-zieleństonowany złotystonowany storczykowystonowany morskistonowany stalowo-niebieskistonowana wiosenna zieleństnowany turkusowystonowany fioletowo-czerwonygranatpomarańczowypomarańczowo-czerownystorczykowybaldo-szaryróżowyśliwkowypurpurowyczerwonyprawej stronyłososiowymorski zielonysienabłękitnywiosenna zieleństalowy-niebieskisymetrycznajasnobrązowyturkusowybeznazwybeznazwy.wxmfioletowyfioletowo-czerwonypszenicznybiaływxMaximawxMaxima %s wxMaxima preferencjeNie odnaleziono plików pomocy. Popraw instalację programu wxMaxima.wxMaxima nie potrafi odnaleść maximy Skonfiguruj program wxMaxima 'Edycjja->Preferencje'. Następnie uruchom maxime 'Maxima->RESTART MAXIMA'.wxMaxima nie mogła uruchomić serwera. Sparwdź swoje ustawienia sieciowe i spróbuj ponownie.wxMaxima jest interfejsem użytkownika, bazującym na wxWidgets, dla programu Maxima - komputerowego systememu obliczeń symbolicznychwxMaxima jest interfejsem użytkownika bazującym na wxWidgets dla Maximy, która jest komputerowym systemem obliczeń symbolicznychwxMaxima opcjewxMaxima sesjawxMaxima sesja (*.wxm)|*.wxmwxMaxima sesja (*.wxm)|*.wxm|Maxima plik wsadowy (*.mac)|*.mac|All|*żółtyżólto-zielonywxMaxima-13.04.2/locales/wxwin/pt_BR.mo000644 000765 000024 00000177764 11670654443 020263 0ustar00andrejstaff000000 000000 6I|3DDDDDDDE6ETE ]E gErE{E E E EEEEEEEEEEEEF FFF F(F1F 8F BFLFRFYFbFkFtFFFFFFF4F$G!-GOG*gG/G:GG HHH H H +HLHcHuHHHHHH#H/HHI$I'I6+IbIyIIIIIII4J.GJvJJJJJ6JJ: KGK [KfKKKKKK! L"+LNL-hL1L(LLM M%M9MMMTMnMMMM0MNN);NeNN(NNN#N O;'OcO)OOOOOP%3P#YP"}P(P&P%P%Q5e"Ve-ye!e.e$ef 8fYfxf#f"f-f' g"3g5Vgg&g-g/h+1h&]h,h2h-h&i&9i`i(~i!i)ii3j-Ejsjj$j!j j kkk=/kmk kkk k/kk l ll8lIlOl'gllll l#l! m#.m2Rm8mm m%mm n #n-n @nan'nnnn n n2n"o+o"Ko no oo'oop)p7?p2wp)pppq%&q+Lq%xq/qqq(qr=,r(jr#rr6r6s#=sashs1sss ssstt9tOt0Ut t t4t2tu"u Au Ku3Uu u&u u u8u v'v.v"7v Zvdvlvqvzv vvv/v v%v%w>wYwbwww&~w www!w wwx+!xMx0kxx xxxxxy3yOy#nyyy y yy y y0y4z%Pz vzzzz1z{!{*{:{ C{Q{ W{e{ {{ {{{{ {{{{ | ||&| :|F|W|l|u|/|!|3|#}7}I}"[}D~} } }-} ~~ %~2~:~T~[~b~ s~~ ~~~ ~~~ ~) #7[?d + A b-5+%)9cF6ρ ;'ciق ,.([%.ك0@&#gƄՄ;0AA*Å%ȅ* $8]w$'܆$'AWm+(Ƈ0+Co ˆ ֈ)!K S=](    9"R#u$ي $<"Vy"΋&)-:Dh/0;:V0=ލ;>X;5ӎ 9#,]-! ڏ!/Q)h>/ѐ02-Q*(ݑ#8*"c ߒ!$"'Go~ Гۓ /'< OY w4!8ޔ9.Q + 29?F&b  Ɩ"ʖ " ) 4@HN eo-uCƗ +1: B L W$c И   7CK'b3*ؙ  k ˛!$F O Yd lz  ɜќ ڜ    ) 7A H R_ h r ~  ̝$ԝ7 +C'o)/ܞ1 > FSU X dp%˟ 039mC1H\%b!?6!6;Sm1!?ݢ 0:Tk%-ܣ/ #:;^?'ڤ6>Tiq٥<1!I.k-٦')FpM(ԧ+')Q$i%+Ҩ+)*2T;-é-?'_Aɪ"@ -J'x ?ʫ4 .?In&4߬J"_*7#$"B-e#(&!3@&t%(&! 34T,!ذ#5=V ] kw/ 4ű ! &48;)t.'ղ&7$(\3#/ݳ+ 99sD1V)/ Cѵ!H7#"@Ƕ -7H^s@:ҷ; :I3 Ҹݸ +)';c~-¹ ! 6B,T#Һ!&/Hx6$ͻ"'6=!t&(())9&c?(ʽ" 0,P}/̾#&6.He0*߿# 4.(c .-)"$L:q(,</W9,9*(S o"'3(58+n$>)3(3\3.*,=K))102@)s01'(B-k.+  0-^} A&'6^y}*# "% H*i2?)@\t$*<L8_ (&'8*X#F7#5[ #*/&K2r%8-A)o"<<#6ZbJ%+?[o4u ECV$q :!# , 78B{ ! <64s))63;Q-X " - 77W $$ !;%](# ,&0S+ #'7 Xw #6Kax    ))I!s9!&R?1 !A HRfu!("%8*^ V 7#Pt|2$%1B5'x2=*G36{ P$&*Qo(3($\1 /G4L ->SLi6(.#N.r$' $8']01#Mq#5/@ Xbj"#+J"m(  2$S#x#4X q% (.-1I_8<#F+@r!.HGMJEQ&x3!4,L^fnw).; IIH=+=F.7: 5D8z**-)'W-65+?DI`$g 4 '3 Sa>h%G>2T !:#.?nv|.   &!H]ms  7"<@AG $ 6(H!q  )&P;o1 q(i(%AXQaf*76m6 @Te[;Y&85-?vvr<'KSQRj{MY&@Pb!O:2{rB ~yE1^l9 B$ 5|Q0c:9&H pX)7\ fsg8H,m}.JN3b4_M`L8d % 021jw: +1"CoU3 F]7Ph\x@W4KDis",_Vh$AJ*#&'=U'Mk0{N !+hzc5a;y%R!D3d=\v /ueek), Bj1b#CrXcO~'FnAlNy|U>ZS~On.gVpxE9$LG|!42.#-(]i_n+6`<G 6KzH^tS xPo RVpI^k)- gEmTqf}uz/d%w+$)tw.?Z> To4st>3; <[5`]*#=l 2II [GWDZqC/0J( a,*YLF}/-W "?u" (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%i of %i%ld bytes%s (or %s)%s Error%s Information%s Warning%s message&About...&Arrange Icons&Cancel&Cascade&Close&Copy&Delete&Details&Find&Finish&Goto...&Help&Log&Move&Next&Next >&Next Tip&Open...&Paste&Previous&Print...&Redo&Redo &Replace&Restore&Save...&Show tips at startup&Size&Undo&Undo &Window'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)...10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A non empty collection must consist of 'element' nodesA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAdd current page to bookmarksAdd to custom coloursAddToPropertyCollection called on a generic accessorAddToPropertyCollection called w/o valid adderAdding book %sAllAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)AttributesB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&learC3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'CancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open URL '%s'Cannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCase sensitiveCeltic (ISO-8859-14)Central European (ISO-8859-2)Choose ISP to dialChoose fontCl&oseClear the log contentsCloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find tab for idCould not load Rich Edit DLL '%s'Could not locate file '%s'.Could not start document preview.Could not start printing.Could not transfer data to windowCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDelete itemDeleted stale lock file '%s'.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display options dialogDo you want to save changes to document %s?DoneDone.Doubly used id : %dDownE sheet, 34 x 44 inEdit itemElapsed time : Enter a page number between %d and %d:Entries foundErrorError Error creating directoryError in reading image DIB .Error reading config options.Error: Esperanto (ISO-8859-3)Estimated time : Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExtended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to %s dialup connection: %sFailed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory %s/.gnome.Failed to create directory %s/mime-info.Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to kill process %dFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to match '%s' in regular expression: %sFailed to modify file times for '%s'Failed to open '%s' for %sFailed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File couldn't be loaded.File errorFile name exists already.FindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGetProperty called w/o valid getterGetPropertyCollection called on a generic accessorGetPropertyCollection called w/o valid collection getterGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)HTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal Parameter Count for ConstructObject MethodIllegal Parameter Count for Create MethodIllegal directory name.Illegal file specification.Image file is not of type %d.Impossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexIndian (ISO-8859-12)Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.KOI8-RLandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Loading Grey Ascii PNM image is not yet implemented.Loading Grey Raw PNM image is not yet implemented.Log saved to the file '%s'.Long Conversions not supportedMDI childMa&ximizeMailcap file %s, line %d: incomplete entry ignored.Match caseMemory VFS already contains file '%s'!Metal themeMi&nimizeMime.types file %s, line %d: unterminated quoted string.Mode %ix%i-%i not available.ModernModifiedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew itemNewNameNext pageNoNo entries found.No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOperation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose which ISP do you want to connect toPlease wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint spoolingPrint this pagePrint to FilePrinter command:Printer optionsPrinter options:Printer...Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'Referenced object node with ref="%s" not found!Registry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry value '%s' already exists.Relevant entries:Remaining time : Remove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Replace &allReplace with:Resource files must have same version number!Right margin (mm):RomanSave %s fileSave asSave log contents to fileScriptSearchSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Select &AllSelect a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.SetProperty called w/o valid setterSetup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow hidden filesShow/hide navigation panelSizeSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sString conversions not supportedSubclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The clipboard format '%d' doesn't exist.The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.Thread module initialization failed: failed to create thread keyThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.Unexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown encoding (%d)Unknown field in file %s, line %d: '%s'.Unknown long option '%s'Unknown option '%s'Unknown style flag Unkown Property %sUnmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictVideo OutputView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XPM: malformed colour definition '%s'!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.ZIP handler currently supports only local files![EMPTY]a DDEML application has created a prolonged race condition.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a transaction failed.altan internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.attempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebinaryboldbold can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't query for GUI plugins name in console applicationscan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorctrldatedecompression errordefaultdelegate has no type infoeighteentheightheleventhencoding %sentry '%s' appears more than once in group '%s'error in data formaterror opening fileestablishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinitiateinvalid eof() return value.invalid message box return valueitaliclightlight locale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryread errorreadingreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunderlined unexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown line terminatorunknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.write errorwritingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets-2.5.2 Report-Msgid-Bugs-To: POT-Creation-Date: 2005-02-15 01:23+0100 PO-Revision-Date: 2004-05-12 17:19-0300 Last-Translator: E. A. Taco Language-Team: wxWidgets translators MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit (erro %ld: %s) - VisualizarEnvelope n 10, 4,125 x 9,5 polEnvelope n 11, 4,5 x 9,5 polEnvelope n 12, 4,75 x 11 polEnvelope n 14, 5 x 11,5 polEnvelope n 9, 3,875 x 8,875 pol%i de %i%ld bytes%s (ou %s)Erro %sInformao %sAviso %smensagem %s&Sobre...&Organizar cones&Cancelar&Em cascata&Fechar&Copiar&Excluir&Detalhes&Localizar&Concluir&Goto...&Ajuda&Log&Mover&Prximo&Prximo >&Prxima Dica&Abrir...&Colar&Anterior&Imprimir...&Refazer&Refazer &Substituir&Restaurar&Salvar...&Mostrar dicas ao iniciar&Tamanho&Desfazer&Desfazer &Janela'%s' tem '..' adicionais, ignorados.'%s' no vlido'%s' no um valor numrico correto para a opo '%s'.'%s' no um catlogo de mensagens vlido.'%s' provavelmente um buffer binrio.'%s' precisa ser numrico.'%s' deve conter apenas caracteres ASCII.'%s' deve conter apenas caracteres alfabticos.'%s' deve conter apenas caracteres alfanumricos.(Ajuda)(marcadores)...10 x 14 pol11 x 17 polEnvelope 6,75, 3,625 x 6,5 pol: arquivo no existe!: conjunto de caracteres desconhecido: codificao desconhecida< &Voltar<<Tipo de fonte negrito itlico.
negrito itlico sublinhado
Tipo negrito. Tipo itlico. >>>>|Uma coleo que no seja vazia precisa consistir de ns 'elementos'Folha A3, 297 x 420 mmFolha A4, 210 x 297 mmFolha A4 pequena, 210 x 297 mmFolha A5, 148 x 210 mmABCDEFGabcdefg12345ASCIIAdicionar pgina atual aos marcadoresAdicionar s cores personalizadasAddToPropertyCollection chamada em um mtodo de acesso genricoAddToPropertyCollection chamada sem adicionador vlidoAdicionando livro %sTudoTodos os arquivos (*)|*Todos os arquivos (*.*)|*Todos os arquivos (*.*)|*.*Objeto j registrado passado a SetObjectClassInfoDiscagem ao ISP j est em curso.Anexar log ao arquivo '%s'? (escolher [No] ir sobrescrev-lo)rabe (ISO-8859-6)AtributosEnvelope B4, 250 x 353 mmFolha B4, 250 x 354 mmEnvelope B5, 176 x 250 mmFolha B5, 182 x 257 mmEnvelope B6, 176 x 125 mmBMP: No foi possvel alocar memria.BMP: No foi possvel salvar imagem invlida.BMP: No foi possvel gravar mapa de cores RGB.BMP: No foi possvel gravar dados.BMP: No foi possvel gravar cabealho de arquivo (Bitmap).BMP: No foi possvel gravar cabealho de arquivo (BitmapInfo).BMP: wxImage no tem wxPalette prpria.Bltico (ISO-8859-13)Bltico (antigo) (ISO-8859-4)NegritoMargem inferior (mm):Folha C, 17 x 22 pol&LimparEnvelope C3, 324 x 458 mmEnvelope C4, 229 x 324 mmEnvelope C5, 162 x 229 mmEnvelope C6, 114 x 162 mmEnvelope C65, 114 x 229 mmO manipulador CHM atualmente suporta apenas arquivos locais!Impossvel criar mutex.Impossvel enumerar arquivos '%s'Impossvel enumerar arquivos no diretrio '%s'Impossvel continuar thread %luImpossvel continuar thread %xImpossvel iniciar thread: erro gravando TLS.Impossvel suspender thread %luImpossvel suspender thread %xImpossvel esperar pelo trmino da threadImpossvel &Desfazer Impossvel verificar imagem formatar de arquivo '%s': arquivo does no exist.Impossvel fechar chave de registro '%s'Impossvel copiar do tipo %d no suportado.Impossvel criar chave de registro '%s'Impossvel criar threadImpossvel criar janela de classe %sImpossvel excluir chave '%s'Impossvel excluir o arquivo INI '%s'Impossvel excluir valor '%s' da chave '%s'Impossvel enumerar subchaves da chave '%s'Impossvel enumerar valores da chave '%s'Impossvel localizar posio atual no arquivo '%s'Impossvel obter informaes sobre a chave de registro '%s'Impossvel inicializar fluxo deflate da zlib.Impossvel inicializar fluxo inflate da zlib.Impossvel carregar imagem do arquivo '%s': arquivo no existe.Impossvel abrir chave de registro '%s'Impossvel ler fluxo inflate: EOF inesperado no fluxo subjacente.Impossvel ler valor de '%s'Impossvel ler valor da chave '%s'Impossvel salvar imagem no arquivo '%s': extenso desconhecida.Impossvel salvar contedo do log no arquivo.Impossvel definir prioridade da threadImpossvel definir valor de '%s'CancelarImpossvel converter unidades do dilogo: dilogo desconhecido.Impossvel converter do conjunto de caracteres '%s'!Impossvel localizar conexo dial-up ativa: %sImpossvel localizar recipiente para campo de controle '%s' desconhecido.Impossvel localizar n de fonte '%s'.Impossvel localizar o arquivo de livro de endereosImpossvel obter intervalo de prioridade para polticas de agendamento %d.Impossvel obter o nome da mquinaImpossvel obter o nome oficial da mquinaImpossvel desligar - no h uma conexo dial-up ativa.Impossvel inicializar OLEImpossvel inicializar SciTech MGL!Impossvel inicializar vdeo.Impossvel carregar cone de '%s'.Impossvel carregar recursos do arquivo '%s'.Impossvel abrir documento HTML: %sImpossvel abrir livro de ajuda HTML: %sImpossvel abrir URL '%s'Impossvel abrir arquivo de ndice: %sImpossvel abrir arquivo '%s'.Impossvel abrir arquivo para impresso PostScript!Impossvel abrir arquivo de ndice: %sImpossvel analisar Plural-Forms:'%s'Impossvel analisar coordenadas de '%s'.Impossvel analisar dimenses de '%s'.Impossvel imprimir pgina vazia.Impossvel ler typename de '%s'!Impossvel obter poltica de agendamento de threads.Impossvel iniciar thread: erro gravando TLSDiferenciar maisculas/minsculasCelta (ISO-8859-14)Centro-europeu (ISO-8859-2)Escolha um ISP para discarEscolha uma fonte&FecharApagar o contedo do logFecharFechar Alt-F4Fechar tudoFechar esta janelaArquivo de ajuda HTML Compactado (*.chm)|*.chm|ComputadorNome de entrada Config no pode se iniciar com '%c'.ConfirmarConfirmar atualizao do registroConectando...ndiceConverso para conjunto de caracteres '%s' no funciona.Copiado para a rea de transferncia:"%s"Cpias:No foi possvel criar arquivo temporrio '%s'No foi possvel extrair %s para %s: %sNo foi possvel localizar aba pela idNo foi possvel Impossvel carregar DLL Rich Edit '%s'No foi possvel localizar arquivo '%s'.No foi possvel iniciar visualizao do documento.No foi possvel iniciar impresso.No foi possvel transferir dados para a janelaNo foi possvel adquirir um bloqueio mutexNo foi possvel adicionar uma imagem lista de imagens.No foi possvel criar um timerNo foi possvel criar cursor.No foi possvel localizar o smbolo '%s' em uma biblioteca dinmicaNo foi possvel obter o ponteiro atual da threadNo foi possvel carregar uma imagem PNG - arquivo corrompido ou memria insuficiente.No foi possvel carregar dados de som de '%s'.No foi possvel abrir udio: %sNo foi possvel registrar o formato da rea de transferncia '%s'.No foi possvel liberar um mutexNo foi possvel obter informaes sobre o item %d da caixa de listagem.No foi possvel salvar imagem PNG.No foi possvel terminar a thread"Create Parameter" no localizado nos parmetros RTTI declaradosCriar diretrioCriar novo diretrio&RecortarDiretrio atual:Cirlico (ISO-8859-5)Folha D, 22 x 34 polFalha na solicitao DDE pokeCabealho DIB: Codificao no corresponde quantidade de bits.Cabealho DIB: Altura da imagem > 32767 pixels no arquivo.Cabealho DIB: Largura da imagem > 32767 pixels no arquivo.Cabealho DIB: Quantidade de bits desconhecida no arquivo.Cabealho DIB: Codificao desconhecida no arquivo.Envelope DL, 110 x 220 mmDecorativoCodificao padroExcluir itemArquivo obsoleto de bloqueio '%s' excludo.Voc sabia que...No foi possvel criar o diretrio '%s'Diretrio '%s' no existe!Diretrio no existeDiretrio no existe.Exibir dilogo de opesDeseja salvar alteraes para o documento %s?FeitoFeito.ID usada duas vezes : %dPara baixoFolha E, 34 x 44 polEditar itemTempo decorrido: Entre com um nmero de pgina entre %d e %d:Entradas localizadasErroErro Erro ao criar diretrioErro ao ler imagem DIB .Erro ao ler opes de configurao.Erro: Esperanto (ISO-8859-3)Tempo estimado : Falha na execuo do comando '%s'Falha na execuo do comando '%s' com erro: %ulExecutivo, 7 1/4 x 10 1/2 polPgina de cdigos Unix estendida para Japons (EUC-JP)Falha na extrao de '%s' para '%s'.Falha na %s da conexo dial-up: %sFalha no acesso ao arquivo de bloqueio.Falha ao alocar %luKb de memria para dados de bitmap.Falha na mudana do modo de vdeoFalha ao fechar manipulador de arquivoFalha ao fechar arquivo de bloqueio '%s'Falha ao fechar a rea de transferncia.Falha na conexo: faltando usurio/senha.Falha na conexo: nenhum ISP para discar.Falha ao copiar valor de registro '%s'Falha ao copiar o contedo da chave de registro '%s' para '%s'.Falha ao copiar o arquivo '%s' para '%s'Falha ao criar string DDEFalha ao criar "MDI parent frame".Falha ao criar barra de status.Falha ao criar um nome de arquivo temporrioFalha ao criar um pipe annimoFalha ao criar conexo ao servidor '%s' em '%s'Falha ao criar cursor.Falha ao criar diretrio %s/.gnome.Falha ao criar diretrio %s/mime-info.Falha ao criar entrada de registro para arquivos '%s'.Falha ao criar o dilogo localizar/substituir padro (cdigo de erro %d)Falha ao exibir documento HTML na codificao %sFalha ao esvaziar a rea de transferncia.Falha ao enumerar os modos de vdeoFalha ao estabelecer loop de alerta com servidor DDEFalha ao estabelecer conexo dial-up: %sFalha ao executar '%s' Falha ao obter nomes de ISPs: %sFalha ao obter dados da rea de transferncia.Falha ao obter dados da rea de transfernciaFalha ao obter o relgio local do sistemaFalha ao obter diretrio de trabalhoFalha ao inicializar GUI: nenhum tema embutido localizado.Falha ao inicializar a Ajuda HTML da MS.Falha ao inicializar OpenGLFalha ao destruir processo %dFalha ao carregar imagem %d do arquivo '%s'.Falha ao carregar mpr.dll.Falha ao carregar biblioteca compartilhada '%s'Falha ao carregar biblioteca compartilhada '%s' Erro '%s'Falha ao bloquear o arquivo de bloqueio '%s'Falha na correspondncia de '%s' na expresso regular: %sFalha ao alterar data/hora do arquivo '%s'Falha ao abrir '%s' para %sFalha ao abrir arquivo CHM '%s'.Falha ao abrir arquivo temporrio.Falha ao abrir a rea de transferncia.Falha na insero de dados na rea de transfernciaFalha ao ler PID do arquivo de bloqueio.Falha ao redirecionar entrada/sada de processo-filhoFalha ao redirecionar E/S de processo-filhoFalha ao registrar servidor DDE '%s'Falha ao lembrar a codificao do conjunto de caracteres '%s'.Falha ao remover arquivo de bloqueio '%s'Falha ao remover arquivo obsoleto de bloqueio '%s'.Falha ao renomear valor do registro '%s' para '%s'.Falha ao renomear chave do registro '%s' para '%s'.Falha ao obter dados da rea de transferncia.Falha ao alterar data/hora do arquivo '%s'Falha ao obter texto da mensagem de erro RASFalha ao obter formatos suportados pela rea de transfernciaFalha ao salvar o bitmap no arquivo "%s".Falha ao enviar notificao de alerta DDEFalha ao definir modo de transferncia FTP em %s.Falha ao definir dados da rea de transferncia.Falha ao definir permisses do arquivo temporrio.Falha ao definir prioridade da thread %d.Falha ao armazenar a imagem '%s' na memria VFS!Falha ao terminar thread.Falha ao terminar loop de alerta com servidor DDEFalha ao terminar a conexo dial-up: %sFalha ao efetuar "touch" no arquivo '%s'Falha ao desbloquear arquivo de bloqueio '%s'Falha ao remover registro do servidor DDE '%s'Falha ao gravar no arquivo de bloqueio '%s'Erro fatalErro fatal: ArquivoO arquivo %s no existe.O arquivo '%s' j existe; deseja sobrescrev-lo?Impossvel carregar o arquivo.Erro de arquivoNome do arquivo j existe.LocalizarFonte fixa:Tipo de fonte de tamanho fixo.
negrito itlico Flio, 8,5 x 13 polTamanho da fonte:Falha no "fork"Encaminhamento de hrefs no suportado%i ocorrncias encontradasDe:GIF: ndice GIF invlido.GIF: fluxo de dados parece estar truncado.GIF: erro no formato da imagem GIF.GIF: memria insuficiente.GIF: erro desconhecido!!!Tema GTK+Legal Fanfold Alemo, 8,5 x 13 polPad Fanfold Alemo, 8,5 x 12 polGetProperty chamada sem um "getter" vlidoGetPropertyCollection chamada num acessor genricoGetPropertyCollection chamada sem um "collection getter" vlidoVoltarAvanarSubir um nvel na hierarquia do documentoIr para o diretrio inicialIr para o diretrio-paiIr para a pginaGrego (ISO-8859-7)Projeto de Ajuda HTML (*.hhp)|*.hhp|ncora HTML %s no existe.Arquivos HTML (*.html;*.htm)|*.html;*.htm|Hebraico (ISO-8859-8)AjudaOpes da Ajuda do Navegadorndice da ajudaImpresso da AjudaLivros de Ajuda (*.htb)|*.htb|Ajuda books (*.zip)|*.zip|Ajuda: %sICO: Erro ao ler mscara DIB.ICO: Erro ao gravar o arquivo de imagem!ICO: Imagem alta demais para um cone.ICO: Imagem larga demais para um cone.ICO: ndice de cone invlido .IIF: fluxo de dados parece estar truncado.IIF: erro no formato da imagem IIF.IFF: memria insuficiente.IFF: erro desconhecido!!!Classe de objeto ilegal (no uma wxEvtHandler) como origem do eventoNmero ilegal de parmetros para mtodo ConstructObjectNmero ilegal de parmetros para mtodo Mtodo CreateNome ilegal de diretrio.Especificao de arquivo ilegal.Arquivo de imagem no do tipo %d.Impossvel obter entrada do processo-filhoImpossvel obter permisses para o arquivo '%s'Impossvel sobrescrever o arquivo '%s'Impossvel definir permissions para o arquivo '%s'ndiceIndiano (ISO-8859-12)Erro interno; wxCustomTypeInfo ilegalndice de imagem TIFF invlido Recurso XRC '%s' invlido: no tem o n 'resource' raiz.Especificao de modo de vdeo '%s' invlida.Especificao de geometria '%s' invlida Arquivo de bloqueio '%s' invlido.ID de objeto passada a GetObjectClassInfo invlida ou nulaID de objeto passada a HasObjectClassInfo invlida ou nulaExpresso regular '%s' invlida: %sItlicoEnvelope Itlia, 110 x 230 mmJPEG: No foi possvel carregar - provavelmente o arquivo est corrompido.JPEG: No foi possvel salvar imagem.KOI8-RPaisagemLedger, 17 x 11 polMargem esquerda (mm):Legal, 8,5 x 14 polCarta Pequeno, 8,5 x 11 polCarta, 8,5 x 11 polClaroO link continha '//'; convertido para link absoluto.Carregar arquivo %sCarregando : O carregamento de imagens Grey Ascii PNM ainda no est implementado.O carregamento de imagens Grey Raw PNM ainda no est implementado.Log salvo no arquivo '%s'.Conversions de longos no suportadasMDI childMa&ximizarArquivo mailcap %s, linha %d: entrada incompleta ignorada.Diferenciar Maisculas/MinsculasMemria VFS j contm arquivo '%s'!Tema MetalMi&nimizarArquivo mime.types %s, linha %d: string sem delimitador.Modo %ix%i-%i no disponvel.ModernoModificadoEnvelope Monarch, 3,875 x 7,5 polMover para baixoMover para cimaNomeNovo itemNewNamePrxima pginaNoNenhuma entradas localizada.Nenhum manipulador encontrado para n XML '%s', classe '%s'!Nenhum manipulador encontrado para o tipo de imagem.Nenhum manipulador definido para tipo %d.Nenhum manipulador definido para tipo %s.Nenhuma pgina correspondente foi encontrada at agoraSem somNrdico (ISO-8859-10)NormalTipo normal de fonte
e sublinhado. Fonte normal:Nota, 8 1/2 x 11 inOKObjetos precisam de um atributo idAbrir arquivoAbrir documento HTMLOperao no permitida.Opo '%s' precisa de um valor, '=' esperado.Opo '%s' precisa de um valor.Opo '%s': '%s' no pode ser convertido para uma data.OpesOrientaoPCX: No foi possvel alocar memriaPCX: formato de imagem no suportadoPCX: imagem invlidaPCX: isto no um arquivo PCX.PCX: erro desconhecido !!!PCX: nmero de verso muito baixoPNM: No foi possvel alocar memria.PNM: Formato do arquivo no reconhecido.PNM: Arquivo parece estar truncado.Pgina %dPgina %d de %dConfigurar pginaPginasTamanho do papelTamanho do papelPassando um objeto j registrado a SetObjectPassando um objeto j registrado a SetObjectNamePassando um objeto desconhecido a GetObjectPermissesFalha na criao do pipePor favor escolha uma fonte vlida.Por favor escolha um arquivo existente.Por favor escolha o ISP ao qual voc deseja se conectarPor favor aguarde a impresso RetratoArquivo PostScriptVisualizar:Pgina anteriorImprimirVisualizar impressoFalha ao visualizar impressorea de impressoConfigurar impressoImprimir em coresSpool de impressoImprimir esta pginaImprimir para arquivoComando da impressora:Opes da impressoraOpes da impressora:Impressora...Imprimindo Erro ao imprimirImprimindo pgina %d...Imprimindo...Programa interrompido.Quarto, 215 x 275 mmPerguntaErro de leitura no arquivo '%s'N de objeto com ref="%s" no localizado!Chave de registro '%s' j existe.Chave de registro '%s' no existe; impossvel renome-la.Valor de registro '%s' j existe.Entradas relevantes:Tempo restante : Remover dos marcadores a pgina atual Renderizador "%s" de uma verso incompatvel, %d.%d; no foi possvel carreg-loSubstituir &tudoSubstituir por:Arquivos de recurso precisam ser da mesma verso!Margem direita (mm):RomanoSalvar arquivo %sSalvar comoSalvar contedo do log no arquivoScriptPesquisarDireo da pesquisaPesquisar por:Pesquisar em todos os livrosPesquisando...SeesErro de busca no arquivo '%s'Selecionar &tudoSelecionar um modelo de documentoSelecionar uma visualizao do documentoSelecionar um arquivoSeparador esperado aps a opo '%s'.SetProperty chamada sem um "setter" vlidoConfigurar...Foram encontradas vrias conexes dial-up ativas; escolhendo uma delas aleatoriamente.Mostrar tudoMostrar todos os items do ndiceMostrar diretrios ocultosMostrar arquivos ocultosMostrar/ocultar painel de navegaoTamanhoInclinarNo foi possvel abrir este arquivo para gravao.No foi possvel abrir este arquivo.No foi possvel salvar este arquivo.Memria insuficiente para criar uma visualizao.A visualizao de impresso necessita de uma impressora instalada.O formato deste arquivo desconhecido.Os dados de som esto em um formato no suportado.Arquivo de som '%s' est contido em um formato no suportado.Statement, 5,5 x 8,5 polStatus: Streaming delegates para no already streamed objetos no yet supportedString To Colour : Especificao de cor incorreta : %sConverses string no suportadasNo foi localizada a subclasse '%s' para o recurso '%s'; subclasse no aplicada!SuoTIFF: No foi possvel alocar memria.TIFF: Erro carregando imagem.TIFF: Erro ao ler imagem.TIFF: Erro ao salvar imagem.TIFF: Erro ao gravar imagem.Tablide, 11 x 17 polTelexModelosTailands (ISO-8859-11)O servidor FTP no suporta modo passivo.O formato '%d' da rea de transferncia no existe.The caminho '%s' contm muitos ".."!O parmetro '%s' necessrio no foi especificado.No foi possvel salvar o texto.O valor da opo '%s' precisa ser especificado.Falha na inicializao do mdulo thread: falha ao criar chave da threadA configurao de prioridade da thread foi ignorada.Lado a lado &horizontalmenteLado a lado &verticalmenteFalha na criao do timer.Dica do diaDesculpe, mas as dicas no esto disponveis!Para:H cores demais no PNG; a imagem pode ficar levemente borrada.Margem superior (mm):Tentou-se remover o arquivo '%s' da memria VFS, mas ele no est carregado!Tentou-se resolver um nome de mquina nulo: desistindoTurco (ISO-8859-9)TipoO tipo precisa ter converso enum - longUS Pad Fanfold, 14,875 x 11 polImpossvel abrir documento HTML: %sImpossvel reproduzir som de forma assncrona.Parameter '%s' inesperadoUnicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Erro DDE desconhecido %08xObjeto desconhecido passado a GetObjectClassInfoCodificao desconhecida (%d)Campo desconhecido no arquivo %s, linha %d: '%s'.Opo '%s' para longos desconhecidaOpo '%s' desconhecidaSinalizador de estilo desconhecido Propriedade %s desconhecida'{' no correspondida em uma entrada do tipo mime %s.Comando sem nomeFormato da rea de transferncia no suportado.Tema '%s' no suportadoPara cimaUso: %sConflito de validaoSada de vdeoExibir arquivos de forma detalhadaExibir arquivos em formato de listaModos de exibioFalha na espera para trmino do subprocessoAvisoAviso: Aviso: tentativa de remoo de manipulador de tag HTML de uma pilha vazia.Europeu Ocidental (ISO-8859-1)Europeu Ocidental com Euro (ISO-8859-15)Palavra inteiraSomente palavras inteirasTema Win32Win32s em Windows 3.1Windows rabe (CP 1256)Windows Bltico (CP 1257)Windows Centro-europeu (CP 1250)Windows Chins Simplificado (CP 936)Windows Chins Tradicional (CP 950)Windows Cirlico (CP 1251)Windows Grego (CP 1253)Windows Hebraico (CP 1255)Windows Japons (CP 932)Windows Coreano (CP 949)Windows Turco (CP 1254)Windows Europeu Ocidental (CP 1252)Windows/DOS OEM (CP 437)Erro de gravao no arquivo '%s'Erro de anlise XML: '%s' na linha %dXPM: Dados de pixel defeituosos!XPM: definio de cores '%s' defeituosa!Recurso XRC '%s' (classe '%s') no localizado!Recurso XRC: Impossvel criar bitmap de '%s'.Recurso XRC: Especificao de cores '%s' incorreta para propriedade '%s'.SimNo possvel adicionar um novo diretrio a esta seo.O manipulador ZIP atualmente suporta apenas arquivos locais![EMPTY]Uma aplicao DDEML criou uma condio de disputa de dados prolongada.falha na tentativa de um cliente de estabelecer uma conversao.falha em uma alocao de memria.falha na validao de um parmetro pelo DDEML.tempo esgotado em uma solicitao para uma transao sncrona de alerta.tempo esgotado em uma solicitao para uma transao sncrona de dados.tempo esgotado em uma solicitao para uma transao sncrona de execuo.tempo esgotado em uma solicitao para uma transao "poke" sncrona.tempo esgotado em uma solicitao de trmino de uma transao sncrona de alerta.falha em uma transao.altfalha em uma chamada interna funo PostMessage. ocorreu um erro interno no DDEML.tentativa de alterar a chave imutvel '%s' ignorada.argumentos ilegais para funo de bibliotecaassinatura ilegalbinrionegritonegrito impossvel fechar arquivo '%s'impossvel fechar descritor de arquivo %dimpossvel submeter alteraes ao arquivo '%s'impossvel criar arquivo '%s'impossvel excluir arquivo de configuraes do usurio '%s'impossvel determinar se o final do arquivo foi alcanado no descritor %dimpossvel determinar comprimento do arquivo no descritor de arquivos %dimpossvel localizar HOME do usurio; usando diretrio atual.impossvel liberar descritor de arquivos %dimpossvel obter posio de busca no descritor de arquivos %dimpossvel carregar qualquer fonte; cancelandoimpossvel abrir arquivo '%s'impossvel abrir arquivo de configuraes globais '%s'.impossvel abrir arquivo de configuraes do usurio '%s'.impossvel abrir arquivo de configuraes do usurio.impossvel indagar plug-ins GUI em aplicaes de consoleimpossvel ler do descritor de arquivos %dimpossvel remover arquivo '%s'impossvel remover arquivo temporrio '%s'impossvel buscar no descritor de arquivos %dimpossvel gravar buffer '%s' no disco.impossvel gravar no descritor de arquivos %dimpossvel gravar arquivo de configuraes do usurio.arquivo de catlogo para domnio '%s' no localizado.erro de checksumerro de compactaoctrldataerro de descompactaopadrodelegate has no tipo_devolvido infodcimo-oitavooitavodcimo-primeirocodificao %sa entrada '%s' aparece mais de uma vez no grupo '%s'erro no formato dos dadoserro ao abrir o arquivoestabelecerfalha ao liberar o arquivo '%s'dcimo-quintoquintoarquivo '%s', linha %d: '%s' ignorado aps cabealho do grupo.arquivo '%s', linha %d: '=' esperado.arquivo '%s', linha %d: chave '%s' foi localizada primeiro na linha %d.arquivo '%s', linha %d: valor da chave imutvel '%s' ignorado.arquivo '%s': caractere %c inesperado na linha %d.primeirotamanho da fontedcimo-quartoquartogerar mensagens de log detalhadasstring de manipulador de eventos incorreta; falta um pontoiniciarvalor de retorno de eof() invlido.valor de retorno da caixa de mensagem invlidoitlicoclaroclaro Impossvel definir locale '%s'.procurando pelo catlogo '%s' no caminho '%s'.meia-noitedcimo-nononononenhum erro DDE.nenhum errosem nomemeio-dianumobjetos no podem ter Ns de Texto XMLmemria insuficienteerro de leituralendofalha de reentrada.segundoerro de buscadcimo-stimostimoshiftmostrar esta mensagem de ajudadcimo-sextosextodefina o modo de vdeo a ser usado (p. ex., 640x480-16)defina o tema a ser usadostrdcimoa resposta transao fez com que o bit DDE_FBUSY fosse ativado.terceirodcimo-terceiromdulo tiff: %shojeamanhdcimo-segundovigsimosublinhadosublinhado " inesperadas na posio %d de '%s'.desconhecidoclasse %s desconhecidaerro desconhecidoerro desconhecido (cdigo de erro %08x).finalizador de linha desconhecidoorigem de busca desconhecida%d desconhecidosem nome%d sem nomeusando catlogo '%s' de '%s'.erro de gravaogravandoFalha em wxGetTimeOfDay.wxSocket: assinatura invlida em ReadMsg.wxSocket: evento desconhecido!O wxWidgets no pde abrir o display para '%s': terminando.O wxWidgets no pde abrir o display. Terminando.ontemerro zlib %d|<<wxMaxima-13.04.2/locales/wxwin/ru.mo000644 000765 000024 00000252111 11670654443 017657 0ustar00andrejstaff000000 000000 4 ]L@UU?U V? VLV]VaVjVVVVVVW 'W 1W[\ \ \ \ #\D\[\m\\\\\\#\/\\]]]3#]6W]]]]]]^ ^^,^4B^.w^^ ^ ^^^^^_6_O_:e__#_ ___`.`M`g`!`"``-`1a(Eanaa+aaaaaab b:bTbnb0bbb)bc1c(Jcscc#c c;cd)3d]d|dddd%d# e"/e*Re(}e&e%e%e5fOf"lf?fff1g 7gXgrg!gg,g%g(h//h_h-{h3hh h-iDiZiyii%iiij(jFj)]jjj#j!jk k)@k&jk#k"kkkkl#l 6l DlPlWl#nl$ll l ll(lm)mBmJm bmpm(ymmm$m m( n2nLnwhnjn!Komo!ooo(opp.7p'fpCp#pp(q7q9Pqqq6qqrrr2rHr\r,tr1r0r%s%*sPsjs!|s#s sss sst~ tt"ttt uQ"utuvu+v .v9v>vDvXv]v qv{v&v v vLv.w4w;wTwqw%w wwww4x C P\d~Nۣ  "<: w )ä#?Zc{إݥ+  5-V5+%) 6RZFc6 ;>DdϨ , 06zg(0 ]<o ,AQ%b.&U0qM3\Pޭ@/Yp#ʮBUl{;֯A*)Ti%n*$ް. ;U$m'$ұ'5K+b(²,+?k-{dz߳   +E)Ku }=Ŵ( ,7 HTj  ɵ"#$BgͶ -"Gj"շ&)-ADo/ ;L:ܹ03=d;>޺;5Y&<@9,7d..-]! ׾޾!@)W>#/0E-d*(#8='v'" ! B!c$'#!5="W z /#/< lv 4!894.n +  .O`gmt&  " ) EP&X)   ->$W|C   $#HP a o  " 2>F']3* WrR{F)- G!h$   ) 3AS d1q03  &1ELT\ dn w)    #+ 3@ G R_p u     #1O Wck z +9"/(R{+.8( 1%< b G " 0Fc{ )614$86] %:0Y?%7:K9(>Wm 7, 2-6`- 007I _ipE4)O)y,+:.7-f0I$#:H$! .!*P*{6*37<5tB$'I:"(K0&M#t+I41JE|!!CJ)h@"+'")J+t$(& 10O#,('&"%I.o61(0BZ#i% #9A P\'m 9   ,Jj&q+  5{!& 51g6.W-Z65%/U9p 70=h=1+B[&q' # -:!-TD#z-8 fsz(.( ILY#7Ien50'>'f*G1.3)b)5. ;%\ 03,;5#q2)! (/"X:{#B/3rC2!#?2c-=MKkM!)',Q-~#8% "/%Rnx2,:g+7'=#Os"" +-%9S9+.8".[%395+T#17-)<.f+61**3U1-."0Q76(-BGA^?   $ / 5 @J    %     $& &K r    & $ ) 18 =j   /   ( ; (R "{  '       & 4 6F  }     % 0 0%M$s&/$)/A46+k ,().)+>jqx,%B-&(T}GG&,S!Z5|' "!:\u8} //4"P s/ 0<<y"  2 "%* P ]k o } & 5222.0a F(  (+3_q -%9E   )#/$Sx     4 8S )  # & ' !.4!;c!!(F"o"w"""""("##&# 5#V#v## ##### ## $ $$1$P@$$$$$$/$%!$%>F%%% &3&F&Z&$b&@& & & &5&#';'P' W'a's' '#'''E' ((&( ;(I(Q(En( ((( (*)*,) W)Jd) ))))$ *(0*Y* `* k*8u*)*)*K+CN+(+++-+, 4, @,BL,0,',A, *-%6-"\- -$- ---..+$.(P.}y.(.. /^O/n/ 0*0;0 J0X0&h00(71`1/~11X:2i2b2C`3_3,414J4Ra44 444B4?5=U5+55565!6026)c661666&7)*7T7&n7)7777/ 8*;8f8-8!888909L93_9&99999 :( :5:S:0X:::F: :1;C; `;n; ;;; ;; ; ;;<<(<<%e<'<<<<== 8=C=b==%====$ >,2>4_>'>3>?>0?13? e? p? {??3??-R@@.@?@;AADA>AAAB BBB0C$CC5D8D)E=E%NEtE}EEE&E)EE6F>NF*F.FWF1?G;qG+GG5G;,H6hHAH5H1I%IIoI%I3I"I,J74J(lJJ J.JJJJ K"K"7K ZKhK pK }K4KKK'K&LEO2>PqPP P PPP!P PP=P/Q4NQQQ1QQ QQQQ Q Q R R"$R GRSRhR${RRRR R R!RS"7S ZShSoS-SS2S)T0T6TET3 T;J9{ZwSYZDg3cTP?=%mL&0Ag;Sq1]_9K`t$OU5?X*lSuRD*;H"XdN'sr+T?IVU5oz-qyPXo}R:[  {n@)9%=c"r{BVn-lp[9d3F>~D`l}&h4\;<b0z fd( f#'4a"^1(> G]!xQJC8zj.R I0.rE*Cn [R#uq$'qWtY6UxGeX-y\&f|Nso,y _~ \hP!+NhF=17KM@aK2CexF cMJ/  !>vOZ1ngvkY)%GLstWh~rdE~V _A|^\F/g^+bW2<BOI"e.,m0 :f] 4HDtb T C4A`LuEBcv%YA6,:)pmek^8j7yMxW?5K/$*'`S= VI |bpwu6}/-zi.2 k(>ak7B5opHm@:}!i 7Q3(<HZG|w$<iQj{ @,)#[sa2+jlJ8#N]6_EUwMvQL8iOP & %s: %s Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%ld bytes%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message%s not a bitmap resource specification.%s not an icon resource specification.%s: ill-formed resource file syntax.&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Debug report preview:&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&Notes:&OK&Open&Open...&Paste&Point size:&Preferences&Previous&Print&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)*** A debug report has been generated *** And includes the following files: *** It can be found in "%s" , expected static, #include or #define while parsing resource....10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A debug report has been generated in the directory A non empty collection must consist of 'element' nodesA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAddToPropertyCollection called on a generic accessorAddToPropertyCollection called w/o valid adderAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open URL '%s'Cannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCannot wait for thread termination.Cant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find resource include file %s.Could not find tab for idCould not locate file '%s'.Could not resolve control class or id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not resolve menu id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDebug report "%s"Debug report couldn't be created.Debug report generation has failed.DecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.DesktopDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?Don't SaveDoneDone.Doubly used id : %dDownE sheet, 34 x 44 inEdit itemElapsed time : Enter a page number between %d and %d:Enter command to open file "%s":Entries foundEnvironment variables expansion failed: missing '%c' at position %u in '%s'.ErrorError Error creating directoryError in reading image DIB .Error reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Estimated time : Executable files (*.exe)|*.exe|All files (*.*)|*.*||Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExpected '*' while parsing resource.Expected '=' while parsing resource.Expected 'char' while parsing resource.Exporting registry key: file "%s" already exists and won't be overwritten.Extended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to %s dialup connection: %sFailed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to clean up debug report directory "%s"Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory "%s"Failed to create directory %s/.gnome.Failed to create directory %s/mime-info.Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to execute curl, please install it in PATH.Failed to find XBM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to find XBM resource %s. Forgot to use wxResourceLoadIconData?Failed to find XPM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to get ISP names: %sFailed to get clipboard data.Failed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to lock the lock file '%s'Failed to match '%s' in regular expression: %sFailed to modify file times for '%s'Failed to open '%s' for %sFailed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove debug report file "%s"Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to upload the debug report (error code %d).Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.Files (%s)FindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound Found %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGetProperty called w/o valid getterGetPropertyCollection called on a generic accessorGetPropertyCollection called w/o valid collection getterGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!Icon resource specification %s not found.If you have any additional information pertaining to this bug report, please enter it here and it will be joined to it:If you wish to suppress this debug report completely, please choose the "Cancel" button, but be warned that it may hinder improving the program, so if at all possible please do continue with the report generation. Ignoring value "%s" of the key "%s".Ill-formed resource file syntax.Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal Parameter Count for ConstructObject MethodIllegal Parameter Count for Create MethodIllegal directory name.Illegal file specification.Image and mask have different sizes.Image file is not of type %d.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.JustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.Long Conversions not supportedMDI childMP Thread Support is not available on this SystemMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMailcap file %s, line %d: incomplete entry ignored.Match caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMime.types file %s, line %d: unterminated quoted string.Mode %ix%i-%i not available.ModernModifiedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOpen file "%s"Operation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Processing debug report has failed, leaving the files in "%s" directory.Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.SetProperty called w/o valid setterSetup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow hidden filesShow/hide navigation panelShows the font preview.SizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sString conversions not supportedSubclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The report contains the files listed below. If any of these files contain private information, please uncheck them and they will be removed from the report. The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).There was a problem during page setup: you may need to set a default printer.This system doesn't support date picker control, please upgrade your version of comctl32.dllThread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected end of file while parsing resource.Unexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown dynamic library errorUnknown encoding (%d)Unknown field in file %s, line %d: '%s'.Unknown long option '%s'Unknown option '%s'Unknown style flag Unkown Property %sUnmatched '{' in an entry for mime type %s.Unnamed commandUnrecognized style %s while parsing resource.Unsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictVideo OutputView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XPM: malformed colour definition '%s'!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.assuming this is a multi-part zip concatenatedattempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebad zipfile offset to entrybinaryboldbold can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't query for GUI plugins name in console applicationscan't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infodump of the process state (binary)eighteentheightheleventhencoding %sentry '%s' appears more than once in group '%s'error in data formaterror opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthestablishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinitiateinvalid eof() return value.invalid message box return valueinvalid zip fileitaliclightlight locale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryprocess context descriptionread errorreadingreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunderlined unexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown line terminatorunknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodunsupported zip archiveusing catalog '%s' from '%s'.write errorwritingwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets-2.6.1 Report-Msgid-Bugs-To: POT-Creation-Date: 2005-08-21 17:37+0200 PO-Revision-Date: 2005-08-11 19:48+1100 Last-Translator: Dennis Prochko Language-Team: wx-translators MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit %s: %s , , ! , ! ( %ld: %s) - #10, 4 1/8 x 9 1/2 #11, 4 1/2 x 10 3/8 #12, 4 3/4 x 11 #14, 5 x 11 1/2 #9, 3 7/8 x 8 7/8 #define %s .%i %i%ld %s ( %s) %s %s %s%s (%s)|%s %s%s .%s .%s: . && && &&&&&&& &:&&&&&& &:&&...& &&&&&&&& >& &&:&OK&&...&& :&&&&...&&&& &&&&...& &&&:&&& &&&:&&'%s' '..', .'%s' '%s' - '%s'.'%s' - .'%s' .'%s' .'%s' ASCII.'%s' .'%s' .()()*** *** : *** "%s" , , #include #define ....10 x 14 11 x 17 6 3/4, 3 5/8 x 6 1/2 : !: : < &<<<><><> .

. . >>>>| 'element' A3 297 x 420 A4, 210 x 297 A4, 210 x 297 A5, 148 x 210 ABCDEFGabcdefg12345ASCII AddToPropertyCollection AddToPropertyCollection adder %s (%s)|%s (*)|* (*.*)|* (*.*)|*.* SetObjectClassInfo ISP. '%s' ( [] )? (ISO-8859-6) #SYSTEM B4, 250 x 353 B4, 250 x 354 B5, 176 x 250 B5, 182 x 257 B6, 176 x 125 BMP: .BMP: .BMP: RGB.BMP: .BMP: (Bitmap).BMP: (BitmapInfo).BMP: wxImage wxPalette. (ISO-8859-13) () (ISO-8859-4) %s. (): C, 17 x 22 &&: C3, 324 x 458 C4, 229 x 324 C5, 162 x 229 C6, 114 x 162 C65, 114 x 229 CHM ! . '%s' '%s' %lu %x : TLS. %lu %x & '%s': . '%s' %d. '%s' %s '%s' INI- '%s' '%s' '%s' '%s' '%s' %d . '%s' '%s' , zlib. , zlib. '%s' : . '%s' : %s : EOF . '%s' '%s' '%s': . . '%s' : %s : . '%s' ! : %s '%s'. '%s' %d. - . OLE SciTech MGL! . '%s'. '%s'. HTML : %s HTML: %s URL '%s' : %s '%s'. PostScript! : %s : %s '%s'. '%s'. . '%s' ! . : TLS . (ISO-8859-14)- (ISO-8859-2) & ' '. ' '. Alt-F4 HTML (*.chm)|*.chm| '%c'. ... '%s' . :"%s": '%s' %s %s: %s %s. id '%s'. '%s'. , () #define (. ) '%s'. , () #define (. ) . . . . '%s' PNG - . '%s'. : %s '%s'. %d. PNG. Create Parameter RTTI Parameters & : (ISO-8859-5) D, 22 x 34 DDE poke DIB: . DIB: > 32767 . DIB: > 32767 . DIB: . DIB: . DL, 110 x 220 "%s" . . - - '%s'. - , (RAS) . , . , ... '%s' '%s' ! . , . . , %s "%s" ? %s, %s %1 %s? . : %d E, 34 x 44 : %d %d: "%s": : '%c' %u '%s'. DIB. . . : (ISO-8859-3) : (*.exe)|*.exe| (*.*)|*.*|| '%s' '%s' : %ulExecutive, 7 1/4 x 10 1/2 '*' . '=' . 'char' . : "%s" . Unix (EUC-JP) '%s' '%s' . %s : %s . %lu . - "%s" handle . '%s' . : /. : ISP . '%s' '%s' '%s'. '%s' '%s'. '%s' '%s. DDE MDI. . anonymous pipe '%s' '%s' . "%s" %s/.gnome. %s/mime-info. '%s' ( ?) '%s' . / ( %d) HTML %s . - 'advise loop' DDE : %s '%s' curl, , PATH. XBM %s. wxResourceLoadBitmapData? XBM %s. wxResourceLoadIconData? XPM %s. wxResourceLoadBitmapData? ISP: %s . . GUI: . MS HTML. OpenGL '%s' , - , %d %d '%s'. "%s". mpr.dll. '%s' '%s' '%s' '%s' '%s' : %s '%s' '%s' %s CHM '%s'. . . . PID . / / DDE '%s' OpenGL. '%s'. "%s" '%s' '%s'. '%s' '%s'. '%s' '%s'. . '%s' RAS , "%s". advise DDE FTP %s. . '%s' %d. '%s' VFS! . 'advise loop' DDE . : %s '%s' '%s' DDE '%s' . ( %d). '%s' : %s . '%s' , ? '%s' . ? . . (%s) : .
Folio, 8 1/2 x 13 : fork %i :GIF: gif.GIF: , , .GIF: GIF.GIF: .GIF: !!! GTK+ PostScriptGerman Legal Fanfold, 8 1/2 x 13 German Std Fanfold, 8 1/2 x 12 GetProperty getterGetPropertyCollection GetPropertyCollection getter (ISO-8859-7)Gzip zlib HTML (*.hhp)|*.hhp|HTML- %s . HTML (*.html;*.htm)|*.html;*.htm| (ISO-8859-8) (*.htb)|*.htb| (*.zip)|*.zip|: %s I64ICO: DIB.ICO: !ICO: .ICO: .ICO: .IFF: , , .IFF: IFF.IFF: .IIF: !!! %s. - , , , : , "", , , , , . "%s" "%s" . . ( wxEvtHandler) ConstructObject Create . . . %d. rich edit, . , riched32.dll '%s' '%s' '%s' (ISO-8859-12) , wxCustomTypeInfo TIFF. XRC '%s': 'resource' . '%s'. '%s' '%s'. GetObjectClassInfo HasObjectClassInfo '%s': %s , 110 x 230 JPEG: - .JPEG: .KOI8-RKOI8-ULedger, 17 x 11 ():Legal, 8 1/2 x 14 8 1/2 x 11 , 8 1/2 x 11 '//', . %s : '%s' . '%s' . '%s'.Long Conversions MDI MP MS HTML , MS HTML . , .& mailcap %s, %d: . VFS '%s'! Metal& mime.types %s, %d: . %ix%i-%i .Monarch Envelope, 3 7/8 x 7 1/2 XBM ! XPM ! . '%s', '%s'. ( )? '%s'. , ( )? XML '%s', '%s'! . %d. %s. . . (ISO-8859-10)
. :Note, 8 1/2 x 11 OK id HTML "%s" . '%s' , '='. '%s' . '%s': '%s' .PCX: PCX: PCX: PCX: PCX.PCX: !!!PCX: PNM: .PNM: .PNM: , , . %d %d %d SetObject SetObjectName GetObject -, ., ., :, ISP, , comctl32.dll ( 4.70 , %d.%02d) ., , PostScript : & : :...: %d... ... , "%s". .Quarto, 215 x 275 '%s' ref="%s" ! '%s' . '%s' , . '%s' , : . '%s' . : : Renderer "%s" %d.%d .& & : ! (): %s &... : ... '%s' '%s' ( stdio) & '%s' .SetProperty setter... , . / , ., ., ., ., ., . . '%s' .Statement, 5 1/2 x 8 1/2 : : : : %s '%s' '%s', subclassing !TIFF: .TIFF: .TIFF: .TIFF: .TIFF: .Tabloid, 11 x 17 (ISO-8859-11) FTP . FTP PORT. '%s' . [] '%d' . '%s' ? '%s' . . '%s' . . . . : . . '%s' ".."! , . - , , . '%s' . . '%s' . (RAS), , ; , ( %s ). : -. ; , comctl32.dll : : : .& & FTP , . . , !: PNG, . (): '%s' VFS, ! NULL: (ISO-8859-9) - US Std Fanfold, 14 7/8 x 11 HTML: %s . . '%s'16- (UTF-16)16- Big Endian (UTF-16BE)16- Little Endian (UTF-16LE)32- (UTF-32)32- Big Endian (UTF-32BE)32- Little Endian (UTF-32LE)7- (UTF-7)8- (UTF-8) DDE %08x GetObjectClassInfo (%d) %s, %d: '%s'. '%s' '%s' %s '{' mime %s. %s . . '%s'.: %s - : : HTML .- (ISO-8859-1)- (ISO-8859-15) . Win32Win32s Windows 3.1Windows 2000 ( %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d) Windows (CP 1256) Windows (CP 1257)- Windows (CP 1250) Windows (CP 936) Windows (CP 950) Windows (CP 1251) Windows (CP 1253) Windows (CP 1255) Windows (CP 932) Windows (CP 949)Windows MEWindows NT %lu.%lu ( %luWindows Server 2003 ( %lu Windows (CP 1254)- Windows (CP 1252)Windows XP ( %luWindows/DOS OEM (CP 437) '%s' XML: '%s' %dXPM: !XPM: '%s'! XRC '%s' ( '%s') ! XRC: '%s'. XRC: '%s' '%s'. .&&&[] DDEML race condition. DDEML DdeInitialize, DDEML. . . DDEML. - - - - - , , . alt, APPCLASS_MONITOR DDE, , APPCMD_CLIENTONLY . PostMessage . DDEML . DDEML. XTYP_XACT_COMPLETE, ., zip '%s' . zipfile '%s' %d '%s' '%s' '%s' %d zip %d , . %d %d , '%s' '%s'. '%s'. . GUI zlib zlib %d '%s' '%s' %d '%s' . %d . '%s' . 8- ctrl - () %s '%s' '%s' zip zip zip '%s': '%s'. '%s', %d: '%s' . '%s', %d: '='. '%s', %d: '%s' %d. '%s', %d: '%s' . '%s': %c %d. , eof(). zip '%s' . '%s' '%s'. DDE num XML zip ( %s): zip ( %s): . shift (, 640x480-16) Zipstr DDE_FBUSY. tiff: %s " %d '%s'. %s ( %08x) -%d%d Zip zip '%s' '%s'. wxGetTimeOfDay.wxSocket: ReadMsg.wxSocket: !wxWidgets '%s': .wxWidgets . . zlib %d|<<wxMaxima-13.04.2/locales/wxwin/uk.mo000644 000765 000024 00000141603 11670654443 017653 0ustar00andrejstaff000000 000000 U(p5q55555556$6C6 L6W6`6 o6 z6'6&6$6 6777#7*70787A7G7O7X7^7c7i7o7 w77 777777777777 848$N8!s88*8/8:9C9 J9 V9 a9 l999999999 :):@:T:r::::::::;$;>;U;o;;;!;;(<,<A<+[<<<<<<<< =#=>=)[==(==#= >;>N>)l>>>>>>%?#D?"h?(?&?5?@.@G@1d@ @@@@,@(A-FA3tAA A-AB%B%ABgBBBB)BCC)7C&aCCCC CCCC C DD!D)*DTD\D tDD(DD(DDwDjwE!EF!F(@FiFF.F'FCF(4G9]GGGGGGGHH2H,JH%wHH HH~HRI"bIIIQIJ+%JQJVJ\JpJ JJJJJJ JJ"K?K-^K"K"K9K$ L1L"MLpL&L8LGL.7MfM2M)MMGMEBNGNN%N#O#6O3ZO"OOTO'"PJP"bP-PPP#P-Q"BQ5eQQ-Q/Q+R,ER2rR&RR!R) S6S3TS-S$S S SS= T4KTT TTT TTT T TUUU'UFUfU~U U#U!UU U%UV3V JVTVgVVVV V VV"V V W;WSW)iW WWW%W%X/4XdXjX=X#XXX1 Yo;p5Nppp9p,p-q3q:qPq!oqq)q>q/r0Arrr-rrr*r(s#Fs"jss s s!s$t'-tUtZt _tjtqt/zt tt tt4t!u89u9ru.uu uuuvv 6vWv&svv vv vvvvvvv vw ww &w0w-6wdw}wwCww wwww w$w"x *x 8xYx mxxx xxx'xx3y*5y `yTjyzzzz {({E{b{{{ { { {{{-{%|&B|i|m||||| ||| | ||| | | |} } !} +} 7} D} O} Z}g}} } }}'}}1}$~:~V~'p~*~4~~   !%GXs.M^br8̀)? X)y%+BIZ oyĂ݂)?/\&Ѓ>##6G$~!ބ)*B)m-3Ņ=%7!]'?&$"3V5^6#ˇ9)&G.n")$ (/"X{/#ɉ'#.9h%wɊъ  9* dp%ŋ(̋x&;R2r4ٍ)S8#6" %6 MWf|5(ۏ *\@#ҐSN)d ȑؑ +J&i+1ڒ* 37%k+ٓ)3"9V/2-JGHJە"&'I+q#<'&ZF/ї+1$Lq%7(:&R6y2&1 1<!n%)22/b*Л;;"^ |Ӝٜ "%'&Mt %!ԝ ( 4Jdt Ҟ %&&Cj+$Ɵ/(X)w"=ˠ& 0!75Y$¡ס2: LX v  Тڢ#!&.@CXr4.66!*X ɤ̤*%3Cw }åߥ , Mn  Ŧ Ӧ%%!5Wo ŧʧۧ #1 IUgv  Ԩ4 A=b#&J\ n 1۪ -48:s īЫ $ 9@F $Ȭ + *K/i8!"!!D f ǮϮ' #.߯'$(Brk[ްB:Y}ױ )6VZHl, /Hc}ó/ٳ !=W]n %Ǵ B Lj }ҵ8Q%l#*40K0S-J$e0/12<P+׹5 (2%N$t5=4*G_&7λ+25O*%'ּ(0D+u%+ǽ  5 U ` ?"վ?D8/} ¿%̿&2(%[    2?(F o}9  # *#;_ w %%5,P}rcoE?-w}SPa,VFpkUC`Yx2+J;FyJQb?&aKO#3>v Qgb<)B3L= f(xpdr}{N9\GsD> T#c-^p$:QM1uc^o>LT,+l9Dq|n!uBZ'RIV+% tw8^kIK_b@9~vh m|8.s8]Td<"eA;xzS 5 V6PS@&:A& ?R/` yBH%vw'n"=OP@11j5]7[ *'}n6zWXt;%i* \RG/lMMo]lG_=hi* -NXH#ejU.Z0 .W Yj,h7Y~)2LEA"a34t4(kW4 H0(/!f$e`C <~z[dJsO{u)[ID\02irX5q6!F{qE Uyg:gN|f$mC ZK_7m (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in#define %s must be an integer.%i of %i%s (or %s)%s Error%s Information%s Warning%s message%s not a bitmap resource specification.%s not an icon resource specification.%s: ill-formed resource file syntax.&About...&Arrange Icons&Cancel&Cascade&Close&Copy&Delete&Details&Find&Finish&Goto...&Help&Log&Move&Next&Next >&Next Tip&Paste&Previous&Redo&Redo &Replace&Restore&Save...&Show tips at startup&Size&Undo&Undo &Window'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 14 in11 x 17 in6 3/4 Envelope, 3 5/8 x 6 1/2 in: file does not exist!: unknown charset: unknown encoding< &BackA3 sheet, 297 x 420 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 sheet, 148 x 210 mmABCDEFGabcdefg12345Add current page to bookmarksAdd to custom coloursAdding book %sAllAll files (*)|*All files (*.*)|*.*Already dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)B4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write data.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Bitmap resource specification %s not found.BoldBottom margin (mm):C sheet, 17 x 22 inC&learC3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCan not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't find current position in file '%s'Can't get info about registry key '%s'Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'CancelCannot convert dialog units: dialog unknown.Cannot find active dialup connection: %sCannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot print empty page.Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCase sensitiveCentral European (ISO-8859-2)Choose ISP to dialChoose fontCl&oseClear the log contentsCloseClose Alt-F4Close AllClose this windowComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copies:Could not find resource include file %s.Could not find tab for idCould not resolve control class or id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not resolve menu id '%s'. Use (non-zero) integer instead or provide #define (see manual for caveats)Could not start document preview.Could not start printing.Could not transfer data to windowCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't register clipboard format '%s'.Couldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDecorativeDefault encodingDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...Directory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDisplay all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to save changes to document %s?DoneDone.E sheet, 34 x 44 inElapsed time : Entries foundErrorError creating directoryError: Esperanto (ISO-8859-3)Estimated time : Execution of command '%s' failedExecutive, 7 1/4 x 10 1/2 inFailed to %s dialup connection: %sFailed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create connection to server '%s' on topic '%s'Failed to create directory '%s' (Do you have the required permissions?)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to find XBM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to find XBM resource %s. Forgot to use wxResourceLoadIconData?Failed to find XPM resource %s. Forgot to use wxResourceLoadBitmapData?Failed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to join a thread, potential memory leak detected - please restart the programFailed to load image %d from file '%s'.Failed to load mpr.dll.Failed to load shared library '%s'Failed to load shared library '%s' Error '%s'Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to redirect child process input/outputFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove lock file '%s'Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to send DDE advise notificationFailed to set clipboard data.Failed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to unregister DDE server '%s'Fatal errorFatal error: File %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FindFixed font:Folio, 8 1/2 x 13 inFontFont size:Fork failedFound Found %i matchesFrom:GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)HTML anchor %s does not exist.Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp: %sICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.IFF: not enough memory.IFF: unknown error!!!Icon resource specification %s not found.Ill-formed resource file syntax.Illegal directory name.Illegal file specification.Impossible to get child process inputImpossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndexInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.KOI8-RLandscapeLedger, 17 x 11 inLeft margin (mm):Legal, 8 1/2 x 14 inLetter Small, 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLoad %s fileLoading : Log saved to the file '%s'.MDI childMa&ximizeMatch caseMemory VFS already contains file '%s'!Metal themeMi&nimizeMode %ix%i-%i not available.ModernMonarch Envelope, 3 7/8 x 7 1/2 inNameNewNameNext pageNoNo XBM facility available!No XPM icon facility available!No entries found.No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNordic (ISO-8859-10)NormalNormal font:Note, 8 1/2 x 11 inOKOpen HTML documentOperation not permitted.Option '%s' requires a value, '=' expected.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.Page %dPage %d of %dPage SetupPagesPaper SizePaper sizePermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose which ISP do you want to connect toPlease wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint spoolingPrint this pagePrint to FilePrinter command:Printer optionsPrinter options:Printer...Printing Printing ErrorPrinting page %d...Printing...Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'Referenced object node with ref="%s" not found!Registry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:Remaining time : Remove current page from bookmarksReplace &allReplace with:Resource files must have same version number!Right margin (mm):RomanSave %s fileSave asSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch in all booksSearching...SectionsSeek error on file '%s'Select &AllSelect a document templateSelect a document viewSelect a fileSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelSizeSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Statement, 5 1/2 x 8 1/2 inStatus: Subclass '%s' not found for resource '%s', not subclassing!SwissTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The path '%s' contains too many ".."!The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is tooold, please upgrade (the following required function is missing: %s).Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTip of the DayTips not available, sorry!To:Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)US Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnexpected parameter '%s'Unknown DDE error %08xUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWaiting for subprocess termination failedWarningWarning: Warning: attempt to remove HTML tag handler from empty stack.Western European (ISO-8859-1)Whole words onlyWin32 themeWin32s on Windows 3.1Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Turkish (CP 1254)Windows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource: Cannot create bitmap from '%s'.XRC resource: Incorrect colour specification '%s' for property '%s'.YesYou cannot add a new directory to this section.[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a transaction failed.altan internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.attempt to change immutable key '%s' ignored.binarycan't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.ctrldateeighteentheightheleventhentry '%s' appears more than once in group '%s'establishfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfourteenthfourthgenerate verbose log messagesinitiateinvalid eof() return value.invalid message box return valuelocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.nonamenoonnumreadingreentrancy problem.secondseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtodaytomorrowtwelfthtwentiethunexpected " at position %d in '%s'.unknownunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dusing catalog '%s' from '%s'.wxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayProject-Id-Version: wxWidgets-2.5.2 Report-Msgid-Bugs-To: POT-Creation-Date: 2006-10-29 14:59+0100 PO-Revision-Date: 2004-03-21 21:44-0300 Last-Translator: Ilya Korniyko Language-Team: wx-translators MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-u Content-Transfer-Encoding: 8bit ( %ld: %s) - #10 , 4 1/8 x 9 1/2 #11 , 4 1/2 x 10 3/8 #12 , 4 3/4 x 11 #14 , 5 x 11 1/2 #9 , 3 7/8 x 8 7/8 #define %s .%i %i%s ( %s) %sæ %s %sצ %s%s צצ Ʀæ bitmap-.%s צצ Ʀæ .%s: Ӧ Ӧ.&Φ &ͦ&&&Ц&&̦&&˦...&ͦ&&&& >& Ц&Τ&& &ͦ&&...& Ц Ԧ&ͦ&ͦ&ͦ&'%s' צ '..', Ϧ.'%s' '%s' - æ '%s'.'%s' צ.'%s' ¦ .'%s' .'%s' Ԧ ASCII.'%s' Ԧ צ.'%s' Ԧ צ .(ͦ)()10 x 14 11 x 17 6 3/4 , 3 5/8 x 6 1/2 : դ!: צ ̦: צ < & A3 297 x 420 A4, 210 x 297 A4, 210 x 297 A5, 148 x 210 ABCDEFGabcdefg12345 Ҧ Ҧ %sӦӦ (*)|* Ӧ (*)|* ISP. '%s' (¦ [] )?Arabic (ISO-8859-6)B4 , 250 x 353 B4, 250 x 354 B5 , 176 x 250 B5, 182 x 257 B6 , 176 x 125 BMP: Ħ '.BMP: צ .BMP: Φ. BMP: wxImage wxPalette.Baltic (ISO-8859-13)Baltic () (ISO-8859-4)Ʀæ bitmap %s .Τ (): C, 17 x 22 &C3 , 324 x 458 C4 , 229 x 324 C5 , 162 x 229 C6 , 114 x 162 C65 , 114 x 229 ̦ '%s' ̦ ڦ '%s' צ %x : TLS. %x ˦ & צ '%s': . Ť '%s' Ц Цդ %d. Ť '%s' צ %s '%s' INI- '%s' '%s' '%s' Ц Ц-ަ '%s' Ц '%s' æ ̦ '%s' æ Ť '%s' '%s': Φ. צ registry '%s' '%s' '%s' '%s': צ . ͦ . '%s'ͦ æ Ħ: צ Ħ ҦΤ Ц': %s %d. ' æ ' צ - Ц'. ϦΦæ̦ OLE '%s'. '%s'. צ HTML : %s צ ͦަ HTML: %s צ ͦ: %s צ '%s'. צ PostScript! צ : %s Ҧ. . : TLȘ Ǧ (ISO-8859-2)Ҧ Ҧ ̦ Alt-F4 צ'' ̦ æ '%c'. Ť'...ͦæ charset '%s' Ц: Ӧ %s. tab id צ id '%s'. ͦΦ () æ #define (. Ҧ Ħ) צ id '%s'. ͦΦ () æ #define (. Ҧ Ħ) . . Φ צ . '%s' ͦΦ ¦̦æ PNG - 'Ԧ. Ť '%s' æ %d. PNG. ˦ &Ҧ : (ISO-8859-5) D, 22 x 34 DDE DIB: צצ Φ ¦Ԧ. DIB: צ .DL , 110 x 220 צ Ц' (RAS) æ Φ. צ . ... '%s' '%s' դ! դ Ӧ , ͦ Ц. Ǧ. Ħ æ ͦ %s?.E , 34 x 44 : Φ : (ISO-8859-3)æ : '%s'Executive, 7 1/4 x 10 1/2 %s Ц': %s clipboard. Ц: Φ/. : . Ц Ť '%s' Ц Φ Ť '%s' '%s'. Ц '%s' '%s'. DDE ˦ MDI. . Φ Ц '%s' ͦ '%s'¦ '%s' ( ȦΦ ?) HTML Ħæ %s clipboard. ' ަ DDE : %s '%s' XBM %s. wxResourceLoadBitmapData? XBM %s. wxResourceLoadIconData? XBM %s. wxResourceLoadBitmapData? ISP: %s Φ clipboard. Φæ̦ GUI: Ϥ צ Φæ̦ MS HTML Help. Φæ̦ OpenGL ' , 'Ԧ - Ԧ %d '%s'. mpr.dll. Ħϧ ¦̦ '%s' Ħϧ ¦̦ '%s' -- %s צ . צ clipboard. Φ clipboard. צ/צ Ť DDE '%s' ' Ħ ̦ '%s'. '%s' Ť '%s' '%s. Ť '%s' '%s. Φ clipboard. צ RAS ЦΦ clipboard Ʀæ DDE Φ clipboard. %d. '%s' 'Ԧ VFS! ˦ . ˦ 'advise loop' DDE . צ : %s צ-Ť DDE '%s' : %s Φ. '%s' Φ, Ħ ? '%s' Φ. Ħ ? . ' Τ. :Folio, 8 1/2 x 13 ͦ : %i צצ:GIF: .GIF: Ԧ GIF.GIF: 'Ԧ.GIF: צ !!!GTK+ German Legal Fanfold, 8 1/2 x 13 German Std Fanfold, 8 1/2 x 12 in Ҧ Ȧ Φ Ҧ ˦ Ҧ ҦGreek (ISO-8859-7)HTML-˦ %s Φ.Hebrew (ISO-8859-8)ͦæ ͦަ ͦަͦ ͦ: %sICO: !ICO: ICO: IFF: 'Ԧ.IIF: צ !!! Ʀæ %s. Ӧ. ' Ҧ. Ʀæ . Φ צ '%s' '%s' TIFF. XRC '%s': Ҧ ''. '%s': %ș , 110 x 230 JPEG: - .JPEG: .KOI8-RLedger, 17 x 11 ():, 8 1/2 x 14 8 1/2 x 11 , 8 1/2 x 11 צ %s : '%s'. MDI&¦˦/̦ ̦' VFS '%s'!̦ & %ix%i-%i .Monarch , 3 7/8 x 7 1/2 'Ŷ Ҧ XBM צΦ! XBM icon צΦ! . XML '%s', '%s'! æ . æ %d. æ %s. צצ Ҧ Nordic (ISO-8859-10) :Note, 8 1/2 x 11 OK HTMLæ .æ '%s' դ , '='.æ '%s' դ .æ '%s': '%s' .æҦæPCX: Ħ 'PCX: ЦդPCX: PCX: PCX.PCX: צ !!!PCX: Ӧ PCX: Ħ '.PNM: Ц.PNM: ¦.Ҧ %dҦ %d %d ҦҦͦ ͦ - Ҧ . Ҧ Ħ . Ҧ ISP - PostScript: Ҧ Ҧ Ҧ :æ æ :... Ҧ %d...... .Quarto, 215 x 275 '%s' ' ="%s" ! Ť '%s' Φ. Ť '%s' Φ, . Ť '%s' Ȧ ϧ æ , : æ צͦ. Ť '%s' Τ.ݦ : : Ҧ ͦ Ӧͦ : Ӧ Ӧ! ():Roman %s ͦ ͦަ Ӧ Ӧ ...Ħ ̦ '%s' Ҧ Ҧ Ҧ æ '%s' Ħ....˦ Ц' , . Ӧ Ӧ Ԧ / צæ ͦ צ . צ. . 'Ԧ .Statement, 5 1/2 x 8 1/2 : '%s' '%s', ̦!SwissTIFF: Ħ '.TIFF: .TIFF: .TIFF: .TIFF: .Tabloid, 11 x 17 Thai (ISO-8859-11) FTP Цդ . ̦ '%s' צ. ͦ [ͦ] צ ͦ clipboard '%d' Φ. '%s' Φ ? '%s' ".."!' '%s' . . æ '%s' . Ц' (RAS) æ Φ , צ (æ %s ). Φæ̦æ : Ҧ Φæ̦æ : Φæ̦æ : Ҧ Ҧ Ϧ. & & , Ц Φ!: (): '%s' 'Ԧ VFS, צ ! ' NULL: צͦTurkish (ISO-8859-9)US Std Fanfold, 14 7/8 x 11 צ HTML: %sĦ '%s'צ DDE %08xצ (%d)צ æ '%s'צ æ '%s'צ '{' mime type %s. Ц clipboard.Ц '%s'.: %ș צ ̦ ̦ Ħ ˦ Ц: : HTML .Western European (ISO-8859-1) Φ Win32 Win32s Windows 3.1Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Turkish (CP 1254)Windows/DOS OEM (CP 437) '%s' XML: '%s' æ %dXPM: Ϥ Ц!XRC : bitmap '%s'XRC : ̦ '%s' '%s'. æ.[]̦æ DDEML æ DDEML DdeInitialize æ, Ʀ æ DDEML æ) ̦ ' . Ħ 'Ԧ. ̦æ DDEML. æ æ æ æ ˦ ϧ æ ˦altҦΦ PostMessage Ҧ DDEML. ͦ ͦ '%s' Ϧ.צ '%s' %d ͦ '%s' '%s' æ '%s' ˦ %d %d HOME , . %d %d , צ '%s' צ æ '%s'. צ Ʀæ '%s'. צ Ʀæ. %d '%s' '%s' ̦ %d %d æ. '%s' .ctrlצӦ '%s' 'Ѥ ¦ Ц '%s' '%s'.'' '%s', %d: '%s' Ϧ Ц . '%s', %d: '='. '%s', %d: '%s' ͦ %d. '%s', %d: ͦѤ '%s' Ϧ. '%s': Ħ %c ʦ %d. Φ צ eof(). צ צ '%s' . '%s' '%s'.ЦΦ'' ΦЦnum Ӧshift Цۦ Ħ (. 640x480-16) strצצ æ ¦ DDE_FBUSY.ԦĦ " æ %d '%s'.צצ צ ( %08x)צ צ̦ צ-%dڦڦ%dդ '%s' '%s'. wxGetTimeOfDay.wxSocket: Ħ Ц ReadMsg.wxSocket: צ Ħ!wxWidgets ͦ צ '%s': .wxWidgets ͦ צ . .wxMaxima-13.04.2/locales/wxwin/zh_CN.mo000644 000765 000024 00000357277 12073007335 020243 0ustar00andrejstaff000000 000000 46 Ll`?a? !(Gg ǑБ  ,IZ an    ̒ #,=DKR[d j t Ǔ͓ӓ $2ELU \fo u ŔД֔ܔ $, < FSW_hlu  ʕ ڕ   !'.?H[dksy  Җߖ# ) 4BH OY]r{4ɗ$!#E*]/:  & 4@GILN_aegkosw{ řǙə˙͙ ϙ )<D U b n {#/՚-3/5c6Л' =^v֜  =Skŝٝݝ  46.k Ǟ Ӟݞ "62i"":ʟ &= E OZkР +Edz!֡"-51c( â΢ #71>pu|  ӣ &@Zt0֤ܤ FB)`ݥ%#8"\*(&Ӧ%% 6F1}"̧?/H1e Ҩ$!18GM((ک-31e }-̪ %9_})  9Yr)#'ج"3Vev˭ ҭ߭  *B7z'!+ծ"=`&|#$ǯ&& : H V3b"а$#6 Z+{ (ȱ% $3 X&y!&²#" #0*T!#ų ˳ճ/ ;C,^$ȴN*6Ra(ݵ) 0>(Gpx$!Ҷ%&#A e!·׷/"Hk'!ȸ8!Vx!(ҹ.'BCj#Һ(9,fŻʻ ݻ  #7OW[,b10%%>E_#d/!ʽ#  ,9I P \ i u-   ~ ƿ"ҿ2'QZv :DV lw|-)!) .8 Qr + LZLw%6\s{ 0#J@,$23.$b*.8-W"'0"9$$^0"&"$=8bG!/>An.2)Q{2/%/#U#y3"(%9$_T($'Ai"!5$! @a"#"-'6"^5'&-&ST/+&,+2X-&&+%(Q!z;)326i3-$')L2v!=4I bm3   /+4;P U c n{4 'Aayk #!=#_28 %(=Te*x '27 L W e2q /D"d ' *BX\ c6oQwp$G7l2)$5jZ%+%/=3m-( / < J*V1(# 16I6#818j%!!#!=_!y & #-JQX\c l w      $+1@ EO Tj^2G%b6" Y0g  #)"Lh{ | ! + 5 A L Wat     + 7BT ] g r       *&Cjo w !"C5 y'+$<O g q ,51K] %% 3FN!')-2G&N u * 7!S u*0 < D8P(4Kglq#1F$c%$$+P$m$$$3X$u$  00ag w"1 <9 %/0#`     $4 FTs   *A UaHj8 $-2:LSYqw|!3#m"D (1 9 F$Ty    ,4</RO  +8A<Y  % =G)g#E ?SZs' %5[*x -1>+p%)  %,4 96G~     . I d ~ #       / F ,Y 0      2 G ] zq ( ) 0? p o s 8   '  "&;br/,FYtP#9#].2as !' 1*Do0">M\`7aViO@YQ#B6M\w1{; (4A9{%$-I d#! 3#:^*w$& +"Kn w ,$$.'S{$' "8#Uy !0$M#r$#!:"Vy  * F N +e       !!1!L!e!!+!! !!!"" -"7"K"Q"m" """""" # # #,+# X#b#i#(## ## ## $ $ %$0$ @$ K$Y$l$$$"$.$-%1%L%d%&}%%% %%%&&1&G&a& ~&"& &&!&&"'1',L'y'1''.' '/(<M(( ((( ( (;():))0)=*;Y*>*;*5+F++++9,,,-.--.!B. d.r...*. ...!/&/)=/>g//#///0 0>0-]000*0(0#1'61'^1"11 1 1 2!#2$E2j2)y222#22222"3 %30373/@3p333#33/34 <4F44L4!48494.5E5K5 Q5 [5f5m555+5"5#5 #6D6U6\6b6}6 66 66(666666"6 !7/777S7 V7&a7)777 7 7777 88-8G8`8p8888$88 889C 9O9 U9`9f9"o999 9 9$999: : %:F: Z:e: m:"w:: ::-:3 ;#=;3a;*;; ; ;;;5==B== >>#>+>3>;>!C>"e>>> >>> > ? ? ? #? -?$7?\? n?y?? ? ??? ? ? ??@ @ %@ 0@<@ T@ b@ m@x@ @ @ @ @ @ @@@@ AA %A 0A ;A FAQA eA pA {A A AA A A AA A AA B B B&B7B@B `B kB vB BB BBBB B BB B C CC-C>COCdC lC xC C CCC C CCC DD $D/D @D ND YD dD oD{D DD DDD D DDD E E %E0EPE aE lE zE E E E E E E E E E EE FF ,F:F LF XFcFkF%mFF1F#F&F"G"@G cG)GGGGGGGGGGH HHHHHH H$H(H,H0H4H8Hr`rbr/{r+rrr*s#tڄ +LQ)V'ȅ   0&W u   $55U#͇!% ,68Hoj#55H,~Ċ$m!v*Ë*ދ, 6OVfm'  ˌ ،16Pi55!)4K!0ڎ$0MbƏ!'5 ] gt   ːӐڐ    &09 BO Xdk q} +ɑ %%Ek'"֒!7QX5\* œ ғߓ*"'Mu  aƔ ( 6 @ L W bl    Õ ϕ ە      ) 6 BM_ h r }    –̖ Ֆߖ     " 0>"Vy   ̗ۗ !!-CqxʘӘژ0 J W a k u !™(  $C%h$9̛ *,!Wy+  # <IP i!v Ýԝ (/'Hpw*~ŞΞ՞۞ 8Shmr# "ҟ!3&O v&.'/&E.l&.¡&.&G.n&.Ģ&.&I.p&.ƣ   ( , 9*Fq x "̤ (-ڥ$*CJQ bo    ̦ ٦  0 @M ] gq    ɧ ק !<(.e ȨϨ ֨ 6=*Wd ?9y  Ӫ ! >J Q[djr{  ˫ H `mu 3 -@Sip*,ͭ3 .38ls  Į!Ѯ!5N anǯ!ί-6'U$}*Ͱ ԰#  #'-U\l t **;Tp "ղ. :'O$w  ų ϳٳ  ^!u)bڴX= $ȵ ص'&N^!n   Ķ ζ۶&9O _l̷$b  ׸ $& K Xe{$`ӹ4*OPzE˺!!UC;Gջ2JP!μB߼" 8$Ej+o9  "L'tʾ(*AJeҿ7 A_w# B O Ycj! ++, X+y+ ,<L\l|,?Rbr+<Zj} #)M `j   !!#<CSo   * #3O V cp     !)<)U'%'C [fy  5@%Y#*1 R)V*/  9.O{~'"8#T!x$!&hq""Be,$4Yo(   #?#W.{).6L.k'&&!('J'r'6Rq'  $ $. 50?p6 2<7C){:75NU \ isz2!$@U\c  ,   , 9CY `+m(   6!X n |  ( 2; BLSZ z   '   ( ; E O\z *2"6<.s K%A2o/&YhpJ z jOL.d?|2-[ n-w$_a^,X.mFl8q!}tWe4sN8_SQYvvfnQeshWdWPb^m0B&n#X,21!9q5f[`DGtPN*b%uA0-P@&BDUz6tcDAL_Yq$:f,ykx i@j8>( 4i(D=wxC|7:K!` _uSnc[0v7xLB\o _:=Tu?axc>s+t3\||ZI5TF7N@   O]Fr'[c9l5mdzi]6"2)*9g \(U~I\)C;X"wzBQ^#o@aEVNl%b*9s ;Vb9<f]jg>JY#ESUjPP?uzZy`k|o"M<[-yJR 6+sr6Rxw\'>y}uAf1+3Xi{7{.T 'H9J.Z,( 5Y=rKL1^!E;7FF 0(5o/#Gl6;aWQO_}]OnvZSIuJCLJEbH5U820R)&ecrA04Te<<qC=O*<igk]"d' GO6hR1gx}Gg$F/:< Hm {b3 xi4D"N!M%^ QMf!T?g~XI }pI{3`$iI tS$,+B3R:$,p-z*4Y["U?5  {8uW+7^h1GC2wB$~E%jCaR\`,7kp-D A<sHHGS ?y TD'Kr3qjM;Qp LE:'9pzBk ^Tp= Xl|V%#){P.c v.  h&J edElnNe8g'PV_KH=!]; Itb2kR{@XZ]>UF |}[;/wdM#M~m~ h4#>Y"GrAr\(8Mn:HKtW=o)sVKa/}q?dfC&>0*(/*k`Uh6~.+ oZjwyy 1LaV&cmZW@)4l@vm)% 1VQ/vO~+3`NS-qe Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) (in module "%s") - Preview bold italic light#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%d of %lu%i of %i%ld byte%ld bytes%lu of %lu%s (or %s)%s Error%s Information%s Warning%s did not fit the tar header for entry '%s'%s files (%s)|%s&About&Actual Size&After a paragraph:&Alignment&Apply&Apply Style&Arrange Icons&Ascending&Back&Based on:&Before a paragraph:&Bg colour:&Bold&Bottom&Bottom:&Bullet style:&CD-Rom&Cancel&Cascade&Character code:&Clear&Close&Color&Colour:&Convert&Copy&Copy URL&Customize...&Debug report preview:&Delete&Delete Style...&Descending&Details&Down&Edit&Edit Style...&Execute&File&Find&Finish&First&Floating mode:&Floppy&Font&Font family:&Font for Level...&Font:&Forward&From:&Harddisk&Height:&Help&Hide details&Home&Indentation (tenths of a mm)&Index&Info&Italic&Jump to&Justified&Last&Left&Left:&List level:&Log&Move&Move the object to:&Network&New&Next&Next >&Next Paragraph&Next Tip&Next style:&No&Notes:&Number:&OK&Open...&Outline level:&Page Break&Paste&Picture&Point size:&Position (tenths of a mm):&Position mode:&Preferences&Previous&Previous Paragraph&Print...&Properties&Quit&Redo&Redo &Rename Style...&Replace&Restart numbering&Restore&Right&Right:&Save&Save as&See details&Show tips at startup&Size&Size:&Skip&Spacing (tenths of a mm)&Spell Check&Stop&Strikethrough&Style:&Styles:&Subset:&Symbol:&Table&Top&Top:&Underline&Underlining:&Undo&Undo &Unindent&Up&Vertical alignment:&View...&Weight:&Width:&Window&Yes''%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.'%s' should only contain digits.(*)(Help)(None)(Normal text)(bookmarks)(none)**)+, 64-bit edition-...11.11.21.31.41.51.61.71.81.91010 x 11 in10 x 14 in11 x 17 in12 x 11 in15 x 11 in234566 3/4 Envelope, 3 5/8 x 6 1/2 in7899 x 11 in: file does not exist!: unknown charset: unknown encoding< &BackBold italic face.
bold italic underlined
Bold face. Italic face. >A debug report has been generated in the directory A debug report has been generated. It can be found inA non empty collection must consist of 'element' nodesA standard bullet name.A0 sheet, 841 x 1189 mmA1 sheet, 594 x 841 mmA2 420 x 594 mmA3 Extra 322 x 445 mmA3 Extra Transverse 322 x 445 mmA3 Rotated 420 x 297 mmA3 Transverse 297 x 420 mmA3 sheet, 297 x 420 mmA4 Extra 9.27 x 12.69 inA4 Plus 210 x 330 mmA4 Rotated 297 x 210 mmA4 Transverse 210 x 297 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 Extra 174 x 235 mmA5 Rotated 210 x 148 mmA5 Transverse 148 x 210 mmA5 sheet, 148 x 210 mmA6 105 x 148 mmA6 Rotated 148 x 105 mmABCDEFGabcdefg12345ADDASCIIAboutAbout %sActual SizeAddAdd current page to bookmarksAdd to custom coloursAddToPropertyCollection called on a generic accessorAddToPropertyCollection called w/o valid adderAdding book %sAfter a paragraph:Align LeftAlign RightAlignmentAllAll files (%s)|%sAll files (*)|*All files (*.*)|*.*All stylesAlphabetic ModeAlready Registered Object passed to SetObjectClassInfoAlready dialling ISP.Alt+And includes the following files: Animation file is not of type %ld.Append log to file '%s' (choosing [No] will overwrite it)?ApplyArabicArabic (ISO-8859-6)Argument %u not found.ArtistsAscendingAttributesAvailable fonts.B4 (ISO) 250 x 353 mmB4 (JIS) Rotated 364 x 257 mmB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) Rotated 257 x 182 mmB5 (JIS) Transverse 182 x 257 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 (JIS) 128 x 182 mmB6 (JIS) Rotated 182 x 128 mmB6 Envelope, 176 x 125 mmBACKBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.BackBackgroundBackground &colour:Background colourBaltic (ISO-8859-13)Baltic (old) (ISO-8859-4)Before a paragraph:BitmapBitmap renderer cannot render value; value type: BoldBorderBordersBottomBottom margin (mm):Box PropertiesBox stylesBrowseBullet &Alignment:Bullet styleBulletsC sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCANCELCAPITALCD-RomCHM handler currently supports only local files!CLEARCOMMANDCa&pitalsCan't &Undo Can't automatically determine the image format for non-seekable input.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't monitor non-existent directory "%s" for changes.Can't monitor non-existent path "%s" for changes.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to child process's stdinCan't write to deflate stream: %sCancelCannot create mutex.Cannot create new column's ID. Probably max. number of columns reached.Cannot enumerate files '%s'Cannot enumerate files in directory '%s'Cannot find active dialup connection: %sCannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize socketsCannot load icon from '%s'.Cannot load resources from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file for PostScript printing!Cannot open index file: %sCannot open resources file '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot resume thread %luCannot resume thread %xCannot retrieve thread scheduling policy.Cannot set locale to language "%s".Cannot start thread: error writing TLS.Cannot suspend thread %luCannot suspend thread %xCannot wait for thread terminationCase sensitiveCategorized ModeCell PropertiesCeltic (ISO-8859-14)Cen&tredCenteredCentral European (ISO-8859-2)CentreCentre text.CentredCh&oose...Change List StyleChange Object StyleChange PropertiesChange StyleChanges won't be saved to avoid overwriting the existing file "%s"Character stylesCheck to add a period after the bullet.Check to add a right parenthesis.Check to enclose the bullet in parentheses.Check to make the font bold.Check to make the font italic.Check to make the font underlined.Check to restart numbering.Check to show a line through the text.Check to show the text in capitals.Check to show the text in subscript.Check to show the text in superscript.Choose ISP to dialChoose a directory:Choose a fileChoose colourChoose fontCircular dependency involving module "%s" detected.Cl&oseClass not registered.ClearClear the log contentsClick to apply the selected style.Click to browse for a symbol.Click to cancel changes to the font.Click to cancel the font selection.Click to change the font colour.Click to change the text background colour.Click to change the text colour.Click to choose the font for this level.Click to close this window.Click to confirm changes to the font.Click to confirm the font selection.Click to create a new box style.Click to create a new character style.Click to create a new list style.Click to create a new paragraph style.Click to create a new tab position.Click to delete all tab positions.Click to delete the selected style.Click to delete the selected tab position.Click to edit the selected style.Click to rename the selected style.CloseClose AllClose current documentClose this windowColorColourColour selection dialog failed with error %0lx.Colour:Column could not be added.Column description could not be initialized.Column index not found.Column width could not be determinedColumn width could not be set.Command line argument %d couldn't be converted to Unicode and will be ignored.Common dialog failed with error code %0lx.Compositing not supported by this system, please enable it in your Window Manager.Compressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.ConvertCopied to clipboard:"%s"Copies:CopyCopy selectionCould not create temporary file '%s'Could not determine column index.Could not determine column's positionCould not determine number of columns.Could not determine number of itemsCould not extract %s into %s: %sCould not find tab for idCould not get header description.Could not get items.Could not get property flags.Could not get selected items.Could not locate file '%s'.Could not remove column.Could not retrieve number of itemsCould not set alignment.Could not set column width.Could not set current working directoryCould not set header description.Could not set icon.Could not set maximum width.Could not set minimum width.Could not set property flags.Could not start document preview.Could not start printing.Could not transfer data to windowCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate directoryCreate new directoryCtrl+Cu&tCurrent directory:Custom sizeCustomize ColumnsCutCut selectionCyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDECIMALDELDELETEDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DIVIDEDL Envelope, 110 x 220 mmDOWNData object has invalid data formatDate renderer cannot render value; value type: Debug report "%s"Debug report couldn't be created.Debug report generation has failed.DecorativeDefault encodingDefault fontDefault printerDeleteDelete A&llDelete StyleDelete TextDelete itemDelete selectionDelete style %s?Deleted stale lock file '%s'.Dependency "%s" of module "%s" doesn't exist.DescendingDesktopDeveloped by DevelopersDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...DirectFB error %d occurred.DirectoriesDirectory '%s' couldn't be createdDirectory does not existDirectory doesn't exist.Discard changes and reload the last saved version?Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Document:Documentation by Documentation writersDon't SaveDoneDone.Double Japanese Postcard Rotated 148 x 200 mmDoubly used id : %dDownDragE sheet, 34 x 44 inENDENTEREOF while reading from inotify descriptorESCESCAPEEXECUTEEditEdit itemEnable the height value.Enable the minimum height value.Enable the width value.Enable vertical alignment.Enables a background colour.Enter a character style nameEnter a list style nameEnter a new style nameEnter a paragraph style nameEnter command to open file "%s":Entries foundEnvelope Invite 220 x 220 mmEnvironment variables expansion failed: missing '%c' at position %u in '%s'.ErrorError closing epoll descriptorError creating directoryError in resource: %sError reading config options.Error saving user configuration data.Error while printing: Error: Esperanto (ISO-8859-3)Event queue overflowedExecutable files (*.exe)|*.exe|ExecuteExecution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExporting registry key: file "%s" already exists and won't be overwritten.Extended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.FFailed to access lock file.Failed to add descriptor %d to epoll descriptor %dFailed to allocate %luKb of memory for bitmap data.Failed to allocate colour for OpenGLFailed to change video modeFailed to check format of image file "%s".Failed to clean up debug report directory "%s"Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to convert file "%s" to Unicode.Failed to copy dialog contents to the clipboard.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create an instance of "%s"Failed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory "%s"Failed to create directory '%s' (Do you have the required permissions?)Failed to create epoll descriptorFailed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to execute curl, please install it in PATH.Failed to find CLSID of "%s"Failed to find match for regular expression: %sFailed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to initiate dialup connection: %sFailed to insert text in the control.Failed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %%d from file '%s'.Failed to load image %d from stream.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to lock the lock file '%s'Failed to modify descriptor %d in epoll descriptor %dFailed to modify file times for '%s'Failed to monitor I/O channelsFailed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to parse Plural-Forms: '%s'Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to remember the encoding for the charset '%s'.Failed to remove debug report file "%s"Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the file '%s' to '%s' because the destination file already exists.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to set up non-blocking pipe, the program might hang.Failed to store image '%s' to memory VFS!Failed to switch DirectFB pipe to non-blocking modeFailed to switch wake up pipe to non-blocking modeFailed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to upload the debug report (error code %d).Failed to write to lock file '%s'FalseFileFile '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.File system containing watched object was unmountedFilesFiles (%s)FilterFindFirstFirst pageFixedFixed font:Fixed size face.
bold italic FloatingFloppyFolio, 8 1/2 x 13 inFontFont &weight:Font size:Font st&yle:Font:Fonts index file %s disappeared while loading fonts.Fork failedForwardForward hrefs are not supportedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ installed on this machine is too old to support screen compositing, please install GTK+ 2.12 or later.GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGetProperty called w/o valid getterGetPropertyCollection called on a generic accessorGetPropertyCollection called w/o valid collection getterGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGraphics art by Greek (ISO-8859-7)Gzip not supported by this version of zlibHELPHOMEHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|HarddiskHebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help directory "%s" not found.Help: %sHide %sHide OthersHide this notification message.HomeHome directoryHow the object will float relative to the text.ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!INSINSERTISO-2022-JPIcon & text renderer cannot render value; value type: If possible, try changing the layout parameters to make the printout more narrow.If you have any additional information pertaining to this bug report, please enter it here and it will be joined to it:If you wish to suppress this debug report completely, please choose the "Cancel" button, but be warned that it may hinder improving the program, so if at all possible please do continue with the report generation. Ignoring value "%s" of the key "%s".Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal Parameter Count for ConstructObject MethodIllegal Parameter Count for Create MethodIllegal directory name.Illegal file specification.Image and mask have different sizes.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'Incorrect GIF frame size (%u, %d) for the frame #%uIncorrect number of arguments.IndentIndents && SpacingIndexIndian (ISO-8859-12)InfoInitialization failed in post init, aborting.InsertInsert ImageInsert ObjectInsert TextInserts a page break before the paragraph.Invalid GTK+ command line option, use "%s --help"Invalid TIFF image index.Invalid data view itemInvalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sInvalid value %ld for a boolean key "%s" in config file.ItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.Japanese Double Postcard 200 x 148 mmJapanese Envelope Chou #3Japanese Envelope Chou #3 RotatedJapanese Envelope Chou #4Japanese Envelope Chou #4 RotatedJapanese Envelope Kaku #2Japanese Envelope Kaku #2 RotatedJapanese Envelope Kaku #3Japanese Envelope Kaku #3 RotatedJapanese Envelope You #4Japanese Envelope You #4 RotatedJapanese Postcard 100 x 148 mmJapanese Postcard Rotated 148 x 100 mmJump toJustifiedJustify text left and right.KOI8-RKOI8-UKP_KP_ADDKP_BEGINKP_DECIMALKP_DELETEKP_DIVIDEKP_DOWNKP_ENDKP_ENTERKP_EQUALKP_HOMEKP_INSERTKP_LEFTKP_MULTIPLYKP_NEXTKP_PAGEDOWNKP_PAGEUPKP_PRIORKP_RIGHTKP_SEPARATORKP_SPACEKP_SUBTRACTKP_TABKP_UPL&ine spacing:LEFTLandscapeLastLast pageLast repeated message ("%s", %lu time) wasn't outputLast repeated message ("%s", %lu times) wasn't outputLedger, 17 x 11 inLeftLeft (&first line):Left margin (mm):Left-align text.Legal Extra 9 1/2 x 15 inLegal, 8 1/2 x 14 inLetter Extra 9 1/2 x 12 inLetter Extra Transverse 9.275 x 12 inLetter Plus 8 1/2 x 12.69 inLetter Rotated 11 x 8 1/2 inLetter Small, 8 1/2 x 11 inLetter Transverse 8 1/2 x 11 inLetter, 8 1/2 x 11 inLicenseLightLine %lu of map file "%s" has invalid syntax, skipped.Line spacing:Link contained '//', converted to absolute link.List StyleList stylesLists font sizes in points.Lists the available fonts.Load %s fileLoading : Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.Lower case lettersLower case roman numeralsMDI childMENUMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMacArabicMacArmenianMacBengaliMacBurmeseMacCelticMacCentralEurRomanMacChineseSimpMacChineseTradMacCroatianMacCyrillicMacDevanagariMacDingbatsMacEthiopicMacExtArabicMacGaelicMacGeorgianMacGreekMacGujaratiMacGurmukhiMacHebrewMacIcelandicMacJapaneseMacKannadaMacKeyboardGlyphsMacKhmerMacKoreanMacLaotianMacMalayalamMacMongolianMacOriyaMacRomanMacRomanianMacSinhaleseMacSymbolMacTamilMacTeluguMacThaiMacTibetanMacTurkishMacVietnameseMarginsMatch caseMax height:Max width:Media playback error: %sMemory VFS already contains file '%s'!MenuMessageMetal themeMethod or property not found.Mi&nimizeMin height:Min width:Missing a required parameter.ModernModifiedModule "%s" initialization failedMonarch Envelope, 3 7/8 x 7 1/2 inMonitoring individual files for changes is not supported currently.Move downMove upMoves the object to the next paragraph.Moves the object to the previous paragraph.Multiple Cell PropertiesNUM_LOCKNameNetworkNewNew &Box Style...New &Character Style...New &List Style...New &Paragraph Style...New StyleNew directoryNew itemNewNameNextNext pageNoNo column existing.No column for the specified column existing.No column for the specified column position existing.No default application configured for HTML files.No entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo renderer or invalid renderer type specified for custom data column.No renderer specified for column.No soundNo unused colour in image being masked.No unused colour in image.No valid mappings found in the file "%s".NoneNordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Not availableNote, 8 1/2 x 11 inNoticeNumber of columns could not be determined.Numbered outlineOKOLE Automation error in %s: %sObject PropertiesObject implementation does not support named arguments.Objects must have an id attributeOpen FileOpen HTML documentOpen file "%s"Open...OpenGL function "%s" failed: %s (error %d)Operation not permitted.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationOut of window IDs. Recommend shutting down application.Overflow while coercing argument values.PAGEDOWNPAGEUPPAUSEPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPGDNPGUPPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.PRC 16K 146 x 215 mmPRC 16K RotatedPRC 32K 97 x 151 mmPRC 32K RotatedPRC 32K(Big) 97 x 151 mmPRC 32K(Big) RotatedPRC Envelope #1 102 x 165 mmPRC Envelope #1 Rotated 165 x 102 mmPRC Envelope #10 324 x 458 mmPRC Envelope #10 Rotated 458 x 324 mmPRC Envelope #2 102 x 176 mmPRC Envelope #2 Rotated 176 x 102 mmPRC Envelope #3 125 x 176 mmPRC Envelope #3 Rotated 176 x 125 mmPRC Envelope #4 110 x 208 mmPRC Envelope #4 Rotated 208 x 110 mmPRC Envelope #5 110 x 220 mmPRC Envelope #5 Rotated 220 x 110 mmPRC Envelope #6 120 x 230 mmPRC Envelope #6 Rotated 230 x 120 mmPRC Envelope #7 160 x 230 mmPRC Envelope #7 Rotated 230 x 160 mmPRC Envelope #8 120 x 309 mmPRC Envelope #8 Rotated 309 x 120 mmPRC Envelope #9 229 x 324 mmPRC Envelope #9 Rotated 324 x 229 mmPRINTPage %dPage %d of %dPage SetupPage setupPagesPaper sizeParagraph stylesPassing a already registered object to SetObjectPastePaste selectionPermissionsPicture PropertiesPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please select the columns to show and define their order:Please wait while printing...Point SizePointer to data view control not set correctly.Pointer to model not set correctly.PortraitPositionPostScript filePreferencesPreferences...PreparingPreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&w...Print previewPrint preview creation failed.Print preview...Print spoolingPrint this pagePrint to FilePrint...PrinterPrinter command:Printer optionsPrinter options:Printer...Printer:PrintingPrinting Printing ErrorPrinting page %d of %dPrinting page %d...Printing...PrintoutProcessing debug report has failed, leaving the files in "%s" directory.Progress renderer cannot render value type; value type: PropertiesPropertyProperty ErrorQuarto, 215 x 275 mmQuestionQuitQuit %sQuit this programRETURNRIGHTRead error on file '%s'ReadyRedoRedo last actionRefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.RegularRelevant entries:RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Renumber ListRep&laceReplaceReplace &allReplace with:Required information entry is empty.Revert to SavedRightRight margin (mm):Right-align text.RomanS&tandard bullet name:SCROLL_LOCKSELECTSEPARATORSNAPSHOTSPACESPECIALSUBTRACTSaveSave %s fileSave &As...Save AsSave asSave current documentSave current document with a different filenameSave log contents to fileScriptSearchSearch contents of help book(s) for all occurrences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect AllSelect a document templateSelect a document viewSelect regular or bold.Select regular or italic style.Select underlining or no underlining.SelectionSelects the list level to edit.Separator expected after the option '%s'.Set Cell StyleSetProperty called w/o valid setterSetting directory access times is not supported under this OS versionSetup...Several active dialup connections found, choosing one randomly.Shift+Show &hidden directoriesShow &hidden filesShow AllShow about dialogShow allShow all items in indexShow hidden directoriesShow/hide navigation panelShows a Unicode subset.Shows a preview of the bullet settings.Shows a preview of the font settings.Shows a preview of the font.Shows a preview of the paragraph settings.Shows the font preview.Simple monochrome themeSizeSize:SkipSlantSolidSorry, could not open this file.Sorry, not enough memory to create a preview.Sorry, that name is taken. Please choose another.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.SpacingSpell CheckStandardStatement, 5 1/2 x 8 1/2 inStaticStatus:StopStrikethroughString To Colour : Incorrect colour specification : %sStyleStyle OrganiserStyle:Subscrip&tSupe&rscriptSuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSwissSymbolSymbol &font:TABTIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.TIFF: Image size is abnormally big.Table PropertiesTabloid Extra 11.69 x 18 inTabloid, 11 x 17 inTabsTeletypeTemplatesText renderer cannot render value; value type: Thai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The available bullet styles.The available styles.The background colour.The bottom margin size.The bottom padding size.The bottom position.The bullet character.The character code.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The default style for the next paragraph.The directory '%s' does not exist Create it now?The document "%s" doesn't fit on the page horizontally and will be truncated if printed. Would you like to proceed with printing it nevertheless?The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The first line indent.The following standard GTK+ options are also supported: The font colour.The font family.The font from which to take the symbol.The font point size.The font size in points.The font size units, points or pixels.The font style.The font weight.The format of file '%s' couldn't be determined.The left indent.The left margin size.The left padding size.The left position.The line spacing.The list item number.The locale ID is unknown.The object height.The object maximum height.The object maximum width.The object minimum height.The object minimum width.The object width.The outline level.The previous message repeated %lu time.The previous message repeated %lu times.The previous message repeated once.The print dialog returned an error.The range to show.The report contains the files listed below. If any of these files contain private information, please uncheck them and they will be removed from the report. The required parameter '%s' was not specified.The right indent.The right margin size.The right padding size.The right position.The spacing after the paragraph.The spacing before the paragraph.The style name.The style on which this style is based.The style preview.The system cannot find the file specified.The tab position.The tab positions.The text couldn't be saved.The top margin size.The top padding size.The top position.The value for the option '%s' must be specified.The version of remote access service (RAS) installed on this machine is too old, please upgrade (the following required function is missing: %s).The wxGtkPrinterDC cannot be used.There is no column or renderer for the specified column index.There was a problem during page setup: you may need to set a default printer.This document doesn't fit on the page horizontally and will be truncated when it is printed.This is not a %s.This platform does not support background transparency.This program was compiled with a too old version of GTK+, please rebuild with GTK+ 2.12 or newer.This system doesn't support date controls, please upgrade your version of comctl32.dllThread module initialization failed: cannot store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Toggle renderer cannot render value; value type: Too many EndStyle calls!Too many colours in PNG, the image may be slightly blurred.TopTop margin (mm):Translations by TranslatorsTrueTrying to remove file '%s' from memory VFS, but it is not loaded!Turkish (ISO-8859-9)TypeType a font name.Type a size in points.Type mismatch in argument %u.Type must have enum - long conversionUPUS Std Fanfold, 14 7/8 x 11 inUS-ASCIIUnable to add inotify watchUnable to add kqueue watchUnable to close inotify instanceUnable to close path '%s'Unable to close the handle for '%s'Unable to create inotify instanceUnable to create kqueue instanceUnable to initialize GTK+, is DISPLAY set properly?Unable to initialize Hildon programUnable to open path '%s'Unable to open requested HTML document: %sUnable to play sound asynchronously.Unable to read from inotify descriptorUnable to remove inotify watchUnable to remove kqueue watchUnable to set up watch for '%s'Unable to start IOCP worker threadUndeleteUnderlineUnderlinedUndoUndo last actionUnexpected characters following option '%s'.Unexpected parameter '%s'Ungraceful worker thread terminationUnicodeUnicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)UnindentUnits for the bottom border width.Units for the bottom margin.Units for the bottom outline width.Units for the bottom padding.Units for the bottom position.Units for the left border width.Units for the left margin.Units for the left outline width.Units for the left padding.Units for the left position.Units for the maximum object height.Units for the maximum object width.Units for the minimum object height.Units for the minimum object width.Units for the object height.Units for the object width.Units for the right border width.Units for the right margin.Units for the right outline width.Units for the right padding.Units for the right position.Units for the top border width.Units for the top margin.Units for the top outline width.Units for the top padding.Units for the top position.UnknownUnknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown PNG resolution unit %dUnknown Property %sUnknown data formatUnknown dynamic library errorUnknown encoding (%d)Unknown error %08xUnknown exceptionUnknown image data format.Unknown long option '%s'Unknown name or named argument.Unknown option '%s'Unmatched '{' in an entry for mime type %s.Unnamed commandUnspecifiedUnsupported clipboard format.Unsupported theme '%s'.UpUpper case lettersUsage: %sValidation conflictValueValue must be %s or higher.Value must be %s or less.Value must be between %s and %s.Version Vertical alignment.View files as a detailed viewView files as a list viewViewsWINDOWS_LEFTWINDOWS_MENUWINDOWS_RIGHTWaiting for IO on epoll descriptor %d failedWarning: WeightWestern European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000Windows 7Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows CE (%d.%d)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936) or GB-2312Windows Chinese Traditional (CP 950) or Big-5Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932) or Shift-JISWindows Johab (CP 1361)Windows Korean (CP 949)Windows MEWindows NT %lu.%luWindows Server 2003Windows Server 2008Windows Server 2008 R2Windows Thai (CP 874)Windows Turkish (CP 1254)Windows Vietnamese (CP 1258)Windows VistaWindows Western European (CP 1252)Windows XPWindows/DOS OEM (CP 437)Windows/DOS OEM Cyrillic (CP 866)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XPM: incorrect colour description in line %dXPM: incorrect header format!XPM: malformed colour definition '%s' at line %d!YesYou cannot Clear an overlay that is not initedYou cannot Init an overlay twiceYou cannot add a new directory to this section.You have entered invalid value. Press ESC to cancel editing.Zoom &InZoom &OutZoom InZoom OutZoom to &FitZoom to Fita DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.assuming this is a multi-part zip concatenatedattempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebad zipfile offset to entrybinaryboldbuffer is too small for Windows directory.build %lucan't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't execute '%s'can't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.checksum errorchecksum failure reading tar header blockcmcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdump of the process state (binary)eighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening '%s'error opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.filesfirstfont sizefourteenthfourthgenerate verbose log messagesimageincomplete header block in tarincorrect event handler string, missing dotincorrect size given for tar entryinvalid data in extended tar headerinvalid message box return valueinvalid zip fileitaliclightlocale '%s' cannot be set.midnightnineteenthninthno DDE error.no errorno fonts found in %s, using builtin fontnonamenoonnormalnot implementednumobjects cannot have XML Text Nodesout of memorypercentprocess context descriptionpxread errorreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestandard/circlestandard/circle-outlinestandard/diamondstandard/squarestandard/trianglestored file length not in Zip headerstrstrikethroughtar entry not opentenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtodaytomorrowtrailing backslash ignored in '%s'translator-creditstwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unexpected end of fileunknownunknown class %sunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodusing catalog '%s' from '%s'.write errorwxGetTimeOfDay failed.wxPrintout::GetPageInfo gives a null maxPage.wxWidget control pointer is not a data view pointerwxWidget's control not initialized.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.xxxxyesterdayzlib error %d~Project-Id-Version: wxWidgets 2.8.10 Report-Msgid-Bugs-To: POT-Creation-Date: 2012-08-27 11:51+0200 PO-Revision-Date: 2012-12-31 12:24+0800 Last-Translator: William Jiang Language-Team: wxWidgets tranlators MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: Poedit 1.5.4 请将报告发送给程序维护人员,谢谢! 谢谢,我们对您遇到的不便表示抱歉! (错误 %ld: %s) (于模块: "%s") - 预览 粗体 斜体 细体#10 信封,4 1/8 x 9 1/2 英寸#11 信封,4 1/2 x 10 3/8 英寸#12 信封,4 3/4 x 11 英寸#14 信封,5 x 11 1/2 英寸#9 信封,3 7/8 x 8 7/8 英寸%d / %lu%i / %i%ld 字节%lu / %lu%s (或 %s)%s 错误%s 信息%s 警告%s 不符合tar项目 '%s' 的标头%s 文件 (%s)|%s关于(&A)实际大小(&A)段落之后(&A):对齐(&A)应用(&A)应用样式(&A)重排图标(&A)递增(&A)返回(&B)基于(&B):段落之前(&B):背景颜色(&B):粗体(&B)底端(&B)底端(&B):项目符号样式(&B):CD 光驱(&C)取消(&C)层叠(&C)字符编码(&C):清除(&C)关闭(&C)颜色(&C)颜色(&C):转换(&C)复制(&C)复制 URL(&C)自定义(&C)...调试报告预览(&D): 删除(&D)删除样式(&D)...递减(&D)细节(&D)向下(&D)编辑(&E)编辑样式(&E)...执行(&E)文件(&F)查找(&F)完成(&F)最前(&F)浮动模式(&F):软盘(&F)字体(&F)字体(&F):层级字体(&F)...字体(&F):前进(&F)从(&F):硬盘(&H)高度(&H):帮助(&H)隐藏细节(&H)Home(&H)缩进(&I) (十分之一毫米)索引(&I)信息(&I)斜体(&I)跳转到(&J)分散对齐(&J)最后(&L)左(&L)左(&L):列表层级(&L):日志(&L)移动(&M)移动对象至(&M):网络(&N)新建(&N)下一个(&N)下一个(&N) >下一段落(&N)下一技巧(&N)下一个样式(&N):否(&N)注意(&N):编号(&N):确认(&O)打开(&O)...大纲层级(&O):断页符号(&P)粘贴(&P)图片(&P)字体大小(&P):位置(&P) (十分之一毫米)位置(&P)偏好设置(&P)前页(&P)前一段落(&P)打印(&P)...属性(&P)退出(&Q)恢复(&R)恢复(&R) 重命名样式(&R)...替换(&R)重新编号(&R)复原(&R)右(&R)右(&R):保存(&S)另存为(&S)查看细节(&S)启动时显示技巧(&S)大小(&S)大小(&S):跳过(&S)间距(&S) (十分之一毫米)拼写检查(&S)停止(&S)删除线(&S)字体(&S):样式(&S):子集(&S):符号(&S):表格(&T)顶端(&T)顶端(&T):下划线(&U)下划线(&U)撤销(&U)撤销(&U) 取消缩进(&U)向上(&U)垂直对齐(&V)查看(&V)...字体粗细(&W):宽度(&W):窗口(&W)是(&Y)''%s' 有额外的 '..',忽略之。'%s' 是无效的'%s' 不是匹配选项 '%s'的正确数字值。'%s' 不是有效的消息目录。'%s' 或许是一个二进制文件。'%s' 应该是一个数值。'%s' 应该仅包含ASCII字符。'%s' 应仅包含字母字符。'%s' 应仅包含字母或数字字符。'%s' 应该仅包含数字。(*)(帮助)(无)(正常字体)(书签)(无)**)+,64位版-...11.11.21.31.41.51.61.71.81.91010 x 11 英寸10 x 14 英寸11 x 17 英寸12 x 11 英寸15 x 11 英寸234566 3/4 信封, 3 5/8 x 6 1/2 英寸7899 x 11 英寸: 文件不存在!: 未知字符集: 未知编码< 返回(&B)<任意 Decorative><任意 Modern><任意 Roman><任意 Script><任意 Swiss><任意 Teletype><任意><目录><盘符><连接>粗斜体.
粗斜体 加下划线
粗体. 斜体. >产生了一份调试报告, 位于目录 产生了一份调试报告, 位于非空集合必须包含 'element' 节点标准项目符号名称。A0 纸张, 841 x 1189 毫米A1 纸张, 594 x 841 毫米A2 纸张, 420 x 594 毫米特大 A3 纸张, 322 x 445 毫米特大 A3 纸张(横排), 322 x 445 毫米横向 A3 纸张, 420 x 297 毫米A3 纸张(横排), 297 x 420 毫米A3 纸张, 297 x 420 毫米特大 A4 纸张, 9.27 x 12.69 英寸加大 A4 纸张, 210 x 330 毫米横向 A4 纸张, 297 x 210 毫米A4 纸张(横排), 210 x 297 毫米A4 纸张, 210 x 297 毫米小 A4 纸张, 210 x 297 毫米特大 A5 纸张, 174 x 235 毫米横向 A5 纸张, 210 x 148 毫米A5 纸张(横排), 148 x 210 毫米A5 纸张, 148 x 210 毫米A6 纸张, 105 x 148 毫米横向 A5 纸张, 148 x 105 毫米ABCDEFGabcdefg12345ADDASCII关于关于 %s实际大小加入把当前页加到书签中加到自定义颜色中在一个通用处理器上调用AddToPropertyCollection调用AddToPropertyCollection时未带有效的adder正在添加卷 %s段落之后:左对齐右对齐对齐所有所有文件 (%s)|%s所有文件 (*)|*所有文件 (*.*)|*.*所有样式字母顺序模式传递已注册对象给 SetObjectClassInfo已经拨接 ISP 。Alt+并且包含以下文件: 动画文件的类型不是 %ld。把日志添加到文件 '%s' (选择 [否] 将覆盖该文件)?应用阿拉伯数字阿拉伯语 (ISO-8859-6)找不到参数 %u。美术设计者升序属性(Attributes)可用字体。B4 纸张(ISO), 250 x 353 毫米横向 B4 纸张(JIS), 364 x 257 毫米B4 信封, 250 x 353 毫米B4 纸张, 250 x 354 毫米特大 B4 纸张(JIS), 201 x 276 毫米横向 B5 纸张(JIS), 257 x 182 毫米B5 纸张 (JIS, 横排), 182 x 257 毫米B5 信封, 176 x 250 毫米B5 纸张, 182 x 257 毫米B6 纸张(JIS), 128 x 182 毫米横向 B6 纸张(JIS), 182 x 128 毫米B6 信封, 176 x 125 毫米BACKBMP: 无法分配内存。BMP: 无法保存无效图像。BMP: 无法写 RGB 色彩表。BMP: 无法写数据。BMP: 无法写文件头 (Bitmap)。BMP: 无法写文件头 (BitmapInfo)。BMP: wxImage 没有自己的 wxPalette。返回背景背景颜色(&c):背景颜色波罗的海语 (ISO-8859-13)波罗的海语 (旧式) (ISO-8859-4)段落之前:位图位图渲染器无法渲染该值; 类型为:粗体边框边框底端底边距 (毫米):方块属性方块样式浏览项目符号对齐(&A):项目符号样式项目符号C 纸张, 17 x 22 英寸清除(&L)颜色(&o):C3 信封, 324 x 458 毫米C4 信封, 229 x 324 毫米C5 信封, 162 x 229 毫米C6 信封, 114 x 162 毫米C65 信封, 114 x 229 毫米CANCELCAPITALCD 光驱CHM处理程序目前只支持本地文件!CLEARCOMMAND大写(&P)无法撤销(&U)不能自动确定不可定位输入的图像格式。无法关闭注册键 '%s'无法复制不支持的类型 %d 的值.无法创建注册键 '%s'无法创建进程无法创建窗口类 %s无法删除键 '%s'无法删除 INI 文件 '%s'无法删除值 '%s' 位于键 '%s'无法枚举键 '%s' 的子键无法枚举键 '%s' 的值无法导出不支持的类型 %d 的值.无法在文件 '%s' 中找到当前位置无法获得注册键 '%s' 的信息无法初始化 zlib 压缩流。无法初始化 zlib 解压流。无法监视不存在目录 "%s" 的更新。无法监视不存在路径 "%s" 的更新。无法打开注册键 '%s'无法从解压流 %s 中读取无法读解压流: 流内有异常的 EOF。无法读 '%s' 的值无法读键 '%s' 的值无法从将图像保存至文件 '%s' 中: 无法识别的扩展名。无法把日志内容保存到文件。无法设置线程优先级无法设置 '%s' 的值无法写入子进程的标准输入无法写到压缩流: %s取消无法创建互斥子。无法建立新的列 ID。可能已达到列数量的上限。无法枚举文件 '%s'无法枚举目录 '%s' 中的文件找不到活动的拨号连接: %s找不到地址簿文件的位置无法获得调度策略 %d 的优先级范围。无法获得主机名无法获得正式的主机名无法挂断 - 没有活动的拨号连接。无法初始化 OLE无法初始化 sockets无法从 '%s' 中读取图标。无法从文件 '%s' 中载入资源。无法从文件 '%s' 中载入资源。无法打开 HTML 文档: %s无法打开 HTML 帮助: %s无法打开目录文件: %s无法打开文件进行 PostScript 打印!无法打开索引文件: %s无法打开资源文件 '%s'。无法打印空白页面。无法从 '%s' 中读取类型名称!无法恢复线程 %lu无法恢复线程 %x无法找回线程调度策略。无法设定为语言 "%s"。无法启动线程: 写 TLS 出错。无法挂起线程 %lu无法挂起线程 %x无法等候线程终止大小写敏感分类模式单元格属性凯尔特语 (ISO-8859-14)居中(&t)居中中欧语系 (ISO-8859-2)居中文字居中。居中选择(&o)...更改列表样式更改对象样式修改属性更改样式为了防止重写已有文件 "%s" 更改不会被保存文字样式勾选以在项目符号后加上句号勾选以加上右括号勾选以将项目符号加上一对括号勾选设定为粗体。勾选设定为斜体。勾选加下划线。勾选以重新编号勾选加删除线。勾选显示为大写。勾选显示为下标。勾选显示为上标。选择ISP进行拨号选择目录:选择文件选择颜色选择字体检测到导致循环依赖模块 "%s" 。关闭(&o)类未注册。清除清除日志内容点击应用所选样式。点击浏览该符号。点击取消字体变更。点击取消字体选择。点击更改字体颜色。点击修改字体背景颜色。点击修改字体颜色。点击选择此层级字体。点击关闭此窗口。点击确认字体更改。点击确认字体选择。点击新增方块样式。点击新建文字样式。点击新增列表样式。点击新建段落样式。点击建立新的标签位置。点击删除所有标签位置。点击删除所选样式。点击删除所选标签位置。点击编辑所选样式。点击重命名所选样式。关闭全部关闭关闭当前文档关闭此窗口颜色颜色颜色选择对话框错误,错误码 %0lx。颜色:无法增加列。列描述无法初始化。找不到列索引。无法确定列宽无法设定列宽。命令行参数 %d 无法被转化成Unicode编码,其将被忽略。公共对话框错误,错误码 %0lx。当前系统不支持组合模式,请在窗口管理器中启用。压缩的HTML帮助文件 (*.chm)|*.chm|计算机配置条目名不能以 '%c' 开头。确认确认更新注册表正在连接...目录无法进行到字符集 '%s' 的转换。转换已复制到剪贴板:"%s"份数:复制复制选区无法创建临时文件 '%s'无法确定列索引。无法确定列位置无法确定列数量。无法确定项目数量无法将 %s 解开至 %s: %s找不到 id 的标签无法获取表头描述。无法获取项目。无法获取属性标志。无法获取所选项目。找不到文件 '%s'。无法删除列。无法获取项目数量无法设定对齐。无法启动文档预览。无法设置当前工作目录无法启动打印。无法启动打印。无法设定最大宽度。无法设定最小宽度。无法设定属性标志。无法启动文档预览。无法启动打印。无法把数据转到窗口无法得到互斥锁无法把图像加到图象列表。无法创建计时器在动态连接库中找不到符号 '%s'无法获得当前线程指针无法装入 PNG 图像 - 文件被破坏 或者 没有足够内存。无法从 '%s' 中的读取声音数据。无法打开音频: %s无法注册剪贴板格式 '%s'。无法释放互斥子无法获得列表控件的项 %d 信息。无法保存 PNG 图像。无法终止线程创建目录创建新目录Ctrl+剪切(&t)当前目录:自定义大小自定义列剪切剪切选区西里尔语 (ISO-8859-5)D 纸张, 22 x 34 英寸DDE poke 请求失败DECIMALDELDELETEDIB头: 编码不匹配颜色位数。DIB头: 对于文件, 图像高度 > 32767 象素。DIB头: 对于文件, 图像宽度 > 32767 象素。DIB头: 文件中颜色位数未知。DIB头: 文件编码未知。DIVIDEDL 信封, 110 x 220 毫米DOWN数据对象有无效数据格式数据渲染器无法渲染该值; 类型为:调试报告 "%s"无法创建调试报告。无法生成调试报告。修饰缺省编码缺省字体缺省的打印机删除删除全部(&l)删除样式删除文字删除项删除选区删除样式 %s?已删除过期的锁文件 '%s'。依赖 "%s" 对模块 "%s" 不存在。降序桌面开发由开发者由于远程访问服务(RAS)没有安装在本机,拨号功能无法使用。请安装它。你知道吗...DirectFB错误 %d 发生。目录无法创建目录 '%s'目录不存在目录不存在。放弃更改并重新载入最近保存的版本?显示包含给定子串的所有索引项. 搜索是大小写无关的.显示选项对话框是否要覆盖用于%s文件(扩展名为"%s")的命令? 当前值为 %s, 新的值为 %s %1文档:文档撰写由文档作者不保存完成完成.横向日本双明信片, 148 x 200 毫米重复使用的id : %d向下移动E 纸张,34 x 44 英寸ENDENTER读取 inotify 描述符时遇到 EOFESCESCAPEEXECUTE编辑编辑项启用高度值。启用最小高度值。启用宽度值。启用垂直对齐。启用背景颜色。输入文字样式名输入列表样式名输入新样式名输入段落样式名输入命令以打开文件 "%s":找到的条目邀请信, 220 x 220 毫米环境变量扩展失败: '%c' 没有出现在位置 %u / '%s'。错误关闭 epoll 描述符时发生错误创建目录错误资源错误: %s读配置选项错误。保存用户配置数据错误.打印时出错: 错误: 世界语 (ISO-8859-3)消息队列溢出可执行文件 (*.exe)|*.exe|执行命令 '%s' 执行失败命令 '%s' 执行失败, 错误信息: %ul实用纸张(Executive), 7 1/4 x 10 1/2 英寸导出注册键: 文件 "%s"已经存在, 无法覆盖.扩展的日本语Unix代码页 (EUC-JP)将 '%s' 解压至 '%s' 失败。F访问锁文件失败。无法将描述符 %d 加到 epoll 描述符 %d为位图数据分配 %luKb 内存失败。无法为 OpenGL 分配颜色改变视频模式失败。无法确认图像文件 "%s" 的格式。无法清除调试报告目录 "%s"关闭文件句柄失败关闭锁文件 '%s'失败关闭剪贴板失败。连接失败: 缺少用户名/口令。连接失败: 没有要拨号的 ISP。无法转换文件 "%s" 为 Unicode。无法将对话框内容复制到剪贴板。复制注册键值失败 '%s'把注册键内容从 '%s' 复制到 '%s' 失败。复制文件 '%s' 至 '%s' 失败复制注册表子键 '%s' 至 '%s' 失败。创建 DDE 字符串失败创建 MDI 父框架失败。创建临时文件名失败创建匿名管道失败无法创建实例 "%s"创建到服务器 '%s' 的关于主题 '%s' 的连接失败创建游标失败。无法创建目录 "%s"创建目录 '%s' 失败 (您是否有所需的权限?)无法创建 epoll 描述符为 '%s' 文件创建注册条目失败。创建标准"查找/替换"对话框失败 (错误号 %d)按编码 %s 显示HTML文档失败清空剪贴板失败枚举视频模式失败在DDE服务器建立advise循环失败建立拨号连接失败: %s执行 '%s' 失败 无法执行curl,请在PATH变量所指的目录中安装curl。无法找到 "%s" 的 CLSID无法找到匹配的正则表达式: %s获取 ISP 名失败: %s从剪贴板获取数据失败获取本地系统时间失败获取工作目录失败无法初始化 GUI: 找不到内嵌的主题。初始化MS HTML 帮助失败。无法初始化 OpenGL无法初始化拨号连接: %s无法在控件中插入文字。检查锁文件 '%s' 失败合并线程失败,检测到潜在地内存丢失 - 请重新启动系统终止进程 %d 失败无法从文件 '%s' 中读取图像 %%d。无法从数据流中载入图像 %d。从文件 "%s" 读取元文件失败。装载 mpr.dll 失败。无法装载共享库 '%s'锁定锁文件 '%s' 失败无法修改描述符 %d (于epoll描述符 %d)为 '%s' 修改文件时间失败无法检测I/O通道打开CHM存档 '%s' 失败。打开临时文件失败。打开剪贴板失败。无法解析复数形式: '%s'把数据放到剪贴板失败从锁文件读取 PID 失败。重定向子过程输入/输出失败重定向子过程IO失败注册DDE服务器 '%s' 失败回忆字符集 '%s' 编码失败。无法删除调试报告文件 "%s"无法删除锁文件 '%s'删除过期的锁文件 '%s' 失败。将注册值 '%s' 重命名为 '%s' 失败。无法将文件'%s' 重命名为 '%s',因为目标文件已存在。将注册键 '%s' 重命名为 '%s' 失败。从剪贴板检取数据失败。提取 '%s' 文件时间失败提取 RAS 错误消息正文失败提取支持的剪贴板格式失败将位图图像保存至文件 "%s" 失败。发送 DDE advise 通知失败设置 FTP 传输模式为 %s 时失败。设置剪贴板数据失败。在锁文件 '%s' 上设置许可权限时失败设置临时文件的许可权限时失败设置线程优先级 %d 失败。无法设置非闭塞通道,程序可能挂起。将图像 '%s' 存到内存 VFS 失败!无法将DirectFB通道切换至非闭塞模式无法将唤醒管道切换至非闭塞模式终止线程失败。终止与 DDE 服务器的 advise 循环失败终止拨号连接失败: %s对文件 '%s' 进行 touch 操作时失败对已锁文件 '%s' 解锁失败撤消 DDE 服务器 '%s' 注册失败无法更新用户配置文件。上传调试报告失败 (错误号 %d)。写锁文件 '%s' 失败False文件文件 '%s' 已存在,确实需要复写它?文件 '%s' 已存在。 真的需要替换它?文件无法装载。文件错误文件名已存在。包含监控对象的文件系统已被卸载文件文件 (%s)过滤器查找最前第一页固定固定字体:固定字体.
粗体 斜体 浮动软盘对开纸, 8 1/2 x 13 英寸字体字体粗细(&w):字体大小:字体样式(&y):字体:字体索引文件 %s 载入字体时丢失。Fork 失败前进不支持传递hrefs找到 %i 个匹配项从:GIF: 无效的 gif 图像索引。GIF: 数据流似乎已被截断。GIF: GIF文件格式错误。GIF: 没有足够内存。GIF: 位置错误!!!本机安装的GTK+版本过低,不支持屏幕组合,请安装GTK+2.12或者更新版本。GTK+ 主题普通PostScript德国法定复写簿, 8 1/2 x 13 英寸德国标准复写簿, 8 1/2 x 12 英寸调用GetProperty时未带有效的getter在一个通用处理器上调用GetPropertyCollection调用GetPropertyCollection时未带有效的collection getter返回前进到上一级文档目录进入 home 目录进入父目录图形艺术设计由 希腊语 (ISO-8859-7)此版本的 zlib 不支持 GzipHELPHOMEHTML 帮助的工程文件 (*.hhp)|*.hhp|HTML 锚 %s 不存在。HTML文件 (*.html;*.htm)|*.html;*.htm|磁盘希伯来语 (ISO-8859-8)帮助帮助浏览器选项帮助索引帮助打印帮助主题帮助书 (*.htb)|*.htb|帮助书 (*.zip)|*.zip|找不到帮助目录 "%s"。帮助: %s隐藏 %s隐藏其他隐藏此通知消息。HomeHome 目录对象怎样浮动与文本有关。ICO: 读掩码DIB错误。ICO: 写图像文件错误!ICO: 图像高度超出范围,不适合做图标。ICO: 图像宽度超出范围,不适合做图标。ICO: 无效的图标索引。IFF: 数据流似乎已被截断。IFF: IFF文件格式错误。IFF: 没有足够内存。IFF: 位置错误!!!INSINSERTISO-2022-JP图标和文本渲染器无法渲染该值; 类型为:如有可能,请尝试更改布局参数以使输出结果更紧凑。如果您有任何与此错误报告有关的信息, 请在此输入,它将会被加到错误报告中:如果您想完全禁用调试报告,请按"取消"按钮, 但我们不建议这样做,因为调试报告有助于改进本程序。 在可能的情况下,请尽量选择让程序生成调试报告。 忽略值 "%s" (键 "%s")。非法的对象类 (非-wxEvtHandler) 作为事件源非法的针对 ConstructObject 方法的参数计数非法的针对 Create 方法的参数计数不合法的目录名。不合规范的文件描述。图像和掩码的大小不一致。无法创建富文本编辑器控件,使用简单文本编辑器控件代替。请重新安装 riched32.dll不可能获得子过程的输入不可能获得文件 '%s' 的许可权限不可能复写文件 '%s'不可能设置文件 '%s' 的许可权限错误的GIF帧尺寸(%u, %d)对于第#%u帧错误的变量数目。缩进锁紧和空格索引印地安语 (ISO-8859-12)信息在后初始化阶段出错,退出...插入插入图片插入对象插入文本在段落前插入断页符。无效的GTK+命令行选项,使用 "%s --help"无效TIFF图像索引。无效的数据视图项无效的显示模式 '%s'。无效的几何规格 '%s'无效的锁文件 '%s'。无效的或空的对象 ID 传给 GetObjectClassInfo无效的或空的对象 ID 传给 HasObjectClassInfo无效的正则表达式 '%s': %s配置文件中无效的值 %ld 于布尔键 "%s"。斜体意大利信封, 110 x 230 毫米JPEG: 无法装入 - 文件也许已被破坏。JPEG: 无法保存图像。日本双明信片, 200 x 148 毫米日本 Chou 3 信封日本 Chou 3 信封(横向)日本 Chou 4 信封日本 Chou 4 信封(横向)日本 Kaku 2 信封日本 Kaku 2 信封(横向)日本 Kaku 3 信封日本 Kaku 3 信封(横向)日本 You 4 信封日本 You 4 信封(横向)日本明信片, 100 x 148 毫米横向日本明信片, 148 x 100 毫米跳转至分散对齐文本左右对齐。KOI8-RKOI8-UKP_KP_ADDKP_BEGINKP_DECIMALKP_DELETEKP_DIVIDEKP_DOWNKP_ENDKP_ENTERKP_EQUALKP_HOMEKP_INSERTKP_LEFTKP_MULTIPLYKP_NEXTKP_PAGEDOWNKP_PAGEUPKP_PRIORKP_RIGHTKP_SEPARATORKP_SPACEKP_SUBTRACTKP_TABKP_UP行距(&I):LEFT横向最后最后一页最后重复消息("%s", %lu time)未输出帐簿, 17 x 11 英寸左左(第一行)(&F):左边距 (毫米):文字左对齐。特大法律纸张, 9 1/2 x 15 英寸标准法律纸张, 8 1/2 x 14 英寸特大信纸, 9 1/2 x 12 英寸特大信纸(横排), 9.275 x 12 英寸加大信纸, 8 1/2 x 12.69 英寸横向信纸, 11 x 8 1/2 英寸信纸(小), 8 1/2 x 11 英寸信纸(横排), 8 1/2 x 11 英寸信纸, 8 1/2 x 11 英寸授权细行 %lu 的map文件 "%s" 有无效语法,跳过。行距:链接包含 '//',转换为绝对链接.列表样式列表样式列表字体大小列出可用字体。装入文件 %s 装载: 锁文件 '%s' 没有正确的所有者。锁文件 '%s' 没有正确的权限。日志保存到文件 '%s'。小写字母小写罗马数字MDI 子窗口MENUMS HTML帮助功能不存在,因为此机器上没有安装 MS HTML 帮助库。请安装它。最大化(&x)MacArabicMacArmenianMacBengaliMacBurmeseMacCelticMacCentralEurRomanMacChineseSimpMacChineseTradMacCroatianMacCyrillicMacDevanagariMacDingbatsMacEthiopicMacExtArabicMacGaelicMacGeorgianMacGreekMacGujaratiMacGurmukhiMacHebrewMacIcelandicMacJapaneseMacKannadaMacKeyboardGlyphsMacKhmerMacKoreanMacLaotianMacMalayalamMacMongolianMacOriyaMacRomanMacRomanianMacSinhaleseMacSymbolMacTamilMacTeluguMacThaiMacTibetanMacTurkishMacVietnamese边距区分大小写最达高度:最大宽度:媒体回放错误:%s内存 VFS 已包含文件 '%s'!菜单消息金属主题找不到方法或属性。最小化(&n)最小高度:最小宽度: 缺少必要参数。现代修改日期模块 "%s" 初始化失败7.75信封,3 7/8 x 7 1/2 英寸当前不支持监视单独文件的更改。下移上移将对象移至下一段落将对象移至前一段落多重单元属性NUM_LOCK名称网络新建新方块样式(&B)新增字体样式(&C)...新增列表样式(&L)...新增段落样式(&P)...新增样式新目录新项目新名称下一个下一页否没有任何列存在。没有指定的列存在。没有指定的列位置存在。没有设定HTML文件的默认应用。没找到条目。编码 '%s' 的字体未找到,无法显示文本。 但发现另一替代编码 '%s'。 是否使用该编码 (否则您必须选择另外的编码)?编码 '%s' 的字体未找到,无法显示文本。 请选择用于该编码的字体 (否则该编码的文本将无法正确显示)?没有找到图像类型处理器。没有类型 %d 的图像处理器。没有类型 %s的图像处理器。还没有找到匹配页无渲染器或为该数据列指定了无效的渲染器该列未指定渲染器没有声音图像中没有被掩码的未用颜色。图像中没有未用的颜色。文件 "%s" 中无效映射无日尔曼语 (ISO-8859-10)正常正常字体
带下划线。正常字体:不可用笔记簿, 8 1/2 x 11 英寸注意无法确定列数量。大纲标号确认OLE自动化错误%s: %s对象属性对象实现不支持命名参数对象必须有一个id属性打开文件打开HTML文档打开文件 "%s"打开...OpenGL函数 "%s"失败: %s (error %d)不允许的操作。选项 '%s' 需要值。选项 '%s': '%s' 无法转成日期。选项方向window ID已用完。建议关闭应用。强制修改参数值溢出PAGEDOWNPAGEUPPAUSEPCX: 无法分配内存PCX: 图像格式不支持PCX: 无效图像PCX: 不是PCX文件。PCX: 未知错误!!!PCX: 版本号太小PGDNPGUPPNM: 无法分配内存。PNM: 无法识别的文件格式。PNM: 文件似乎已被截断。中国 16开 纸, 146 x 215 毫米中国 16开 纸张(横向)中国 32开 纸, 97 x 151 毫米中国 32开 纸张(横向)中国 32开(大) 纸, 97 x 151 毫米中国 32开(大) 纸张(横向)中国标准信封1#, 102 x 165 毫米中国标准信封1#(横向), 165 x 102 毫米中国标准信封10#, 324 x 458 毫米中国标准信封10#(横向), 458 x 324 毫米中国标准信封2#, 102 x 176 毫米中国标准信封2#(横向), 176 x 102 毫米中国标准信封3#, 125 x 176 毫米中国标准信封3#(横向), 176 x 125 毫米中国标准信封4#, 110 x 208 毫米中国标准信封4#(横向), 208 x 110 毫米中国标准信封5#, 110 x 220 毫米中国标准信封5#(横向), 220 x 110 毫米中国标准信封6#, 120 x 230 毫米中国标准信封6#(横向), 230 x 120 毫米中国标准信封7#, 160 x 230 毫米中国标准信封7#(横向), 230 x 160 毫米中国标准信封8#, 120 x 309 毫米中国标准信封8#(横向), 309 x 120 毫米中国标准信封9#, 229 x 324 毫米中国标准信封9#(横向), 324 x 229 毫米PRINT页 %d页 %d / %d页面设置页面设置页纸张大小段落样式传递一个已注册的对象给SetObject粘贴粘贴选区允许图片属性管道创建失败请选择一个有效的字体.请选择一个已存在的文件.请选择欲显示的页面:请选择你想连接的ISP请安装较新版本的 comctl32.dll (至少需要4.70版,您现有的版本是 %d.%02d), 否则此程序无法正确运行。请选择列并显示和定义它们的顺序打印,请等待...字体大小(磅值)数据视图控制指针设定错误模型指针设定错误纵向位置PostScript文件偏好设置偏好设置...准备中预览:前页打印打印预览打印预览失败打印范围打印设置彩色打印打印预览(&W)...打印预览打印预览创建失败打印预览...打印假脱机打印本页打印到文件打印...打印机打印机命令:打印机选项打印机选项:打印机...打印机:正在打印 正在打印 打印出错正在打印页 %d 共 %d...正在打印页 %d...打印...打印处理调试报告失败, 文件被保存在目录 "%s" 中.程序渲染器无法渲染该值;类型为:属性属性属性错误四开, 215 x 275 毫米问题退出退出 %s推出此程序RETURNRIGHT读文件 '%s'出错就绪恢复恢复上一次操作刷新注册键 '%s' 已存在.注册键 '%s' 不存在,无法改名。正常的系统操作需要注册键 '%s', 删除它将使系统进入不可用状态: 操作终止.注册值 '%s' 已存在.一般相关条目:移除从书签中移去当前页渲染器(renderer) "%s"的版本 %d.%d不兼容, 无法加载.重编号列表替换(&l)替换全部替换(&a)替换为:所需的项目信息为空还原为上次保存的文件右右边距 (毫米):文本右对齐罗马标准项目符号名称(&T)SCROLL_LOCKSELECTSEPARATORSNAPSHOTSPACESPECIALSUBTRACT保存保存文件 %s 另存为(&A)...另存为另存为保存当前文档保存当前文档至重命名把日志内容保存到文件Script搜索从帮助内容中搜索符合你在上面输入的正文的所有条目搜索方向搜索:搜索所有的书籍搜索中...段文件 '%s' 定位错误文件 '%s' 定位错误 (stdio 不支持大文件)全部选择(&A)全部选择选择文档模板选择文档视图选择是否粗体选择是否斜体选择是否下划线选区选择并辨析列表层级期望在选项 '%s' 后存在分隔符。设置单元格样式调用 SetProperty 时未带有效的 setter当前操作系统不支持目录访问次数设定设置...找到多个活动拨号连接, 随机选择一个.Shift+显示隐藏目录(&H)显示隐藏文件(&H)显示全部显示关于对话框显示全部以索引方式显示所有项目显示隐藏目录显示/隐藏 导航面板显示Unicode子集预览项目符号设定预览字体设定预览字体预览段落设定显示字体预览。简单黑白主题大小大小:跳过倾斜实线对不起,无法打开文件。对不起,没有足够内存创建预览。抱歉,名字已被使用。请选择其他名字。对不起,此文件的格式未知。声音数据为不支持的格式。声音文件 '%s' 为不支持的格式。空格拼写检查标准报表用纸,5 1/2 x 8 1/2 英寸状态:状态:停止删除线字符串 - 颜色: 错误的颜色: %s样式样式组织器样式:下标(&T)上标(&R)SuperA/SuperA/A4 纸张,227 x 356 毫米SuperB/SuperB/A3 纸张,305 x 487 毫米瑞士符号符号样式(&F)TABTIFF: 无法分配内存。TIFF: 装载图像错误。TIFF: 读图像错误。TIFF: 保存图像错误。TIFF: 写图像错误。TIFF: 图像大小过大。表格属性小报(特大),11.69 x 18 英寸小报,11 x 17 英寸标签电传打字机模板文本渲染器无法渲染该值;类型为:泰语 (ISO-8859-11)FTP服务器不支持 passive 模式。FTP服务器不支持 PORT 命令。可用的项目符号样式可用样式背景色底边距底内衬大小底部位置项目符号字符字符编码未知字符集 '%s'。选择其它字符集 代替它,如果无法替代请选择 [取消] 剪贴板格式 '%d' 不存在。下一段落默认样式目录 '%s' 不存在 是否现在创建?文件 "%s" 的水平尺寸不符合页面,若打印将会被截断。 强制打印该文档?文件 '%s' 不存在所以无法打开。 已从最近使用的文件列表中移去。首行缩进以下标准GTK+选项也被支持: 字体颜色。字体。符号使用该字体字体大小 (磅值)。字体大小(磅值)字体大小单位,磅值或像素值字体风格。字体粗细。无法确定文件 '%s' 格式。左缩进左边距大小左内衬大小左位置行距。列表编号区域ID未知对象高度。对象最大高度。对象最大宽度。对象最小高度对象最小宽度。对象宽度。大纲层级前一消息重复 %lu 次前一消息重复一次打印对话返回错误显示的范围。报告包含了以下文件。如果这些文件含有私人信息, 请去掉选中相应的文件,未选中的文件就会从报告中删除。 必须的参数 '%s' 没有指定。右侧缩进。右边距大小。右内衬又位置段落之后的间距。段落之前的间距。样式名称此样式的基础样式样式预览。系统无法找到指定的文件。标签位置标签位置文本无法保存。上边距大小。上内衬大小顶部位置。选项 '%s' 的值必须被指定。安装在本机的远程访问服务(RAS)太旧, 请更新它 (缺少下列必要的函数: %s).wxGtkPrinterDC无法使用所指定的列索引或渲染器不存在在页面建立时发生问题: 您可能需要设置一台默认的打印机。该文档的水平尺寸不符合页面,若打印将会被截断。这不是 %s。该平台不支持背景透明度该应用由过早版本的GTK+编译,请用GTK+ 2.12或以上版本重新构建。本系统不支持日期控制, 请升级您的comctl32.dll线程模块初始化失败: 无法在线程本地存储区中存放值线程模块初始化失败: 创建线程键失败线程模块初始化失败: 无法在线程本地存储区中分配索引线程优先级设置被忽略。水平排布(&H)垂直排布(&V)等待FTP服务器连接时超时,请尝试用 passive 模式。计时器创建失败每日技巧对不起,没有所需的提示!到:切换渲染器无法渲染该;类型为:呼叫EndStyle太多次!PNG中的颜色数过多,图像可能会有点模糊。顶端上页边距 (毫米):翻译由翻译者True试图从内存 VFS 中移去文件 '%s',但它并没有被装入内存!土耳其语 (ISO-8859-9)类型输入字体名称。输入大小,以磅为单位参数 %u 的类型不匹配。必须进行 enum - long 的类型转换UP美国标准复写簿,14 7/8 x 11 英寸US-ASCII无法添加 inotify watch无法添加 kqueue watch无法关闭 inotify 实例无法关闭路径 '%s'无法关闭 '%s' 的句柄。无法创建 inotify 实例无法创建 kqueue 实例无法初始化 GTK+,DISPLAY 是否已正确设置?无法初始化 Hildon 程序无法打开路径 '%s'无法打开 HTML 文档: %s无法异步地播放声音。无法读取 inotify 描述符无法删除 inotify watch无法删除 kqueue watch无法为 '%s' 设定 watch无法开始 IOCP 工作线程取消删除下划线下划线撤销撤销上一次操作选项 '%s' 后有意外字符。意外参数 '%s'工作线程非正常终止Unicode 编码16位的 Unicode 编码 (UTF-16)16位大字节序 Unicode 编码 (UTF-16BE)16位小字节序 Unicode 编码 (UTF-16LE)32位的 Unicode 编码 (UTF-32)32位大字节序 Unicode 编码 (UTF-32BE)32位小字节序 Unicode 编码 (UTF-32LE)7位的 Unicode 编码 (UTF-7)8位的 Unicode 编码 (UTF-8)取消缩进下边框单位下边距单位下轮廓单位下内衬单位下位置单位左边框单位左边距单位左轮廓单位左内衬单位左位置单位最大对象高度单位。最大对象宽度单位。最小对象高度单位。最小对象宽度单位。对象高度单位对象宽度单位右边框单位右边距单位右轮廓单位右内衬单位右位置单位上边框单位上边距单位上轮廓单位上内衬单位上位置单位未知未知 DDE 错误 %08x未知的对象传递给 GetObjectClassInfo未知 PNG 解析度单位 %d未知属性 %s未知数据格式未知的动态库错误未知编码 (%d)未知错误 %08x未知异常未知图像数据格式未知的长选项 '%s'未知名称或者命名参数未知选项 '%s'类型 %s 中有不配套的 '{'。未命名的命令未指定不支持的剪贴板格式。不支持的主题 '%s'。向上大写字母用法: %s验证冲突值数值必须大于或等于 %s。数值必须小于或等于 %s。数值必须在 %s 和 %s 之间。版本垂直对齐。按详细视图观看文件按列表视图观看文件视图WINDOWS_LEFTWINDOWS_MENUWINDOWS_RIGHT等待 epoll 描述符 %d 的 IO 时失败警告: 字体粗细西欧 (ISO-8859-1)西欧带欧元符号 (ISO-8859-15)字体是否为下划线。整字仅为整字Win32 主题Windows 3.1 上的 Win32sWindows 2000Windows 7Windows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows 阿拉伯语 (CP 1256)Windows 波罗的海语 (CP 1257)Windows CE (%d.%d)Windows 中欧 (CP 1250)Windows 简体中文 (CP 936) 或 GB-2312Windows 繁体中文 (CP 950) 或 Big-5Windows 西里尔语 (CP 1251)Windows 希腊语 (CP 1253)Windows 希伯来语 (CP 1255)Windows 日语 (CP 932) 或 Shift-JISWindows 朝鲜语 (CP 1361)Windows 韩语 (CP 949)Windows MEWindows NT %lu.%luWindows Server 2003Windows Server 2008Windows Server 2008 R2Windows 泰国语 (CP 874)Windows 土耳其语 (CP 1254)Windows 越南语 (CP 1258)Windows VistaWindows 西欧 (CP 1252)Windows XPWindows/DOS OEM (CP 437)Windows/DOS OEM 西里尔语 (CP 866)写文件 '%s' 错误XML解析错误: '%s' 位于 行 %dXPM: 错误的象素数据!XPM: 在第 %d 行有错误的颜色描述XPM: 不正确的头格式!XPM: 错误的颜色定义 '%s',位于行 %d!是你无法清除未初始化的 overlay。你不能初始化overlay两次你无法向该项中加入新的目录。你输入了无效值。按 ESC 取消编辑。放大(&I)缩小(&O)放大缩小缩放以适应窗口(&F)缩放以适应窗口DDEML 应用程序已创建延时 race 条件.没有调用 DdeInitialize 初始化函数就调用DDEML其它函数, 或传给DDEML函数的是 无效的实例标识。客户试图建立的会话已失败。内存分配失败。DDEML 参数验证失败。同步 advise 事务请求超时。同步 data 事务请求超时。同步 execute 事务请求超时。同步 poke 事务请求超时。终止 advise 事务的请求超时。服务器端事务试图处理 已被客户端终止的会话,或服务器 在完成事务前终止。事务失败。alt初始化为 APPCLASS_MONITOR 的应用程序 试图执行 DDE 事务, 或初始化为 APPCMD_CLIENTONLY 的应用程序 视图执行服务器事务。内部调用 PostMessage 失败。在 DDEML 中发生内部错误。传给 DDEML 函数的是无效的事务标识符。 一旦应用程序从 XTYP_XACT_COMPLETE 回调函数返回, 回调函数事务标识符就不再有效。假定这是一个分段 zip 文件的合并忽略对只读键 '%s' 的修改。库函数参数错误错误的签名zip 文件中到条目的偏移值错误二进制粗体Windows 目录的缓存太小。build %lu无法关闭文件 '%s'无法关闭文件描述符 %d无法把修改提交给文件 '%s'无法创建文件 '%s'无法删除用户配置文件 '%s'无法确定是否已达描述符 %d 的尾部执行 '%s'失败无法在 zip 文件中找到中央目录无法获得文件描述符 %d 的文件长度找不到用户的 HOME 目录,使用当前目录。无法刷新文件描述符 %d无法获得文件描述符 %d 的指针位置无法装载任何字体,正在中止无法打开文件 '%s'无法打开全局配置文件 '%s'。无法打开用户配置文件 '%s'。无法打开用户配置文件。无法重新初始化 zlib 压缩流。无法重新初始化 zlib 解压流。无法读取文件描述符 %d无法删除文件 '%s'无法删除临时文件 '%s'无法定位文件描述符 %d无法把缓存区 '%s' 写到磁盘。无法写文件描述符 %d无法写用户配置文件。校验和错误读取tar头部块发生校验和错误厘米压缩错误无法转换为 8 位编码ctrl日期解压缩错误缺省值转储进程状态(二进制码)第十八第八第十一条目 '%s' 在组 '%s' 中已出现一次以上文件格式错误打开 '%s' 出错打开文件出错读 zip 中央目录时出错读 zip 本地头时出错写zip条目 '%s' 时出错: crc 校验或长度错误刷新文件 '%s' 失败第十五第五文件 '%s',行 %d: 组头之后的 '%s' 被忽略。文件 '%s',行 %d: 期待出现 '='。文件 '%s',行 %d: 键 '%s' 第一次出现在行 %d。文件 '%s',行 %d: 忽略不可变键 '%s' 的值。文件 '%s': 非预期的字符 %c 存在于行 %d。文件第一字体大小第十四第四生成详细的日志信息图片tar头部块不完整错误的时间句柄字符串,缺少点号('.')tar项目不正确的大小tar扩展头部中有图小数据消息框返回无效的值无效的 zip 文件斜体细体无法设置地区为 '%s'。午夜第十九第九没有 DDE 错误。没有错误%s中字体为找到,将使用内置字体未名中午正常为实现num对象不能有 XML 文本节点内存耗尽百分比进程上下文描述像素读取错误读入 zip 流 (条目 %s): crc校验错误读入 zip 流 (条目 %s): 长度错误重入问题。第二搜索错误第十七第七shift显示帮助信息第十六第六指定使用的显示模式 (例如: 640x480-16位色)指定使用的主题标准/圆形标准/圆框标准/菱形标准/方形标准/三角形Zip 头没有已存文件的长度信息str删除线tar标头未打开第十对事件的响应导致 DDE_FBUSY 位被设置。第三第十三今天明天'%s'尾部的斜线将被忽略翻译人员第十二第二十下划线例外的 " 在位置 %d (位于 '%s').意外到达文件结尾未知未知类 %s未知错误未知错误 (错误号 %08x)。未知搜索原点未知-%d未命名未命名 %d不支持的 Zip 压缩方法使用目录 '%s' 从 '%s'。写错误wxGetTimeOfDay 失败。wxPrintout::GetPageInfo给出无效maxPagewxWidget控制指针不是一个数据视图指针wxWidgets 的控件未初始化。wxWidgets 无法为 '%s' 打开显示设备: 退出。wxWidgets 无法打开显示设备。退出。xxxx昨天zlib 错误 %d~wxMaxima-13.04.2/locales/wxwin/zh_TW.mo000644 000765 000024 00000237034 11670654443 020273 0ustar00andrejstaff000000 000000 \ e@0V?1VqV?sVVVVVVW,WHWfW oWzWW WW W W WWWWWWWX XXX.X6X?XEXKXQX YXgXpXyXXXXXXXXX XXXXXX X X X Y YYY"Y)Y2Y;YAYJY`YfYlY tYYY YYYYYYY4Y$Z!8ZZZ*rZ/Z:Z[ [ [ &[ 1[ <[ G[ R[ s[}[[[[[[[[#[/[-\@\U\X\3\\6\\\ \]&]A]X]q]]]]]]^^6^M^]^u^^^^^^ ^ ^^^__%_69_p_:__#_ _``8`R`i`` ````a1aKa!ja"aa-a1a()bRbgbbbbbbbbb c&c0Acrcc)ccc(d+dFd#`d d;dd)de4eHehe~e%e#e"e* f(5f&^f%f%f5fg"$g?Gggg1g gh*h!Bhdh,kh%h(h/hi-3i3aii i-iij1jLj%hjjjjj)k*kEk#dk!kkk)k& l#4l"Xl{lllll l lll#m$5mZm `m mmwm(mm)mmm nn(nEn^n$fn nnn!no!o@oWo(uooo.o'oC%p#ipp(pp9p!q:q6Tqqqqqqqq, r18r0jr%r%rrs!s#5s Ysdsus sss~s6t Ft"RtutttQtuv.u+u uuu-uv)v.v Bv&Lv sv vvLv ww+w%Iw owww4w w0x6xJSx,x$xx4 yAy.]yyyy-y"z"7z9Zz$z0zz"{){&H{"o{8{{{G|/L|A||.|| }2,})_}}2}}%}#~#:~3^~"~~$~T~K'e'"!$ 7Xw#"-܀' "2'U5}'ہ&-"/P+&,ӂ2-3&a&+̓(!")Dn3- $,)Q2{! Ѕ ܅=4Ez  ɆІ Ն/ & 1=]nt'ԇ  # !Df n%y ˈՈ* 4'S{ ‰2Ή ""B e ' w6$7$j;%+̍%/NU[-p(ǎ=(#Hl66#1:l%!ǐ!%!?a!{ ב& '. 5?Rd~%Ԓ*J`0f #)ӓ |# &ܔ !$"F is{  Õx/, \%}%ɗ'0E&L s! Ø֘0M Ua͙#C^s՚$%5[$x$ߛ$!$>c$$œ$)$Fk s  04% ?K`|"1 Ο ԟ  /=L \jr   Ѡ H:K`i/!3#͢"ԢD< E R-` ɣգݣNT eq <  .)8b?k̥!+' S t-5æ+%%)KuF6; \zȨ8So ,0֩z(0]ܪo:̫%(.Ƭ0MBP@Y"#|BĮ-H;LA*ۯ% F*e$ذ$'=$U'zα+/E^r+² 7QW _i( г۳  &1 A LZm"#´$ &>Wq ѵ"$:S"l)-Զ/6 ? IV;^:*e0=;>,;k5ݹt9K,.|-!ټ  %,*1\r!)ʽ>3#F/j0˾-6*K(v#'ÿ'"6 M n !$'.#@din" /':#Mq/ 4!#8E9~.  +' St&   " 9G c&n)   -&T$mC   "$-RZ k y  " '/W3q* 2s?!"'Ji    , 7 BM ^ i t  + 6 A LZl}     ( 3 > IW t    %)0&Z&! )-6?N]l{#  %)Ak}*) ;Vq% Fa|&< R _ls.H S$m   2 St  #'(Kt(,)%-SZo .3bx$N7Qj5(2!Hj$(*('S'{'9 #BD<*$'L e3&8<$Z4$0&:Y!x'  -;i !!$$(KM! , D Q ^i| ' *IP cpw  &B!Xz$,$'GL'#7Lg0  0 7Q22(%>[m &] hxEd3"  ( + 8!Y{B$$+P oy6* 9,$f$7#>Qo0(2 3+T*2Mc8{*@% F_?xA+H!gEQ=&& ,'Dl!9++C2o"$##)2)\,!-,$0*U6&2$0,U??'9a<$--=PW-p(   '67n!#7Vn $* 6 FSj') , 9 F0S  +& !#?ci"9 C_$~j'-U(m'' 9+#e55#.RY-x&/K`| & $18 ?Lg|$! =[z, -* @  ^ dl   8 (  /  < J j  q ~ #           %  8U ' . .   0 *= !h   (     $1DVl+ 'E] {  ! B ['|!( ' 8'Y ' ' '4 \'} ' ' 7 B N [h l y%)%!$8]z| +8 J T^ er      $ 7 D OYq >! ,+3 _l,s,K[b;  ' *?FM^ oyE   &-1Fx * - $,Qd~-!!0-L-z#  E/c>!!5Ji&-;"iY!% S. _     !!#,!P!$!"!"<>"N{"<"W#'_###@##$$$8$5?$u$Y$$$ %#%(*%)S%}%% %%%%& 8&"Y&"|&&&,&)'*'I'^'v'''''''(( ,(9(U(k(r( y(((( (( ()) 1)<) L) W)e)x) ))))*1*L*j** *****+3+,I+!v+%+ +-+. ,<,*@, k, v,,,3,,$d---0-0-0 .6Q.3.e."/8/>IA5Eh"#dx")IwIvY9&'5)dC3Y(!` -/d_Wc*[L@ wlo'4Loz(9J^[.-,}?N.tBpQ1;-}a rcZ,YcA4\pX0+Zukh LM z}|p*_c\$95^}bAn&X]Gzro bf/ d[1[@<>-;{+<O`:Cgj~8F%u5kKX s{.t,Qm H2=6/z0bsxGEYqi;%j6J yO<=kD>jyS| lV"aQygVi?CnVu*=x=ggMW~PPuh{R"Tj 0IN VBC?l6 xs8+2v3$_3) @] qDK!q%m:e+$m?rG&/%^H4.(b>]W#U_&tQ KfTe $fJ(n oiPXU6tna e *:2~OvNU|7^pl7GR;\yR<w`1EK hD0':PF~'1q8{Tw#Fer|HA,9#MDBFB]v)7fsZN!TE>S3iWOmHR84Z\2SaSMU7k L` @J! Please send this report to the program maintainer, thank you! Thank you and we're sorry for the inconvenience! (error %ld: %s) - Preview#10 Envelope, 4 1/8 x 9 1/2 in#11 Envelope, 4 1/2 x 10 3/8 in#12 Envelope, 4 3/4 x 11 in#14 Envelope, 5 x 11 1/2 in#9 Envelope, 3 7/8 x 8 7/8 in%i of %i%s (or %s)%s Error%s Information%s Warning%s files (%s)|%s%s message&About...&Actual Size&Apply&Arrange Icons&Back&Bold&Cancel&Cascade&Clear&Close&Copy&Debug report preview:&Delete&Details&Down&File&Find&Finish&Font family:&Forward&Goto...&Help&Home&Index&Italic&Log&Move&New&Next&Next >&Next Tip&No&Notes:&OK&Open...&Paste&Point size:&Preferences&Previous&Print...&Properties&Quit&Redo&Redo &Replace&Restore&Save&Save...&Show tips at startup&Size&Stop&Style:&Underline&Undo&Undo &Unindent&Up&Weight:&Window&Yes'%s' has extra '..', ignored.'%s' is invalid'%s' is not a correct numeric value for option '%s'.'%s' is not a valid message catalog.'%s' is probably a binary buffer.'%s' should be numeric.'%s' should only contain ASCII characters.'%s' should only contain alphabetic characters.'%s' should only contain alphabetic or numeric characters.(Help)(bookmarks)10 x 11 in10 x 14 in11 x 17 in12 x 11 in15 x 11 in6 3/4 Envelope, 3 5/8 x 6 1/2 in9 x 11 in: file does not exist!: unknown charset: unknown encoding< &Back<<Bold italic face.
bold italic underlined
Bold face. Italic face. >>>>|A debug report has been generated in the directory A non empty collection must consist of 'element' nodesA2 420 x 594 mmA3 Extra 322 x 445 mmA3 Extra Transverse 322 x 445 mmA3 Rotated 420 x 297 mmA3 Transverse 297 x 420 mmA3 sheet, 297 x 420 mmA4 Extra 9.27 x 12.69 inA4 Plus 210 x 330 mmA4 Rotated 297 x 210 mmA4 Transverse 210 x 297 mmA4 sheet, 210 x 297 mmA4 small sheet, 210 x 297 mmA5 Extra 174 x 235 mmA5 Rotated 210 x 148 mmA5 Transverse 148 x 210 mmA5 sheet, 148 x 210 mmA6 105 x 148 mmA6 Rotated 148 x 105 mmABCDEFGabcdefg12345ASCIIAddAdd current page to bookmarksAdd to custom coloursAdding book %sAlign LeftAlign RightAllAll files (%s)|%sAll files (*)|*All files (*.*)|*All files (*.*)|*.*Already Registered Object passed to SetObjectClassInfoAlready dialling ISP.Append log to file '%s' (choosing [No] will overwrite it)?Arabic (ISO-8859-6)Archive doesnt contain #SYSTEM fileAttributesB4 (ISO) 250 x 353 mmB4 (JIS) Rotated 364 x 257 mmB4 Envelope, 250 x 353 mmB4 sheet, 250 x 354 mmB5 (ISO) Extra 201 x 276 mmB5 (JIS) Rotated 257 x 182 mmB5 (JIS) Transverse 182 x 257 mmB5 Envelope, 176 x 250 mmB5 sheet, 182 x 257 millimeterB6 (JIS) 128 x 182 mmB6 (JIS) Rotated 182 x 128 mmB6 Envelope, 176 x 125 mmBMP: Couldn't allocate memory.BMP: Couldn't save invalid image.BMP: Couldn't write RGB color map.BMP: Couldn't write data.BMP: Couldn't write the file (Bitmap) header.BMP: Couldn't write the file (BitmapInfo) header.BMP: wxImage doesn't have own wxPalette.Baltic (ISO-8859-13)Baltic (old) (ISO-8859-4)BoldBottom margin (mm):C sheet, 17 x 22 inC&learC&olour:C3 Envelope, 324 x 458 mmC4 Envelope, 229 x 324 mmC5 Envelope, 162 x 229 mmC6 Envelope, 114 x 162 mmC65 Envelope, 114 x 229 mmCHM handler currently supports only local files!Can not create mutex.Can not enumerate files '%s'Can not enumerate files in directory '%s'Can not resume thread %luCan not resume thread %xCan not start thread: error writing TLS.Can not suspend thread %luCan not suspend thread %xCan not wait for thread terminationCan't &Undo Can't check image format of file '%s': file does not exist.Can't close registry key '%s'Can't copy values of unsupported type %d.Can't create registry key '%s'Can't create threadCan't create window of class %sCan't delete key '%s'Can't delete the INI file '%s'Can't delete value '%s' from key '%s'Can't enumerate subkeys of key '%s'Can't enumerate values of key '%s'Can't export value of unsupported type %d.Can't find current position in file '%s'Can't get info about registry key '%s'Can't initialize zlib deflate stream.Can't initialize zlib inflate stream.Can't load image from file '%s': file does not exist.Can't open registry key '%s'Can't read from inflate stream: %sCan't read inflate stream: unexpected EOF in underlying stream.Can't read value of '%s'Can't read value of key '%s'Can't save image to file '%s': unknown extension.Can't save log contents to file.Can't set thread priorityCan't set value of '%s'Can't write to deflate stream: %sCancelCannot convert dialog units: dialog unknown.Cannot convert from the charset '%s'!Cannot find active dialup connection: %sCannot find container for unknown control '%s'.Cannot find font node '%s'.Cannot find the location of address book fileCannot get priority range for scheduling policy %d.Cannot get the hostnameCannot get the official hostnameCannot hang up - no active dialup connection.Cannot initialize OLECannot initialize SciTech MGL!Cannot initialize display.Cannot load icon from '%s'.Cannot load resources from file '%s'.Cannot open HTML document: %sCannot open HTML help book: %sCannot open contents file: %sCannot open file '%s'.Cannot open file for PostScript printing!Cannot open index file: %sCannot parse Plural-Forms:'%s'Cannot parse coordinates from '%s'.Cannot parse dimension from '%s'.Cannot print empty page.Cannot read typename from '%s'!Cannot retrieve thread scheduling policy.Cannot start thread: error writing TLSCannot wait for thread termination.Cant create the thread event queueCase sensitiveCeltic (ISO-8859-14)CenteredCentral European (ISO-8859-2)Choose ISP to dialChoose colourChoose fontCl&oseClear the log contentsClick to cancel the font selection.Click to confirm the font selection.CloseClose Alt-F4Close AllClose this windowCompressed HTML Help file (*.chm)|*.chm|ComputerConfig entry name cannot start with '%c'.ConfirmConfirm registry updateConnecting...ContentsConversion to charset '%s' doesn't work.Copied to clipboard:"%s"Copies:Could not create temporary file '%s'Could not extract %s into %s: %sCould not find tab for idCould not locate file '%s'.Could not start document preview.Could not start printing.Could not transfer data to windowCould not unlock mutexCouldn't acquire a mutex lockCouldn't add an image to the image list.Couldn't create a timerCouldn't create cursor.Couldn't find symbol '%s' in a dynamic libraryCouldn't get the current thread pointerCouldn't load a PNG image - file is corrupted or not enough memory.Couldn't load sound data from '%s'.Couldn't open audio: %sCouldn't register clipboard format '%s'.Couldn't release a mutexCouldn't retrieve information about list control item %d.Couldn't save PNG image.Couldn't terminate threadCreate Parameter not found in declared RTTI ParametersCreate directoryCreate new directoryCu&tCurrent directory:Cyrillic (ISO-8859-5)D sheet, 22 x 34 inDDE poke request failedDIB Header: Encoding doesn't match bitdepth.DIB Header: Image height > 32767 pixels for file.DIB Header: Image width > 32767 pixels for file.DIB Header: Unknown bitdepth in file.DIB Header: Unknown encoding in file.DL Envelope, 110 x 220 mmDebug report "%s"Debug report couldn't be created.Debug report generation has failed.DecorativeDefault encodingDefault printerDelete itemDeleted stale lock file '%s'.DesktopDial up functions are unavailable because the remote access service (RAS) is not installed on this machine. Please install it.Did you know...DirectoriesDirectory '%s' couldn't be createdDirectory '%s' doesn't exist!Directory does not existDirectory doesn't exist.Display all index items that contain given substring. Search is case insensitive.Display options dialogDo you want to overwrite the command used to %s files with extension "%s" ? Current value is %s, New value is %s %1Do you want to save changes to document %s?Don't SaveDoneDone.Double Japanese Postcard Rotated 148 x 200 mmDoubly used id : %dDownE sheet, 34 x 44 inEdit itemEnter a page number between %d and %d:Enter command to open file "%s":Entries foundEnvelope Invite 220 x 220 mmEnvironment variables expansion failed: missing '%c' at position %u in '%s'.ErrorError creating directoryError reading config options.Error saving user configuration data.Error while waiting on semaphoreError: Esperanto (ISO-8859-3)Executable files (*.exe)|*.exe|All files (*.*)|*.*||Execution of command '%s' failedExecution of command '%s' failed with error: %ulExecutive, 7 1/4 x 10 1/2 inExporting registry key: file "%s" already exists and won't be overwritten.Extended Unix Codepage for Japanese (EUC-JP)Extraction of '%s' into '%s' failed.Failed to access lock file.Failed to allocated %luKb of memory for bitmap data.Failed to change video modeFailed to clean up debug report directory "%s"Failed to close file handleFailed to close lock file '%s'Failed to close the clipboard.Failed to connect: missing username/password.Failed to connect: no ISP to dial.Failed to copy registry value '%s'Failed to copy the contents of registry key '%s' to '%s'.Failed to copy the file '%s' to '%s'Failed to copy the registry subkey '%s' to '%s'.Failed to create DDE stringFailed to create MDI parent frame.Failed to create a status bar.Failed to create a temporary file nameFailed to create an anonymous pipeFailed to create connection to server '%s' on topic '%s'Failed to create cursor.Failed to create directory "%s"Failed to create directory '%s' (Do you have the required permissions?)Failed to create registry entry for '%s' files.Failed to create the standard find/replace dialog (error code %d)Failed to display HTML document in %s encodingFailed to empty the clipboard.Failed to enumerate video modesFailed to establish an advise loop with DDE serverFailed to establish dialup connection: %sFailed to execute '%s' Failed to execute curl, please install it in PATH.Failed to get ISP names: %sFailed to get data from the clipboardFailed to get the local system timeFailed to get the working directoryFailed to initialize GUI: no built-in themes found.Failed to initialize MS HTML Help.Failed to initialize OpenGLFailed to inspect the lock file '%s'Failed to join a thread, potential memory leak detected - please restart the programFailed to kill process %dFailed to load image %d from file '%s'.Failed to load metafile from file "%s".Failed to load mpr.dll.Failed to load shared library '%s'Failed to lock the lock file '%s'Failed to modify file times for '%s'Failed to open CHM archive '%s'.Failed to open temporary file.Failed to open the clipboard.Failed to put data on the clipboardFailed to read PID from lock file.Failed to redirect child process input/outputFailed to redirect the child process IOFailed to register DDE server '%s'Failed to register OpenGL window class.Failed to remember the encoding for the charset '%s'.Failed to remove debug report file "%s"Failed to remove lock file '%s'Failed to remove stale lock file '%s'.Failed to rename registry value '%s' to '%s'.Failed to rename the registry key '%s' to '%s'.Failed to retrieve data from the clipboard.Failed to retrieve file times for '%s'Failed to retrieve text of RAS error messageFailed to retrieve the supported clipboard formatsFailed to save the bitmap image to file "%s".Failed to send DDE advise notificationFailed to set FTP transfer mode to %s.Failed to set clipboard data.Failed to set permissions on lock file '%s'Failed to set temporary file permissionsFailed to set thread priority %d.Failed to store image '%s' to memory VFS!Failed to terminate a thread.Failed to terminate the advise loop with DDE serverFailed to terminate the dialup connection: %sFailed to touch the file '%s'Failed to unlock lock file '%s'Failed to unregister DDE server '%s'Failed to update user configuration file.Failed to upload the debug report (error code %d).Failed to write to lock file '%s'Fatal errorFatal error: FileFile %s does not exist.File '%s' already exists, do you really want to overwrite it?File '%s' already exists. Do you want to replace it?File couldn't be loaded.File errorFile name exists already.FilesFiles (%s)FilterFindFixed font:Fixed size face.
bold italic Folio, 8 1/2 x 13 inFont size:Fork failedForward hrefs are not supportedFound %i matchesFrom:GIF: Invalid gif index.GIF: data stream seems to be truncated.GIF: error in GIF image format.GIF: not enough memory.GIF: unknown error!!!GTK+ themeGeneric PostScriptGerman Legal Fanfold, 8 1/2 x 13 inGerman Std Fanfold, 8 1/2 x 12 inGo backGo forwardGo one level up in document hierarchyGo to home directoryGo to parent directoryGoto PageGreek (ISO-8859-7)Gzip not supported by this version of zlibHTML Help Project (*.hhp)|*.hhp|HTML anchor %s does not exist.HTML files (*.html;*.htm)|*.html;*.htm|Hebrew (ISO-8859-8)HelpHelp Browser OptionsHelp IndexHelp PrintingHelp TopicsHelp books (*.htb)|*.htb|Help books (*.zip)|*.zip|Help: %sHomeHome directoryI64ICO: Error in reading mask DIB.ICO: Error writing the image file!ICO: Image too tall for an icon.ICO: Image too wide for an icon.ICO: Invalid icon index.IFF: data stream seems to be truncated.IFF: error in IFF image format.IFF: not enough memory.IFF: unknown error!!!If you have any additional information pertaining to this bug report, please enter it here and it will be joined to it:If you wish to suppress this debug report completely, please choose the "Cancel" button, but be warned that it may hinder improving the program, so if at all possible please do continue with the report generation. Ignoring value "%s" of the key "%s".Illegal Object Class (Non-wxEvtHandler) as Event SourceIllegal directory name.Illegal file specification.Image and mask have different sizes.Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dllImpossible to get child process inputImpossible to get permissions for file '%s'Impossible to overwrite the file '%s'Impossible to set permissions for the file '%s'IndentIndexIndian (ISO-8859-12)Initialization failed in post init, aborting.Internal error, illegal wxCustomTypeInfoInvalid TIFF image index.Invalid XRC resource '%s': doesn't have root node 'resource'.Invalid display mode specification '%s'.Invalid geometry specification '%s'Invalid lock file '%s'.Invalid or Null Object ID passed to GetObjectClassInfoInvalid or Null Object ID passed to HasObjectClassInfoInvalid regular expression '%s': %sItalicItaly Envelope, 110 x 230 mmJPEG: Couldn't load - file is probably corrupted.JPEG: Couldn't save image.Japanese Double Postcard 200 x 148 mmJapanese Envelope Chou #3Japanese Envelope Chou #3 RotatedJapanese Envelope Chou #4Japanese Envelope Chou #4 RotatedJapanese Envelope Kaku #2Japanese Envelope Kaku #2 RotatedJapanese Envelope Kaku #3Japanese Envelope Kaku #3 RotatedJapanese Envelope You #4Japanese Envelope You #4 RotatedJapanese Postcard 100 x 148 mmJapanese Postcard Rotated 148 x 100 mmJustifiedKOI8-RKOI8-ULandscapeLedger, 17 x 11 inLeft margin (mm):Legal Extra 9 1/2 x 15 inLegal, 8 1/2 x 14 inLetter Extra 9 1/2 x 12 inLetter Extra Transverse 9.275 x 12 inLetter Plus 8 1/2 x 12.69 inLetter Rotated 11 x 8 1/2 inLetter Small, 8 1/2 x 11 inLetter Transverse 8 1/2 x 11 inLetter, 8 1/2 x 11 inLightLink contained '//', converted to absolute link.Load %s fileLoading : Lock file '%s' has incorrect owner.Lock file '%s' has incorrect permissions.Log saved to the file '%s'.MDI childMS HTML Help functions are unavailable because the MS HTML Help library is not installed on this machine. Please install it.Ma&ximizeMatch caseMemory VFS already contains file '%s'!MenuMetal themeMi&nimizeMode %ix%i-%i not available.ModernModifiedModule "%s" initialization failedMonarch Envelope, 3 7/8 x 7 1/2 inMove downMove upNameNew directoryNew itemNewNameNextNext pageNoNo entries found.No font for displaying text in encoding '%s' found, but an alternative encoding '%s' is available. Do you want to use this encoding (otherwise you will have to choose another one)?No font for displaying text in encoding '%s' found. Would you like to select a font to be used for this encoding (otherwise the text in this encoding will not be shown correctly)?No handler found for XML node '%s', class '%s'!No handler found for image type.No image handler for type %d defined.No image handler for type %s defined.No matching page found yetNo soundNo unused colour in image being masked.No unused colour in image.Nordic (ISO-8859-10)NormalNormal face
and underlined. Normal font:Note, 8 1/2 x 11 inOKObjects must have an id attributeOpen FileOpen HTML documentOpen file "%s"Operation not permitted.Option '%s' requires a value.Option '%s': '%s' cannot be converted to a date.OptionsOrientationPCX: couldn't allocate memoryPCX: image format unsupportedPCX: invalid imagePCX: this is not a PCX file.PCX: unknown error !!!PCX: version number too lowPNM: Couldn't allocate memory.PNM: File format is not recognized.PNM: File seems truncated.PRC 16K 146 x 215 mmPRC 16K RotatedPRC 32K 97 x 151 mmPRC 32K RotatedPRC 32K(Big) 97 x 151 mmPRC 32K(Big) RotatedPRC Envelope #1 102 x 165 mmPRC Envelope #1 Rotated 165 x 102 mmPRC Envelope #10 324 x 458 mmPRC Envelope #10 Rotated 458 x 324 mmPRC Envelope #2 102 x 176 mmPRC Envelope #2 Rotated 176 x 102 mmPRC Envelope #3 125 x 176 mmPRC Envelope #3 Rotated 176 x 125 mmPRC Envelope #4 110 x 208 mmPRC Envelope #4 Rotated 208 x 110 mmPRC Envelope #5 110 x 220 mmPRC Envelope #5 Rotated 220 x 110 mmPRC Envelope #6 120 x 230 mmPRC Envelope #6 Rotated 230 x 120 mmPRC Envelope #7 160 x 230 mmPRC Envelope #7 Rotated 230 x 160 mmPRC Envelope #8 120 x 309 mmPRC Envelope #8 Rotated 309 x 120 mmPRC Envelope #9 229 x 324 mmPRC Envelope #9 Rotated 324 x 229 mmPage %dPage %d of %dPage SetupPage setupPagesPaper SizePaper sizePassing a already registered object to SetObjectPassing a already registered object to SetObjectNamePassing an unkown object to GetObjectPermissionsPipe creation failedPlease choose a valid font.Please choose an existing file.Please choose the page to display:Please choose which ISP do you want to connect toPlease install a newer version of comctl32.dll (at least version 4.70 is required but you have %d.%02d) or this program won't operate correctly.Please wait while printing PortraitPostScript filePreview:Previous pagePrintPrint PreviewPrint Preview FailurePrint RangePrint SetupPrint in colourPrint previe&wPrint previewPrint spoolingPrint this pagePrint to FilePrinterPrinter command:Printer optionsPrinter options:Printer...Printer:Printing Printing ErrorPrinting page %d...Printing...Processing debug report has failed, leaving the files in "%s" directory.Program aborted.Quarto, 215 x 275 mmQuestionRead error on file '%s'ReadyReferenced object node with ref="%s" not found!RefreshRegistry key '%s' already exists.Registry key '%s' does not exist, cannot rename it.Registry key '%s' is needed for normal system operation, deleting it will leave your system in unusable state: operation aborted.Registry value '%s' already exists.Relevant entries:RemoveRemove current page from bookmarksRenderer "%s" has incompatible version %d.%d and couldn't be loaded.Rep&laceReplace &allReplace with:Resource files must have same version number!Revert to SavedRight margin (mm):RomanSaveSave %s fileSave &As...Save AsSave log contents to fileScriptSearchSearch contents of help book(s) for all occurences of the text you typed aboveSearch directionSearch for:Search in all booksSearching...SectionsSeek error on file '%s'Seek error on file '%s' (large files not supported by stdio)Select &AllSelect a document templateSelect a document viewSelectionSeparator expected after the option '%s'.Setup...Several active dialup connections found, choosing one randomly.Show allShow all items in indexShow hidden directoriesShow/hide navigation panelShows the font preview.SizeSkipSlantSorry, could not open this file for saving.Sorry, could not open this file.Sorry, could not save this file.Sorry, not enough memory to create a preview.Sorry, print preview needs a printer to be installed.Sorry, the format for this file is unknown.Sound data are in unsupported format.Sound file '%s' is in unsupported format.Statement, 5 1/2 x 8 1/2 inStatus:Status: Streaming delegates for not already streamed objects not yet supportedString To Colour : Incorrect colour specification : %sSubclass '%s' not found for resource '%s', not subclassing!SuperA/SuperA/A4 227 x 356 mmSuperB/SuperB/A3 305 x 487 mmSwissTIFF library error.TIFF library warning.TIFF: Couldn't allocate memory.TIFF: Error loading image.TIFF: Error reading image.TIFF: Error saving image.TIFF: Error writing image.Tabloid Extra 11.69 x 18 inTabloid, 11 x 17 inTeletypeTemplatesThai (ISO-8859-11)The FTP server doesn't support passive mode.The FTP server doesn't support the PORT command.The charset '%s' is unknown. You may select another charset to replace it with or choose [Cancel] if it cannot be replacedThe clipboard format '%d' doesn't exist.The directory '%s' does not exist Create it now?The file '%s' couldn't be opened. It has been removed from the most recently used files list.The file '%s' doesn't exist and couldn't be opened. It has been removed from the most recently used files list.The font colour.The font family.The font point size.The font style.The font weight.The path '%s' contains too many ".."!The report contains the files listed below. If any of these files contain private information, please uncheck them and they will be removed from the report. The required parameter '%s' was not specified.The text couldn't be saved.The value for the option '%s' must be specified.There was a problem during page setup: you may need to set a default printer.Thread module initialization failed: can not store value in thread local storageThread module initialization failed: failed to create thread keyThread module initialization failed: impossible to allocate index in thread local storageThread priority setting is ignored.Tile &HorizontallyTile &VerticallyTimeout while waiting for FTP server to connect, try passive mode.Timer creation failed.Tip of the DayTips not available, sorry!To:Too many colours in PNG, the image may be slightly blurred.Top margin (mm):Trying to remove file '%s' from memory VFS, but it is not loaded!Trying to solve a NULL hostname: giving upTurkish (ISO-8859-9)TypeType must have enum - long conversionUS Std Fanfold, 14 7/8 x 11 inUnable to open requested HTML document: %sUnable to play sound asynchronously.UndeleteUnexpected parameter '%s'Unicode 16 bit (UTF-16)Unicode 16 bit Big Endian (UTF-16BE)Unicode 16 bit Little Endian (UTF-16LE)Unicode 32 bit (UTF-32)Unicode 32 bit Big Endian (UTF-32BE)Unicode 32 bit Little Endian (UTF-32LE)Unicode 7 bit (UTF-7)Unicode 8 bit (UTF-8)Unknown DDE error %08xUnknown Object passed to GetObjectClassInfoUnknown dynamic library errorUnknown encoding (%d)Unknown long option '%s'Unknown option '%s'Unknown style flag Unmatched '{' in an entry for mime type %s.Unnamed commandUnsupported clipboard format.Unsupported theme '%s'.UpUsage: %sValidation conflictView files as a detailed viewView files as a list viewViewsWarningWarning: Western European (ISO-8859-1)Western European with Euro (ISO-8859-15)Whether the font is underlined.Whole wordWhole words onlyWin32 themeWin32s on Windows 3.1Windows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)Windows Arabic (CP 1256)Windows Baltic (CP 1257)Windows Central European (CP 1250)Windows Chinese Simplified (CP 936)Windows Chinese Traditional (CP 950)Windows Cyrillic (CP 1251)Windows Greek (CP 1253)Windows Hebrew (CP 1255)Windows Japanese (CP 932)Windows Korean (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %luWindows Thai (CP 874)Windows Turkish (CP 1254)Windows Western European (CP 1252)Windows XP (build %luWindows/DOS OEM (CP 437)Write error on file '%s'XML parsing error: '%s' at line %dXPM: Malformed pixel data!XRC resource '%s' (class '%s') not found!XRC resource: Cannot create bitmap from '%s'.YesYou cannot add a new directory to this section.Zoom &InZoom &OutZoom to &Fit[EMPTY]a DDEML application has created a prolonged race condition.a DDEML function was called without first calling the DdeInitialize function, or an invalid instance identifier was passed to a DDEML function.a client's attempt to establish a conversation has failed.a memory allocation failed.a parameter failed to be validated by the DDEML.a request for a synchronous advise transaction has timed out.a request for a synchronous data transaction has timed out.a request for a synchronous execute transaction has timed out.a request for a synchronous poke transaction has timed out.a request to end an advise transaction has timed out.a server-side transaction was attempted on a conversation that was terminated by the client, or the server terminated before completing a transaction.a transaction failed.altan application initialized as APPCLASS_MONITOR has attempted to perform a DDE transaction, or an application initialized as APPCMD_CLIENTONLY has attempted to perform server transactions.an internal call to the PostMessage function has failed. an internal error has occurred in the DDEML.an invalid transaction identifier was passed to a DDEML function. Once the application has returned from an XTYP_XACT_COMPLETE callback, the transaction identifier for that callback is no longer valid.assuming this is a multi-part zip concatenatedattempt to change immutable key '%s' ignored.bad arguments to library functionbad signaturebad zipfile offset to entrybinaryboldbuffer is too small for Windows directory.can't close file '%s'can't close file descriptor %dcan't commit changes to file '%s'can't create file '%s'can't delete user configuration file '%s'can't determine if the end of file is reached on descriptor %dcan't execute '%s'can't find central directory in zipcan't find length of file on file descriptor %dcan't find user's HOME, using current directory.can't flush file descriptor %dcan't get seek position on file descriptor %dcan't load any font, abortingcan't open file '%s'can't open global configuration file '%s'.can't open user configuration file '%s'.can't open user configuration file.can't re-initialize zlib deflate streamcan't re-initialize zlib inflate streamcan't read from file descriptor %dcan't remove file '%s'can't remove temporary file '%s'can't seek on file descriptor %dcan't write buffer '%s' to disk.can't write to file descriptor %dcan't write user configuration file.catalog file for domain '%s' not found.checksum errorcompression errorconversion to 8-bit encoding failedctrldatedecompression errordefaultdelegate has no type infodump of the process state (binary)eighteentheightheleventhentry '%s' appears more than once in group '%s'error in data formaterror opening '%s'error opening fileerror reading zip central directoryerror reading zip local headererror writing zip entry '%s': bad crc or lengthfailed to flush the file '%s'fifteenthfifthfile '%s', line %d: '%s' ignored after group header.file '%s', line %d: '=' expected.file '%s', line %d: key '%s' was first found at line %d.file '%s', line %d: value for immutable key '%s' ignored.file '%s': unexpected character %c at line %d.firstfont sizefourteenthfourthgenerate verbose log messagesincorrect event handler string, missing dotinvalid message box return valueinvalid zip fileitaliclightlocale '%s' can not be set.looking for catalog '%s' in path '%s'.midnightnineteenthninthno DDE error.no errornonamenoonnumobjects cannot have XML Text Nodesout of memoryprocess context descriptionread errorreading zip stream (entry %s): bad crcreading zip stream (entry %s): bad lengthreentrancy problem.secondseek errorseventeenthseventhshiftshow this help messagesixteenthsixthspecify display mode to use (e.g. 640x480-16)specify the theme to usestored file length not in Zip headerstrtenththe response to the transaction caused the DDE_FBUSY bit to be set.thirdthirteenthtiff module: %stodaytomorrowtwelfthtwentiethunderlinedunexpected " at position %d in '%s'.unknownunknown class %sunknown errorunknown error (error code %08x).unknown seek originunknown-%dunnamedunnamed%dunsupported Zip compression methodusing catalog '%s' from '%s'.write errorwxGetTimeOfDay failed.wxSocket: invalid signature in ReadMsg.wxSocket: unknown event!.wxWidgets could not open display for '%s': exiting.wxWidgets could not open display. Exiting.yesterdayzlib error %d|<<Project-Id-Version: wxWidgets 2.6.2 Report-Msgid-Bugs-To: POT-Creation-Date: 2008-04-24 09:31+0200 PO-Revision-Date: 2005-12-20 16:34+0800 Last-Translator: Wei-Lun Chao Language-Team: wxWidgets tranlators MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; 請將報告傳送給程式維護人員, 謝謝! 謝謝, 我們對您遇到的不便表示抱歉! (錯誤 %ld: %s) - 預覽#10 信封,4 1/8 x 9 1/2 英吋#11 信封,4 1/2 x 10 3/8 英吋#12 信封,4 3/4 x 11 英吋#14 信封,5 x 11 1/2 英吋#9 信封, 3 7/8 x 8 7/8 英吋%i / %i%s (或 %s)%s錯誤%s資訊%s警告'%s' 檔 (%s)|%s%s訊息關於(&A)...實際大小(&A)套用(&A)排列圖示(&A)回傳(&B)粗體(&B)取消(&C)梯狀排列(&C)清除(&C)關閉(&C)複製(&C)除錯報告預覽(&D): 刪除(&D)細節(&D)向下(&D)檔案(&F)尋找(&F)完成(&F)字型(&F):向前(&F)移到(&G)...說明(&H)首頁(&H)索引(&I)斜體(&I)日誌(&L)移動(&M)新增(&N)下一個(&N)下一個(&N) 》下一技巧(&N)否(&N)注意(&N):確認(&O)開啟(&O)...貼上(&P)字型大小(Point size)(&P):偏好設定前一個(&P)列印(&P)...屬性(&P)離開(&Q)重做(&R)重做(&R)置換(&R)回存(&R)儲存(&S)儲存(&S)...啟動時顯示小秘訣(&S)大小(&S)停止(&S)字型(&S):底線(&U)回復(&U)回復(&U)取消縮排(&U)向上(&U)字型粗細(&W):視窗(&W)是(&Y)'%s' 有額外的 '..',忽略之。'%s' 是無效的'%s' 不是選項 '%s' 的正確數值。'%s' 不是有效的訊息登錄檔。'%s' 或許是個二進位緩衝區。'%s' 應該是數值。'%s' 應只含有 ASCII 字元。'%s' 應只含有字母字元。'%s' 應只含有字母或數字字元。(說明)(書籤)10 x 11 英吋10 x 14 英吋11 x 17 英吋12 x 11 英吋15 x 11 英吋6 3/4 信封,3 5/8 x 6 1/2 英吋9 x 11 英吋: 檔案不存在!: 未知的字集: 未知的編碼《 返回(&B)<<<目錄><磁碟機><連結>粗斜體
粗斜 加底線
粗體。 斜體。 >>>>|產生了一份除錯報告, 位於目錄 非空集合必須包含 'element' 節點A2 420 x 594 公釐A3 加長 322 x 445 公釐A3 加長橫向 322 x 445 公釐A3 轉向 420 x 297 公釐A3 轉向 297 x 420 公釐A3 印刷紙,297 x 420 公釐A4 加長 9.27 x 12.69 英吋A4 增大 210 x 330 公釐A3 轉向 297 x 210 公釐A4 橫向 210 x 297 公釐A4 印刷紙,210 x 297 公釐A4 印刷小紙張,210 x 297 公釐A5 加長 174 x 235 公釐A5 轉向 210 x 148 公釐A5 橫向 148 x 210 公釐A5 印刷紙,148 x 210 公釐A6 105 x 148 公釐A6 轉向 148 x 105 公釐ABCDEFGabcdefg12345ASCII加入把目前頁面加到書籤中加到自訂顏色中正在加入卷輯 %s靠左對齊靠右對齊所有所有檔案 (%s)|%s所有檔案 (*)|*所有檔案 (*.*)|*所有檔案 (*.*)|*.*傳入已註冊的物件給 SetObjectClassInfo已經撥接 ISP。把日誌加到檔案 '%s' 的尾端(選擇 [否] 將覆寫該檔案)?阿拉伯語 (ISO-8859-6)存檔裡沒有包含 #SYSTEM 檔案屬性B4 (ISO) 250 x 353 公釐B4 (JIS) 轉向 364 x 257 公釐B4 信封,250 x 353 公釐B4 印刷紙,250 x 354 公釐B5 (ISO) 加長 201 x 276 公釐B5 (JIS) 轉向 257 x 182 公釐B5 (JIS) 橫向 182 x 257 公釐B5 信封,176 x 250 公釐B5 印刷紙,182 x 257 公釐B6 (JIS) 128 x 182 公釐B6 (JIS) 轉向 182 x 128 公釐B6 信封,176 x 125 公釐BMP: 無法配置記憶體。BMP: 無法儲存無效的影像。BMP: 無法寫入 RGB 顏色對應表。BMP: 無法寫入資料。BMP: 無法寫入檔案標頭(Bitmap)。BMP: 無法寫入檔案標頭(BitmapInfo)。BMP: wxImage 沒有自己的 wxPalette。波羅的海語 (ISO-8859-13)波羅的海語 (舊的) (ISO-8859-4)粗體底邊距(公釐):C 印刷紙, 17 x 22 英吋清除(&L)顏色(&O):C3 信封,324 x 458 公釐C4 信封,229 x 324 公釐C5 信封,162 x 229 公釐C6 信封,114 x 162 公釐C65 信封, 114 x 229 公釐CHM 處理常式目前只支援本機檔案!無法建立 mutex。無法列舉檔案 '%s'無法列舉目錄 '%s' 中的檔案無法恢復執行緒 %lu無法恢復執行緒 %x無法啟動執行緒:寫入「執行緒內部儲存區」時發生錯誤。無法暫停執行緒 %lu無法暫停執行緒 %x無法等候執行緒終結無法回復(&U)無法檢查影像檔格式 '%s':檔案不存在。無法關閉登錄機碼 '%s'無法複製不支援類型 %d 的值。無法建立登錄機碼 '%s'無法建立執行緒無法建立類別 '%s' 的視窗無法刪除機碼 '%s'無法刪除 INI 檔 '%s'無法刪除機值 '%s' @ '%s'無法列舉機碼 '%s' 的子機碼無法列舉機碼 '%s' 的值無法匯出不支援類型 %d 的值。無法在檔案 '%s' 中找到目前位置無法取得登錄機碼 '%s' 的資訊無法初始化 zlib 壓縮資料流。無法初始化 zlib 解壓資料流。無法從檔案 '%s' 中載入影像:檔案不存在。無法開啟登錄機碼 '%s'無法讀取解壓資料流:%s無法讀取解壓資料流:資料流中有不預期的結尾。無法讀取 '%s' 的值無法讀取機碼 '%s' 的值無法儲存影像到檔案 '%s' 中:未知的附檔名。無法將日誌內容儲存到檔案中。無法設定執行緒的優先等級無法設定 '%s' 的值無法寫入壓縮資料流:%s取消無法轉換對話窗單位:未知的對話窗。無法轉換字集 '%s'!找不到連線中的撥號連線:%s找不到未知控制元件所依附的容器: '%s'。找不到字型節點 '%s'。找不到通訊錄的檔案位置。無法取得排程原則 %d 的優先等級範圍。無法取得主機名稱。無法取得正式的主機名稱。無法掛斷—沒有連線中的撥號連線。無法初始化 OLE無法初始化 SciTech MGL!無法初始化顯示畫面。無法從 '%s' 中載入圖示。無法從檔案 '%s' 中載入資源。無法開啟 HTML 文件:%s無法開啟 HTML 說明書:%s無法開啟目錄檔案: %s無法開啟檔案 '%s'。無法開啟檔案進行 PostScript 列印!無法開啟索引檔: %s無法解析 Plural-Forms:'%s'無法從 '%s' 解析出大小。無法從 '%s' 解析出維度。無法列印空頁面。無法從 '%s' 讀取類型名稱!無法取得執行緒排程原則。無法啟動執行緒:寫入「執行緒內部儲存區」時發生錯誤不能等候執行緒終止。不能建立執行緒事件佇列區分大小寫凱爾特語 (ISO-8859-14)置中對齊中歐語系 (ISO-8859-2)選擇 ISP 進行撥號選擇顏色選擇字型關閉(&O)清除日誌內容點擊取消字型選擇。點擊確認字型選擇。關閉關閉視窗 Alt-F4全部關閉關閉視窗壓縮超文件說明檔 (*.chm)|*.chm|我的電腦組態項目名稱不能以 '%c' 開頭。確認確認登錄變更連線中...目錄無法轉換到字集 '%s'。複製到剪貼簿:"%s"份數:無法建立暫存檔 '%s'無法將 %s 解至 %s 中: %s找不到識別碼標籤找不到檔案 '%s'。無法啟動文件預覽。無法啟動列印。無法轉移資料到視窗中。無法解鎖 mutex。無法鎖定 mutex。無法把影像加到影像清單。無法建立計時器。無法建立游標。在動態連結檔中找不到符號 '%s'。無法取得目前執行緒指標。無法載入 PNG 影像—檔案被破壞或是沒有足夠記憶體。無法從 '%s' 中載入聲音資料。無法開啟聲音檔: '%s'無法註冊剪貼簿格式 '%s'。無法釋放 mutex。無法取得清單控制元件中細項 %d 的資訊。無法儲存 PNG 影像。無法終止執行緒。宣告的 RTTI 參數中沒發現建立的參數建立目錄建立新目錄剪下(&T)目前目錄:斯拉夫語 (ISO-8859-5)D 印刷紙,22 x 34 英吋「動態資料交換」資料傳送請求失敗DIB 標頭:編碼型態與顏色位元數不吻合。DIB 標頭:影像高度大於 32767 個圖素。DIB 標頭:影像寬度大於 32767 個圖素。DIB 標頭:未知的顏色位元數。DIB 標頭:未知的編碼型態。DL 信封,110 x 220 公釐除錯報告 "%s"無法建立除錯報告。無法產生除錯報告。修飾預設的編碼預設的印表機刪除項目已刪除過時的鎖定檔案 '%s'。桌面由於遠端存取服務(RAS)沒有安裝,撥號功能無法使用。請先安裝它。您知道嗎...目錄目錄 '%s' 無法建立目錄 '%s' 不存在!目錄不存在目錄不存在。顯示包含該字串的所有索引項目。搜尋不分大小寫。顯示選項對話方塊您要改變用以%s附檔名為 "%s" 檔案的命令嗎? 目前的值是 %s, 新的值是 %s %1您想儲存文件 %s 的修改?不儲存完成完成。雙倍日式明信片轉向 148 x 200 mmid 重複:%d下E 紙張, 34 x 44 英吋編輯項目輸入介於 %d 到 %d 的頁碼輸入命令以開啟檔案 "%s":找到的項目邀請信封 220 x 220 公釐環境變數擴充失敗: '%c' 沒有出現在位置 %u / '%s'。錯誤建立目錄錯誤讀取設定選項時發生錯誤。儲存使用者配置資料錯誤。等待信號量時發生錯誤錯誤︰世界語 (ISO-8859-3)可執行檔案 (*.exe)|*.exe|所有檔案 (*.*)|*.*||指令 '%s' 執行失敗指令 '%s' 執行失敗,錯誤碼:%ulExecutive, 7 1/4 x 10 1/2 英吋導出註冊鍵: 檔案 "%s"已經存在, 無法覆寫。延伸的 Unix 日本頁碼 (EUC-JP)無法將 '%s' 解開至 '%s' 中。無法存取鎖定檔。無法配置 %luKb 的記憶體存放點陣圖資料。變更顯示模式失敗無法清除除錯報告目錄 "%s"無法關閉檔案無法關閉鎖定檔案 '%s'無法關閉剪貼簿。連線失敗:缺少使用者名稱或密碼。連線失敗:沒有可撥號的 ISP。無法複製登錄機值 '%s'無法複製登錄機碼 '%s' 的內容到 '%s'。無法複製檔案 '%s' 到 '%s'複製註冊表子鍵 '%s'至 '%s'失敗。無法建立「動態資料交換」字串無法建立 MDI 主框架。無法建立狀態列。無法產生暫存檔的檔名無法建立匿名管道無法建立連線到伺服器 '%s' 的主旨 '%s'無法建立游標。無法建立目錄 "%s"無法建立目錄 '%s' (您是否有足夠的權限?)無法為 '%s' 檔案建立登錄項目。無法建立標準的「尋找/置換」對話窗 (錯誤碼 %d)無法以編碼 %s 顯示 HTML 文件無法清空剪貼簿。無法列舉顯示模式無法建立與「動態資料交換」伺服器溝通的連結無法建立撥號連線:%s無法執行 '%s' 無法執行curl, 請在PATH變數所指的目錄中安裝curl。無法取得 ISP 名稱:%s無法從剪貼簿取得資料無法取得系統的當地時間無法取得工作目錄無法初始化圖形使用者介面:沒有找到內建的主題。無法初始化 MS HTML Help。無法初始化 OpenGL檢查上鎖檔案 '%s'失敗無法停止執行緒,偵測到潛在的記憶體流失 - 請重新啟動程式無法刪除程序 %d無法載入影像 %d—檔案 '%s'。從檔案 "%s"讀取元檔案失敗。無法載入 mpr.dll。無法載入共享函式庫 '%s'無法鎖定檔案 '%s'無法變更檔案 '%s' 的檔案日期無法開啟 '%s' CHM 檔。無法開啟暫存檔。無法開啟剪貼簿。無法存放資料到剪貼簿。無法從鎖定的檔案中讀出「程序識別碼」。無法轉向子程序的「輸入/輸出」無法轉向子程序的「輸入/輸出」無法註冊「動態資料交換」伺服器 '%s'不能註冊 OpenGL視窗類別。無法記憶字集 '%s' 的編碼。不能刪除除錯報告檔案 "%s"無法移除鎖定中的檔案 '%s'無法移除過時的鎖定檔案 '%s'。無法將登錄值 '%s' 更名為 '%s'。無法將登錄機碼 '%s' 更名為 '%s'。無法從剪貼簿取得資料。無法取得檔案 '%s' 的各項時間屬性無法取得 RAS 錯誤訊息的對應文字無法取得支援的剪貼簿格式無法儲存點陣圖至 "%s" 檔案中。無法傳送「動態資料交換」連結通知訊息無法設定檔案傳輸模式為%s。無法設定剪貼簿資料。在上鎖檔案 '%s'上設定許可權限時失敗無法設定暫存檔的存取權限無法設定執行緒的優先等級為%d。無法將影像 '%s' 存到「記憶體虛擬檔案系統」!無法終止執行緒。無法終止與「動態資料交換」伺服器溝通的連結無法終止撥號連線:%s無法更新檔案 '%s' 的修改時間無法解除鎖定檔案 '%s'無法撤銷「動態資料交換」伺服器 '%s' 的註冊不能更新使用者配置檔案。上傳除錯報告失敗 (錯誤代號 %d)。無法寫入鎖定檔案 '%s'致命的錯誤致命的錯誤︰檔案檔案 '%s' 不存在。檔案 '%s' 已存在,是否真要覆寫?檔案 '%s' 已存在, 是否覆寫?檔案無法載入。檔案錯誤檔案名稱已存在。檔案檔案 (%s)過濾器尋找固定字型︰固定大小字體。
粗體 斜體 對開紙,8 1/2 x 13 英吋字型大小:建立執行緒失敗不支援往前參照的超連結找到 %i 個符合項目從:GIF: 無效的影像索引。GIF: 資料流似乎被截斷了。GIF: GIF 影像格式錯誤。GIF: 記憶體不足。GIF: 未知的錯誤!!!GTK+ 主題普通PostScript德國法定複寫簿, 8 1/2 x 13 in德國家標準準複寫簿, 8 1/2 x 12 in退回向前到上一階文件層級進入使用者目錄進入父目錄前進頁面希臘語 (ISO-8859-7)這一版的 zib 不支援 Gzip超文件說明檔專案 (*.hhp)|*.hhp|HTML 錨 %s 不存在。超文件檔 (*.html;*.htm)|*.html;*.htm|希伯來語 (ISO-8859-8)說明說明瀏覽器選項說明索引說明列印輔助主題說明書 (*.htb)|*.htb|說明書 (*.zip)|*.zip|說明:%sHomeHome目錄I64ICO: 讀取遮罩式 DIB 時發生錯誤。ICO: 寫入影像檔時發生錯誤!ICO: 影像太高。ICO: 影像太寬。ICO: 無效的圖示索引。IFF: 資料流似乎被截斷了。IFF: IFF 影像格式錯誤。IFF: 記憶體不足。IFF: 未知的錯誤!!!如果您有任何與此錯誤報告有關的資訊, 請在此輸入, 它將會被加到錯誤報告中:如果您想完全停用除錯報告, 請依"取消"按鈕, 但我們不建議這樣做, 因為除錯報告有助於加強本程式. 在可能的情況下, 請盡量選擇讓程式產生除錯報告. 忽略值 "%s" (鍵 "%s")。非法的物件類別(非-wxEvtHandler)做為事件來源不合法的目錄名稱。不合規範的檔案描述。圖像和遮罩的大小不一致。無法建立 rich edit 控制元件,使用 simple text 控制元件代替。請重新安裝 riched32.dll無法取得子程序的輸入無法取得檔案 '%s' 的存取權限無法覆寫檔案 '%s'無法設定檔案 '%s' 的存取權限 縮排索引印度語 (ISO-8859-12)安裝後續的啟始失效,忽略。整數錯誤, 非法的wxCustomTypeInfo無效的 TIFF 影像索引。無效的 XRC 資源 '%s':沒有根節點 'resource'。無效的顯示模式規格 '%s'。無效的幾何規格 '%s'無效的鎖定檔案 '%s'。無效的或空的物件ID被傳給GetObjectClassInfo無效的或空的物件ID被傳給HasObjectClassInfo無效的正規運算式 '%s': %s斜體意大利信封,110 x 230 mmJPEG: 無法載入 - 檔案也許已損壞。JPEG: 無法儲存影像。日式雙倍明信片 200 x 148 公釐日式信封 Chou #3日式信封 Chou #3 轉向日式信封 Chou #4日式信封 Chou #4 轉向日式信封 Kaku #2日式信封 Kaku #2 轉向日式信封 Kaku #3日式信封 Kaku #3 轉向日式信封 You #4日式信封 You #4 轉向日式明信片 100 x 148 公釐日式明信片轉向 148 x 100 公釐分散對齊KOI8-RKOI8-U橫向列印橫板紙,17 x 11 英吋左邊距(公釐):狀紙加長 9 1/2 x 15 英吋狀紙,8 1/2 x 14 英吋信紙加長 9 1/2 x 12 英吋信紙加長橫向 9.275 x 12 英吋信紙增大 8 1/2 x 12.69 英吋信紙轉向,11 x 8 1/2 英吋小信紙,8 1/2 x 11 英吋信紙橫向 8 1/2 x 11 英吋信紙,8 1/2 x 11 英吋細體連結包含 '//',轉換為絕對連結。載入檔案 %s 載入中:上鎖檔案 '%s' 沒有正確的所有者。上鎖檔案 '%s' 沒有正確的權限。儲存日誌到檔案 '%s'。MDI 子視窗由於 MS HTML Help 函示庫未安裝,導致 MS HTML Help 功能無法使用。請先安裝它。最大化(&X)區分大小寫「記憶體虛擬檔案系統」已包含檔案 '%s'!選單金屬主題最小化(&N)模式 %ix%i-%i 無法使用。現代修改日期模組 "%s" 初始時失敗御用信封,3 7/8 x 7 1/2 英吋下移上移名稱新目錄新增項目新名稱下一個下一頁否找不到任何項目。編碼 '%s' 的字型未找到,無法顯示文字。 但是另一種編碼 '%s' 可用。 您要使用該編碼嗎(否則您必須選擇另一種)?編碼 '%s' 的字型未找到,無法顯示文字。 您要選擇對應這個編碼的字型嗎 (否則此種編碼的文字將無法正確顯示)?找不到 XML 節點 '%s' 類別 '%s' 的處理常式!沒有找到影像類型處理常式。沒有定義類型 %d 的影像處理常式。沒有定義類型 %s 的影像處理常式。尚未找到符合的頁面沒有聲音圖像中沒有被遮罩的未用顏色。圖像中沒有未用的顏色。北歐語系 (ISO-8859-10)正常正常字體
加底線。 正常字型:筆記簿,8 1/2 x 11 英吋確認物件必須有 id 屬性開啟檔案開啟 HTML 文件開啟檔案 "%s"不容許的操作。選項 '%s' 必須有值。選項 '%s':'%s' 無法轉換成日期。選項方位PCX: 無法配置記憶體PCX: 影像格式不支援PCX: 無效的影像PCX: 不是 PCX 檔案。PCX: 未知的錯誤!!!PCX: 版本編號太低PNM: 無法配置記憶體。PNM: 檔案格式無法識別。PNM: 檔案似乎被截斷了。中式 16開 146 x 215 公釐中式 16開 轉向中式 32開 97 x 151 公釐中式 32開 轉向中式 32開(大) 97 x 151 公釐中式 32開(大) 轉向中式信封 #1 102 x 165 公釐中式信封 #1 轉向 165 x 102 公釐中式信封 #10 324 x 458 公釐中式信封 #10 轉向 458 x 324 公釐中式信封 #2 102 x 176 公釐中式信封 #2 轉向 176 x 102 公釐中式信封 #3 125 x 176 公釐中式信封 #3 轉向 176 x 125 公釐中式信封 #4 110 x 208 公釐中式信封 #4 轉向 208 x 110 公釐中式信封 #5 110 x 220 公釐中式信封 #5 轉向 220 x 110 公釐中式信封 #6 120 x 230 公釐中式信封 #6 轉向 230 x 120 公釐中式信封 #7 160 x 230 公釐中式信封 #7 轉向 230 x 160 公釐中式信封 #8 120 x 309 公釐中式信封 #8 轉向 309 x 120 公釐中式信封 #9 229 x 324 公釐中式信封 #9 轉向 324 x 229 公釐第 %d 頁%d / %d 頁頁面設定頁面設定頁紙張大小紙張大小傳入已註冊的物件給 SetObject傳入已註冊的物件給 SetObjectName傳入一個未知物件給 GetObject允許無法建立管道請選擇一個有效的字型。請選擇一個已存在的檔案。請選擇慾顯示的頁面:請選擇你想連線的 ISP請安裝較新版本的 comctl32.dll (最低需求 4.70 版,但目前是 %d.%02d) 否則此程式將無法正常運作。列印中,請稍待 直向列印PostScript 文件預覽︰前一頁列印預覽列印預覽列印失敗列印範圍列印設定彩色列印預覽列印(&W)預覽列印列印佇列中列印本頁列印到檔案印表機印表機指令:印表機選項印表機選項:印表機...印表機:列印中列印時發生錯¯誤正在列印第 %d 頁...列印中...處理除錯報告失敗, 檔案被儲存在目錄 "%s" 中。程式異常終止。四開,215 x 275 mm問題讀取檔案 '%s' 時發生錯誤就緒找不到 ref="%s" 的參照物件節點!重新整理登錄機碼 '%s' 已存在。登錄機碼 '%s' 不存在, 無法更名。正常的系統操作需要登錄機碼 '%s', 刪除它會使系統處於無法使用的狀態: 操作中斷。登錄機值 '%s' 已存在。相關項目:移除從書籤中移除目前頁面Renderer "%s" %d.%d 版本不完整。而且無法載入。替換(&L)取代所有(&A)置換:資源檔案的版本別必須一致!還原為上次儲存的檔案右邊距(公釐):羅馬儲存儲存檔案 %s 另存為(&A)...另存為將日誌內容存到檔案中手寫搜尋搜尋說明文件內容,找出上述文字所有出現過的地方搜尋方向搜尋:搜尋所有的書籍搜尋中...段落檔案 '%s' 定位錯誤檔案 '%s'定位錯誤 (stdio不支援大檔案)選擇全部(&A)選擇文件範本選擇文件視界選取項目在選項 '%s' 之後應有分隔字元。設定...多個撥號連線中,隨機選擇一個。顯示所有以索引的方式顯示所有項目顯示隱藏目錄顯示/隱藏遊覽面板顯示字型預覽。大小略過傾斜對不起,無法開啟檔案以便儲存。對不起,無法開啟檔案。對不起,無法儲存檔案。對不起,記憶體不足無法建立預覽。抱歉,預覽列印必須安裝印表機。對不起,這個檔案格式是未知的。音效資料格式不支援。'%s' 音效檔案格式不支援。結算單, 5 1/2 x 8 1/2 英吋狀態:狀態︰對於沒有串流化的物件使用委託串流功能尚未被支援顏色名稱:不正確的顏色規格:%s。沒找到子類別 '%s' 予資源 '%s',無法子類別化!SuperA/SuperA/A4 227 x 356 公釐SuperB/SuperB/A3 305 x 487 公釐瑞士TIFF 函式庫錯誤。TIFF 函式庫錯誤TIFF: 無法配置記憶體。TIFF: 載入影像錯誤。TIFF: 讀取影像錯誤。TIFF: 儲存影像錯誤。TIFF: 寫入影像錯誤。小報加長 11.69 x 18 英吋小報, 11 x 17 英吋電傳打字機範本泰語 (ISO-8859-11)檔案傳輸伺服器不支援被動模式。FTP伺服器不支援PORT命令。未知的字集 '%s'。選擇其它字集替換, 如果無法替換,則選擇[取消]剪貼簿格式 '%d' 不存在。目錄 '%s' 不存在 現在建立?檔案 '%s' 無法開啟. 已從「最近使用的檔案歷史清單」中除名。檔案 '%s' 不存在,無法開啟. 已從「最近使用的檔案紀錄清單」中除名。字型顏色。字型。字點大小。字型風格。字型粗細。路徑 '%s' 包含太多的 ".."!報告包含了以下檔案. 如果這些檔案含有私人資訊, 請去掉選取相對的檔案, 未選取的檔案就會從報告中刪除. 必要的參數 '%s' 沒有指定。文字無法儲存。選項 '%s' 的值必須指定。頁面設定時有問題:你必須設定預設印表機。執行緒模組初始化失敗:無法存值到「執行緒內部儲存區」執行緒模組初始化失敗:無法建立執行緒機碼執行緒模組初始化失敗:無法在「執行緒內部儲存區」中配置索引忽略執行緒的優先等級設定。水平鋪列(&H)垂直鋪列(&V)等待FTP伺服器連線時逾時,請嘗試用passive模式。計時器建立失敗。每日小秘訣對不起,無法取得小秘訣!到:太多顏色在 PNG 中,影像可能有點模糊。上版邊(公釐):嘗試從「記憶體虛擬檔案系統」中移除檔案 '%s',但它並未被載入!嘗試解析 NULL 主機名:放棄土耳其語 (ISO-8859-9)類型必須進行 enum - long 的類型轉換美國標準複寫簿, 14 7/8 x 11 英吋無法開啟 HTML 文件: %s無法非同步播放音效。取消刪除意外參數 '%s'十六位元統一碼(UTF-16)十六位元統一碼(UTF-16BE)十六位元統一碼(UTF-16LE)三十二位元統一碼(UTF-32)三十二位元統一碼(UTF-32BE)三十二位元統一碼(UTF-32LE)七位元統一碼(UTF-7)八位元統一碼(UTF-7)未知的「動態資料交換」錯誤 %08x傳給 GetObjectClassInfo 未知的物件不明的動態函式庫錯誤未知的編碼 (%d)未知的長選項 '%s'未知的選項 '%s'未知的樣式旗標mime 類型 %s 中有不成對的'{'。未命名的指令不支援的剪貼簿格式。不支援的主題 '%s'。上使用方式:%s驗證衝突按詳細資料檢視檔案按清單檢視檔案視界警告警告:西歐語系 (ISO-8859-1)西歐與歐洲 (ISO-8859-15)字型是否加底線。完整的字只限完整的字Win32 主題Windows 3.1上的Win32sWindows 2000 (build %luWindows 95Windows 95 OSR2Windows 98Windows 98 SEWindows 9x (%d.%d)視窗 阿拉伯文 (CP 1256)視窗 波羅的海文 (CP 1257)視窗 中歐語系 (CP 1250)視窗 中文(簡體) (CP 936)視窗 中文(繁體) (CP 950)視窗 斯拉夫文 (CP 1251)視窗 希臘文 (CP 1253)視窗 希伯來文 (CP 1255)視窗 日文 (CP 932)視窗 韓文 (CP 949)Windows MEWindows NT %lu.%lu (build %luWindows Server 2003 (build %lu視窗 泰文 (CP 874)視窗 土耳其文 (CP 1254)視窗 西歐語系 (CP 1252)Windows XP (build %lu視窗/磁碟作業系統 製造商 (CP 437)寫入檔案 '%s' 時發生錯誤XML 解析錯誤:'%s' 在第 %d 列XPM: 不正常的圖素資料!沒有找到 XRC 資源 '%s' (類別 '%s')!XRC 資源:無法從 '%s' 建立點像圖。是您不能在這區段加入新的目錄。放大(&I)縮小(&O)縮放以適應視窗(&F)[空]DDEML 應用程式已建立延長的競賽環境。在呼叫 DDEML 其它函式之前,未事先呼叫 DdeInitialize 函式, 或傳給 DDEML 函式的是 一個無效的實體物件識別。用戶端嘗試建立會話失敗。記憶體配置失敗。DDEML 參數驗證失敗。同步「連結協同活動」請求已逾時。同步「資料協同活動」請求已逾時。同步「執行協同活動」請求已逾時。同步「資料傳送協同活動」請求已逾時。終止「連結協同活動」的請求已逾時。啟動伺服器端協同活動的對話 被用戶端終止,或伺服器 在完成交涉前終止。協同活動失敗。alt初始化為 APPCLASS_MONITOR 的應用程式 試圖執行「動態資料交換」協同活動, 或初始化為 APPCMD_CLIENTONLY 的應用程式 試圖執行伺服器的協同活動。內部呼叫 PostMessage 失敗。DDEML 發生內部錯誤。傳給 DDEML 函式的是無效的協同活動識別。 一旦應用程式從 XTYP_XACT_COMPLETE 回調函式返回, 該回調函式的協同活動識別就不再有效。假設這是一個多重部份 zip 的結合確忽略對不可變更機碼 '%s' 的修改。含式傳入錯誤的引數錯誤的簽名zip檔案中到條目的偏移值錯誤二進位粗體對於 Windows 目錄而言,緩衝區太小無法關閉檔案 '%s'無法關閉檔案描述子 %d無法將修改反映到檔案 '%s'無法建立檔案 '%s'無法刪除使用者組態檔案 '%s'無法確定是否已達檔案 %d 的尾部無法執行 '%s'無法在 zip 檔中找到中心目錄無法獲得檔案描述子 %d 的檔案的長度找不到使用者目錄,使用目前目錄。無法重新整理檔案描述子 %d無法獲得檔案描述子 %d 的指標位置無法載入任何字型,活動中止無法開啟檔案 '%s'無法開啟全局組態檔案 '%s'。無法開啟使用者組態檔案 '%s'。無法開啟使用者組態檔案。不能重新初始化zlib deflate(壓縮)流不能重新初始化zlib inflate(解壓)流無法讀取檔案描述子 %d無法移除檔案 '%s'無法刪除暫時檔案 '%s'無法定位檔案描述子 %d無法將暫存區 '%s' 寫到磁碟。無法寫到檔案描述子 %d無法寫使用者組態檔案。找不到 '%s' 領域的記載檔。總和檢查碼錯誤壓縮失敗無法轉換成八位元編碼ctrl日期解壓縮失敗預設值delegate 沒有類型資訊傾印(dump)程序狀態(二進位碼)第十八第八第十一項目 '%s' 在 '%s' 群中已出現一次以上資料格式錯誤。開啟 '%s' 失敗檔案開啟失敗讀取 zip 中心目錄發生錯誤讀取 zip 本地表頭時發生錯誤寫入 zip 條目 '%s' 時發生錯誤:不當的 crc 或長度重新整理檔案 '%s' 失敗第十五第五檔案 '%s' 第 %d 列:忽略位於群組標頭之後的 '%s' 。檔案 '%s' 第 %d 列:應有 '='。檔案 '%s', 第 %d 列:機碼 '%s' 第一次出現在第 %d 列。檔案 '%s' 第 %d 列:忽略對不可變更機碼 '%s' 的值。檔案 '%s': 不應有字元 %c 存在於第 %d 列中。第一字型大小第十四第四產生冗長的記錄訊息不正確的事件處理常式字串,缺少小點訊息盒傳回無效的值無效的zip檔案斜體細體無法設定地區為 '%s'。尋找記載檔 '%s' @ '%s'。午夜第十九第九沒有「動態資料交換」錯誤。沒有任何錯誤未命名中午數字物件不能有 XML 文字子節點記憶體不足。程序上下文描述讀取失敗讀取 zip 串流 (條目 %s): 不良的 crc讀取 zip 串流 (條目 %s): 不良的長度重複進入問題。第二搜尋失敗第十七第七shift顯示這個說明訊息第十六第六設定顯示模式 (例如 640x480-16)設定主題Zip頭沒有已存檔案的長度資訊字串第十協同活動的回應,設定了 DDE_FBUSY 位元。第三第十三tiff 模組:%s今天明天第十二第二十加底線不應有 " 在位置 %d @ '%s'。未知的未知的類別 %s未知的錯誤!!!未知的錯誤(錯誤碼 %08x)。未知的搜尋基準點未知-%d未命名未命名-%d不支援的Zip壓縮方法使用記載檔 '%s' — '%s'。寫入失敗wxGetTimeOfDay 失敗。wxSocket: ReadMsg 中無效的簽名。wxSocket: 未知的事件!wxWidgets 無法為 '%s' 開啟顯示設備:已經存在。wxWidgets 無法開啟顯示設備。程式結束中。昨天zlib 錯誤碼 %d|<<wxMaxima-13.04.2/data/autocomplete.txt000644 000765 000024 00000350313 11670654443 020254 0ustar00andrejstaff000000 000000 FUNCTION: fast_linsolve TEMPLATE: fast_linsolve([, ..., ], [, ..., ]) FUNCTION: grobner_basis TEMPLATE: grobner_basis([, ..., ]) FUNCTION: set_up_dot_simplifications TEMPLATE: set_up_dot_simplifications(, ) TEMPLATE: set_up_dot_simplifications() FUNCTION: declare_weights TEMPLATE: declare_weights(, , ..., , ) FUNCTION: nc_degree TEMPLATE: nc_degree(

) FUNCTION: dotsimp TEMPLATE: dotsimp() FUNCTION: fast_central_elements TEMPLATE: fast_central_elements([, ..., ], ) FUNCTION: check_overlaps TEMPLATE: check_overlaps(, ) FUNCTION: mono TEMPLATE: mono([, ..., ], ) FUNCTION: monomial_dimensions TEMPLATE: monomial_dimensions() FUNCTION: extract_linear_equations TEMPLATE: extract_linear_equations([, ..., ], [, ..., ]) FUNCTION: list_nc_monomials TEMPLATE: list_nc_monomials([, ..., ]) TEMPLATE: list_nc_monomials(

) OPTION : all_dotsimp_denoms FUNCTION: array TEMPLATE: array(, , ..., ) TEMPLATE: array(, , , ..., ) TEMPLATE: array([, ..., ], , ..., ) FUNCTION: arrayapply TEMPLATE: arrayapply(, [, ..., ]) FUNCTION: arrayinfo TEMPLATE: arrayinfo() FUNCTION: arraymake TEMPLATE: arraymake(, [, ..., ]) OPTION : arrays FUNCTION: bashindices TEMPLATE: bashindices() FUNCTION: fillarray TEMPLATE: fillarray(, ) FUNCTION: listarray TEMPLATE: listarray() FUNCTION: make_array TEMPLATE: make_array(, , ..., ) FUNCTION: rearray TEMPLATE: rearray(, , ..., ) FUNCTION: remarray TEMPLATE: remarray(, ..., ) TEMPLATE: remarray(all) FUNCTION: subvar TEMPLATE: subvar(, ) OPTION : use_fast_arrays FUNCTION: init_atensor TEMPLATE: init_atensor(, ) TEMPLATE: init_atensor() FUNCTION: atensimp TEMPLATE: atensimp() OPTION : adim OPTION : aform OPTION : asymbol FUNCTION: sf TEMPLATE: sf(, ) FUNCTION: af TEMPLATE: af(, ) FUNCTION: av TEMPLATE: av(, ) FUNCTION: abasep TEMPLATE: abasep() FUNCTION: augmented_lagrangian_method TEMPLATE: augmented_lagrangian_method(, , , ) TEMPLATE: augmented_lagrangian_method(, , , , optional_args) TEMPLATE: augmented_lagrangian_method([, ], , , ) TEMPLATE: augmented_lagrangian_method([, ], , , , optional_args) FUNCTION: bode_gain TEMPLATE: bode_gain(, , ......) FUNCTION: bode_phase TEMPLATE: bode_phase(, , ......) FUNCTION: run_testsuite TEMPLATE: run_testsuite([]) OPTION : testsuite_files FUNCTION: bug_report TEMPLATE: bug_report() FUNCTION: build_info TEMPLATE: build_info() FUNCTION: alias TEMPLATE: alias(, , ..., , ) OPTION : debugmode FUNCTION: ev TEMPLATE: ev(, , ..., ) OPTION : eval OPTION : evflag OPTION : evfun OPTION : infeval FUNCTION: kill TEMPLATE: kill(, ..., ) TEMPLATE: kill(labels) TEMPLATE: kill(inlabels, outlabels, linelabels) TEMPLATE: kill() TEMPLATE: kill([, ]) TEMPLATE: kill(values, functions, arrays, ...) TEMPLATE: kill(all) TEMPLATE: kill(allbut (, ..., )) FUNCTION: labels TEMPLATE: labels() OPTION : linenum OPTION : myoptions OPTION : nolabels OPTION : optionset FUNCTION: playback TEMPLATE: playback() TEMPLATE: playback() TEMPLATE: playback([, ]) TEMPLATE: playback([]) TEMPLATE: playback(input) TEMPLATE: playback(slow) TEMPLATE: playback(time) TEMPLATE: playback(grind) FUNCTION: printprops TEMPLATE: printprops(, ) TEMPLATE: printprops([, ..., ], ) TEMPLATE: printprops(all, ) OPTION : prompt FUNCTION: quit TEMPLATE: quit() FUNCTION: remfunction TEMPLATE: remfunction(, ..., ) TEMPLATE: remfunction(all) FUNCTION: reset TEMPLATE: reset() OPTION : showtime FUNCTION: to_lisp TEMPLATE: to_lisp() OPTION : values OPTION : %e OPTION : %i OPTION : false OPTION : ind OPTION : inf OPTION : infinity OPTION : minf OPTION : %phi OPTION : %pi OPTION : true OPTION : und OPTION : zeroa OPTION : zerob FUNCTION: activate TEMPLATE: activate(, ..., ) OPTION : activecontexts FUNCTION: assume TEMPLATE: assume(, ..., ) OPTION : assumescalar OPTION : assume_pos OPTION : assume_pos_pred OPTION : context OPTION : contexts FUNCTION: deactivate TEMPLATE: deactivate(, ..., ) FUNCTION: facts TEMPLATE: facts() TEMPLATE: facts() OPTION : features FUNCTION: forget TEMPLATE: forget(, ..., ) TEMPLATE: forget() FUNCTION: killcontext TEMPLATE: killcontext(, ..., ) FUNCTION: newcontext TEMPLATE: newcontext() FUNCTION: supcontext TEMPLATE: supcontext(, ) TEMPLATE: supcontext() FUNCTION: contrib_ode TEMPLATE: contrib_ode(, , ) FUNCTION: odelin TEMPLATE: odelin(, , ) FUNCTION: ode_check TEMPLATE: ode_check(, ) OPTION : method OPTION : %c OPTION : %k1 OPTION : %k2 FUNCTION: gauss_a TEMPLATE: gauss_a(, , , ) FUNCTION: gauss_b TEMPLATE: gauss_b(, , , ) FUNCTION: dgauss_a TEMPLATE: dgauss_a(, , , ) FUNCTION: dgauss_b TEMPLATE: dgauss_b(, , , ) FUNCTION: kummer_m TEMPLATE: kummer_m(, , ) FUNCTION: kummer_u TEMPLATE: kummer_u(, , ) FUNCTION: dkummer_m TEMPLATE: dkummer_m(, , ) FUNCTION: dkummer_u TEMPLATE: dkummer_u(, , ) FUNCTION: csetup TEMPLATE: csetup() FUNCTION: cmetric TEMPLATE: cmetric() TEMPLATE: cmetric() FUNCTION: ct_coordsys TEMPLATE: ct_coordsys(, ) TEMPLATE: ct_coordsys() FUNCTION: init_ctensor TEMPLATE: init_ctensor() FUNCTION: christof TEMPLATE: christof() FUNCTION: ricci TEMPLATE: ricci() FUNCTION: uricci TEMPLATE: uricci() FUNCTION: scurvature TEMPLATE: scurvature() FUNCTION: einstein TEMPLATE: einstein() FUNCTION: leinstein TEMPLATE: leinstein() FUNCTION: riemann TEMPLATE: riemann() FUNCTION: lriemann TEMPLATE: lriemann() FUNCTION: uriemann TEMPLATE: uriemann() FUNCTION: rinvariant TEMPLATE: rinvariant() FUNCTION: weyl TEMPLATE: weyl() FUNCTION: ctaylor TEMPLATE: ctaylor() FUNCTION: frame_bracket TEMPLATE: frame_bracket(, , ) FUNCTION: nptetrad TEMPLATE: nptetrad() FUNCTION: psi TEMPLATE: psi() FUNCTION: petrov TEMPLATE: petrov() FUNCTION: contortion TEMPLATE: contortion() FUNCTION: nonmetricity TEMPLATE: nonmetricity() FUNCTION: ctransform TEMPLATE: ctransform() FUNCTION: findde TEMPLATE: findde(, ) FUNCTION: cograd TEMPLATE: cograd() FUNCTION: contragrad TEMPLATE: contragrad() FUNCTION: dscalar TEMPLATE: dscalar() FUNCTION: checkdiv TEMPLATE: checkdiv() FUNCTION: cgeodesic TEMPLATE: cgeodesic() FUNCTION: bdvac TEMPLATE: bdvac() FUNCTION: invariant1 TEMPLATE: invariant1() FUNCTION: invariant2 TEMPLATE: invariant2() FUNCTION: bimetric TEMPLATE: bimetric() FUNCTION: diagmatrixp TEMPLATE: diagmatrixp() FUNCTION: symmetricp TEMPLATE: symmetricp() FUNCTION: ntermst TEMPLATE: ntermst() FUNCTION: cdisplay TEMPLATE: cdisplay() FUNCTION: deleten TEMPLATE: deleten(, ) OPTION : dim OPTION : diagmetric OPTION : ctrgsimp OPTION : cframe_flag OPTION : ctorsion_flag OPTION : cnonmet_flag OPTION : ctayswitch OPTION : ctayvar OPTION : ctaypov OPTION : ctaypt OPTION : gdet OPTION : ratchristof OPTION : rateinstein OPTION : ratriemann OPTION : ratweyl OPTION : lfg OPTION : ufg OPTION : riem OPTION : lriem OPTION : uriem OPTION : ric OPTION : uric OPTION : lg OPTION : ug OPTION : weyl OPTION : fb OPTION : kinvariant OPTION : np OPTION : npi OPTION : tr OPTION : kt OPTION : nm OPTION : nmc OPTION : tensorkill OPTION : ct_coords OPTION : refcheck OPTION : setcheck OPTION : setcheckbreak OPTION : setval FUNCTION: timer TEMPLATE: timer(, ..., ) TEMPLATE: timer(all) TEMPLATE: timer() FUNCTION: untimer TEMPLATE: untimer(, ..., ) TEMPLATE: untimer() OPTION : timer_devalue FUNCTION: timer_info TEMPLATE: timer_info(, ..., ) TEMPLATE: timer_info() FUNCTION: trace TEMPLATE: trace(, ..., ) TEMPLATE: trace(all) TEMPLATE: trace() FUNCTION: trace_options TEMPLATE: trace_options(, , ..., ) TEMPLATE: trace_options() FUNCTION: untrace TEMPLATE: untrace(, ..., ) TEMPLATE: untrace() FUNCTION: %ibes TEMPLATE: %ibes[]() FUNCTION: %j TEMPLATE: %j[]() FUNCTION: %k TEMPLATE: %k[]() FUNCTION: %y TEMPLATE: %y[]() FUNCTION: airy TEMPLATE: airy() FUNCTION: bessel TEMPLATE: bessel(, ) FUNCTION: expint TEMPLATE: expint() FUNCTION: g0 TEMPLATE: g0() FUNCTION: g1 TEMPLATE: g1() FUNCTION: gn TEMPLATE: gn(, ) FUNCTION: gauss TEMPLATE: gauss(, ) FUNCTION: i0 TEMPLATE: i0() FUNCTION: i1 TEMPLATE: i1() FUNCTION: in TEMPLATE: in(, ) FUNCTION: j0 TEMPLATE: j0() FUNCTION: j1 TEMPLATE: j1() FUNCTION: jn TEMPLATE: jn(, ) FUNCTION: continuous_freq TEMPLATE: continuous_freq() TEMPLATE: continuous_freq(, ) FUNCTION: discrete_freq TEMPLATE: discrete_freq() FUNCTION: subsample TEMPLATE: subsample(, ) TEMPLATE: subsample(, , , , ...) FUNCTION: mean TEMPLATE: mean() TEMPLATE: mean() FUNCTION: var TEMPLATE: var() TEMPLATE: var() FUNCTION: var1 TEMPLATE: var1() TEMPLATE: var1() FUNCTION: std TEMPLATE: std() TEMPLATE: std() FUNCTION: std1 TEMPLATE: std1() TEMPLATE: std1() FUNCTION: noncentral_moment TEMPLATE: noncentral_moment(, ) TEMPLATE: noncentral_moment(, ) FUNCTION: central_moment TEMPLATE: central_moment(, ) TEMPLATE: central_moment(, ) FUNCTION: cv TEMPLATE: cv() TEMPLATE: cv() FUNCTION: smin TEMPLATE: smin() TEMPLATE: smin() FUNCTION: smax TEMPLATE: smax() TEMPLATE: smax() FUNCTION: range TEMPLATE: range() TEMPLATE: range() FUNCTION: quantile TEMPLATE: quantile(,

) TEMPLATE: quantile(,

) FUNCTION: median TEMPLATE: median() TEMPLATE: median() FUNCTION: qrange TEMPLATE: qrange() TEMPLATE: qrange() FUNCTION: mean_deviation TEMPLATE: mean_deviation() TEMPLATE: mean_deviation() FUNCTION: median_deviation TEMPLATE: median_deviation() TEMPLATE: median_deviation() FUNCTION: harmonic_mean TEMPLATE: harmonic_mean() TEMPLATE: harmonic_mean() FUNCTION: geometric_mean TEMPLATE: geometric_mean() TEMPLATE: geometric_mean() FUNCTION: kurtosis TEMPLATE: kurtosis() TEMPLATE: kurtosis() FUNCTION: skewness TEMPLATE: skewness() TEMPLATE: skewness() FUNCTION: pearson_skewness TEMPLATE: pearson_skewness() TEMPLATE: pearson_skewness() FUNCTION: quartile_skewness TEMPLATE: quartile_skewness() TEMPLATE: quartile_skewness() FUNCTION: cov TEMPLATE: cov() FUNCTION: cov1 TEMPLATE: cov1() FUNCTION: global_variances TEMPLATE: global_variances() TEMPLATE: global_variances(, ) FUNCTION: cor TEMPLATE: cor() TEMPLATE: cor(, ) FUNCTION: list_correlations TEMPLATE: list_correlations() TEMPLATE: list_correlations(, ) FUNCTION: histogram TEMPLATE: histogram() TEMPLATE: histogram(, , , ...) TEMPLATE: histogram() TEMPLATE: histogram(, , , ...) TEMPLATE: histogram() TEMPLATE: histogram(, , , ...) FUNCTION: scatterplot TEMPLATE: scatterplot() TEMPLATE: scatterplot(, , , ...) TEMPLATE: scatterplot() TEMPLATE: scatterplot(, , , ...) FUNCTION: barsplot TEMPLATE: barsplot(, , ..., , , ...) FUNCTION: piechart TEMPLATE: piechart() TEMPLATE: piechart(, , , ...) TEMPLATE: piechart() TEMPLATE: piechart(, , , ...) TEMPLATE: piechart() TEMPLATE: piechart(, , , ...) FUNCTION: boxplot TEMPLATE: boxplot() TEMPLATE: boxplot(, , , ...) FUNCTION: diag TEMPLATE: diag() FUNCTION: JF TEMPLATE: JF(,) FUNCTION: jordan TEMPLATE: jordan() FUNCTION: dispJordan TEMPLATE: dispJordan() FUNCTION: minimalPoly TEMPLATE: minimalPoly() FUNCTION: ModeMatrix TEMPLATE: ModeMatrix(,) FUNCTION: mat_function TEMPLATE: mat_function(,) FUNCTION: bc2 TEMPLATE: bc2(, , , , ) FUNCTION: desolve TEMPLATE: desolve(, ) TEMPLATE: desolve([, ..., ], [, ..., ]) FUNCTION: ic1 TEMPLATE: ic1(, , ) FUNCTION: ic2 TEMPLATE: ic2(, , , ) FUNCTION: ode2 TEMPLATE: ode2(, , ) FUNCTION: antid TEMPLATE: antid(, , ) FUNCTION: antidiff TEMPLATE: antidiff(, , ()) OPTION : atomgrad FUNCTION: atvalue TEMPLATE: atvalue(, [ = , ..., = ], ) TEMPLATE: atvalue(, = , ) FUNCTION: cartan TEMPLATE: cartan- FUNCTION: del TEMPLATE: del() FUNCTION: delta TEMPLATE: delta() OPTION : dependencies FUNCTION: depends TEMPLATE: depends(, , ..., , ) OPTION : derivabbrev FUNCTION: derivdegree TEMPLATE: derivdegree(, , ) FUNCTION: derivlist TEMPLATE: derivlist(, ..., ) OPTION : derivsubst FUNCTION: diff TEMPLATE: diff(, , , ..., , ) TEMPLATE: diff(, , ) TEMPLATE: diff(, ) TEMPLATE: diff() OPTION : diff FUNCTION: dscalar TEMPLATE: dscalar() FUNCTION: express TEMPLATE: express() FUNCTION: gradef TEMPLATE: gradef((, ..., ), , ..., ) TEMPLATE: gradef(, , ) OPTION : gradefs FUNCTION: laplace TEMPLATE: laplace(, , ) FUNCTION: pdf_normal TEMPLATE: pdf_normal(,,) FUNCTION: cdf_normal TEMPLATE: cdf_normal(,,) FUNCTION: quantile_normal TEMPLATE: quantile_normal(,,) FUNCTION: mean_normal TEMPLATE: mean_normal(,) FUNCTION: var_normal TEMPLATE: var_normal(,) FUNCTION: std_normal TEMPLATE: std_normal(,) FUNCTION: skewness_normal TEMPLATE: skewness_normal(,) FUNCTION: kurtosis_normal TEMPLATE: kurtosis_normal(,) FUNCTION: random_normal TEMPLATE: random_normal(,) TEMPLATE: random_normal(,,) FUNCTION: pdf_student_t TEMPLATE: pdf_student_t(,) FUNCTION: cdf_student_t TEMPLATE: cdf_student_t(,) FUNCTION: quantile_student_t TEMPLATE: quantile_student_t(,) FUNCTION: mean_student_t TEMPLATE: mean_student_t() FUNCTION: var_student_t TEMPLATE: var_student_t() FUNCTION: std_student_t TEMPLATE: std_student_t() FUNCTION: skewness_student_t TEMPLATE: skewness_student_t() FUNCTION: kurtosis_student_t TEMPLATE: kurtosis_student_t() FUNCTION: random_student_t TEMPLATE: random_student_t() TEMPLATE: random_student_t(,) FUNCTION: pdf_noncentral_student_t TEMPLATE: pdf_noncentral_student_t(,,) FUNCTION: cdf_noncentral_student_t TEMPLATE: cdf_noncentral_student_t(,,) FUNCTION: quantile_noncentral_student_t TEMPLATE: quantile_noncentral_student_t(,,) FUNCTION: mean_noncentral_student_t TEMPLATE: mean_noncentral_student_t(,) FUNCTION: var_noncentral_student_t TEMPLATE: var_noncentral_student_t(,) FUNCTION: std_noncentral_student_t TEMPLATE: std_noncentral_student_t(,) FUNCTION: skewness_noncentral_student_t TEMPLATE: skewness_noncentral_student_t(,) FUNCTION: kurtosis_noncentral_student_t TEMPLATE: kurtosis_noncentral_student_t(,) FUNCTION: random_noncentral_student_t TEMPLATE: random_noncentral_student_t(,) TEMPLATE: random_noncentral_student_t(,,) FUNCTION: pdf_chi2 TEMPLATE: pdf_chi2(,) FUNCTION: cdf_chi2 TEMPLATE: cdf_chi2(,) FUNCTION: quantile_chi2 TEMPLATE: quantile_chi2(,) FUNCTION: mean_chi2 TEMPLATE: mean_chi2() FUNCTION: var_chi2 TEMPLATE: var_chi2() FUNCTION: std_chi2 TEMPLATE: std_chi2() FUNCTION: skewness_chi2 TEMPLATE: skewness_chi2() FUNCTION: kurtosis_chi2 TEMPLATE: kurtosis_chi2() FUNCTION: random_chi2 TEMPLATE: random_chi2() TEMPLATE: random_chi2(,) FUNCTION: pdf_noncentral_chi2 TEMPLATE: pdf_noncentral_chi2(,,) FUNCTION: cdf_noncentral_chi2 TEMPLATE: cdf_noncentral_chi2(,,) FUNCTION: quantile_noncentral_chi2 TEMPLATE: quantile_noncentral_chi2(,,) FUNCTION: mean_noncentral_chi2 TEMPLATE: mean_noncentral_chi2(,) FUNCTION: var_noncentral_chi2 TEMPLATE: var_noncentral_chi2(,) FUNCTION: std_noncentral_chi2 TEMPLATE: std_noncentral_chi2(,) FUNCTION: skewness_noncentral_chi2 TEMPLATE: skewness_noncentral_chi2(,) FUNCTION: kurtosis_noncentral_chi2 TEMPLATE: kurtosis_noncentral_chi2(,) FUNCTION: random_noncentral_chi2 TEMPLATE: random_noncentral_chi2(,) TEMPLATE: random_noncentral_chi2(,,) FUNCTION: pdf_f TEMPLATE: pdf_f(,,) FUNCTION: cdf_f TEMPLATE: cdf_f(,,) FUNCTION: quantile_f TEMPLATE: quantile_f(,,) FUNCTION: mean_f TEMPLATE: mean_f(,) FUNCTION: var_f TEMPLATE: var_f(,) FUNCTION: std_f TEMPLATE: std_f(,) FUNCTION: skewness_f TEMPLATE: skewness_f(,) FUNCTION: kurtosis_f TEMPLATE: kurtosis_f(,) FUNCTION: random_f TEMPLATE: random_f(,) TEMPLATE: random_f(,,) FUNCTION: pdf_exp TEMPLATE: pdf_exp(,) FUNCTION: cdf_exp TEMPLATE: cdf_exp(,) FUNCTION: quantile_exp TEMPLATE: quantile_exp(,) FUNCTION: mean_exp TEMPLATE: mean_exp() FUNCTION: var_exp TEMPLATE: var_exp() FUNCTION: std_exp TEMPLATE: std_exp() FUNCTION: skewness_exp TEMPLATE: skewness_exp() FUNCTION: kurtosis_exp TEMPLATE: kurtosis_exp() FUNCTION: random_exp TEMPLATE: random_exp() TEMPLATE: random_exp(,) FUNCTION: pdf_lognormal TEMPLATE: pdf_lognormal(,,) FUNCTION: cdf_lognormal TEMPLATE: cdf_lognormal(,,) FUNCTION: quantile_lognormal TEMPLATE: quantile_lognormal(,,) FUNCTION: mean_lognormal TEMPLATE: mean_lognormal(,) FUNCTION: var_lognormal TEMPLATE: var_lognormal(,) FUNCTION: std_lognormal TEMPLATE: std_lognormal(,) FUNCTION: skewness_lognormal TEMPLATE: skewness_lognormal(,) FUNCTION: kurtosis_lognormal TEMPLATE: kurtosis_lognormal(,) FUNCTION: random_lognormal TEMPLATE: random_lognormal(,) TEMPLATE: random_lognormal(,,) FUNCTION: pdf_gamma TEMPLATE: pdf_gamma(,,) FUNCTION: cdf_gamma TEMPLATE: cdf_gamma(,,) FUNCTION: quantile_gamma TEMPLATE: quantile_gamma(,,) FUNCTION: mean_gamma TEMPLATE: mean_gamma(,) FUNCTION: var_gamma TEMPLATE: var_gamma(,) FUNCTION: std_gamma TEMPLATE: std_gamma(,) FUNCTION: skewness_gamma TEMPLATE: skewness_gamma(,) FUNCTION: kurtosis_gamma TEMPLATE: kurtosis_gamma(,) FUNCTION: random_gamma TEMPLATE: random_gamma(,) TEMPLATE: random_gamma(,,) FUNCTION: pdf_beta TEMPLATE: pdf_beta(,,) FUNCTION: cdf_beta TEMPLATE: cdf_beta(,,) FUNCTION: quantile_beta TEMPLATE: quantile_beta(,,) FUNCTION: mean_beta TEMPLATE: mean_beta(,) FUNCTION: var_beta TEMPLATE: var_beta(,) FUNCTION: std_beta TEMPLATE: std_beta(,) FUNCTION: skewness_beta TEMPLATE: skewness_beta(,) FUNCTION: kurtosis_beta TEMPLATE: kurtosis_beta(,) FUNCTION: random_beta TEMPLATE: random_beta(,) TEMPLATE: random_beta(,,) FUNCTION: pdf_continuous_uniform TEMPLATE: pdf_continuous_uniform(,,) FUNCTION: cdf_continuous_uniform TEMPLATE: cdf_continuous_uniform(,,) FUNCTION: quantile_continuous_uniform TEMPLATE: quantile_continuous_uniform(,,) FUNCTION: mean_continuous_uniform TEMPLATE: mean_continuous_uniform(,) FUNCTION: var_continuous_uniform TEMPLATE: var_continuous_uniform(,) FUNCTION: std_continuous_uniform TEMPLATE: std_continuous_uniform(,) FUNCTION: skewness_continuous_uniform TEMPLATE: skewness_continuous_uniform(,) FUNCTION: kurtosis_continuous_uniform TEMPLATE: kurtosis_continuous_uniform(,) FUNCTION: random_continuous_uniform TEMPLATE: random_continuous_uniform(,) TEMPLATE: random_continuous_uniform(,,) FUNCTION: pdf_logistic TEMPLATE: pdf_logistic(,,) FUNCTION: cdf_logistic TEMPLATE: cdf_logistic(,,) FUNCTION: quantile_logistic TEMPLATE: quantile_logistic(,,) FUNCTION: mean_logistic TEMPLATE: mean_logistic(,) FUNCTION: var_logistic TEMPLATE: var_logistic(,) FUNCTION: std_logistic TEMPLATE: std_logistic(,) FUNCTION: skewness_logistic TEMPLATE: skewness_logistic(,) FUNCTION: kurtosis_logistic TEMPLATE: kurtosis_logistic(,) FUNCTION: random_logistic TEMPLATE: random_logistic(,) TEMPLATE: random_logistic(,,) FUNCTION: pdf_pareto TEMPLATE: pdf_pareto(,,) FUNCTION: cdf_pareto TEMPLATE: cdf_pareto(,,) FUNCTION: quantile_pareto TEMPLATE: quantile_pareto(,,) FUNCTION: mean_pareto TEMPLATE: mean_pareto(,) FUNCTION: var_pareto TEMPLATE: var_pareto(,) FUNCTION: std_pareto TEMPLATE: std_pareto(,) FUNCTION: skewness_pareto TEMPLATE: skewness_pareto(,) FUNCTION: kurtosis_pareto TEMPLATE: kurtosis_pareto(,) FUNCTION: random_pareto TEMPLATE: random_pareto(,) TEMPLATE: random_pareto(,,) FUNCTION: pdf_weibull TEMPLATE: pdf_weibull(,,) FUNCTION: cdf_weibull TEMPLATE: cdf_weibull(,,) FUNCTION: quantile_weibull TEMPLATE: quantile_weibull(,,) FUNCTION: mean_weibull TEMPLATE: mean_weibull(,) FUNCTION: var_weibull TEMPLATE: var_weibull(,) FUNCTION: std_weibull TEMPLATE: std_weibull(,) FUNCTION: skewness_weibull TEMPLATE: skewness_weibull(,) FUNCTION: kurtosis_weibull TEMPLATE: kurtosis_weibull(,) FUNCTION: random_weibull TEMPLATE: random_weibull(,) TEMPLATE: random_weibull(,,) FUNCTION: pdf_rayleigh TEMPLATE: pdf_rayleigh(,) FUNCTION: cdf_rayleigh TEMPLATE: cdf_rayleigh(,) FUNCTION: quantile_rayleigh TEMPLATE: quantile_rayleigh(,) FUNCTION: mean_rayleigh TEMPLATE: mean_rayleigh() FUNCTION: var_rayleigh TEMPLATE: var_rayleigh() FUNCTION: std_rayleigh TEMPLATE: std_rayleigh() FUNCTION: skewness_rayleigh TEMPLATE: skewness_rayleigh() FUNCTION: kurtosis_rayleigh TEMPLATE: kurtosis_rayleigh() FUNCTION: random_rayleigh TEMPLATE: random_rayleigh() TEMPLATE: random_rayleigh(,) FUNCTION: pdf_laplace TEMPLATE: pdf_laplace(,,) FUNCTION: cdf_laplace TEMPLATE: cdf_laplace(,,) FUNCTION: quantile_laplace TEMPLATE: quantile_laplace(,,) FUNCTION: mean_laplace TEMPLATE: mean_laplace(,) FUNCTION: var_laplace TEMPLATE: var_laplace(,) FUNCTION: std_laplace TEMPLATE: std_laplace(,) FUNCTION: skewness_laplace TEMPLATE: skewness_laplace(,) FUNCTION: kurtosis_laplace TEMPLATE: kurtosis_laplace(,) FUNCTION: random_laplace TEMPLATE: random_laplace(,) TEMPLATE: random_laplace(,,) FUNCTION: pdf_cauchy TEMPLATE: pdf_cauchy(,,) FUNCTION: cdf_cauchy TEMPLATE: cdf_cauchy(,,) FUNCTION: quantile_cauchy TEMPLATE: quantile_cauchy(,,) FUNCTION: random_cauchy TEMPLATE: random_cauchy(,) TEMPLATE: random_cauchy(,,) FUNCTION: pdf_gumbel TEMPLATE: pdf_gumbel(,,) FUNCTION: cdf_gumbel TEMPLATE: cdf_gumbel(,,) FUNCTION: quantile_gumbel TEMPLATE: quantile_gumbel(,,) FUNCTION: mean_gumbel TEMPLATE: mean_gumbel(,) FUNCTION: var_gumbel TEMPLATE: var_gumbel(,) FUNCTION: std_gumbel TEMPLATE: std_gumbel(,) FUNCTION: skewness_gumbel TEMPLATE: skewness_gumbel(,) FUNCTION: kurtosis_gumbel TEMPLATE: kurtosis_gumbel(,) FUNCTION: random_gumbel TEMPLATE: random_gumbel(,) TEMPLATE: random_gumbel(,,) FUNCTION: pdf_binomial TEMPLATE: pdf_binomial(,,

) FUNCTION: cdf_binomial TEMPLATE: cdf_binomial(,,

) FUNCTION: quantile_binomial TEMPLATE: quantile_binomial(,,

) FUNCTION: mean_binomial TEMPLATE: mean_binomial(,

) FUNCTION: var_binomial TEMPLATE: var_binomial(,

) FUNCTION: std_binomial TEMPLATE: std_binomial(,

) FUNCTION: skewness_binomial TEMPLATE: skewness_binomial(,

) FUNCTION: kurtosis_binomial TEMPLATE: kurtosis_binomial(,

) FUNCTION: random_binomial TEMPLATE: random_binomial(,

) TEMPLATE: random_binomial(,

,) FUNCTION: pdf_poisson TEMPLATE: pdf_poisson(,) FUNCTION: cdf_poisson TEMPLATE: cdf_poisson(,) FUNCTION: quantile_poisson TEMPLATE: quantile_poisson(,) FUNCTION: mean_poisson TEMPLATE: mean_poisson() FUNCTION: var_poisson TEMPLATE: var_poisson() FUNCTION: std_poisson TEMPLATE: std_poisson() FUNCTION: skewness_poisson TEMPLATE: skewness_poisson() FUNCTION: kurtosis_poisson TEMPLATE: kurtosis_poisson() FUNCTION: random_poisson TEMPLATE: random_poisson() TEMPLATE: random_poisson(,) FUNCTION: pdf_bernoulli TEMPLATE: pdf_bernoulli(,

) FUNCTION: cdf_bernoulli TEMPLATE: cdf_bernoulli(,

) FUNCTION: quantile_bernoulli TEMPLATE: quantile_bernoulli(,

) FUNCTION: mean_bernoulli TEMPLATE: mean_bernoulli(

) FUNCTION: var_bernoulli TEMPLATE: var_bernoulli(

) FUNCTION: std_bernoulli TEMPLATE: std_bernoulli(

) FUNCTION: skewness_bernoulli TEMPLATE: skewness_bernoulli(

) FUNCTION: kurtosis_bernoulli TEMPLATE: kurtosis_bernoulli(

) FUNCTION: random_bernoulli TEMPLATE: random_bernoulli(

) TEMPLATE: random_bernoulli(

,) FUNCTION: pdf_geometric TEMPLATE: pdf_geometric(,

) FUNCTION: cdf_geometric TEMPLATE: cdf_geometric(,

) FUNCTION: quantile_geometric TEMPLATE: quantile_geometric(,

) FUNCTION: mean_geometric TEMPLATE: mean_geometric(

) FUNCTION: var_geometric TEMPLATE: var_geometric(

) FUNCTION: std_geometric TEMPLATE: std_geometric(

) FUNCTION: skewness_geometric TEMPLATE: skewness_geometric(

) FUNCTION: kurtosis_geometric TEMPLATE: kurtosis_geometric(

) FUNCTION: random_geometric TEMPLATE: random_geometric(

) TEMPLATE: random_geometric(

,) FUNCTION: pdf_discrete_uniform TEMPLATE: pdf_discrete_uniform(,) FUNCTION: cdf_discrete_uniform TEMPLATE: cdf_discrete_uniform(,) FUNCTION: quantile_discrete_uniform TEMPLATE: quantile_discrete_uniform(,) FUNCTION: mean_discrete_uniform TEMPLATE: mean_discrete_uniform() FUNCTION: var_discrete_uniform TEMPLATE: var_discrete_uniform() FUNCTION: std_discrete_uniform TEMPLATE: std_discrete_uniform() FUNCTION: skewness_discrete_uniform TEMPLATE: skewness_discrete_uniform() FUNCTION: kurtosis_discrete_uniform TEMPLATE: kurtosis_discrete_uniform() FUNCTION: random_discrete_uniform TEMPLATE: random_discrete_uniform() TEMPLATE: random_discrete_uniform(,) FUNCTION: pdf_hypergeometric TEMPLATE: pdf_hypergeometric(,,,) FUNCTION: cdf_hypergeometric TEMPLATE: cdf_hypergeometric(,,,) FUNCTION: quantile_hypergeometric TEMPLATE: quantile_hypergeometric(,,,) FUNCTION: mean_hypergeometric TEMPLATE: mean_hypergeometric(,,) FUNCTION: var_hypergeometric TEMPLATE: var_hypergeometric(,,) FUNCTION: std_hypergeometric TEMPLATE: std_hypergeometric(,,) FUNCTION: skewness_hypergeometric TEMPLATE: skewness_hypergeometric(,,) FUNCTION: kurtosis_hypergeometric TEMPLATE: kurtosis_hypergeometric(,,) FUNCTION: random_hypergeometric TEMPLATE: random_hypergeometric(,,) TEMPLATE: random_hypergeometric(,,,) FUNCTION: pdf_negative_binomial TEMPLATE: pdf_negative_binomial(,,

) FUNCTION: cdf_negative_binomial TEMPLATE: cdf_negative_binomial(,,

) FUNCTION: quantile_negative_binomial TEMPLATE: quantile_negative_binomial(,,

) FUNCTION: mean_negative_binomial TEMPLATE: mean_negative_binomial(,

) FUNCTION: var_negative_binomial TEMPLATE: var_negative_binomial(,

) FUNCTION: std_negative_binomial TEMPLATE: std_negative_binomial(,

) FUNCTION: skewness_negative_binomial TEMPLATE: skewness_negative_binomial(,

) FUNCTION: kurtosis_negative_binomial TEMPLATE: kurtosis_negative_binomial(,

) FUNCTION: random_negative_binomial TEMPLATE: random_negative_binomial(,

) TEMPLATE: random_negative_binomial(,

,) FUNCTION: draw TEMPLATE: draw(, ..., , ..., , ...) FUNCTION: draw2d TEMPLATE: draw2d(

, , ) FUNCTION: nthroot TEMPLATE: nthroot(

, ) OPTION : polyfactor OPTION : programmode OPTION : realonly FUNCTION: realroots TEMPLATE: realroots(, ) TEMPLATE: realroots(, ) TEMPLATE: realroots() TEMPLATE: realroots() FUNCTION: rhs TEMPLATE: rhs() OPTION : rootsconmode FUNCTION: rootscontract TEMPLATE: rootscontract() OPTION : rootsepsilon FUNCTION: solve TEMPLATE: solve(, ) TEMPLATE: solve() TEMPLATE: solve([, ..., ], [, ..., ]) OPTION : solvedecomposes OPTION : solveexplicit OPTION : solvefactors OPTION : solvenullwarn OPTION : solveradcan OPTION : solvetrigwarn FUNCTION: at TEMPLATE: at(, [, ..., ]) TEMPLATE: at(, ) FUNCTION: box TEMPLATE: box() TEMPLATE: box(, ) OPTION : boxchar FUNCTION: carg TEMPLATE: carg() FUNCTION: constantp TEMPLATE: constantp() FUNCTION: declare TEMPLATE: declare(, , , , ...) FUNCTION: disolate TEMPLATE: disolate(, , ..., ) FUNCTION: dispform TEMPLATE: dispform() TEMPLATE: dispform(, all) FUNCTION: distrib TEMPLATE: distrib() FUNCTION: dpart TEMPLATE: dpart(, , ..., ) FUNCTION: exp TEMPLATE: exp() OPTION : %emode OPTION : %enumer OPTION : exptisolate OPTION : exptsubst FUNCTION: freeof TEMPLATE: freeof(, ..., , ) FUNCTION: genfact TEMPLATE: genfact(, , ) FUNCTION: imagpart TEMPLATE: imagpart() FUNCTION: infix TEMPLATE: infix() TEMPLATE: infix(, , ) TEMPLATE: infix(, , , , , ) OPTION : inflag FUNCTION: inpart TEMPLATE: inpart(, , ..., ) FUNCTION: isolate TEMPLATE: isolate(, ) OPTION : isolate_wrt_times OPTION : listconstvars OPTION : listdummyvars FUNCTION: listofvars TEMPLATE: listofvars() FUNCTION: lfreeof TEMPLATE: lfreeof(, ) FUNCTION: lopow TEMPLATE: lopow(, ) FUNCTION: lpart TEMPLATE: lpart(, ) FUNCTION: units TEMPLATE: units() TEMPLATE: declare_units(, ) FUNCTION: qty TEMPLATE: qty() TEMPLATE: declare_qty(, ) FUNCTION: unitp TEMPLATE: unitp() FUNCTION: declare_unit_conversion TEMPLATE: declare_unit_conversion( = , ...) FUNCTION: declare_dimensions TEMPLATE: declare_dimensions(, , ..., , ) TEMPLATE: remove_dimensions(, ..., ) FUNCTION: declare_fundamental_dimensions TEMPLATE: declare_fundamental_dimensions(, , , ...) TEMPLATE: remove_fundamental_dimensions(, , , ...) FUNCTION: declare_fundamental_units TEMPLATE: declare_fundamental_units(, , ..., , ) TEMPLATE: remove_fundamental_units(, ..., ) FUNCTION: dimensions TEMPLATE: dimensions() TEMPLATE: dimensions_as_list() FUNCTION: fundamental_units TEMPLATE: fundamental_units() TEMPLATE: fundamental_units() FUNCTION: dimensionless TEMPLATE: dimensionless() FUNCTION: natural_unit TEMPLATE: natural_unit(, [, ..., ]) FUNCTION: f90 TEMPLATE: f90(, ..., ) FUNCTION: bffac TEMPLATE: bffac(, ) OPTION : algepsilon FUNCTION: bfloat TEMPLATE: bfloat() FUNCTION: bfloatp TEMPLATE: bfloatp() FUNCTION: bfpsi TEMPLATE: bfpsi(, , ) TEMPLATE: bfpsi0(, ) OPTION : bftorat OPTION : bftrunc FUNCTION: cbffac TEMPLATE: cbffac(, ) FUNCTION: float TEMPLATE: float() OPTION : float2bf FUNCTION: floatnump TEMPLATE: floatnump() OPTION : fpprec OPTION : fpprintprec OPTION : numer_pbranch FUNCTION: buildq TEMPLATE: buildq(, ) FUNCTION: macroexpand TEMPLATE: macroexpand() FUNCTION: macroexpand1 TEMPLATE: macroexpand1() OPTION : macros FUNCTION: splice TEMPLATE: splice() FUNCTION: apply TEMPLATE: apply(, [, ..., ]) FUNCTION: block TEMPLATE: block([, ..., ], , ..., ) TEMPLATE: block(, ..., ) FUNCTION: break TEMPLATE: break(, ..., ) FUNCTION: catch TEMPLATE: catch(, ..., ) FUNCTION: compfile TEMPLATE: compfile(, , ..., ) TEMPLATE: compfile(, functions) TEMPLATE: compfile(, all) FUNCTION: compile TEMPLATE: compile(, ..., ) TEMPLATE: compile(functions) TEMPLATE: compile(all) FUNCTION: define TEMPLATE: define((, ..., ), ) TEMPLATE: define([, ..., ], ) TEMPLATE: define(funmake (, [, ..., ]), ) TEMPLATE: define(arraymake (, [, ..., ]), ) TEMPLATE: define(ev (), ) FUNCTION: define_variable TEMPLATE: define_variable(, , ) FUNCTION: dispfun TEMPLATE: dispfun(, ..., ) TEMPLATE: dispfun(all) OPTION : functions FUNCTION: fundef TEMPLATE: fundef() FUNCTION: funmake TEMPLATE: funmake(, [, ..., ]) FUNCTION: lambda TEMPLATE: lambda([, ..., ], , ..., ) TEMPLATE: lambda([[]], , ..., ) TEMPLATE: lambda([, ..., , []], , ..., ) FUNCTION: local TEMPLATE: local(, ..., ) OPTION : macroexpansion OPTION : mode_checkp OPTION : mode_check_errorp OPTION : mode_check_warnp FUNCTION: mode_declare TEMPLATE: mode_declare(, , ..., , ) FUNCTION: mode_identity TEMPLATE: mode_identity(, ) OPTION : transcompile FUNCTION: translate TEMPLATE: translate(, ..., ) TEMPLATE: translate(functions) TEMPLATE: translate(all) FUNCTION: translate_file TEMPLATE: translate_file() TEMPLATE: translate_file(, ) OPTION : transrun OPTION : tr_array_as_ref OPTION : tr_bound_function_applyp OPTION : tr_file_tty_messagesp OPTION : tr_float_can_branch_complex OPTION : tr_function_call_default OPTION : tr_numer OPTION : tr_optimize_max_loop OPTION : tr_semicompile OPTION : tr_state_vars FUNCTION: tr_warnings_get TEMPLATE: tr_warnings_get() OPTION : tr_warn_bad_function_calls OPTION : tr_warn_fexpr OPTION : tr_warn_meval OPTION : tr_warn_mode OPTION : tr_warn_undeclared OPTION : tr_warn_undefined_variable OPTION : tr_windy FUNCTION: compile_file TEMPLATE: compile_file() TEMPLATE: compile_file(, ) TEMPLATE: compile_file(, , ) FUNCTION: declare_translated TEMPLATE: declare_translated(, , ...) OPTION : GGFINFINITY OPTION : GGFCFMAX FUNCTION: ggf TEMPLATE: ggf() FUNCTION: create_graph TEMPLATE: create_graph(, ) TEMPLATE: create_graph(, ) TEMPLATE: create_graph(, , ) FUNCTION: copy_graph TEMPLATE: copy_graph() FUNCTION: circulant_graph TEMPLATE: circulant_graph(, ) FUNCTION: clebsch_graph TEMPLATE: clebsch_graph() FUNCTION: complement_graph TEMPLATE: complement_graph() FUNCTION: complete_bipartite_graph TEMPLATE: complete_bipartite_graph(, ) FUNCTION: complete_graph TEMPLATE: complete_graph() FUNCTION: cycle_digraph TEMPLATE: cycle_digraph() FUNCTION: cycle_graph TEMPLATE: cycle_graph() FUNCTION: cuboctahedron_graph TEMPLATE: cuboctahedron_graph() FUNCTION: cube_graph TEMPLATE: cube_graph() FUNCTION: dodecahedron_graph TEMPLATE: dodecahedron_graph() FUNCTION: empty_graph TEMPLATE: empty_graph() FUNCTION: flower_snark TEMPLATE: flower_snark() FUNCTION: from_adjacency_matrix TEMPLATE: from_adjacency_matrix() FUNCTION: frucht_graph TEMPLATE: frucht_graph() FUNCTION: graph_product TEMPLATE: graph_product(, ) FUNCTION: graph_union TEMPLATE: graph_union(, ) FUNCTION: grid_graph TEMPLATE: grid_graph(, ) FUNCTION: great_rhombicosidodecahedron_graph TEMPLATE: great_rhombicosidodecahedron_graph() FUNCTION: great_rhombicuboctahedron_graph TEMPLATE: great_rhombicuboctahedron_graph() FUNCTION: grotzch_graph TEMPLATE: grotzch_graph() FUNCTION: heawood_graph TEMPLATE: heawood_graph() FUNCTION: icosahedron_graph TEMPLATE: icosahedron_graph() FUNCTION: icosidodecahedron_graph TEMPLATE: icosidodecahedron_graph() FUNCTION: induced_subgraph TEMPLATE: induced_subgraph(, ) FUNCTION: line_graph TEMPLATE: line_graph() FUNCTION: make_graph TEMPLATE: make_graph(, ) TEMPLATE: make_graph(, , ) FUNCTION: mycielski_graph TEMPLATE: mycielski_graph() FUNCTION: new_graph TEMPLATE: new_graph() FUNCTION: path_digraph TEMPLATE: path_digraph() FUNCTION: path_graph TEMPLATE: path_graph() FUNCTION: petersen_graph TEMPLATE: petersen_graph() TEMPLATE: petersen_graph(, ) FUNCTION: random_bipartite_graph TEMPLATE: random_bipartite_graph(, ,

) FUNCTION: random_digraph TEMPLATE: random_digraph(,

) FUNCTION: random_regular_graph TEMPLATE: random_regular_graph() TEMPLATE: random_regular_graph(, ) FUNCTION: random_graph TEMPLATE: random_graph(,

) FUNCTION: random_graph1 TEMPLATE: random_graph1(, ) FUNCTION: random_network TEMPLATE: random_network(,

, ) FUNCTION: random_tournament TEMPLATE: random_tournament() FUNCTION: random_tree TEMPLATE: random_tree() FUNCTION: small_rhombicosidodecahedron_graph TEMPLATE: small_rhombicosidodecahedron_graph() FUNCTION: small_rhombicuboctahedron_graph TEMPLATE: small_rhombicuboctahedron_graph() FUNCTION: snub_cube_graph TEMPLATE: snub_cube_graph() FUNCTION: snub_dodecahedron_graph TEMPLATE: snub_dodecahedron_graph() FUNCTION: truncated_cube_graph TEMPLATE: truncated_cube_graph() FUNCTION: truncated_dodecahedron_graph TEMPLATE: truncated_dodecahedron_graph() FUNCTION: truncated_icosahedron_graph TEMPLATE: truncated_icosahedron_graph() FUNCTION: truncated_tetrahedron_graph TEMPLATE: truncated_tetrahedron_graph() FUNCTION: tutte_graph TEMPLATE: tutte_graph() FUNCTION: underlying_graph TEMPLATE: underlying_graph() FUNCTION: wheel_graph TEMPLATE: wheel_graph() FUNCTION: adjacency_matrix TEMPLATE: adjacency_matrix() FUNCTION: average_degree TEMPLATE: average_degree() FUNCTION: biconnected_components TEMPLATE: biconnected_components() FUNCTION: bipartition TEMPLATE: bipartition() FUNCTION: chromatic_index TEMPLATE: chromatic_index() FUNCTION: chromatic_number TEMPLATE: chromatic_number() FUNCTION: clear_edge_weight TEMPLATE: clear_edge_weight(, ) FUNCTION: clear_vertex_label TEMPLATE: clear_vertex_label(, ) FUNCTION: connected_components TEMPLATE: connected_components() FUNCTION: diameter TEMPLATE: diameter() FUNCTION: edge_coloring TEMPLATE: edge_coloring() FUNCTION: degree_sequence TEMPLATE: degree_sequence() FUNCTION: edge_connectivity TEMPLATE: edge_connectivity() FUNCTION: edges TEMPLATE: edges() FUNCTION: get_edge_weight TEMPLATE: get_edge_weight(, ) TEMPLATE: get_edge_weight(, , ) FUNCTION: get_vertex_label TEMPLATE: get_vertex_label(, ) FUNCTION: graph_charpoly TEMPLATE: graph_charpoly(, ) FUNCTION: graph_center TEMPLATE: graph_center() FUNCTION: graph_eigenvalues TEMPLATE: graph_eigenvalues() FUNCTION: graph_periphery TEMPLATE: graph_periphery() FUNCTION: graph_size TEMPLATE: graph_size() FUNCTION: graph_order TEMPLATE: graph_order() FUNCTION: girth TEMPLATE: girth() FUNCTION: hamilton_cycle TEMPLATE: hamilton_cycle() FUNCTION: hamilton_path TEMPLATE: hamilton_path() FUNCTION: isomorphism TEMPLATE: isomorphism(, ) FUNCTION: in_neighbors TEMPLATE: in_neighbors(, ) FUNCTION: is_biconnected TEMPLATE: is_biconnected() FUNCTION: is_bipartite TEMPLATE: is_bipartite() FUNCTION: is_connected TEMPLATE: is_connected() FUNCTION: is_digraph TEMPLATE: is_digraph() FUNCTION: is_edge_in_graph TEMPLATE: is_edge_in_graph(, ) FUNCTION: is_graph TEMPLATE: is_graph() FUNCTION: is_graph_or_digraph TEMPLATE: is_graph_or_digraph() FUNCTION: is_isomorphic TEMPLATE: is_isomorphic(, ) FUNCTION: is_planar TEMPLATE: is_planar() FUNCTION: is_sconnected TEMPLATE: is_sconnected() FUNCTION: is_vertex_in_graph TEMPLATE: is_vertex_in_graph(, ) FUNCTION: is_tree TEMPLATE: is_tree() FUNCTION: laplacian_matrix TEMPLATE: laplacian_matrix() FUNCTION: max_clique TEMPLATE: max_clique() FUNCTION: max_degree TEMPLATE: max_degree() FUNCTION: max_flow TEMPLATE: max_flow(, , ) FUNCTION: max_independent_set TEMPLATE: max_independent_set() FUNCTION: max_matching TEMPLATE: max_matching() FUNCTION: min_degree TEMPLATE: min_degree() FUNCTION: min_edge_cut TEMPLATE: min_edge_cut() FUNCTION: min_vertex_cover TEMPLATE: min_vertex_cover() FUNCTION: min_vertex_cut TEMPLATE: min_vertex_cut() FUNCTION: minimum_spanning_tree TEMPLATE: minimum_spanning_tree() FUNCTION: neighbors TEMPLATE: neighbors(, ) FUNCTION: odd_girth TEMPLATE: odd_girth() FUNCTION: out_neighbors TEMPLATE: out_neighbors(, ) FUNCTION: planar_embedding TEMPLATE: planar_embedding() FUNCTION: print_graph TEMPLATE: print_graph() FUNCTION: radius TEMPLATE: radius() FUNCTION: set_edge_weight TEMPLATE: set_edge_weight(, , ) FUNCTION: set_vertex_label TEMPLATE: set_vertex_label(, , ) FUNCTION: shortest_path TEMPLATE: shortest_path(, , ) FUNCTION: shortest_weighted_path TEMPLATE: shortest_weighted_path(, , ) FUNCTION: strong_components TEMPLATE: strong_components() FUNCTION: topological_sort TEMPLATE: topological_sort() FUNCTION: vertex_connectivity TEMPLATE: vertex_connectivity() FUNCTION: vertex_degree TEMPLATE: vertex_degree(, ) FUNCTION: vertex_distance TEMPLATE: vertex_distance(, , ) FUNCTION: vertex_eccentricity TEMPLATE: vertex_eccentricity(, ) FUNCTION: vertex_in_degree TEMPLATE: vertex_in_degree(, ) FUNCTION: vertex_out_degree TEMPLATE: vertex_out_degree(, ) FUNCTION: vertices TEMPLATE: vertices() FUNCTION: vertex_coloring TEMPLATE: vertex_coloring() FUNCTION: wiener_index TEMPLATE: wiener_index() FUNCTION: add_edge TEMPLATE: add_edge(, ) FUNCTION: add_edges TEMPLATE: add_edges(, ) FUNCTION: add_vertex TEMPLATE: add_vertex(, ) FUNCTION: add_vertices TEMPLATE: add_vertices(, ) FUNCTION: connect_vertices TEMPLATE: connect_vertices(, , ) FUNCTION: contract_edge TEMPLATE: contract_edge(, ) FUNCTION: remove_edge TEMPLATE: remove_edge(, ) FUNCTION: remove_vertex TEMPLATE: remove_vertex(, ) FUNCTION: dimacs_export TEMPLATE: dimacs_export(, ) TEMPLATE: dimacs_export(, , , ..., ) FUNCTION: dimacs_import TEMPLATE: dimacs_import() FUNCTION: graph6_decode TEMPLATE: graph6_decode() FUNCTION: graph6_encode TEMPLATE: graph6_encode() FUNCTION: graph6_export TEMPLATE: graph6_export(, ) FUNCTION: graph6_import TEMPLATE: graph6_import() FUNCTION: sparse6_decode TEMPLATE: sparse6_decode() FUNCTION: sparse6_encode TEMPLATE: sparse6_encode() FUNCTION: sparse6_export TEMPLATE: sparse6_export(, ) FUNCTION: sparse6_import TEMPLATE: sparse6_import() FUNCTION: draw_graph TEMPLATE: draw_graph() TEMPLATE: draw_graph(, , ..., ) OPTION : draw_graph_program OPTION : show_id OPTION : show_label OPTION : label_alignment OPTION : show_weight OPTION : vertex_type OPTION : vertex_size OPTION : vertex_color OPTION : show_vertices OPTION : show_vertex_type OPTION : show_vertex_size OPTION : show_vertex_color OPTION : vertex_partition OPTION : vertex_coloring OPTION : edge_color OPTION : edge_width OPTION : edge_type OPTION : show_edges OPTION : show_edge_color OPTION : show_edge_width OPTION : show_edge_type OPTION : edge_partition OPTION : edge_coloring OPTION : redraw OPTION : head_angle OPTION : head_length OPTION : spring_embedding_depth OPTION : terminal OPTION : file_name OPTION : program OPTION : fixed_vertices FUNCTION: vertices_to_path TEMPLATE: vertices_to_path() FUNCTION: vertices_to_cycle TEMPLATE: vertices_to_cycle() OPTION : poly_monomial_order OPTION : poly_coefficient_ring OPTION : poly_primary_elimination_order OPTION : poly_secondary_elimination_order OPTION : poly_elimination_order OPTION : poly_return_term_list OPTION : poly_grobner_debug OPTION : poly_grobner_algorithm OPTION : poly_top_reduction_only FUNCTION: poly_add TEMPLATE: poly_add(, , ) FUNCTION: poly_subtract TEMPLATE: poly_subtract(, , ) FUNCTION: poly_multiply TEMPLATE: poly_multiply(, , ) FUNCTION: poly_s_polynomial TEMPLATE: poly_s_polynomial(, , ) FUNCTION: poly_primitive_part TEMPLATE: poly_primitive_part(, ) FUNCTION: poly_normalize TEMPLATE: poly_normalize(, ) FUNCTION: poly_expand TEMPLATE: poly_expand(, ) FUNCTION: poly_expt TEMPLATE: poly_expt(, , ) FUNCTION: poly_content TEMPLATE: poly_content(. ) FUNCTION: poly_pseudo_divide TEMPLATE: poly_pseudo_divide(, , ) FUNCTION: poly_exact_divide TEMPLATE: poly_exact_divide(, , ) FUNCTION: poly_normal_form TEMPLATE: poly_normal_form(, , ) FUNCTION: poly_buchberger_criterion TEMPLATE: poly_buchberger_criterion(, ) FUNCTION: poly_buchberger TEMPLATE: poly_buchberger(, ) FUNCTION: poly_reduction TEMPLATE: poly_reduction(, ) FUNCTION: poly_minimization TEMPLATE: poly_minimization(, ) FUNCTION: poly_normalize_list TEMPLATE: poly_normalize_list(, ) FUNCTION: poly_grobner TEMPLATE: poly_grobner(, ) FUNCTION: poly_reduced_grobner TEMPLATE: poly_reduced_grobner(, ) FUNCTION: poly_depends_p TEMPLATE: poly_depends_p(, , ) FUNCTION: poly_elimination_ideal TEMPLATE: poly_elimination_ideal(, , ) FUNCTION: poly_colon_ideal TEMPLATE: poly_colon_ideal(, , ) FUNCTION: poly_ideal_intersection TEMPLATE: poly_ideal_intersection(, , ) FUNCTION: poly_lcm TEMPLATE: poly_lcm(, , ) FUNCTION: poly_gcd TEMPLATE: poly_gcd(, , ) FUNCTION: poly_grobner_equal TEMPLATE: poly_grobner_equal(, , ) FUNCTION: poly_grobner_subsetp TEMPLATE: poly_grobner_subsetp(, , ) FUNCTION: poly_grobner_member TEMPLATE: poly_grobner_member(, , ) FUNCTION: poly_ideal_saturation1 TEMPLATE: poly_ideal_saturation1(, , ) FUNCTION: poly_ideal_saturation TEMPLATE: poly_ideal_saturation(, , ) FUNCTION: poly_ideal_polysaturation1 TEMPLATE: poly_ideal_polysaturation1(, , ) FUNCTION: poly_ideal_polysaturation TEMPLATE: poly_ideal_polysaturation(, , ) FUNCTION: poly_saturation_extension TEMPLATE: poly_saturation_extension(, , , ) FUNCTION: poly_polysaturation_extension TEMPLATE: poly_polysaturation_extension(, , , ) FUNCTION: todd_coxeter TEMPLATE: todd_coxeter(, ) TEMPLATE: todd_coxeter() FUNCTION: apropos TEMPLATE: apropos() FUNCTION: demo TEMPLATE: demo() FUNCTION: describe TEMPLATE: describe() TEMPLATE: describe(, exact) TEMPLATE: describe(, inexact) FUNCTION: example TEMPLATE: example() TEMPLATE: example() OPTION : manual_demo FUNCTION: implicit_derivative TEMPLATE: implicit_derivative(,,,) FUNCTION: implicit_plot TEMPLATE: implicit_plot(, , ) TEMPLATE: implicit_plot([, ..., ], , ) OPTION : __ OPTION : _ OPTION : % OPTION : %% OPTION : %edispflag FUNCTION: %th TEMPLATE: %th() OPTION : absboxchar OPTION : file_output_append FUNCTION: appendfile TEMPLATE: appendfile() FUNCTION: batch TEMPLATE: batch() FUNCTION: batchload TEMPLATE: batchload() FUNCTION: closefile TEMPLATE: closefile() FUNCTION: collapse TEMPLATE: collapse() FUNCTION: concat TEMPLATE: concat(, , ...) FUNCTION: sconcat TEMPLATE: sconcat(, , ...) FUNCTION: disp TEMPLATE: disp(, , ...) FUNCTION: dispcon TEMPLATE: dispcon(, , ...) TEMPLATE: dispcon(all) FUNCTION: display TEMPLATE: display(, , ...) OPTION : display2d OPTION : display_format_internal FUNCTION: dispterms TEMPLATE: dispterms() OPTION : error_size OPTION : error_syms FUNCTION: expt TEMPLATE: expt(, ) OPTION : exptdispflag FUNCTION: filename_merge TEMPLATE: filename_merge(, ) FUNCTION: file_search TEMPLATE: file_search() TEMPLATE: file_search(, ) OPTION : file_search_maxima FUNCTION: file_type TEMPLATE: file_type() FUNCTION: grind TEMPLATE: grind() OPTION : ibase OPTION : inchar FUNCTION: ldisp TEMPLATE: ldisp(, ..., ) FUNCTION: ldisplay TEMPLATE: ldisplay(, ..., ) OPTION : linechar OPTION : linel OPTION : lispdisp FUNCTION: load TEMPLATE: load() FUNCTION: loadfile TEMPLATE: loadfile() OPTION : loadprint OPTION : obase OPTION : outchar OPTION : packagefile OPTION : pfeformat FUNCTION: print TEMPLATE: print(, ..., ) FUNCTION: printfile TEMPLATE: printfile() FUNCTION: tcl_output TEMPLATE: tcl_output(, , ) TEMPLATE: tcl_output(, ) TEMPLATE: tcl_output([, ..., ], ) FUNCTION: read TEMPLATE: read(, ..., ) FUNCTION: readonly TEMPLATE: readonly(, ..., ) FUNCTION: reveal TEMPLATE: reveal(, ) OPTION : rmxchar FUNCTION: save TEMPLATE: save(, , , , ...) TEMPLATE: save(, values, functions, labels, ...) TEMPLATE: save(, [, ]) TEMPLATE: save(, =, ...) TEMPLATE: save(, all) TEMPLATE: save(, =, =, ...) OPTION : savedef FUNCTION: show TEMPLATE: show() FUNCTION: showratvars TEMPLATE: showratvars() OPTION : stardisp FUNCTION: string TEMPLATE: string() OPTION : stringdisp FUNCTION: stringout TEMPLATE: stringout(, , , , ...) TEMPLATE: stringout(, [, ]) TEMPLATE: stringout(, input) TEMPLATE: stringout(, functions) TEMPLATE: stringout(, values) FUNCTION: tex TEMPLATE: tex() TEMPLATE: tex(, ) TEMPLATE: tex(, false) TEMPLATE: tex(, ) TEMPLATE: texput(, ) TEMPLATE: texput(, , ) TEMPLATE: texput(, [, ], matchfix) TEMPLATE: texput(, [, , ], matchfix) FUNCTION: get_tex_environment TEMPLATE: get_tex_environment() TEMPLATE: set_tex_environment(, , ) FUNCTION: get_tex_environment_default TEMPLATE: get_tex_environment_default() TEMPLATE: set_tex_environment_default(, ) FUNCTION: system TEMPLATE: system() OPTION : ttyoff FUNCTION: with_stdout TEMPLATE: with_stdout(, , , , ...) TEMPLATE: with_stdout(, , , , ...) FUNCTION: writefile TEMPLATE: writefile() FUNCTION: changevar TEMPLATE: changevar(, , , ) FUNCTION: dblint TEMPLATE: dblint(, , , , ) FUNCTION: defint TEMPLATE: defint(, , , ) OPTION : erfflag FUNCTION: ilt TEMPLATE: ilt(, , ) OPTION : intanalysis FUNCTION: integrate TEMPLATE: integrate(, ) TEMPLATE: integrate(, , , ) OPTION : integration_constant OPTION : integration_constant_counter OPTION : integrate_use_rootsof FUNCTION: ldefint TEMPLATE: ldefint(, , , ) FUNCTION: potential TEMPLATE: potential() FUNCTION: residue TEMPLATE: residue(, , ) FUNCTION: risch TEMPLATE: risch(, ) FUNCTION: tldefint TEMPLATE: tldefint(, , , ) FUNCTION: quad_qag TEMPLATE: quad_qag(, , , , , [, , ]) TEMPLATE: quad_qag(, , , , , [, , ]) FUNCTION: quad_qags TEMPLATE: quad_qags(, , , , [, , ]) TEMPLATE: quad_qags(, , , , [, , ]) FUNCTION: quad_qagi TEMPLATE: quad_qagi(, , , , [, , ]) TEMPLATE: quad_qagi(, , , , [, , ]) FUNCTION: quad_qawc TEMPLATE: quad_qawc(, , , , , [, , ]) TEMPLATE: quad_qawc(, , , , , [, , ]) FUNCTION: quad_qawf TEMPLATE: quad_qawf(, , , , , [, , , ]) TEMPLATE: quad_qawf(, , , , , [, , , ]) FUNCTION: quad_qawo TEMPLATE: quad_qawo(, , , , , , [, , , , ]) TEMPLATE: quad_qawo(, , , , , , [, , , , ]) FUNCTION: quad_qaws TEMPLATE: quad_qaws(, , , , , , , [, , ]) TEMPLATE: quad_qaws(, , , , , , , [, , ]) FUNCTION: lagrange TEMPLATE: lagrange() TEMPLATE: lagrange(, , ) FUNCTION: linearinterpol TEMPLATE: linearinterpol() TEMPLATE: linearinterpol(, ) TEMPLATE: dgeev(, , ) FUNCTION: dgesv TEMPLATE: dgesv(, ) FUNCTION: dgesvd TEMPLATE: dgesvd() TEMPLATE: dgesvd(, , ) FUNCTION: dlange TEMPLATE: dlange(, ) TEMPLATE: zlange(, ) FUNCTION: lbfgs TEMPLATE: lbfgs(, , , , ) TEMPLATE: lbfgs([, ] , , , ) OPTION : lbfgs_nfeval_max OPTION : lbfgs_ncorrections OPTION : lhospitallim FUNCTION: limit TEMPLATE: limit(, , ,

) TEMPLATE: limit(, , ) TEMPLATE: limit() OPTION : limsubst FUNCTION: tlimit TEMPLATE: tlimit(, , , ) TEMPLATE: tlimit(, , ) TEMPLATE: tlimit() OPTION : tlimswitch FUNCTION: Lindstedt TEMPLATE: Lindstedt(,,,) FUNCTION: addmatrices TEMPLATE: addmatrices(, , ..., ) FUNCTION: blockmatrixp TEMPLATE: blockmatrixp() FUNCTION: columnop TEMPLATE: columnop(, , , ) FUNCTION: columnswap TEMPLATE: columnswap(, , ) FUNCTION: columnspace TEMPLATE: columnspace() FUNCTION: copy TEMPLATE: copy() FUNCTION: cholesky TEMPLATE: cholesky() TEMPLATE: cholesky(, ) FUNCTION: ctranspose TEMPLATE: ctranspose() FUNCTION: diag_matrix TEMPLATE: diag_matrix(, ,...,) FUNCTION: dotproduct TEMPLATE: dotproduct(, ) FUNCTION: eigens_by_jacobi TEMPLATE: eigens_by_jacobi() TEMPLATE: eigens_by_jacobi(, ) FUNCTION: get_lu_factors TEMPLATE: get_lu_factors() FUNCTION: hankel TEMPLATE: hankel() TEMPLATE: hankel(, ) FUNCTION: hessian TEMPLATE: hessian(, ) FUNCTION: hilbert_matrix TEMPLATE: hilbert_matrix() FUNCTION: identfor TEMPLATE: identfor() TEMPLATE: identfor(, ) FUNCTION: invert_by_lu TEMPLATE: invert_by_lu(, <(rng generalring)>) FUNCTION: jacobian TEMPLATE: jacobian(, ) FUNCTION: kronecker_product TEMPLATE: kronecker_product(, ) FUNCTION: listp TEMPLATE: listp(,

) TEMPLATE: listp() FUNCTION: locate_matrix_entry TEMPLATE: locate_matrix_entry(, , , , , , ) FUNCTION: lu_backsub TEMPLATE: lu_backsub(, ) FUNCTION: lu_factor TEMPLATE: lu_factor(, ) FUNCTION: mat_cond TEMPLATE: mat_cond(, 1) TEMPLATE: mat_cond(, inf) FUNCTION: mat_norm TEMPLATE: mat_norm(, 1) TEMPLATE: mat_norm(, inf) TEMPLATE: mat_norm(, frobenius) FUNCTION: matrixp TEMPLATE: matrixp(,

) TEMPLATE: matrixp() FUNCTION: matrix_size TEMPLATE: matrix_size() FUNCTION: mat_fullunblocker TEMPLATE: mat_fullunblocker() FUNCTION: mat_trace TEMPLATE: mat_trace() FUNCTION: mat_unblocker TEMPLATE: mat_unblocker() FUNCTION: nonnegintegerp TEMPLATE: nonnegintegerp() FUNCTION: nullspace TEMPLATE: nullspace() FUNCTION: nullity TEMPLATE: nullity() FUNCTION: orthogonal_complement TEMPLATE: orthogonal_complement(, ..., ) FUNCTION: polynomialp TEMPLATE: polynomialp(

, , , ) TEMPLATE: polynomialp(

, , ) TEMPLATE: polynomialp(

, ) FUNCTION: polytocompanion TEMPLATE: polytocompanion(

, ) FUNCTION: ptriangularize TEMPLATE: ptriangularize(, ) FUNCTION: rowop TEMPLATE: rowop(, , , ) FUNCTION: rank TEMPLATE: rank() FUNCTION: rowswap TEMPLATE: rowswap(, , ) FUNCTION: toeplitz TEMPLATE: toeplitz() TEMPLATE: toeplitz(, ) FUNCTION: vandermonde_matrix TEMPLATE: vandermonde_matrix([, ..., ]) FUNCTION: zerofor TEMPLATE: zerofor() TEMPLATE: zerofor(, ) FUNCTION: zeromatrixp TEMPLATE: zeromatrixp() FUNCTION: append TEMPLATE: append(, ..., ) FUNCTION: assoc TEMPLATE: assoc(, , ) TEMPLATE: assoc(, ) FUNCTION: atom TEMPLATE: atom() FUNCTION: cons TEMPLATE: cons(, ) FUNCTION: copylist TEMPLATE: copylist() FUNCTION: create_list TEMPLATE: create_list(

, , , ..., , ) FUNCTION: delete TEMPLATE: delete(, ) TEMPLATE: delete(, , ) FUNCTION: eighth TEMPLATE: eighth() FUNCTION: endcons TEMPLATE: endcons(, ) FUNCTION: fifth TEMPLATE: fifth() FUNCTION: first TEMPLATE: first() FUNCTION: fourth TEMPLATE: fourth() FUNCTION: get TEMPLATE: get(, ) FUNCTION: join TEMPLATE: join(, ) FUNCTION: last TEMPLATE: last() FUNCTION: length TEMPLATE: length() OPTION : listarith FUNCTION: listp TEMPLATE: listp() FUNCTION: makelist TEMPLATE: makelist(, , , ) TEMPLATE: makelist(, , ) FUNCTION: member TEMPLATE: member(, ) FUNCTION: ninth TEMPLATE: ninth() FUNCTION: pop TEMPLATE: pop() FUNCTION: push TEMPLATE: push(, ) FUNCTION: unique TEMPLATE: unique() FUNCTION: rest TEMPLATE: rest(, ) TEMPLATE: rest() FUNCTION: reverse TEMPLATE: reverse() FUNCTION: second TEMPLATE: second() FUNCTION: seventh TEMPLATE: seventh() FUNCTION: sixth TEMPLATE: sixth() FUNCTION: sublist_indices TEMPLATE: sublist_indices(,

) FUNCTION: remvalue TEMPLATE: remvalue(, ..., ) TEMPLATE: remvalue(all) FUNCTION: rncombine TEMPLATE: rncombine() FUNCTION: scalarp TEMPLATE: scalarp() FUNCTION: setup_autoload TEMPLATE: setup_autoload(, , ..., ) OPTION : newtonepsilon OPTION : newtonmaxiter FUNCTION: mnewton TEMPLATE: mnewton(,,) FUNCTION: adjoin TEMPLATE: adjoin(, ) FUNCTION: belln TEMPLATE: belln() FUNCTION: cardinality TEMPLATE: cardinality() FUNCTION: cartesian_product TEMPLATE: cartesian_product(, ... , ) FUNCTION: disjoin TEMPLATE: disjoin(, ) FUNCTION: disjointp TEMPLATE: disjointp(, ) FUNCTION: divisors TEMPLATE: divisors() FUNCTION: elementp TEMPLATE: elementp(, ) FUNCTION: emptyp TEMPLATE: emptyp() FUNCTION: equiv_classes TEMPLATE: equiv_classes(, ) FUNCTION: every TEMPLATE: every(, ) TEMPLATE: every(, , ..., ) FUNCTION: extremal_subset TEMPLATE: extremal_subset(, , max) TEMPLATE: extremal_subset(, , min) FUNCTION: flatten TEMPLATE: flatten() FUNCTION: full_listify TEMPLATE: full_listify() FUNCTION: fullsetify TEMPLATE: fullsetify() FUNCTION: identity TEMPLATE: identity() FUNCTION: integer_partitions TEMPLATE: integer_partitions() TEMPLATE: integer_partitions(, ) FUNCTION: intersect TEMPLATE: intersect(, ..., ) FUNCTION: intersection TEMPLATE: intersection(, ..., ) FUNCTION: kron_delta TEMPLATE: kron_delta(, ) FUNCTION: listify TEMPLATE: listify() FUNCTION: lreduce TEMPLATE: lreduce(, ) TEMPLATE: lreduce(, , ) FUNCTION: makeset TEMPLATE: makeset(, , ) FUNCTION: moebius TEMPLATE: moebius() FUNCTION: multinomial_coeff TEMPLATE: multinomial_coeff(, ..., ) TEMPLATE: multinomial_coeff() FUNCTION: num_distinct_partitions TEMPLATE: num_distinct_partitions() TEMPLATE: num_distinct_partitions(, list) FUNCTION: num_partitions TEMPLATE: num_partitions() TEMPLATE: num_partitions(, list) FUNCTION: partition_set TEMPLATE: partition_set(, ) FUNCTION: permutations TEMPLATE: permutations() FUNCTION: powerset TEMPLATE: powerset() TEMPLATE: powerset(, ) FUNCTION: random_permutation TEMPLATE: random_permutation() FUNCTION: rreduce TEMPLATE: rreduce(, ) TEMPLATE: rreduce(, , @var{s_@{n + 1@}}) FUNCTION: setdifference TEMPLATE: setdifference(, ) FUNCTION: setequalp TEMPLATE: setequalp(, ) FUNCTION: setify TEMPLATE: setify() FUNCTION: setp TEMPLATE: setp() FUNCTION: set_partitions TEMPLATE: set_partitions() TEMPLATE: set_partitions(, ) FUNCTION: some TEMPLATE: some(, ) TEMPLATE: some(, , ..., ) FUNCTION: stirling1 TEMPLATE: stirling1(, ) FUNCTION: stirling2 TEMPLATE: stirling2(, ) FUNCTION: subset TEMPLATE: subset(, ) FUNCTION: subsetp TEMPLATE: subsetp(, ) FUNCTION: symmdifference TEMPLATE: symmdifference(, ..., ) FUNCTION: tree_reduce TEMPLATE: tree_reduce(, ) TEMPLATE: tree_reduce(, , ) FUNCTION: union TEMPLATE: union(, ..., ) FUNCTION: xreduce TEMPLATE: xreduce(, ) TEMPLATE: xreduce(, , ) FUNCTION: bern TEMPLATE: bern() FUNCTION: bernpoly TEMPLATE: bernpoly(, ) FUNCTION: bfzeta TEMPLATE: bfzeta(, ) FUNCTION: bfhzeta TEMPLATE: bfhzeta(, , ) FUNCTION: binomial TEMPLATE: binomial(, ) FUNCTION: burn TEMPLATE: burn() FUNCTION: cf TEMPLATE: cf() FUNCTION: cfdisrep TEMPLATE: cfdisrep() FUNCTION: cfexpand TEMPLATE: cfexpand() OPTION : cflength FUNCTION: divsum TEMPLATE: divsum(, ) TEMPLATE: divsum() FUNCTION: euler TEMPLATE: euler() OPTION : %gamma FUNCTION: factorial TEMPLATE: factorial() OPTION : factorial_expand FUNCTION: fib TEMPLATE: fib() FUNCTION: fibtophi TEMPLATE: fibtophi() FUNCTION: ifactors TEMPLATE: ifactors() FUNCTION: inrt TEMPLATE: inrt(, ) FUNCTION: inv_mod TEMPLATE: inv_mod(, ) FUNCTION: jacobi TEMPLATE: jacobi(

, ) FUNCTION: lcm TEMPLATE: lcm(, ..., ) FUNCTION: minfactorial TEMPLATE: minfactorial() FUNCTION: next_prime TEMPLATE: next_prime() FUNCTION: partfrac TEMPLATE: partfrac(, ) FUNCTION: power_mod TEMPLATE: power_mod(, , ) FUNCTION: primep TEMPLATE: primep() OPTION : primep_number_of_tests FUNCTION: prev_prime TEMPLATE: prev_prime() FUNCTION: qunit TEMPLATE: qunit() FUNCTION: totient TEMPLATE: totient() OPTION : zerobern FUNCTION: zeta TEMPLATE: zeta() OPTION : zeta%pi FUNCTION: polartorect TEMPLATE: polartorect(, ) FUNCTION: recttopolar TEMPLATE: recttopolar(, ) FUNCTION: inverse_fft TEMPLATE: inverse_fft() FUNCTION: fft TEMPLATE: fft() OPTION : fortindent FUNCTION: fortran TEMPLATE: fortran() OPTION : fortspaces FUNCTION: horner TEMPLATE: horner(, ) TEMPLATE: horner() FUNCTION: find_root TEMPLATE: find_root(, , , ) TEMPLATE: find_root(, , ) FUNCTION: newton TEMPLATE: newton(, , , ) FUNCTION: equalp TEMPLATE: equalp(, ) FUNCTION: remfun TEMPLATE: remfun(, ) TEMPLATE: remfun(, , ) FUNCTION: funp TEMPLATE: funp(, ) TEMPLATE: funp(, , ) FUNCTION: absint TEMPLATE: absint(, , ) TEMPLATE: absint(, ) TEMPLATE: absint(, , , ) FUNCTION: fourier TEMPLATE: fourier(, ,

) FUNCTION: foursimp TEMPLATE: foursimp() OPTION : sinnpiflag OPTION : cosnpiflag FUNCTION: fourexpand TEMPLATE: fourexpand(, ,

, ) FUNCTION: fourcos TEMPLATE: fourcos(, ,

) FUNCTION: foursin TEMPLATE: foursin(, ,

) FUNCTION: totalfourier TEMPLATE: totalfourier(, ,

) FUNCTION: fourint TEMPLATE: fourint(, ) FUNCTION: fourintcos TEMPLATE: fourintcos(, ) FUNCTION: fourintsin TEMPLATE: fourintsin(, ) FUNCTION: read_matrix TEMPLATE: read_matrix() TEMPLATE: read_matrix(, ) TEMPLATE: read_matrix(, ) TEMPLATE: read_matrix(, , ) FUNCTION: read_array TEMPLATE: read_array(, ) TEMPLATE: read_array(, , ) FUNCTION: read_hashed_array TEMPLATE: read_hashed_array(, ) TEMPLATE: read_hashed_array(, , ) FUNCTION: read_nested_list TEMPLATE: read_nested_list() TEMPLATE: read_nested_list(, ) FUNCTION: read_list TEMPLATE: read_list() TEMPLATE: read_list(, ) TEMPLATE: read_list(, ) TEMPLATE: read_list(, , ) FUNCTION: write_data TEMPLATE: write_data(, ) TEMPLATE: write_data(, , ) FUNCTION: assume_external_byte_order TEMPLATE: assume_external_byte_order() FUNCTION: openr_binary TEMPLATE: openr_binary() FUNCTION: openw_binary TEMPLATE: openw_binary() FUNCTION: opena_binary TEMPLATE: opena_binary() FUNCTION: read_binary_matrix TEMPLATE: read_binary_matrix(, ) FUNCTION: read_binary_array TEMPLATE: read_binary_array(, ) FUNCTION: read_binary_list TEMPLATE: read_binary_list() TEMPLATE: read_binary_list(, ) FUNCTION: write_binary_data TEMPLATE: write_binary_data(, ) FUNCTION: abs TEMPLATE: abs() OPTION : additive OPTION : allbut OPTION : antisymmetric FUNCTION: cabs TEMPLATE: cabs() FUNCTION: ceiling TEMPLATE: ceiling() FUNCTION: charfun TEMPLATE: charfun(

) OPTION : commutative FUNCTION: compare TEMPLATE: compare(, ) FUNCTION: entier TEMPLATE: entier() FUNCTION: equal TEMPLATE: equal(, ) FUNCTION: floor TEMPLATE: floor() FUNCTION: notequal TEMPLATE: notequal(, ) FUNCTION: evenp TEMPLATE: evenp() FUNCTION: fix TEMPLATE: fix() FUNCTION: fullmap TEMPLATE: fullmap(, , <...>) FUNCTION: fullmapl TEMPLATE: fullmapl(, , <...>) FUNCTION: is TEMPLATE: is() FUNCTION: maybe TEMPLATE: maybe() FUNCTION: isqrt TEMPLATE: isqrt() FUNCTION: lmax TEMPLATE: lmax() FUNCTION: lmin TEMPLATE: lmin() FUNCTION: max TEMPLATE: max(, <...>, ) FUNCTION: min TEMPLATE: min(, <...>, ) FUNCTION: polymod TEMPLATE: polymod(

) TEMPLATE: polymod(

, ) FUNCTION: mod TEMPLATE: mod(, ) FUNCTION: oddp TEMPLATE: oddp() FUNCTION: psubst TEMPLATE: psubst(, ) TEMPLATE: psubst(, , ) FUNCTION: make_random_state TEMPLATE: make_random_state() TEMPLATE: make_random_state() FUNCTION: set_random_state TEMPLATE: set_random_state() FUNCTION: random TEMPLATE: random() FUNCTION: rationalize TEMPLATE: rationalize() FUNCTION: round TEMPLATE: round() FUNCTION: sign TEMPLATE: sign() FUNCTION: signum TEMPLATE: signum() FUNCTION: sort TEMPLATE: sort(,

) TEMPLATE: sort() FUNCTION: sqrt TEMPLATE: sqrt() OPTION : sqrtdispflag FUNCTION: sublis TEMPLATE: sublis(, ) FUNCTION: sublist TEMPLATE: sublist(,

) OPTION : sublis_apply_lambda FUNCTION: subst TEMPLATE: subst(, , ) FUNCTION: substinpart TEMPLATE: substinpart(, , , ) FUNCTION: substpart TEMPLATE: substpart(, , , ) FUNCTION: subvarp TEMPLATE: subvarp() FUNCTION: symbolp TEMPLATE: symbolp() FUNCTION: vectorpotential TEMPLATE: vectorpotential() FUNCTION: xthru TEMPLATE: xthru() FUNCTION: zeroequiv TEMPLATE: zeroequiv(, ) FUNCTION: opsubst TEMPLATE: opsubst(,,) TEMPLATE: opsubst(=,) TEMPLATE: opsubst([=,=,=],) FUNCTION: assoc_legendre_p TEMPLATE: assoc_legendre_p(, , ) FUNCTION: assoc_legendre_q TEMPLATE: assoc_legendre_q(, , ) FUNCTION: chebyshev_t TEMPLATE: chebyshev_t(, ) FUNCTION: chebyshev_u TEMPLATE: chebyshev_u(, ) FUNCTION: gen_laguerre TEMPLATE: gen_laguerre(, , ) FUNCTION: hermite TEMPLATE: hermite(, ) FUNCTION: intervalp TEMPLATE: intervalp() FUNCTION: jacobi_p TEMPLATE: jacobi_p(, , , ) FUNCTION: laguerre TEMPLATE: laguerre(, ) FUNCTION: legendre_p TEMPLATE: legendre_p(, ) FUNCTION: legendre_q TEMPLATE: legendre_q(, ) FUNCTION: orthopoly_recur TEMPLATE: orthopoly_recur(, ) OPTION : orthopoly_returns_intervals FUNCTION: orthopoly_weight TEMPLATE: orthopoly_weight(, ) FUNCTION: pochhammer TEMPLATE: pochhammer(, ) OPTION : pochhammer_max_index FUNCTION: spherical_bessel_j TEMPLATE: spherical_bessel_j(, ) FUNCTION: spherical_bessel_y TEMPLATE: spherical_bessel_y(, ) FUNCTION: spherical_hankel1 TEMPLATE: spherical_hankel1(, ) FUNCTION: spherical_hankel2 TEMPLATE: spherical_hankel2(, ) FUNCTION: spherical_harmonic TEMPLATE: spherical_harmonic(, , , ) FUNCTION: unit_step TEMPLATE: unit_step() FUNCTION: ultraspherical TEMPLATE: ultraspherical(, , ) FUNCTION: plotdf TEMPLATE: plotdf(, ) TEMPLATE: plotdf(, [,], ) TEMPLATE: plotdf([,], ) TEMPLATE: plotdf([,], [,], ) FUNCTION: contour_plot TEMPLATE: contour_plot(, , , ) FUNCTION: get_plot_option TEMPLATE: get_plot_option(, ) FUNCTION: make_transform TEMPLATE: make_transform([, , ], , , ) FUNCTION: plot2d TEMPLATE: plot2d(, , <[options]>) TEMPLATE: plot2d([, ], ) TEMPLATE: plot2d([, ], , <[options]>) FUNCTION: plot3d TEMPLATE: plot3d(, , , <[options]>) TEMPLATE: plot3d([, <...>, ], , , <[options]>) OPTION : plot_options FUNCTION: set_plot_option TEMPLATE: set_plot_option(

) OPTION : factorflag FUNCTION: factorout TEMPLATE: factorout(, , , <...>) FUNCTION: factorsum TEMPLATE: factorsum() FUNCTION: fasttimes TEMPLATE: fasttimes(, ) FUNCTION: fullratsimp TEMPLATE: fullratsimp() FUNCTION: fullratsubst TEMPLATE: fullratsubst(, , ) FUNCTION: gcd TEMPLATE: gcd(, , , <...>) FUNCTION: gcdex TEMPLATE: gcdex(, ) TEMPLATE: gcdex(, , ) FUNCTION: gcfactor TEMPLATE: gcfactor() FUNCTION: gfactor TEMPLATE: gfactor() FUNCTION: gfactorsum TEMPLATE: gfactorsum() FUNCTION: hipow TEMPLATE: hipow(, ) OPTION : intfaclim OPTION : keepfloat FUNCTION: lratsubst TEMPLATE: lratsubst(, ) OPTION : modulus FUNCTION: num TEMPLATE: num() FUNCTION: polydecomp TEMPLATE: polydecomp(

, ) FUNCTION: quotient TEMPLATE: quotient(, ) TEMPLATE: quotient(, , , <...>, ) FUNCTION: rat TEMPLATE: rat() TEMPLATE: rat(, , <...>, ) OPTION : ratalgdenom FUNCTION: ratcoef TEMPLATE: ratcoef(, , ) TEMPLATE: ratcoef(, ) FUNCTION: ratdenom TEMPLATE: ratdenom() OPTION : ratdenomdivide FUNCTION: ratdiff TEMPLATE: ratdiff(, ) FUNCTION: ratdisrep TEMPLATE: ratdisrep() OPTION : ratepsilon FUNCTION: ratexpand TEMPLATE: ratexpand() OPTION : ratfac FUNCTION: ratnumer TEMPLATE: ratnumer() FUNCTION: ratnump TEMPLATE: ratnump() FUNCTION: ratp TEMPLATE: ratp() OPTION : ratprint FUNCTION: ratsimp TEMPLATE: ratsimp() TEMPLATE: ratsimp(, , <...>, ) OPTION : ratsimpexpons FUNCTION: ratsubst TEMPLATE: ratsubst(, , ) FUNCTION: ratvars TEMPLATE: ratvars(, <...>, ) TEMPLATE: ratvars() FUNCTION: ratweight TEMPLATE: ratweight(, , <...>, , ) TEMPLATE: ratweight() OPTION : ratweights OPTION : ratwtlvl FUNCTION: remainder TEMPLATE: remainder(, ) TEMPLATE: remainder(, , , <...>, ) FUNCTION: resultant TEMPLATE: resultant(, , ) OPTION : savefactors FUNCTION: sqfr TEMPLATE: sqfr() FUNCTION: tellrat TEMPLATE: tellrat(, <...>, ) TEMPLATE: tellrat() FUNCTION: totaldisrep TEMPLATE: totaldisrep() FUNCTION: untellrat TEMPLATE: untellrat(, <...>, ) FUNCTION: backtrace TEMPLATE: backtrace() TEMPLATE: backtrace() FUNCTION: errcatch TEMPLATE: errcatch(, <...>, ) FUNCTION: error TEMPLATE: error(, <...>, ) FUNCTION: errormsg TEMPLATE: errormsg() OPTION : errormsg FUNCTION: go TEMPLATE: go() FUNCTION: map TEMPLATE: map(, , <...>, ) FUNCTION: mapatom TEMPLATE: mapatom() OPTION : maperror OPTION : mapprint FUNCTION: maplist TEMPLATE: maplist(, , <...>, ) OPTION : prederror FUNCTION: return TEMPLATE: return() FUNCTION: scanmap TEMPLATE: scanmap(, ) TEMPLATE: scanmap(, , bottomup) FUNCTION: throw TEMPLATE: throw() FUNCTION: outermap TEMPLATE: outermap(, , <...>, ) FUNCTION: romberg TEMPLATE: romberg(, , , ) TEMPLATE: romberg(, , ) OPTION : rombergabs OPTION : rombergit OPTION : rombergmin OPTION : rombergtol FUNCTION: apply1 TEMPLATE: apply1(, , <...>, ) FUNCTION: apply2 TEMPLATE: apply2(, , <...>, ) FUNCTION: applyb1 TEMPLATE: applyb1(, , <...>, ) OPTION : current_let_rule_package OPTION : default_let_rule_package FUNCTION: defmatch TEMPLATE: defmatch(, , , <...>, ) TEMPLATE: defmatch(, ) FUNCTION: defrule TEMPLATE: defrule(, , ) FUNCTION: disprule TEMPLATE: disprule(, <...>, ) TEMPLATE: disprule(all) FUNCTION: let TEMPLATE: let(, , , , <...>, ) TEMPLATE: let([, , , , <...>, ], ) OPTION : letrat FUNCTION: letrules TEMPLATE: letrules() TEMPLATE: letrules() FUNCTION: letsimp TEMPLATE: letsimp() TEMPLATE: letsimp(, ) TEMPLATE: letsimp(, , <...>, ) OPTION : let_rule_packages FUNCTION: matchdeclare TEMPLATE: matchdeclare(, , <...>, , ) FUNCTION: matchfix TEMPLATE: matchfix(, ) TEMPLATE: matchfix(, , , ) FUNCTION: remlet TEMPLATE: remlet(, ) TEMPLATE: remlet() TEMPLATE: remlet(all) TEMPLATE: remlet(all, ) FUNCTION: remrule TEMPLATE: remrule(, ) TEMPLATE: remrule(, all) FUNCTION: tellsimp TEMPLATE: tellsimp(, ) FUNCTION: tellsimpafter TEMPLATE: tellsimpafter(, ) FUNCTION: clear_rules TEMPLATE: clear_rules() OPTION : feature FUNCTION: featurep TEMPLATE: featurep(, ) OPTION : maxima_tempdir OPTION : maxima_userdir FUNCTION: room TEMPLATE: room() TEMPLATE: room(true) TEMPLATE: room(false) FUNCTION: sstatus TEMPLATE: sstatus(, ) FUNCTION: status TEMPLATE: status() TEMPLATE: status(, ) FUNCTION: time TEMPLATE: time(<%o1>, <%o2>, <%o3>, <...>) FUNCTION: timedate TEMPLATE: timedate() TEMPLATE: timedate() FUNCTION: absolute_real_time TEMPLATE: absolute_real_time() FUNCTION: elapsed_real_time TEMPLATE: elapsed_real_time() FUNCTION: elapsed_run_time TEMPLATE: elapsed_run_time() OPTION : cauchysum FUNCTION: deftaylor TEMPLATE: deftaylor((), , <...>, (), ) OPTION : maxtayorder FUNCTION: niceindices TEMPLATE: niceindices() OPTION : niceindicespref FUNCTION: nusum TEMPLATE: nusum(, , , ) FUNCTION: pade TEMPLATE: pade(, , ) OPTION : powerdisp FUNCTION: powerseries TEMPLATE: powerseries(, , ) OPTION : psexpand FUNCTION: revert TEMPLATE: revert(, ) TEMPLATE: revert2(, , ) FUNCTION: taylor TEMPLATE: taylor(, , , ) TEMPLATE: taylor(, [, , <...>], , ) TEMPLATE: taylor(, [, , , 'asymp]) TEMPLATE: taylor(, [, , <...>], [, , <...>], [, , <...>]) TEMPLATE: taylor(, [, , ], [, , ], <...>) OPTION : taylordepth FUNCTION: taylorinfo TEMPLATE: taylorinfo() FUNCTION: taylorp TEMPLATE: taylorp() OPTION : taylor_logexpand OPTION : taylor_order_coefficients FUNCTION: taylor_simplifier TEMPLATE: taylor_simplifier() OPTION : taylor_truncate_polynomials FUNCTION: taytorat TEMPLATE: taytorat() FUNCTION: trunc TEMPLATE: trunc() FUNCTION: unsum TEMPLATE: unsum(, ) OPTION : verbose FUNCTION: intopois TEMPLATE: intopois() FUNCTION: outofpois TEMPLATE: outofpois() FUNCTION: poisdiff TEMPLATE: poisdiff(, ) FUNCTION: poisexpt TEMPLATE: poisexpt(, ) FUNCTION: poisint TEMPLATE: poisint(, ) OPTION : poislim FUNCTION: poismap TEMPLATE: poismap(, , ) FUNCTION: poisplus TEMPLATE: poisplus(, ) FUNCTION: poissimp TEMPLATE: poissimp() OPTION : poisson FUNCTION: poissubst TEMPLATE: poissubst(, , ) FUNCTION: poistimes TEMPLATE: poistimes(, ) FUNCTION: poistrim TEMPLATE: poistrim() FUNCTION: printpois TEMPLATE: printpois() OPTION : epsilon_lp FUNCTION: linear_program TEMPLATE: linear_program(, , ) FUNCTION: maximize_lp TEMPLATE: maximize_lp(, , []) FUNCTION: minimize_lp TEMPLATE: minimize_lp(, , []) OPTION : nonegative_lp OPTION : askexp FUNCTION: askinteger TEMPLATE: askinteger(, integer) TEMPLATE: askinteger() TEMPLATE: askinteger(, even) TEMPLATE: askinteger(, odd) FUNCTION: asksign TEMPLATE: asksign() FUNCTION: demoivre TEMPLATE: demoivre() OPTION : distribute_over OPTION : domain FUNCTION: expand TEMPLATE: expand() TEMPLATE: expand(,

, ) FUNCTION: expandwrt TEMPLATE: expandwrt(, , <...>, ) OPTION : expandwrt_denom FUNCTION: expandwrt_factored TEMPLATE: expandwrt_factored(, , <...>, ) OPTION : expon FUNCTION: exponentialize TEMPLATE: exponentialize() OPTION : expop OPTION : factlim FUNCTION: intosum TEMPLATE: intosum() OPTION : lassociative OPTION : linear OPTION : mainvar OPTION : maxapplydepth OPTION : maxapplyheight OPTION : maxnegex OPTION : maxposex OPTION : multiplicative OPTION : negdistrib OPTION : negsumdispflag OPTION : noeval OPTION : noun OPTION : noundisp OPTION : nouns OPTION : numer FUNCTION: numerval TEMPLATE: numerval(, , <...>, , ) OPTION : opproperties OPTION : opsubst OPTION : outative OPTION : posfun OPTION : pred FUNCTION: radcan TEMPLATE: radcan() OPTION : radexpand OPTION : radsubstflag OPTION : rassociative FUNCTION: scsimp TEMPLATE: scsimp(, , <...>, ) OPTION : simp OPTION : simpsum FUNCTION: sumcontract TEMPLATE: sumcontract() OPTION : sumexpand OPTION : sumsplitfact OPTION : symmetric FUNCTION: unknown TEMPLATE: unknown() FUNCTION: facsum TEMPLATE: facsum(, , <...>, ) OPTION : nextlayerfactor OPTION : facsum_combine FUNCTION: factorfacsum TEMPLATE: factorfacsum(, , <...>, ) FUNCTION: collectterms TEMPLATE: collectterms(, , <...>, ) FUNCTION: rempart TEMPLATE: rempart(, ) FUNCTION: wronskian TEMPLATE: wronskian([, <...>, ], ) FUNCTION: tracematrix TEMPLATE: tracematrix() FUNCTION: rational TEMPLATE: rational() FUNCTION: logand TEMPLATE: logand(,) FUNCTION: logor TEMPLATE: logor(,) FUNCTION: logxor TEMPLATE: logxor(,) FUNCTION: nonzeroandfreeof TEMPLATE: nonzeroandfreeof(, ) FUNCTION: linear TEMPLATE: linear(, ) FUNCTION: gcdivide TEMPLATE: gcdivide(

, ) FUNCTION: arithmetic TEMPLATE: arithmetic(, , ) FUNCTION: geometric TEMPLATE: geometric(, , ) FUNCTION: harmonic TEMPLATE: harmonic(, , , ) FUNCTION: arithsum TEMPLATE: arithsum(, , ) FUNCTION: geosum TEMPLATE: geosum(, , ) FUNCTION: gaussprob TEMPLATE: gaussprob() FUNCTION: gd TEMPLATE: gd() FUNCTION: agd TEMPLATE: agd() FUNCTION: vers TEMPLATE: vers() FUNCTION: covers TEMPLATE: covers() FUNCTION: exsec TEMPLATE: exsec() FUNCTION: hav TEMPLATE: hav() FUNCTION: combination TEMPLATE: combination(, ) FUNCTION: permutation TEMPLATE: permutation(, ) FUNCTION: reduce_consts TEMPLATE: reduce_consts() FUNCTION: gcfac TEMPLATE: gcfac() FUNCTION: sqrtdenest TEMPLATE: sqrtdenest() FUNCTION: reduce_order TEMPLATE: reduce_order(, , ) OPTION : simplify_products FUNCTION: simplify_sum TEMPLATE: simplify_sum() FUNCTION: solve_rec TEMPLATE: solve_rec(, , []) FUNCTION: solve_rec_rat TEMPLATE: solve_rec_rat(, , []) OPTION : product_use_gamma FUNCTION: summand_to_rec TEMPLATE: summand_to_rec(, , ) TEMPLATE: summand_to_rec(, [, , ], ) FUNCTION: bessel_j TEMPLATE: bessel_j(, ) FUNCTION: bessel_y TEMPLATE: bessel_y(, ) FUNCTION: bessel_i TEMPLATE: bessel_i(, ) FUNCTION: bessel_k TEMPLATE: bessel_k(, ) FUNCTION: hankel_1 TEMPLATE: hankel_1(, ) FUNCTION: hankel_2 TEMPLATE: hankel_2(, ) OPTION : besselexpand FUNCTION: scaled_bessel_i TEMPLATE: scaled_bessel_i(, ) FUNCTION: scaled_bessel_i0 TEMPLATE: scaled_bessel_i0() FUNCTION: scaled_bessel_i1 TEMPLATE: scaled_bessel_i1() FUNCTION: %s TEMPLATE: %s[,] () FUNCTION: airy_ai TEMPLATE: airy_ai() FUNCTION: airy_dai TEMPLATE: airy_dai() FUNCTION: airy_bi TEMPLATE: airy_bi() FUNCTION: airy_dbi TEMPLATE: airy_dbi() FUNCTION: gamma TEMPLATE: gamma() FUNCTION: log_gamma TEMPLATE: log_gamma() FUNCTION: gamma_incomplete TEMPLATE: gamma_incomplete(, ) FUNCTION: gamma_incomplete_regularized TEMPLATE: gamma_incomplete_regularized(,) FUNCTION: gamma_incomplete_generalized TEMPLATE: gamma_incomplete_generalized(,, ) OPTION : gammalim FUNCTION: makegamma TEMPLATE: makegamma() FUNCTION: beta TEMPLATE: beta(, ) FUNCTION: beta_incomplete TEMPLATE: beta_incomplete(, , ) FUNCTION: beta_incomplete_regularized TEMPLATE: beta_incomplete_regularized(, , ) FUNCTION: beta_incomplete_generalized TEMPLATE: beta_incomplete_generalized(, , , ) OPTION : beta_expand OPTION : beta_args_sum_to_integer FUNCTION: psi TEMPLATE: psi[]() OPTION : maxpsiposint OPTION : maxpsinegint OPTION : maxpsifracnum OPTION : maxpsifracdenom FUNCTION: makefact TEMPLATE: makefact() FUNCTION: numfactor TEMPLATE: numfactor() FUNCTION: expintegral_e1 TEMPLATE: expintegral_e1() FUNCTION: expintegral_ei TEMPLATE: expintegral_ei() FUNCTION: expintegral_li TEMPLATE: expintegral_li() FUNCTION: expintegral_e TEMPLATE: expintegral_e(,) FUNCTION: expintegral_si TEMPLATE: expintegral_si() FUNCTION: expintegral_ci TEMPLATE: expintegral_ci() FUNCTION: expintegral_shi TEMPLATE: expintegral_shi() FUNCTION: expintegral_chi TEMPLATE: expintegral_chi() OPTION : expintrep OPTION : expintexpand FUNCTION: erf TEMPLATE: erf() FUNCTION: erfc TEMPLATE: erfc() FUNCTION: erfi TEMPLATE: erfi() FUNCTION: erf_generalized TEMPLATE: erf_generalized(,) FUNCTION: fresnel_c TEMPLATE: fresnel_c() FUNCTION: fresnel_s TEMPLATE: fresnel_s() OPTION : erf_representation OPTION : hypergeometric_representation FUNCTION: struve_h TEMPLATE: struve_h(, ) FUNCTION: struve_l TEMPLATE: struve_l(, ) FUNCTION: %m TEMPLATE: %m[,] () FUNCTION: %w TEMPLATE: %w[,] () FUNCTION: %f TEMPLATE: %f[

,] (<[a],[b],z>) FUNCTION: hypergeometric TEMPLATE: hypergeometric([, <...>, ],[, <...> ,], x) FUNCTION: parabolic_cylinder_d TEMPLATE: parabolic_cylinder_d(, ) FUNCTION: specint TEMPLATE: specint(exp(- s*) * , ) FUNCTION: hgfred TEMPLATE: hgfred(, , ) FUNCTION: lambert_w TEMPLATE: lambert_w() FUNCTION: nzeta TEMPLATE: nzeta() FUNCTION: nzetar TEMPLATE: nzetar() FUNCTION: nzetai TEMPLATE: nzetai() FUNCTION: inference_result TEMPLATE: inference_result(, <values>, <numbers>) FUNCTION: inferencep TEMPLATE: inferencep(<obj>) FUNCTION: items_inference TEMPLATE: items_inference(<obj>) FUNCTION: take_inference TEMPLATE: take_inference(<n>, <obj>) TEMPLATE: take_inference(<name>, <obj>) TEMPLATE: take_inference(<list>, <obj>) OPTION : stats_numer FUNCTION: test_mean TEMPLATE: test_mean(<x>) TEMPLATE: test_mean(<x>, <options>, <...>) FUNCTION: test_means_difference TEMPLATE: test_means_difference(<x1>, <x2>) TEMPLATE: test_means_difference(<x1>, <x2>, <options>, <...>) FUNCTION: test_variance TEMPLATE: test_variance(<x>) TEMPLATE: test_variance(<x>, <options>, <...>) FUNCTION: test_variance_ratio TEMPLATE: test_variance_ratio(<x1>, <x2>) TEMPLATE: test_variance_ratio(<x1>, <x2>, <options>, <...>) FUNCTION: test_proportion TEMPLATE: test_proportion(<x>, <n>) TEMPLATE: test_proportion(<x>, <n>, <options>, <...>) FUNCTION: test_proportions_difference TEMPLATE: test_proportions_difference(<x1>, <n1>, <x2>, <n2>) TEMPLATE: test_proportions_difference(<x1>, <n1>, <x2>, <n2>, <options>, <...>) FUNCTION: test_sign TEMPLATE: test_sign(<x>) TEMPLATE: test_sign(<x>, <options>, <...>) FUNCTION: test_signed_rank TEMPLATE: test_signed_rank(<x>) TEMPLATE: test_signed_rank(<x>, <options>, <...>) FUNCTION: test_rank_sum TEMPLATE: test_rank_sum(<x1>, <x2>) TEMPLATE: test_rank_sum(<x1>, <x2>, <option>) FUNCTION: test_normality TEMPLATE: test_normality(<x>) FUNCTION: simple_linear_regression TEMPLATE: simple_linear_regression(<x>) TEMPLATE: simple_linear_regression(<x>, <option>) FUNCTION: pdf_signed_rank TEMPLATE: pdf_signed_rank(<x>, <n>) FUNCTION: cdf_signed_rank TEMPLATE: cdf_signed_rank(<x>, <n>) FUNCTION: pdf_rank_sum TEMPLATE: pdf_rank_sum(<x>, <n>, <m>) FUNCTION: cdf_rank_sum TEMPLATE: cdf_rank_sum(<x>, <n>, <m>) FUNCTION: stirling TEMPLATE: stirling(<z>,<n>) TEMPLATE: stirling(<z>,<n>,<pred>) FUNCTION: close TEMPLATE: close(<stream>) FUNCTION: flength TEMPLATE: flength(<stream>) FUNCTION: fposition TEMPLATE: fposition(<stream>) TEMPLATE: fposition(<stream>, <pos>) FUNCTION: freshline TEMPLATE: freshline() TEMPLATE: freshline(<stream>) FUNCTION: newline TEMPLATE: newline() TEMPLATE: newline(<stream>) FUNCTION: opena TEMPLATE: opena(<file>) FUNCTION: openr TEMPLATE: openr(<file>) FUNCTION: openw TEMPLATE: openw(<file>) FUNCTION: printf TEMPLATE: printf(<dest>, <string>) TEMPLATE: printf(<dest>, <string>, <expr_1>, <...>, <expr_n>) FUNCTION: readline TEMPLATE: readline(<stream>) FUNCTION: sprint TEMPLATE: sprint(<expr_1>, <...>, <expr_n>) FUNCTION: alphacharp TEMPLATE: alphacharp(<char>) FUNCTION: alphanumericp TEMPLATE: alphanumericp(<char>) FUNCTION: ascii TEMPLATE: ascii(<int>) FUNCTION: cequal TEMPLATE: cequal(<char_1>, <char_2>) FUNCTION: cequalignore TEMPLATE: cequalignore(<char_1>, <char_2>) FUNCTION: cgreaterp TEMPLATE: cgreaterp(<char_1>, <char_2>) FUNCTION: cgreaterpignore TEMPLATE: cgreaterpignore(<char_1>, <char_2>) FUNCTION: charp TEMPLATE: charp(<obj>) FUNCTION: cint TEMPLATE: cint(<char>) FUNCTION: clessp TEMPLATE: clessp(<char_1>, <char_2>) FUNCTION: clesspignore TEMPLATE: clesspignore(<char_1>, <char_2>) FUNCTION: constituent TEMPLATE: constituent(<char>) FUNCTION: cunlisp TEMPLATE: cunlisp(<lisp_char>) FUNCTION: digitcharp TEMPLATE: digitcharp(<char>) FUNCTION: lcharp TEMPLATE: lcharp(<obj>) FUNCTION: lowercasep TEMPLATE: lowercasep(<char>) OPTION : newline OPTION : space OPTION : tab FUNCTION: uppercasep TEMPLATE: uppercasep(<char>) FUNCTION: stringp TEMPLATE: stringp(<obj>) FUNCTION: charat TEMPLATE: charat(<string>, <n>) FUNCTION: charlist TEMPLATE: charlist(<string>) FUNCTION: eval_string TEMPLATE: eval_string(<str>) FUNCTION: parse_string TEMPLATE: parse_string(<str>) FUNCTION: scopy TEMPLATE: scopy(<string>) FUNCTION: sdowncase TEMPLATE: sdowncase(<string>) TEMPLATE: sdowncase(<string>, <start>) TEMPLATE: sdowncase(<string>, <start>, <end>) FUNCTION: sequal TEMPLATE: sequal(<string_1>, <string_2>) FUNCTION: sequalignore TEMPLATE: sequalignore(<string_1>, <string_2>) FUNCTION: sexplode TEMPLATE: sexplode(<string>) FUNCTION: simplode TEMPLATE: simplode(<list>) TEMPLATE: simplode(<list>, <delim>) FUNCTION: sinsert TEMPLATE: sinsert(<seq>, <string>, <pos>) FUNCTION: sinvertcase TEMPLATE: sinvertcase(<string>) TEMPLATE: sinvertcase(<string>, <start>) TEMPLATE: sinvertcase(<string>, <start>, <end>) FUNCTION: slength TEMPLATE: slength(<string>) FUNCTION: smake TEMPLATE: smake(<num>, <char>) FUNCTION: smismatch TEMPLATE: smismatch(<string_1>, <string_2>) TEMPLATE: smismatch(<string_1>, <string_2>, <test>) FUNCTION: split TEMPLATE: split(<string>) TEMPLATE: split(<string>, <delim>) TEMPLATE: split(<string>, <delim>, <multiple>) FUNCTION: sposition TEMPLATE: sposition(<char>, <string>) FUNCTION: sremove TEMPLATE: sremove(<seq>, <string>) TEMPLATE: sremove(<seq>, <string>, <test>) TEMPLATE: sremove(<seq>, <string>, <test>, <start>) TEMPLATE: sremove(<seq>, <string>, <test>, <start>, <end>) FUNCTION: sremovefirst TEMPLATE: sremovefirst(<seq>, <string>) TEMPLATE: sremovefirst(<seq>, <string>, <test>) TEMPLATE: sremovefirst(<seq>, <string>, <test>, <start>) TEMPLATE: sremovefirst(<seq>, <string>, <test>, <start>, <end>) FUNCTION: sreverse TEMPLATE: sreverse(<string>) FUNCTION: ssearch TEMPLATE: ssearch(<seq>, <string>) TEMPLATE: ssearch(<seq>, <string>, <test>) TEMPLATE: ssearch(<seq>, <string>, <test>, <start>) TEMPLATE: ssearch(<seq>, <string>, <test>, <start>, <end>) FUNCTION: ssort TEMPLATE: ssort(<string>) TEMPLATE: ssort(<string>, <test>) FUNCTION: ssubst TEMPLATE: ssubst(<new>, <old>, <string>) TEMPLATE: ssubst(<new>, <old>, <string>, <test>) TEMPLATE: ssubst(<new>, <old>, <string>, <test>, <start>) TEMPLATE: ssubst(<new>, <old>, <string>, <test>, <start>, <end>) FUNCTION: ssubstfirst TEMPLATE: ssubstfirst(<new>, <old>, <string>) TEMPLATE: ssubstfirst(<new>, <old>, <string>, <test>) TEMPLATE: ssubstfirst(<new>, <old>, <string>, <test>, <start>) TEMPLATE: ssubstfirst(<new>, <old>, <string>, <test>, <start>, <end>) FUNCTION: strim TEMPLATE: strim(<seq>,<string>) FUNCTION: striml TEMPLATE: striml(<seq>, <string>) FUNCTION: strimr TEMPLATE: strimr(<seq>, <string>) FUNCTION: substring TEMPLATE: substring(<string>, <start>) TEMPLATE: substring(<string>, <start>, <end>) FUNCTION: supcase TEMPLATE: supcase(<string>) TEMPLATE: supcase(<string>, <start>) TEMPLATE: supcase(<string>, <start>, <end>) FUNCTION: tokens TEMPLATE: tokens(<string>) TEMPLATE: tokens(<string>, <test>) FUNCTION: comp2pui TEMPLATE: comp2pui(<n>, <L>) FUNCTION: ele2pui TEMPLATE: ele2pui(<m>, <L>) FUNCTION: ele2comp TEMPLATE: ele2comp(<m>, <L>) FUNCTION: elem TEMPLATE: elem(<ele>, <sym>, <lvar>) FUNCTION: mon2schur TEMPLATE: mon2schur(<L>) FUNCTION: multi_elem TEMPLATE: multi_elem(<l_elem>, <multi_pc>, <l_var>) FUNCTION: pui TEMPLATE: pui(<L>, <sym>, <lvar>) FUNCTION: pui2comp TEMPLATE: pui2comp(<n>, <lpui>) FUNCTION: pui2ele TEMPLATE: pui2ele(<n>, <lpui>) FUNCTION: puireduc TEMPLATE: puireduc(<n>, <lpui>) FUNCTION: schur2comp TEMPLATE: schur2comp(<P>, <l_var>) FUNCTION: cont2part TEMPLATE: cont2part(<pc>, <lvar>) FUNCTION: contract TEMPLATE: contract(<psym>, <lvar>) FUNCTION: explose TEMPLATE: explose(<pc>, <lvar>) FUNCTION: part2cont TEMPLATE: part2cont(<ppart>, <lvar>) FUNCTION: partpol TEMPLATE: partpol(<psym>, <lvar>) FUNCTION: tcontract TEMPLATE: tcontract(<pol>, <lvar>) FUNCTION: tpartpol TEMPLATE: tpartpol(<pol>, <lvar>) FUNCTION: direct TEMPLATE: direct([<p_1>, <...>, <p_n>], <y>, <f>, [<lvar_1>, <...>, <lvar_n>]) FUNCTION: multi_orbit TEMPLATE: multi_orbit(<P>, [<lvar_1>, <lvar_2>,<...>, <lvar_p>]) FUNCTION: multsym TEMPLATE: multsym(<ppart_1>, <ppart_2>, <n>) FUNCTION: orbit TEMPLATE: orbit(<P>, <lvar>) FUNCTION: pui_direct TEMPLATE: pui_direct(<orbite>, [<lvar_1>, <...>, <lvar_n>], [<d_1>, <d_2>, <...>, <d_n>]) FUNCTION: kostka TEMPLATE: kostka(<part_1>, <part_2>) FUNCTION: lgtreillis TEMPLATE: lgtreillis(<n>, <m>) FUNCTION: ltreillis TEMPLATE: ltreillis(<n>, <m>) FUNCTION: treillis TEMPLATE: treillis(<n>) FUNCTION: treinat TEMPLATE: treinat(<part>) FUNCTION: ele2polynome TEMPLATE: ele2polynome(<L>, <z>) FUNCTION: polynome2ele TEMPLATE: polynome2ele(<P>, <x>) FUNCTION: prodrac TEMPLATE: prodrac(<L>, <k>) FUNCTION: pui2polynome TEMPLATE: pui2polynome(<x>, <lpui>) FUNCTION: somrac TEMPLATE: somrac(<L>, <k>) FUNCTION: resolvante TEMPLATE: resolvante(<P>, <x>, <f>, [<x_1>,<...>, <x_d>]) FUNCTION: resolvante_alternee1 TEMPLATE: resolvante_alternee1(<P>, <x>) FUNCTION: resolvante_bipartite TEMPLATE: resolvante_bipartite(<P>, <x>) FUNCTION: resolvante_diedrale TEMPLATE: resolvante_diedrale(<P>, <x>) FUNCTION: resolvante_klein TEMPLATE: resolvante_klein(<P>, <x>) FUNCTION: resolvante_klein3 TEMPLATE: resolvante_klein3(<P>, <x>) FUNCTION: resolvante_produit_sym TEMPLATE: resolvante_produit_sym(<P>, <x>) FUNCTION: resolvante_unitaire TEMPLATE: resolvante_unitaire(<P>, <Q>, <x>) FUNCTION: resolvante_vierer TEMPLATE: resolvante_vierer(<P>, <x>) FUNCTION: multinomial TEMPLATE: multinomial(<r>, <part>) FUNCTION: permut TEMPLATE: permut(<L>) OPTION : %piargs OPTION : %iargs FUNCTION: acos TEMPLATE: acos(<x>) FUNCTION: acosh TEMPLATE: acosh(<x>) FUNCTION: acot TEMPLATE: acot(<x>) FUNCTION: acoth TEMPLATE: acoth(<x>) FUNCTION: acsc TEMPLATE: acsc(<x>) FUNCTION: acsch TEMPLATE: acsch(<x>) FUNCTION: asec TEMPLATE: asec(<x>) FUNCTION: asech TEMPLATE: asech(<x>) FUNCTION: asin TEMPLATE: asin(<x>) FUNCTION: asinh TEMPLATE: asinh(<x>) FUNCTION: atan TEMPLATE: atan(<x>) FUNCTION: atan2 TEMPLATE: atan2(<y>, <x>) FUNCTION: atanh TEMPLATE: atanh(<x>) OPTION : atrig1 FUNCTION: cos TEMPLATE: cos(<x>) FUNCTION: cosh TEMPLATE: cosh(<x>) FUNCTION: cot TEMPLATE: cot(<x>) FUNCTION: coth TEMPLATE: coth(<x>) FUNCTION: csc TEMPLATE: csc(<x>) FUNCTION: csch TEMPLATE: csch(<x>) OPTION : halfangles OPTION : ntrig FUNCTION: sec TEMPLATE: sec(<x>) FUNCTION: sech TEMPLATE: sech(<x>) FUNCTION: sin TEMPLATE: sin(<x>) FUNCTION: sinh TEMPLATE: sinh(<x>) FUNCTION: tan TEMPLATE: tan(<x>) FUNCTION: tanh TEMPLATE: tanh(<x>) FUNCTION: trigexpand TEMPLATE: trigexpand(<expr>) OPTION : trigexpandplus OPTION : trigexpandtimes OPTION : triginverses FUNCTION: trigreduce TEMPLATE: trigreduce(<expr>, <x>) TEMPLATE: trigreduce(<expr>) OPTION : trigsign FUNCTION: trigsimp TEMPLATE: trigsimp(<expr>) FUNCTION: trigrat TEMPLATE: trigrat(<expr>) FUNCTION: setunits TEMPLATE: setunits(<list>) FUNCTION: uforget TEMPLATE: uforget(<list>) FUNCTION: convert TEMPLATE: convert(<expr>, <list>) OPTION : usersetunits FUNCTION: metricexpandall TEMPLATE: metricexpandall(<x>) OPTION : %unitexpand FUNCTION: AntiDifference TEMPLATE: AntiDifference(<F_k>, <k>) FUNCTION: Gosper TEMPLATE: Gosper(<F_k>, <k>) FUNCTION: GosperSum TEMPLATE: GosperSum(<F_k>, <k>, <a>, <b>) FUNCTION: parGosper TEMPLATE: parGosper(<F_{n,k}>, <k>, <n>, <d>) FUNCTION: parGosper TEMPLATE: parGosper(<F_(n,k)>, <k>, <n>, <d>) FUNCTION: Zeilberger TEMPLATE: Zeilberger(<F_{n,k}>, <k>, <n>) FUNCTION: Zeilberger TEMPLATE: Zeilberger(<F_(n,k)>, <k>, <n>) OPTION : MAX_ORD OPTION : simplified_output OPTION : linear_solver OPTION : warnings OPTION : Gosper_in_Zeilberger OPTION : trivial_solutions OPTION : mod_test OPTION : modular_linear_solver OPTION : ev_point OPTION : mod_big_prime OPTION : mod_threshold FUNCTION: days360 TEMPLATE: days360(<year1>,<month1>,<day1>,<year2>,<month2>,<day2>) FUNCTION: fv TEMPLATE: fv(<rate>,<PV>,<num>) FUNCTION: pv TEMPLATE: pv(<rate>,<FV>,<num>) FUNCTION: graph_flow TEMPLATE: graph_flow(<val>) FUNCTION: annuity_pv TEMPLATE: annuity_pv(<rate>,<PV>,<num>) FUNCTION: annuity_fv TEMPLATE: annuity_fv(<rate>,<FV>,<num>) FUNCTION: geo_annuity_pv TEMPLATE: geo_annuity_pv(<rate>,<growing_rate>,<PV>,<num>) FUNCTION: geo_annuity_fv TEMPLATE: geo_annuity_fv(<rate>,<growing_rate>,<FV>,<num>) FUNCTION: amortization TEMPLATE: amortization(<rate>,<ammount>,<num>) FUNCTION: arit_amortization TEMPLATE: arit_amortization(<rate>,<increment>,<ammount>,<num>) FUNCTION: geo_amortization TEMPLATE: geo_amortization(<rate>,<growing_rate>,<ammount>,<num>) FUNCTION: saving TEMPLATE: saving(<rate>,<ammount>,<num>) FUNCTION: npv TEMPLATE: npv(<rate>,<val>) FUNCTION: irr TEMPLATE: irr(<val>,<IO>) FUNCTION: benefit_cost TEMPLATE: benefit_cost(<rate>,<input>,<output>) FUNCTION: sierpinskiale TEMPLATE: sierpinskiale(<n>) FUNCTION: treefale TEMPLATE: treefale(<n>) FUNCTION: fernfale TEMPLATE: fernfale(<n>) FUNCTION: mandelbrot_set TEMPLATE: mandelbrot_set(<x>, <y>) FUNCTION: julia_set TEMPLATE: julia_set(<x>, <y>) OPTION : julia_parameter FUNCTION: julia_sin TEMPLATE: julia_sin(<x>, <y>) FUNCTION: snowmap TEMPLATE: snowmap(<ent>, <nn>) FUNCTION: hilbertmap TEMPLATE: hilbertmap(<nn>) FUNCTION: sierpinskimap TEMPLATE: sierpinskimap(<nn>) OPTION : extra_integration_methods OPTION : extra_definite_integration_methods FUNCTION: intfugudu TEMPLATE: intfugudu(<e>, <x>) FUNCTION: signum_to_abs TEMPLATE: signum_to_abs(<e>) FUNCTION: convert_to_signum TEMPLATE: convert_to_signum(<e>) FUNCTION: complex_number_p TEMPLATE: complex_number_p(<x>) FUNCTION: compose_functions TEMPLATE: compose_functions(<l>) FUNCTION: dfloat TEMPLATE: dfloat(<x>) FUNCTION: elim TEMPLATE: elim(<l>, <x>) FUNCTION: elim_allbut TEMPLATE: elim_allbut(<l>, <x>) FUNCTION: eliminate_using TEMPLATE: eliminate_using(<l>, <e>, <x>) FUNCTION: fourier_elim TEMPLATE: fourier_elim([<eq1>, <eq2>, <...>], [<var1>, <var>, <...>]) FUNCTION: isreal_p TEMPLATE: isreal_p(<e>) FUNCTION: new_variable TEMPLATE: new_variable(<type>) FUNCTION: parg TEMPLATE: parg(<x>) FUNCTION: real_imagpart_to_conjugate TEMPLATE: real_imagpart_to_conjugate(<e>) FUNCTION: rectform_log_if_constant TEMPLATE: rectform_log_if_constant(<e>) FUNCTION: simp_inequality TEMPLATE: simp_inequality(<e>) FUNCTION: standardize_inverse_trig TEMPLATE: standardize_inverse_trig(<e>) FUNCTION: subst_parallel TEMPLATE: subst_parallel(<l>, <e>) FUNCTION: to_poly TEMPLATE: to_poly(<e>, <l>) FUNCTION: to_poly_solve TEMPLATE: to_poly_solve(<e>, <l>, <[options]>) ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/Info.plist.in�����������������������������������������������������������������000644 �000765 �000024 �00000004206 12065554625 017364� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleIdentifier</key> <string>net.sf.wxMaxima</string> <key>CFBundleName</key> <string>wxMaxima</string> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>wxmaxima</string> <key>CFBundleIconFile</key> <string>wxmac.icns</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>@VERSION@</string> <key>CFBundleVersion</key> <string>@VERSION@</string> <key>LSMinimumSystemVersion</key> <string>10.4.0</string> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> <string>wxm</string> </array> <key>CFBundleTypeIconFile</key> <string>wxmac-doc-wxm.icns</string> <key>CFBundleTypeMIMETypes</key> <array> <string>application/x-wxm</string> <string>text/x-po</string> </array> <key>CFBundleTypeName</key> <string>wxMaxima Document</string> <key>CFBundleTypeRole</key> <string>Editor</string> </dict> <dict> <key>CFBundleTypeExtensions</key> <array> <string>wxmx</string> </array> <key>CFBundleTypeIconFile</key> <string>wxmac-doc-wxmx.icns</string> <key>CFBundleTypeMIMETypes</key> <array> <string>application/x-wxm</string> <string>text/x-po</string> </array> <key>CFBundleTypeName</key> <string>wxMaxima XML Document</string> <key>CFBundleTypeRole</key> <string>Editor</string> </dict> </array> </dict> </plist> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/Makefile.am�������������������������������������������������������������������000644 �000765 �000024 �00000000310 11670654443 017033� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxmaximadatadir = ${datadir}/wxMaxima wxmaximadata_DATA = tips.txt wxmathml.lisp wxmaxima.png autocomplete.txt EXTRA_DIST = tips.txt wxmathml.lisp wxmaxima.png Info.plist.in PkgInfo autocomplete.txt ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/Makefile.in�������������������������������������������������������������������000644 �000765 �000024 �00000024334 12150103454 017041� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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@ target_triplet = @target@ subdir = data DIST_COMMON = $(srcdir)/Info.plist.in $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/Setup.h CONFIG_CLEAN_FILES = Info.plist SOURCES = DIST_SOURCES = 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 = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(wxmaximadatadir)" wxmaximadataDATA_INSTALL = $(INSTALL_DATA) DATA = $(wxmaximadata_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS_TO_INSTALL = @CATALOGS_TO_INSTALL@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RC_OBJ = @RC_OBJ@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ WX_CFLAGS = @WX_CFLAGS@ WX_CFLAGS_ONLY = @WX_CFLAGS_ONLY@ WX_CONFIG_PATH = @WX_CONFIG_PATH@ WX_CPPFLAGS = @WX_CPPFLAGS@ WX_CXXFLAGS = @WX_CXXFLAGS@ WX_CXXFLAGS_ONLY = @WX_CXXFLAGS_ONLY@ WX_LIBS = @WX_LIBS@ WX_LIBS_STATIC = @WX_LIBS_STATIC@ WX_RC_PATH = @WX_RC_PATH@ WX_RESCOMP = @WX_RESCOMP@ WX_VERSION = @WX_VERSION@ WX_VERSION_MAJOR = @WX_VERSION_MAJOR@ WX_VERSION_MICRO = @WX_VERSION_MICRO@ WX_VERSION_MINOR = @WX_VERSION_MINOR@ 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@ ac_ct_CXX = @ac_ct_CXX@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ wxmaximadatadir = ${datadir}/wxMaxima wxmaximadata_DATA = tips.txt wxmathml.lisp wxmaxima.png autocomplete.txt EXTRA_DIST = tips.txt wxmathml.lisp wxmaxima.png Info.plist.in PkgInfo autocomplete.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh Info.plist: $(top_builddir)/config.status $(srcdir)/Info.plist.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-wxmaximadataDATA: $(wxmaximadata_DATA) @$(NORMAL_INSTALL) test -z "$(wxmaximadatadir)" || $(MKDIR_P) "$(DESTDIR)$(wxmaximadatadir)" @list='$(wxmaximadata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(wxmaximadataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(wxmaximadatadir)/$$f'"; \ $(wxmaximadataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(wxmaximadatadir)/$$f"; \ done uninstall-wxmaximadataDATA: @$(NORMAL_UNINSTALL) @list='$(wxmaximadata_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(wxmaximadatadir)/$$f'"; \ rm -f "$(DESTDIR)$(wxmaximadatadir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(wxmaximadatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-wxmaximadataDATA install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-wxmaximadataDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am 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 install-wxmaximadataDATA installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am \ uninstall-wxmaximadataDATA # 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: ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/PkgInfo�����������������������������������������������������������������������000644 �000765 �000024 �00000000010 11670654443 016254� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������APPL????������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/tips.txt����������������������������������������������������������������������000644 �000765 �000024 �00000010234 12073007012 016503� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������_("To start using wxMaxima right away, start typing your command. An input cell should appear. Then press Shift-Enter to evaluate your command.") _("By default Shift-Enter is used to evaluate commands, while Enter is used for multiline input. This behaviour can be changed in 'Edit->Configure' dialog by checking 'Enter evaluates cells'. This switches the roles of these two key commands.") _("Maxima uses ':' to set values ('a : 3;') and ':=' to define functions ('f(x) := x^2;').") _("You can access the last output using the variable '%'. You can access the output of previous commands using variables '%on' where n is the number of output.") _("If you type an operator (one of +*/^=,) as the first symbol in an input cell, % will be automatically inserted before the operator, as on a graphing calculator. You can disable this feature from the 'Edit->Configure' dialog.") _("You can insert different types of 'cells' in wxMaxima document using the 'Cell' menu. Note that only 'input cells' can be evaluated, while other are used for commenting and structuring your calculations.") _("A new document format has been introduced in wxMaxima 0.8.2 that saves not only your input and text commentaries, but also the outputs of your calculations. When saving your document, select 'wxMaxima XML document' format.") _("Title, section and subsection cells can be folded to hide their contents. To fold or unfold, click in the square next to the cell. If you shift-click, all sublevels of that cell will also fold/unfold.") _("You can hide output part of cells by clicking in the triangle on the left side of cells. This works on text cells also.") _("There are many resources about Maxima and wxMaxima on the internet. Visit http://andrejv.github.com/wxmaxima/help.html for more information and to find tutorials on using wxMaxima and Maxima.") _("You can get help on a Maxima function by selecting or clicking on the function name and pressing F1. wxMaxima will search help index for the selection or the word under the cursor.") _("A 'horizontal cursor' was introduced in wxMaxima 0.8.0. It looks like a horizontal line between cells. It indicates where a new cell will appear if you type or paste text or execute a menu command.") _("Horizontal cursor works like a normal cursor, but it operates on cells: press up or down arrow to move it, holding down Shift while moving will select cells, pressing backspace or delete twice will delete a cell next to it.") _("Selecting a part of output and right-clicking on the selection will bring up a menu with convenient functions that will operate on the selection.") _("You can select multiple cells either with a mouse - click'n'drag from between cells or from a cell bracket on the left - or with a keyboard - hold down Shift while moving the horizontal cursor - and then operate on selection. This comes in handy when you want to delete or evaluate multiple cells.") _("You can evaluate your whole document by using 'Cell->Evaluate All Cells' menu command or the apropriate key shortcut. The cells will be evaluated in the order they appear in the document.") _("If your calculation is taking too long to evaluate, you can try 'Maxima->Interrupt' or 'Maxima->Restart Maxima' menu commands.") _("To plot in polar coordinates, select 'set polar' in the Options entry for Plot2d dialog. You can also plot in spherical and cylindrical coordinates in 3D.") _("wxMaxima dialogs set default values for inputs entries, one of which is '%'. If you have made a selection in your document, the selection will be used instead of '%'.") _("To put parenthesis around an expression, select it, and press '(' or ')' depending on where you want the cursor to appear afterwards.") _("When applying functions with one argument from menus, the default argument is '%'. To apply the function to some other value, select it in the document before executing a menu command.") _("To save the size and position of wxMaxima windows between session, use 'Edit->Configure' dialog.") _("Since wxMaxima 0.8.2 you can also insert images into your documents. Use 'Cell->Insert Image...' menu command. Note that you have to save your document in 'wxMaxima XML document' format if you want the image to be saved along with your document.") ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/wxmathml.lisp�����������������������������������������������������������������000644 �000765 �000024 �00000160017 12127263404 017533� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������(in-package :maxima) ;; wxMaxima xml format (based on David Drysdale MathML printing) ;; Andrej Vodopivec, 2004-2007 ;; MathML-printing ;; Created by David Drysdale (DMD), December 2002/January 2003 ;; ;; closely based on the original TeX conversion code in mactex.lisp, ;; for which the following credits apply: ;; (c) copyright 1987, Richard J. Fateman ;; small corrections and additions: Andrey Grozin, 2001 ;; additional additions: Judah Milgram (JM), September 2001 ;; additional corrections: Barton Willis (BLW), October 2001 ;; Method: ;; Producing wxxml from a maxima internal expression is done by ;; a reversal of the parsing process. Fundamentally, a ;; traversal of the expression tree is produced by the program, ;; with appropriate substitutions and recognition of the ;; infix / prefix / postfix / matchfix relations on symbols. Various ;; changes are made to this so that MathML will like the results. (declare-top (special lop rop $inchar) (*expr wxxml-lbp wxxml-rbp)) (defvar $wxfilename "") #+ccl (setf *print-circle* nil) ;;; Muffle compiler-notes globally #+sbcl (declaim (sb-ext:muffle-conditions sb-ext:compiler-note)) (defmacro no-warning (form) #+sbcl `(handler-bind ((style-warning #'muffle-warning) (sb-ext:compiler-note #'muffle-warning)) ,form) #+clisp `(let ((custom:*suppress-check-redefinition* t)) ,form) #-(or sbcl clisp) `(progn ,form)) ($put '$wxmaxima `((mlist simp) 13 4 0) '$version) (defun $wxbuild_info () (let ((wxmaxima-version (cdr ($get '$wxmaxima '$version))) (year (sixth cl-user:*maxima-build-time*)) (month (fifth cl-user:*maxima-build-time*)) (day (fourth cl-user:*maxima-build-time*)) (hour (third cl-user:*maxima-build-time*)) (minute (second cl-user:*maxima-build-time*)) (seconds (first cl-user:*maxima-build-time*))) (format t "wxMaxima version: ~{~d~^.~}~%" wxmaxima-version) (format t "Maxima version: ~a~%" *autoconf-version*) (format t "Maxima build date: ~4,'0d-~2,'0d-~2,'0d ~2,'0d:~2,'0d:~2,'0d~%" year month day hour minute seconds) (format t "Host type: ~a~%" *autoconf-host*) (format t "Lisp implementation type: ~a~%" (lisp-implementation-type)) (format t "Lisp implementation version: ~a~%" (lisp-implementation-version))) "") (defmfun $wxbug_report () (format t "~%The Maxima bug database is available at~%") (format t " http://sourceforge.net/tracker/?atid=104933&group_id=4933&func=browse~%") (format t "Submit bug reports by following the 'Add new' link on that page.~%~%") (format t "The wxMaxima bug database is available at~%") (format t " https://github.com/andrejv/wxmaxima/issues?direction=desc&sort=created&state=open~%") (format t "Submit bug reports by following the 'New issue' link on that page.~%~%") (format t "Please include the following information with your bug report:~%") (format t "-------------------------------------------------------------~%") ($wxbuild_info) (format t "-------------------------------------------------------------~%")) (setf (get '$inchar 'assign) 'neverset) (setf (get '$outchar 'assign) 'neverset) (defvar *var-tag* '("<v>" "</v>")) (defun wxxml (x l r lop rop) ;; x is the expression of interest; l is the list of strings to its ;; left, r to its right. lop and rop are the operators on the left ;; and right of x in the tree, and will determine if parens must ;; be inserted (setq x (nformat x)) (cond ((atom x) (wxxml-atom x l r)) ((or (<= (wxxml-lbp (caar x)) (wxxml-rbp lop)) (> (wxxml-lbp rop) (wxxml-rbp (caar x)))) (wxxml-paren x l r)) ;; special check needed because macsyma notates arrays peculiarly ((member 'array (cdar x) :test #'eq) (wxxml-array x l r)) ;; dispatch for object-oriented wxxml-ifiying ((get (caar x) 'wxxml) (funcall (get (caar x) 'wxxml) x l r)) ((equal (get (caar x) 'dimension) 'dimension-infix) (wxxml-infix x l r)) ((equal (get (caar x) 'dimension) 'dimension-match) (wxxml-matchfix-dim x l r)) ((equal (get (caar x) 'dimension) 'dimension-nary) (wxxml-nary x l r)) ((get (caar x) 'defstruct-template) (wxxml-defstruct x l r)) (t (wxxml-function x l r)))) (defmacro make-tag (val tag) ``((wxxmltag simp) ,,val ,,tag)) (defun $wxxmltag (val tag) (make-tag ($sconcat val) ($sconcat tag))) (defun string-substitute (newstring oldchar x &aux matchpos) (setq matchpos (position oldchar x)) (if (null matchpos) x (concatenate 'string (subseq x 0 matchpos) newstring (string-substitute newstring oldchar (subseq x (1+ matchpos)))))) (defun wxxml-fix-string (x) (if (stringp x) (let* ((tmp-x (string-substitute "&" #\& x)) (tmp-x (string-substitute "<" #\< tmp-x)) (tmp-x (string-substitute ">" #\> tmp-x))) tmp-x) x)) ;;; First we have the functions which are called directly by wxxml and its ;;; descendents (defun wxxml-atom (x l r &aux tmp-x) (append l (list (cond ((numberp x) (wxxmlnumformat x)) ((and (symbolp x) (get x 'wxxmlword))) ((and (symbolp x) (get x 'reversealias)) (wxxml-stripdollar (get x 'reversealias))) ((stringp x) (setq tmp-x (wxxml-fix-string x)) (if (and (boundp '$stringdisp) $stringdisp) (setq tmp-x (format nil "\"~a\"" tmp-x))) (concatenate 'string "<st>" tmp-x "</st>")) ((arrayp x) (format nil "<v>Lisp array [~{~a~^,~}]</v>" (array-dimensions x))) ((streamp x) (format nil "<v>Stream [~A]</v>" (stream-element-type x))) ((member (type-of x) '(GRAPH DIGRAPH)) (format nil "<v>~a</v>" x)) ((typep x 'structure-object) (format nil "<v>Structure [~A]</v>" (type-of x))) ((hash-table-p x) (format nil "<v>HashTable</v>")) (t (wxxml-stripdollar x)))) r)) (defun wxxmlnumformat (atom) (let (r firstpart exponent) (cond ((integerp atom) (format nil "<n>~{~c~}</n>" (exploden atom))) (t (setq r (exploden atom)) (setq exponent (member 'e r :test #'string-equal)) (cond ((null exponent) (format nil "<n>~{~c~}</n>" r)) (t (setq firstpart (nreverse (cdr (member 'e (reverse r) :test #'string-equal)))) (if (char= (cadr exponent) #\+) (setq exponent (cddr exponent)) (setq exponent (cdr exponent))) (format nil "<r><n>~{~c~}</n><h>*</h><e><n>10</n><n>~{~c~}</n></e></r>" firstpart exponent))))))) (defun wxxml-stripdollar (sym &aux pname) (or (symbolp sym) (return-from wxxml-stripdollar (wxxml-fix-string (format nil "~a" sym)))) (setq pname (maybe-invert-string-case (symbol-name sym))) (setq pname (cond ((and (> (length pname) 0) (member (elt pname 0) '(#\$ #\&) :test #'eq)) (subseq pname 1)) ((and (> (length pname) 0) (equal (elt pname 0) #\%)) (if $noundisp (concatenate 'string "'" (subseq pname 1)) (subseq pname 1))) ($lispdisp (concatenate 'string "?" pname)) (t pname))) (setq pname (wxxml-fix-string pname)) (concatenate 'string (car *var-tag*) pname (cadr *var-tag*))) (defun wxxml-paren (x l r) (wxxml x (append l '("<p>")) (cons "</p>" r) 'mparen 'mparen)) (defun wxxml-array (x l r &aux f) (if (eq 'mqapply (caar x)) (setq f (cadr x) x (cdr x) l (wxxml f (append l (list "<i><p>")) (list "</p>") 'mparen 'mparen)) (setq f (caar x) l (wxxml f (append l '("<i><r>")) (list "</r>") lop 'mfunction))) (setq r (nconc (wxxml-list (cdr x) (list "<r>") (list "</r></i>") "<v>,</v>") r)) (nconc l r)) ;; set up a list , separated by symbols (, * ...) and then tack on the ;; ending item (e.g. "]" or perhaps ")" (defun wxxml-list (x l r sym) (if (null x) r (do ((nl)) ((null (cdr x)) (setq nl (nconc nl (wxxml (car x) l r 'mparen 'mparen))) nl) (setq nl (nconc nl (wxxml (car x) l (list sym) 'mparen 'mparen)) x (cdr x) l nil)))) (defun wxxml-defstruct (x l r) (let ((L1 (cdr (get (caar x) 'defstruct-template))) (L2 (cdr x))) (wxxml-function (cons (car x) (mapcar #'(lambda (e1 e2) (if (eq e1 e2) e1 `((mequal) ,e1 ,e2))) L1 L2)) l r))) ;; we could patch this so sin x rather than sin(x), but instead we made ;; sin a prefix operator (defun wxxml-function (x l r) (setq l (let ((*var-tag* '("<fnm>" "</fnm>"))) (wxxml (caar x) (append l '("<fn>")) nil 'mparen 'mparen)) r (wxxml (cons '(mprogn) (cdr x)) nil (append '("</fn>") r) 'mparen 'mparen)) (append l r)) ;;; Now we have functions which are called via property lists (defun wxxml-prefix (x l r) (wxxml (cadr x) (append l (wxxmlsym (caar x))) r (caar x) rop)) (defun wxxml-infix (x l r) ;; check for 2 args (if (or (null (cddr x)) (cdddr x)) (wna-err (caar x))) (setq l (wxxml (cadr x) l nil lop (caar x))) (wxxml (caddr x) (append l (wxxmlsym (caar x))) r (caar x) rop)) (defun wxxml-postfix (x l r) (wxxml (cadr x) l (append (wxxmlsym (caar x)) r) lop (caar x))) (defun wxxml-nary (x l r) (let* ((op (caar x)) (sym (cond ((eq op 'mtimes) (if $stardisp "<t>*</t>" "<h>*</h>")) ;((wxxmlsym op)) ((eq (get op 'dimension) 'dimension-nary) (wxxml-dissym-to-string (get op 'dissym))))) (y (cdr x)) (ext-lop lop) (ext-rop rop)) (cond ((null y) (wxxml-function x l r)) ; this should not happen ((null (cdr y)) (wxxml-function x l r)) ; this should not happen, too (t (do ((nl) (lop ext-lop op) (rop op (if (null (cdr y)) ext-rop op))) ((null (cdr y)) (setq nl (nconc nl (wxxml (car y) l r lop rop))) nl) (setq nl (nconc nl (wxxml (car y) l (list sym) lop rop)) y (cdr y) l nil)))))) (defun wxxml-nofix (x l r) (wxxml (caar x) l r (caar x) rop)) (defun wxxml-matchfix (x l r) (setq l (append l (car (wxxmlsym (caar x)))) ;; car of wxxmlsym of a matchfix operator is the lead op r (append (cdr (wxxmlsym (caar x))) r) ;; cdr is the trailing op x (wxxml-list (cdr x) nil r "<t>,</t>")) (append l x)) (defun wxxml-matchfix-dim (x l r) (setq l (append l (list (wxxml-dissym-to-string (car (get (caar x) 'dissym))))) r (append (list (wxxml-dissym-to-string (cdr (get (caar x) 'dissym)))) r) x (wxxml-list (cdr x) nil r "<t>,</t>")) (append l x)) (defun wxxml-dissym-to-string (lst &aux pname) (setq pname (wxxml-fix-string (format nil "~{~a~}" lst))) (concatenate 'string "<v>" pname "</v>")) (defun wxxmlsym (x) (or (get x 'wxxmlsym) (get x 'strsym) (and (get x 'dissym) (list (wxxml-dissym-to-string (get x 'dissym)))) (list (stripdollar x)))) (defun wxxmlword (x) (or (get x 'wxxmlword) (stripdollar x))) (defprop bigfloat wxxml-bigfloat wxxml) ;;(defun mathml-bigfloat (x l r) (declare (ignore l r)) (fpformat x)) (defun wxxml-bigfloat (x l r) (append l '("<n>") (fpformat x) '("</n>") r)) (defprop mprog "<fnm>block</fnm>" wxxmlword) (defprop $true "<t>true</t>" wxxmlword) (defprop $false "<t>false</t>" wxxmlword) (defprop mprogn wxxml-matchfix wxxml) (defprop mprogn (("<p>") "</p>") wxxmlsym) (defprop mlist wxxml-matchfix wxxml) (defprop mlist (("<t>[</t>")"<t>]</t>") wxxmlsym) (defprop $set wxxml-matchfix wxxml) (defprop $set (("<t>{</t>")"<t>}</t>") wxxmlsym) (defprop mabs wxxml-matchfix wxxml) (defprop mabs (("<a>")"</a>") wxxmlsym) (defprop mbox wxxml-mbox wxxml) (defprop mlabox wxxml-mbox wxxml) (defprop mbox 10. wxxml-rbp) (defprop mbox 10. wxxml-lbp) (defprop mlabbox 10. wxxml-rbp) (defprop mlabbox 10. wxxml-lbp) (defun wxxml-mbox (x l r) (setq l (wxxml (cadr x) (append l '("<hl>")) nil 'mparen 'mparen) r (append '("</hl>") r)) (append l r)) (defprop mqapply wxxml-mqapply wxxml) (defun wxxml-mqapply (x l r) (setq l (wxxml (cadr x) (append l '("<fn>")) (list "<p>" ) lop 'mfunction) r (wxxml-list (cddr x) nil (cons "</p></fn>" r) "<t>,</t>")) (append l r)) (defprop $zeta "<g>zeta</g>" wxxmlword) (defprop %zeta "<g>zeta</g>" wxxmlword) ;; ;; Greek characters ;; (defprop $%alpha "<g>%alpha</g>" wxxmlword) (defprop $alpha "<g>alpha</g>" wxxmlword) (defprop $%beta "<g>%beta</g>" wxxmlword) (defprop $beta "<g>beta</g>" wxxmlword) (defprop $%gamma "<g>%gamma</g>" wxxmlword) (defprop %gamma "<g>gamma</g>" wxxmlword) (defprop $%delta "<g>%delta</g>" wxxmlword) (defprop $delta "<g>delta</g>" wxxmlword) (defprop $%epsilon "<g>%epsilon</g>" wxxmlword) (defprop $epsilon "<g>epsilon</g>" wxxmlword) (defprop $%zeta "<g>%zeta</g>" wxxmlword) (defprop $%eta "<g>%eta</g>" wxxmlword) (defprop $eta "<g>eta</g>" wxxmlword) (defprop $%theta "<g>%theta</g>" wxxmlword) (defprop $theta "<g>theta</g>" wxxmlword) (defprop $%iota "<g>%iota</g>" wxxmlword) (defprop $iota "<g>iota</g>" wxxmlword) (defprop $%kappa "<g>%kappa</g>" wxxmlword) (defprop $kappa "<g>kappa</g>" wxxmlword) (defprop $%lambda "<g>%lambda</g>" wxxmlword) (defprop $lambda "<g>lambda</g>" wxxmlword) (defprop $%mu "<g>%mu</g>" wxxmlword) (defprop $mu "<g>mu</g>" wxxmlword) (defprop $%nu "<g>%nu</g>" wxxmlword) (defprop $nu "<g>nu</g>" wxxmlword) (defprop $%xi "<g>%xi</g>" wxxmlword) (defprop $xi "<g>xi</g>" wxxmlword) (defprop $%omicron "<g>%omicron</g>" wxxmlword) (defprop $omicron "<g>omicron</g>" wxxmlword) (defprop $%pi "<s>%pi</s>" wxxmlword) (defprop $pi "<g>pi</g>" wxxmlword) (defprop $%rho "<g>%rho</g>" wxxmlword) (defprop $rho "<g>rho</g>" wxxmlword) (defprop $%sigma "<g>%sigma</g>" wxxmlword) (defprop $sigma "<g>sigma</g>" wxxmlword) (defprop $%tau "<g>%tau</g>" wxxmlword) (defprop $tau "<g>tau</g>" wxxmlword) (defprop $%upsilon "<g>%upsilon</g>" wxxmlword) (defprop $upsilon "<g>upsilon</g>" wxxmlword) (defprop $%phi "<g>%phi</g>" wxxmlword) (defprop $phi "<g>phi</g>" wxxmlword) (defprop $%chi "<g>%chi</g>" wxxmlword) (defprop $chi "<g>chi</g>" wxxmlword) (defprop $%psi "<g>%psi</g>" wxxmlword) (defprop $psi "<g>psi</g>" wxxmlword) (defprop $%omega "<g>%omega</g>" wxxmlword) (defprop $omega "<g>omega</g>" wxxmlword) (defprop |$%Alpha| "<g>%Alpha</g>" wxxmlword) (defprop |$Alpha| "<g>Alpha</g>" wxxmlword) (defprop |$%Beta| "<g>%Beta</g>" wxxmlword) (defprop |$Beta| "<g>Beta</g>" wxxmlword) (defprop |$%Gamma| "<g>%Gamma</g>" wxxmlword) (defprop |$Gamma| "<g>Gamma</g>" wxxmlword) (defprop |$%Delta| "<g>%Delta</g>" wxxmlword) (defprop |$Delta| "<g>Delta</g>" wxxmlword) (defprop |$%Epsilon| "<g>%Epsilon</g>" wxxmlword) (defprop |$Epsilon| "<g>Epsilon</g>" wxxmlword) (defprop |$%Zeta| "<g>%Zeta</g>" wxxmlword) (defprop |$Zeta| "<g>Zeta</g>" wxxmlword) (defprop |$%Eta| "<g>%Eta</g>" wxxmlword) (defprop |$Eta| "<g>Eta</g>" wxxmlword) (defprop |$%Theta| "<g>%Theta</g>" wxxmlword) (defprop |$Theta| "<g>Theta</g>" wxxmlword) (defprop |$%Iota| "<g>%Iota</g>" wxxmlword) (defprop |$Iota| "<g>Iota</g>" wxxmlword) (defprop |$%Kappa| "<g>%Kappa</g>" wxxmlword) (defprop |$Kappa| "<g>Kappa</g>" wxxmlword) (defprop |$%Lambda| "<g>%Lambda</g>" wxxmlword) (defprop |$Lambda| "<g>Lambda</g>" wxxmlword) (defprop |$%Mu| "<g>%Mu</g>" wxxmlword) (defprop |$Mu| "<g>Mu</g>" wxxmlword) (defprop |$%Nu| "<g>%Nu</g>" wxxmlword) (defprop |$Nu| "<g>Nu</g>" wxxmlword) (defprop |$%Xi| "<g>%Xi</g>" wxxmlword) (defprop |$Xi| "<g>Xi</g>" wxxmlword) (defprop |$%Omicron| "<g>%Omicron</g>" wxxmlword) (defprop |$Omicron| "<g>Omicron</g>" wxxmlword) (defprop |$%Rho| "<g>%Rho</g>" wxxmlword) (defprop |$Rho| "<g>Rho</g>" wxxmlword) (defprop |$%Sigma| "<g>%Sigma</g>" wxxmlword) (defprop |$Sigma| "<g>Sigma</g>" wxxmlword) (defprop |$%Tau| "<g>%Tau</g>" wxxmlword) (defprop |$Tau| "<g>Tau</g>" wxxmlword) (defprop |$%Upsilon| "<g>%Upsilon</g>" wxxmlword) (defprop |$Upsilon| "<g>Upsilon</g>" wxxmlword) (defprop |$%Phi| "<g>%Phi</g>" wxxmlword) (defprop |$Phi| "<g>Phi</g>" wxxmlword) (defprop |$%Chi| "<g>%Chi</g>" wxxmlword) (defprop |$Chi| "<g>Chi</g>" wxxmlword) (defprop |$%Psi| "<g>%Psi</g>" wxxmlword) (defprop |$Psi| "<g>Psi</g>" wxxmlword) (defprop |$%Omega| "<g>%Omega</g>" wxxmlword) (defprop |$Omega| "<g>Omega</g>" wxxmlword) (defprop |$%Pi| "<g>%Pi</g>" wxxmlword) (defprop |$Pi| "<g>Pi</g>" wxxmlword) (defprop $%i "<s>%i</s>" wxxmlword) (defprop $%e "<s>%e</s>" wxxmlword) (defprop $inf "<s>inf</s>" wxxmlword) (defprop $minf "<t>-</t><s>inf</s>" wxxmlword) (defprop mreturn "return" wxxmlword) (defprop mquote wxxml-prefix wxxml) (defprop mquote ("<t>'</t>") wxxmlsym) (defprop mquote "<t>'</t>" wxxmlword) (defprop mquote 201. wxxml-rbp) (defprop msetq wxxml-infix wxxml) (defprop msetq ("<t>:</t>") wxxmlsym) (defprop msetq "<t>:</t>" wxxmlword) (defprop msetq 180. wxxml-rbp) (defprop msetq 20. wxxml-rbp) (defprop mset wxxml-infix wxxml) (defprop mset ("<t>::</t>") wxxmlsym) (defprop mset "<t>::</t>" wxxmlword) (defprop mset 180. wxxml-lbp) (defprop mset 20. wxxml-rbp) (defprop mdefine wxxml-infix wxxml) (defprop mdefine ("<t>:=</t>") wxxmlsym) (defprop mdefine "<t>:=</t>" wxxmlword) (defprop mdefine 180. wxxml-lbp) (defprop mdefine 20. wxxml-rbp) (defprop mdefmacro wxxml-infix wxxml) (defprop mdefmacro ("<t>::=</t>") wxxmlsym) (defprop mdefmacro "<t>::=</t>" wxxmlword) (defprop mdefmacro 180. wxxml-lbp) (defprop mdefmacro 20. wxxml-rbp) (defprop marrow wxxml-infix wxxml) (defprop marrow ("<t>-></t>") wxxmlsym) (defprop marrow "<t>-></t>" wxxmlword) (defprop marrow 25 wxxml-lbp) (defprop marrow 25 wxxml-rbp) (defprop mfactorial wxxml-postfix wxxml) (defprop mfactorial ("<t>!</t>") wxxmlsym) (defprop mfactorial "<t>!</t>" wxxmlword) (defprop mfactorial 160. wxxml-lbp) (defprop mexpt wxxml-mexpt wxxml) (defprop mexpt 140. wxxml-lbp) (defprop mexpt 139. wxxml-rbp) (defprop %sum 90. wxxml-rbp) (defprop %product 95. wxxml-rbp) ;; insert left-angle-brackets for mncexpt. a^<t> is how a^^n looks. (defun wxxml-mexpt (x l r) (cond ((atom (cadr x)) (wxxml-mexpt-simple x l r)) ((member 'array (caadr x)) (wxxml-mexpt-array x l r)) (t (wxxml-mexpt-simple x l r)))) (defun wxxml-mexpt-array (x l r) (let* ((nc (eq (caar x) 'mncexpt)) f (xarr (cadr x)) (xexp (nformat (caddr x)))) ;; the index part (if (eq 'mqapply (caar xarr)) (setq f (cadr xarr) xarr (cdr xarr) l (wxxml f (append l (list "<ie><p>")) (list "</p>") 'mparen 'mparen)) (setq f (caar xarr) l (wxxml f (append l (if nc (list "<ie mat=\"true\"><r>") (list "<ie><r>"))) (list "</r>") lop 'mfunction))) (setq l (append l (wxxml-list (cdr xarr) (list "<r>") (list "</r>") "<v>,</v>"))) ;; The exponent part (setq r (if (mmminusp xexp) ;; the change in base-line makes parens unnecessary (wxxml (cadr xexp) '("<r><v>-</v>") (cons "</r></ie>" r) 'mparen 'mparen) (if (and (integerp xexp) (< xexp 10)) (wxxml xexp nil (cons "</ie>" r) 'mparen 'mparen) (wxxml xexp (list "<r>") (cons "</r></ie>" r) 'mparen 'mparen) ))) (append l r))) (defun wxxml-mexpt-simple (x l r) (let((nc (eq (caar x) 'mncexpt))) (setq l (wxxml (cadr x) (append l (if nc '("<e mat=\"true\"><r>") '("<e><r>"))) nil lop (caar x)) r (if (mmminusp (setq x (nformat (caddr x)))) ;; the change in base-line makes parens unnecessary (wxxml (cadr x) '("</r><r><v>-</v>") (cons "</r></e>" r) 'mminus 'mminus) (if (and (integerp x) (< x 10)) (wxxml x (list "</r>") (cons "</e>" r) 'mparen 'mparen) (wxxml x (list "</r><r>") (cons "</r></e>" r) 'mparen 'mparen) ))) (append l r))) (defprop mncexpt wxxml-mexpt wxxml) (defprop mncexpt 135. wxxml-lbp) (defprop mncexpt 134. wxxml-rbp) (defprop mnctimes wxxml-nary wxxml) (defprop mnctimes "<t>.</t>" wxxmlsym) (defprop mnctimes "<t>.</t>" wxxmlword) (defprop mnctimes 110. wxxml-lbp) (defprop mnctimes 109. wxxml-rbp) (defprop mtimes wxxml-nary wxxml) (defprop mtimes "<h>*</h>" wxxmlsym) (defprop mtimes "<t>*</t>" wxxmlword) (defprop mtimes 120. wxxml-lbp) (defprop mtimes 120. wxxml-rbp) (defprop %sqrt wxxml-sqrt wxxml) (defun wxxml-sqrt (x l r) (wxxml (cadr x) (append l '("<q>")) (append '("</q>") r) 'mparen 'mparen)) (defprop mquotient wxxml-mquotient wxxml) (defprop mquotient ("<t>/</t>") wxxmlsym) (defprop mquotient "<t>/</t>" wxxmlword) (defprop mquotient 122. wxxml-lbp) ;;dunno about this (defprop mquotient 123. wxxml-rbp) (defun wxxml-mquotient (x l r) (if (or (null (cddr x)) (cdddr x)) (wna-err (caar x))) (setq l (wxxml (cadr x) (append l '("<f><r>")) nil 'mparen 'mparen) r (wxxml (caddr x) (list "</r><r>") (append '("</r></f>")r) 'mparen 'mparen)) (append l r)) (defprop $matrix wxxml-matrix-test wxxml) (defun wxxml-matrix-test (x l r) (if (every #'$listp (cdr x)) (wxxml-matrix x l r) (wxxml-function x l r))) (defun wxxml-matrix(x l r) ;;matrix looks like ((mmatrix)((mlist) a b) ...) (cond ((null (cdr x)) (append l `("<fn><fnm>matrix</fnm><p/></fn>") r)) ((and (null (cddr x)) (null (cdadr x))) (append l `("<fn><fnm>matrix</fnm><p><t>[</t><t>]</t></p></fn>") r)) (t (append l (cond ((find 'inference (car x)) (list "<tb inference=\"true\">")) ((find 'special (car x)) (list (format nil "<tb special=\"true\" rownames=~s colnames=~s>" (if (find 'rownames (car x)) "true" "false") (if (find 'colnames (car x)) "true" "false")))) (t (list "<tb>"))) (mapcan #'(lambda (y) (cond ((null (cdr y)) (list "<mtr><mtd><mspace/></mtd></mtr>")) (t (wxxml-list (cdr y) (list "<mtr><mtd>") (list "</mtd></mtr>") "</mtd><mtd>")))) (cdr x)) `("</tb>") r)))) ;; macsyma sum or prod is over integer range, not low <= index <= high ;; wxxml is lots more flexible .. but (defprop %sum wxxml-sum wxxml) (defprop %lsum wxxml-lsum wxxml) (defprop %product wxxml-sum wxxml) (defprop $sum wxxml-sum wxxml) (defprop $lsum wxxml-lsum wxxml) (defprop $product wxxml-sum wxxml) ;; easily extended to union, intersect, otherops (defun wxxml-lsum(x l r) (let ((op "<sm type=\"lsum\"><r>") ;; gotta be one of those above (s1 (wxxml (cadr x) nil nil 'mparen rop));; summand (index ;; "index = lowerlimit" (wxxml `((min simp) , (caddr x), (cadddr x)) nil nil 'mparen 'mparen))) (append l `(,op ,@index "</r><r><mn/></r><r>" ,@s1 "</r></sm>") r))) (defun wxxml-sum(x l r) (let ((op (if (or (eq (caar x) '%sum) (eq (caar x) '$sum)) "<sm><r>" "<sm type=\"prod\"><r>")) (s1 (wxxml (cadr x) nil nil 'mparen rop));; summand (index ;; "index = lowerlimit" (wxxml `((mequal simp) ,(caddr x) ,(cadddr x)) nil nil 'mparen 'mparen)) (toplim (wxxml (car (cddddr x)) nil nil 'mparen 'mparen))) (append l `( ,op ,@index "</r><r>" ,@toplim "</r><r>" ,@s1 "</r></sm>") r))) (defprop %integrate wxxml-int wxxml) (defprop $integrate wxxml-int wxxml) (defun wxxml-int (x l r) (let ((s1 (wxxml (cadr x) nil nil 'mparen 'mparen));;integrand delims / & d (var (wxxml (caddr x) nil nil 'mparen rop))) ;; variable (cond ((= (length x) 3) (append l `("<in def=\"false\"><r>" ,@s1 "</r><r><s>d</s>" ,@var "</r></in>") r)) (t ;; presumably length 5 (let ((low (wxxml (nth 3 x) nil nil 'mparen 'mparen)) ;; 1st item is 0 (hi (wxxml (nth 4 x) nil nil 'mparen 'mparen))) (append l `("<in><r>" ,@low "</r><r>" ,@hi "</r><r>" ,@s1 "</r><r><s>d</s>" ,@var "</r></in>") r)))))) (defprop %limit wxxml-limit wxxml) (defprop mrarr wxxml-infix wxxml) (defprop mrarr ("<t>-></t>") wxxmlsym) (defprop mrarr 80. wxxml-lbp) (defprop mrarr 80. wxxml-rbp) (defun wxxml-limit (x l r) ;; ignoring direction, last optional arg to limit (let ((s1 (wxxml (second x) nil nil 'mparen rop));; limitfunction (subfun ;; the thing underneath "limit" (wxxml `((mrarr simp) ,(third x) ,(fourth x)) nil nil 'mparen 'mparen))) (case (fifth x) ($plus (append l `("<lm><fnm>lim</fnm><r>" ,@subfun "<v>+</v></r><r>" ,@s1 "</r></lm>") r)) ($minus (append l `("<lm><fnm>lim</fnm><r>" ,@subfun "<t>-</t></r><r>" ,@s1 "</r></lm>") r)) (otherwise (append l `("<lm><fnm>lim</fnm><r>" ,@subfun "</r><r>" ,@s1 "</r></lm>") r))))) (defprop %at wxxml-at wxxml) ;; e.g. at(diff(f(x)),x=a) (defun wxxml-at (x l r) (let ((s1 (wxxml (cadr x) nil nil lop rop)) (sub (wxxml (caddr x) nil nil 'mparen 'mparen))) (append l '("<at><r>") s1 '("</r><r>") sub '("</r></at>") r))) ;;binomial coefficients (defprop %binomial wxxml-choose wxxml) (defun wxxml-choose (x l r) `(,@l "<p print=\"no\"><f line=\"no\"><r>" ,@(wxxml (cadr x) nil nil 'mparen 'mparen) "</r><r>" ,@(wxxml (caddr x) nil nil 'mparen 'mparen) "</r></f></p>" ,@r)) (defprop rat wxxml-rat wxxml) (defprop rat 120. wxxml-lbp) (defprop rat 121. wxxml-rbp) (defun wxxml-rat(x l r) (wxxml-mquotient x l r)) (defprop mplus wxxml-mplus wxxml) (defprop mplus 100. wxxml-lbp) (defprop mplus 100. wxxml-rbp) (defun wxxml-mplus (x l r) (cond ((member 'trunc (car x) :test #'eq) (setq r (cons "<v>+</v><t>...</t>" r)))) (cond ((null (cddr x)) (if (null (cdr x)) (wxxml-function x l r) (wxxml (cadr x) l r 'mplus rop))) (t (setq l (wxxml (cadr x) l nil lop 'mplus) x (cddr x)) (do ((nl l) (dissym)) ((null (cdr x)) (if (mmminusp (car x)) (setq l (cadar x) dissym (list "<v>-</v>")) (setq l (car x) dissym (list "<v>+</v>"))) (setq r (wxxml l dissym r 'mplus rop)) (append nl r)) (if (mmminusp (car x)) (setq l (cadar x) dissym (list "<v>-</v>")) (setq l (car x) dissym (list "<v>+</v>"))) (setq nl (append nl (wxxml l dissym nil 'mplus 'mplus)) x (cdr x)))))) (defprop mminus wxxml-prefix wxxml) (defprop mminus ("<v>-</v>") wxxmlsym) (defprop mminus "<v>-</v>" wxxmlword) (defprop mminus 101. wxxml-rbp) (defprop mminus 101. wxxml-lbp) (defprop $~ wxxml-infix wxxml) (defprop $~ ("<t>~</t>") wxxmlsym) (defprop $~ "<t>~</t>" wxxmlword) (defprop $~ 134. wxxml-lbp) (defprop $~ 133. wxxml-rbp) (defprop min wxxml-infix wxxml) (defprop min ("<fnm>in</fnm>") wxxmlsym) (defprop min "<fnm>in</fnm>" wxxmlword) (defprop min 80. wxxml-lbp) (defprop min 80. wxxml-rbp) (defprop mequal wxxml-infix wxxml) (defprop mequal ("<v>=</v>") wxxmlsym) (defprop mequal "<v>=</v>" wxxmlword) (defprop mequal 80. wxxml-lbp) (defprop mequal 80. wxxml-rbp) (defprop mnotequal wxxml-infix wxxml) (defprop mnotequal ("<t>#</t>") wxxmlsym) (defprop mnotequal 80. wxxml-lbp) (defprop mnotequal 80. wxxml-rbp) (defprop mgreaterp wxxml-infix wxxml) (defprop mgreaterp ("<t>></t>") wxxmlsym) (defprop mgreaterp "<t>></t>" wxxmlword) (defprop mgreaterp 80. wxxml-lbp) (defprop mgreaterp 80. wxxml-rbp) (defprop mgeqp wxxml-infix wxxml) (defprop mgeqp ("<t>>=</t>") wxxmlsym) (defprop mgeqp "<t>>=</t>" wxxmlword) (defprop mgeqp 80. wxxml-lbp) (defprop mgeqp 80. wxxml-rbp) (defprop mlessp wxxml-infix wxxml) (defprop mlessp ("<t><</t>") wxxmlsym) (defprop mlessp "<t><</t>" wxxmlword) (defprop mlessp 80. wxxml-lbp) (defprop mlessp 80. wxxml-rbp) (defprop mleqp wxxml-infix wxxml) (defprop mleqp ("<t><=</t>") wxxmlsym) (defprop mleqp "<t><=</t>" wxxmlword) (defprop mleqp 80. wxxml-lbp) (defprop mleqp 80. wxxml-rbp) (defprop mnot wxxml-prefix wxxml) (defprop mnot ("<fnm altCopy=\"not \">not</fnm>") wxxmlsym) (defprop mnot "<fnm>not</fnm>" wxxmlword) (defprop mnot 70. wxxml-rbp) (defprop mand wxxml-nary wxxml) (defprop mand "<mspace/><fnm>and</fnm><mspace/>" wxxmlsym) (defprop mand "<fnm>and</fnm>" wxxmlword) (defprop mand 60. wxxml-lbp) (defprop mand 60. wxxml-rbp) (defprop mor wxxml-nary wxxml) (defprop mor "<mspace/><fnm>or</fnm><mspace/>" wxxmlsym) (defprop mor "<fnm>or</fnm>" wxxmlword) (defprop mor 50. wxxml-lbp) (defprop mor 50. wxxml-rbp) (defprop mcond wxxml-mcond wxxml) (defprop mcond 25. wxxml-lbp) (defprop mcond 25. wxxml-rbp) (defprop %derivative wxxml-derivative wxxml) (defprop %derivative 120. wxxml-lbp) (defprop %derivative 119. wxxml-rbp) (defun wxxml-derivative (x l r) (if (and $derivabbrev (every #'integerp (odds (cddr x) 0)) (every #'atom (odds (cddr x) 1))) (append l (wxxml-d-abbrev x) r) (wxxml (wxxml-d x) (append l '("<d>")) (append '("</d>") r) 'mparen 'mparen))) (defun $derivabbrev (a) (if a (progn (defprop %derivative 130. wxxml-lbp) (defprop %derivative 129. wxxml-rbp) (setq $derivabbrev t)) (progn (defprop %derivative 120. wxxml-lbp) (defprop %derivative 119. wxxml-rbp) (setq $derivabbrev nil)))) (defun wxxml-d-abbrev-subscript (l_vars l_ords &aux var_xml) (let ((sub ())) (loop while l_vars do (setq var_xml (car (wxxml (car l_vars) nil nil 'mparen 'mparen))) (loop for i from 1 to (car l_ords) do (setq sub (cons var_xml sub))) (setq l_vars (cdr l_vars) l_ords (cdr l_ords))) (reverse sub))) (defun wxxml-d-abbrev (x) (let* ((difflist (cddr x)) (ords (odds difflist 0)) (ords (cond ((null ords) '(1)) (t ords))) (vars (odds difflist 1)) (fun (wxxml (cadr x) nil nil 'mparen 'mparen))) (append '("<i d=\"1\"><r>") fun '("</r>") '("<r>") (wxxml-d-abbrev-subscript vars ords) '("</r></i>")))) (defun wxxml-d (x) ;; format the macsyma derivative form so it looks ;; sort of like a quotient times the deriva-dand. (let* (($simp t) (arg (cadr x)) ;; the function being differentiated (difflist (cddr x)) ;; list of derivs e.g. (x 1 y 2) (ords (odds difflist 0)) ;; e.g. (1 2) (ords (cond ((null ords) '(1)) (t ords))) (vars (odds difflist 1)) ;; e.g. (x y) (dsym '((wxxmltag simp) "d" "s")) (numer `((mexpt) ,dsym ((mplus) ,@ords))) ; d^n numerator (denom (cons '(mtimes) (mapcan #'(lambda(b e) `(,dsym ,(simplifya `((mexpt) ,b ,e) nil))) vars ords)))) `((mtimes) ((mquotient) ,(simplifya numer nil) ,denom) ,arg))) (defun wxxml-mcond (x l r) (let ((res ())) (setq res (wxxml (cadr x) '("<fnm>if</fnm><mspace/>") '("<mspace/><fnm>then</fnm><mspace/>") 'mparen 'mparen)) (setq res (append res (wxxml (caddr x) nil '("<mspace/>") 'mparen 'mparen))) (let ((args (cdddr x))) (loop while (>= (length args) 2) do (cond ((and (= (length args) 2) (eql (car args) t)) (unless (or (eql (cadr args) '$false) (null (cadr args))) (setq res (wxxml (cadr args) (append res '("<fnm>else</fnm><mspace/>")) nil 'mparen 'mparen)))) (t (setq res (wxxml (car args) (append res '("<fnm>elseif</fnm><mspace/>")) (wxxml (cadr args) '("<mspace/><fnm>then</fnm><mspace/>") '("<mspace/>") 'mparen 'mparen) 'mparen 'mparen)))) (setq args (cddr args))) (append l res r)))) (defprop mdo wxxml-mdo wxxml) (defprop mdo 30. wxxml-lbp) (defprop mdo 30. wxxml-rbp) (defprop mdoin wxxml-mdoin wxxml) (defprop mdoin 30. wxxml-rbp) (defun wxxml-lbp (x) (cond ((get x 'wxxml-lbp)) (t(lbp x)))) (defun wxxml-rbp (x) (cond ((get x 'wxxml-rbp)) (t(lbp x)))) ;; these aren't quite right (defun wxxml-mdo (x l r) (wxxml-list (wxxmlmdo x) l r "<mspace/>")) (defun wxxml-mdoin (x l r) (wxxml-list (wxxmlmdoin x) l r "<mspace/>")) (defun wxxmlmdo (x) (nconc (cond ((second x) (list (make-tag "for" "fnm") (second x)))) (cond ((equal 1 (third x)) nil) ((third x) (list (make-tag "from" "fnm") (third x)))) (cond ((equal 1 (fourth x)) nil) ((fourth x) (list (make-tag "step" "fnm") (fourth x))) ((fifth x) (list (make-tag "next" "fnm") (fifth x)))) (cond ((sixth x) (list (make-tag "thru" "fnm") (sixth x)))) (cond ((null (seventh x)) nil) ((eq 'mnot (caar (seventh x))) (list (make-tag "while" "fnm") (cadr (seventh x)))) (t (list (make-tag "unless" "fnm") (seventh x)))) (list (make-tag "do" "fnm") (eighth x)))) (defun wxxmlmdoin (x) (nconc (list (make-tag "for" "fnm") (second x) (make-tag "in" "fnm") (third x)) (cond ((sixth x) (list (make-tag "thru" "fnm") (sixth x)))) (cond ((null (seventh x)) nil) ((eq 'mnot (caar (seventh x))) (list (make-tag "while" "fnm") (cadr (seventh x)))) (t (list (make-tag "unless" "fnm") (seventh x)))) (list (make-tag "do" "fnm") (eighth x)))) (defun wxxml-matchfix-np (x l r) (setq l (append l (car (wxxmlsym (caar x)))) ;; car of wxxmlsym of a matchfix operator is the lead op r (append (cdr (wxxmlsym (caar x))) r) ;; cdr is the trailing op x (wxxml-list (cdr x) nil r "")) (append l x)) (defprop text-string wxxml-matchfix-np wxxml) (defprop text-string (("<t>")"</t>") wxxmlsym) (defprop mtext wxxml-matchfix-np wxxml) (defprop mtext (("")"") wxxmlsym) (defvar *wxxml-mratp* nil) (defun wxxml-mlable (x l r) (wxxml (caddr x) (append l (if (cadr x) (list (format nil "<lbl>(~A)~A </lbl>" (stripdollar (maybe-invert-string-case (symbol-name (cadr x)))) *wxxml-mratp*)) nil)) r 'mparen 'mparen)) (defprop mlable wxxml-mlable wxxml) (defprop mlabel wxxml-mlable wxxml) (defun wxxml-spaceout (x l r) (append l (list " " (make-string (cadr x) :initial-element #\.) "") r)) (defprop spaceout wxxml-spaceout wxxml) (defun mydispla (x) (let ((*print-circle* nil) (*wxxml-mratp* (format nil "~{~a~}" (cdr (checkrat x))))) (mapc #'princ (wxxml x '("<mth>") '("</mth>") 'mparen 'mparen)))) (setf *alt-display2d* 'mydispla) (defun $set_display (tp) (cond ((eq tp '$none) (setq $display2d nil)) ((eq tp '$ascii) (setq $display2d t) (setf *alt-display2d* nil)) ((eq tp '$xml) (setq $display2d t) (setf *alt-display2d* 'mydispla)) (t (format t "Unknown display type") (setq tp '$unknown))) tp) ;; ;; inference_result from the stats package ;; (defun wxxml-inference (x l r) (let ((name (cadr x)) (values (caddr x)) (dis (cadddr x)) (m ())) (labels ((build-eq (e) `((mequal simp) ,(cadr e) ,(caddr e)))) (dolist (i (cdr dis)) (setq m (append m `(((mlist simp) ,(build-eq (nth i values))))))) (setq m (cons `((mlist simp) ,name) m)) (setq m (cons '($matrix simp inference) m)) (wxxml m l r 'mparen 'mparen)))) (defprop $inference_result wxxml-inference wxxml) (defun wxxml-amatrix (x l r) (let* ((nr ($@-function x '$nr)) (nc ($@-function x '$nc)) (M (simplifya ($genmatrix `((lambda) ((mlist) i j) (mfuncall '$get_element ,x i j)) nr nc) t))) (wxxml-matrix M l r))) (defprop $amatrix wxxml-amatrix wxxml) ;; ;; orthopoly functions ;; (defun wxxml-pochhammer (x l r) (let ((n (cadr x)) (k (caddr x))) (append l (list (format nil "<i altCopy=\"~{~a~}\"><p>" (mstring x))) (wxxml n nil nil 'mparen 'mparen) (list "</p><r>") (wxxml k nil nil 'mparen 'mparen) (list "</r></i>") r))) (defprop $pochhammer wxxml-pochhammer wxxml) (defun wxxml-orthopoly (x l r) (let* ((fun-name (caar x)) (disp-name (get fun-name 'wxxml-orthopoly-disp)) (args (cdr x))) (append l (list (format nil "<fn altCopy=\"~{~a~}\">" (mstring x))) (if (nth 2 disp-name) (list (format nil "<ie><fnm>~a</fnm><r>" (car disp-name))) (list (format nil "<i><fnm>~a</fnm><r>" (car disp-name)))) (wxxml (nth (nth 1 disp-name) args) nil nil 'mparen 'mparen) (when (nth 2 disp-name) (append (list "</r><r>") (when (nth 3 disp-name) (list "<p>")) (wxxml-list (or (nth 5 disp-name) (mapcar (lambda (i) (nth i args)) (nth 2 disp-name))) nil nil ",") (when (nth 3 disp-name) (list "</p>")) (list "</r>"))) (if (nth 2 disp-name) (list "</ie>") (list "</r></i>")) (list "<p>") (wxxml-list (mapcar (lambda (i) (nth i args)) (nth 4 disp-name)) nil nil ",") (list "</p></fn>") r))) (dolist (ortho-pair '(($laguerre "L" 0 nil nil (1)) (%laguerre "L" 0 nil nil (1)) ($legendre_p "P" 0 nil nil (1)) (%legendre_p "P" 0 nil nil (1)) ($legendre_q "Q" 0 nil nil (1)) (%legendre_q "Q" 0 nil nil (1)) ($chebyshev_t "T" 0 nil nil (1)) (%chebyshev_t "T" 0 nil nil (1)) ($chebyshev_u "U" 0 nil nil (1)) (%chebyshev_u "U" 0 nil nil (1)) ($hermite "H" 0 nil nil (1)) (%hermite "H" 0 nil nil (1)) ($spherical_bessel_j "J" 0 nil nil (1)) (%spherical_bessel_j "J" 0 nil nil (1)) ($spherical_bessel_y "Y" 0 nil nil (1)) (%spherical_bessel_y "Y" 0 nil nil (1)) ($assoc_legendre_p "P" 0 (1) nil (2)) (%assoc_legendre_p "P" 0 (1) nil (2)) ($assoc_legendre_q "Q" 0 (1) nil (2)) (%assoc_legendre_q "Q" 0 (1) nil (2)) ($jacobi_p "P" 0 (1 2) t (3)) (%jacobi_p "P" 0 (1 2) t (3)) ($gen_laguerre "L" 0 (1) t (2)) (%gen_laguerre "L" 0 (1) t (2)) ($spherical_harmonic "Y" 0 (1) nil (2 3)) (%spherical_harmonic "Y" 0 (1) nil (2 3)) ($ultraspherical "C" 0 (1) t (2)) (%ultraspherical "C" 0 (1) t (2)) ($spherical_hankel1 "H" 0 t t (1) (1)) (%spherical_hankel1 "H" 0 t t (1) (1)) ($spherical_hankel2 "H" 0 t t (1) (2)) (%spherical_hankel2 "H" 0 t t (1) (2)))) (setf (get (car ortho-pair) 'wxxml) 'wxxml-orthopoly) (setf (get (car ortho-pair) 'wxxml-orthopoly-disp) (cdr ortho-pair))) ;;; ;;; This is the display support only - copy/paste will not work ;;; (defmvar $pdiff_uses_prime_for_derivatives nil) (defmvar $pdiff_prime_limit 3) (defmvar $pdiff_uses_named_subscripts_for_derivatives nil) (defmvar $pdiff_diff_var_names (list '(mlist) '|$x| '|$y| '|$z|)) (setf (get '%pderivop 'wxxml) 'wxxml-pderivop) (setf (get '$pderivop 'wxxml) 'wxxml-pderivop) (defun wxxml-pderivop (x l r) (cond ((and $pdiff_uses_prime_for_derivatives (eq 3 (length x))) (let* ((n (car (last x))) (p)) (cond ((<= n $pdiff_prime_limit) (setq p (make-list n :initial-element "'"))) (t (setq p (list "(" n ")")))) (append (append l '("<r>")) (let ((*var-tag* (list "<fnm>" "</fnm>"))) (wxxml (cadr x) nil nil lop rop)) p (list "</r>") r))) ((and $pdiff_uses_named_subscripts_for_derivatives (< (apply #'+ (cddr x)) $pdiff_prime_limit)) (let ((n (cddr x)) (v (mapcar #'stripdollar (cdr $pdiff_diff_var_names))) (p)) (cond ((> (length n) (length v)) (merror "Not enough elements in pdiff_diff_var_names to display the expression"))) (dotimes (i (length n)) (setq p (append p (make-list (nth i n) :initial-element (nth i v))))) (append (append l '("<i><r>")) (wxxml (cadr x) nil nil lop rop) (list "</r><r>") p (list "</r></i>") r))) (t (append (append l '("<i><r>")) (wxxml (cadr x) nil nil lop rop) (list "</r><r>(") (wxxml-list (cddr x) nil nil ",") (list ")</r></i>") r)))) ;; ;; Plotting support ;; (defprop wxxmltag wxxml-tag wxxml) (defun wxxml-tag (x l r) (let ((name (cadr x)) (tag (caddr x)) (prop (cadddr x))) (if prop (append l (list (format nil "<~a ~a>~a</~a>" tag prop name tag)) r) (append l (list (format nil "<~a>~a</~a>" tag name tag)) r)))) (defmvar $wxplot_size '((mlist simp) 500 300)) (defmvar $wxplot_old_gnuplot nil) (defvar *image-counter* 0) (defun wxplot-filename (&optional (suff t)) (incf *image-counter*) (plot-temp-file (if suff (format nil "maxout_~d.png" *image-counter*) (format nil "maxout_~d" *image-counter*)))) (defun $wxplot_preamble () (let ((frmt (cond ($wxplot_old_gnuplot "set terminal png picsize ~d ~d; set zeroaxis;") (t "set terminal png size ~d,~d; set zeroaxis;")))) (format nil frmt ($first $wxplot_size) ($second $wxplot_size)))) (defun $int_range (lo &optional hi (st 1)) (unless (integerp lo) ($error "int_range: first argument is not an integer.")) (unless (or (null hi) (integerp hi)) ($error "int_range: second argument is not an integer.")) (when (null hi) (setq hi lo) (setq lo 1)) (cons '(mlist simp) (loop :for i :from lo :to hi :by st :collect i))) (defun wxanimate (scene) (let* ((scene (cdr scene)) (a (car scene)) (a-range (meval (cadr scene))) (expr (caddr scene)) (args (cdddr scene)) (images ())) (when (integerp a-range) (setq a-range (cons '(mlist simp) (loop for i from 1 to a-range collect i)))) (dolist (aval (reverse (cdr a-range))) (let ((preamble ($wxplot_preamble)) (system-preamble (get-plot-option-string '$gnuplot_preamble 2)) (filename (wxplot-filename)) (expr (maxima-substitute aval a expr))) (when (string= system-preamble "false") (setq system-preamble "")) (setq preamble (format nil "~a; ~a" preamble system-preamble)) (dolist (arg args) (if (and (listp arg) (eql (cadr arg) '$gnuplot_preamble)) (setq preamble (format nil "~a; ~a" preamble (meval (maxima-substitute aval a (caddr arg))))))) (apply #'$plot2d `(,(meval expr) ,@(mapcar #'meval args) ((mlist simp) $plot_format $gnuplot) ((mlist simp) $gnuplot_preamble ,preamble) ((mlist simp) $gnuplot_term $png) ((mlist simp) $gnuplot_out_file ,filename))) (setq images (cons filename images)))) (when images ($ldisp (list '(wxxmltag simp) (format nil "~{~a;~}" images) "slide")))) "") (defmspec $with_slider (scene) (wxanimate scene)) (defmspec $wxanimate (scene) (wxanimate scene)) (defvar *windows-OS* (string= *autoconf-win32* "true")) (defun get-file-name-opt (scene) (let (opts filename) (loop for opt in scene do (if (and (not (atom opt)) (eq (caar opt) 'mequal) (eq (cadr opt) '$file_name)) (setq filename (caddr opt)) (setq opts (cons opt opts)))) (values (reverse opts) filename))) (defun get-pic-size-opt () (cond ((= ($get '$draw '$version) 1) `(((mequal simp) $pic_width ,($first $wxplot_size)) ((mequal simp) $pic_height ,($second $wxplot_size)))) (t `(((mequal simp) $dimensions ,$wxplot_size))))) (defun wxanimate-draw (scenes scene-head) (unless ($get '$draw '$version) ($load "draw")) (multiple-value-bind (scene file-name) (get-file-name-opt (cdr scenes)) (let* ((a (meval (car scene))) (a-range (meval (cadr scene))) (*windows-OS* t) (args (cddr scene)) (images ())) (when (integerp a-range) (setq a-range (cons '(mlist simp) (loop for i from 1 to a-range collect i)))) (if file-name ;; If file_name is set, draw the animation into gif using gnuplot (let (imgs) (dolist (aval (reverse (cdr a-range))) (setq imgs (cons (cons scene-head (mapcar #'(lambda (arg) (meval (maxima-substitute aval a arg))) args)) imgs))) ($apply '$draw (append `((mlist simp) ((mequal simp) $terminal $animated_gif) ((mequal simp) $file_name ,file-name)) (get-pic-size-opt) imgs)) "") ;; If file_name is not set, show the animation in wxMaxima (progn (dolist (aval (reverse (cdr a-range))) (let* ((filename (wxplot-filename nil)) (args (cons scene-head (mapcar #'(lambda (arg) (meval (maxima-substitute aval a arg))) args)))) (setq images (cons (format nil "~a.png" filename) images)) ($apply '$draw (append `((mlist simp) ((mequal simp) $terminal $png) ((mequal simp) $file_name ,filename)) (get-pic-size-opt) (list args))))) (when images ($ldisp (list '(wxxmltag simp) (format nil "~{~a;~}" images) "slide"))))) ""))) (defmspec $wxanimate_draw (scene) (wxanimate-draw scene '($gr2d))) (defmspec $with_slider_draw (scene) (wxanimate-draw scene '($gr2d))) (defmspec $with_slider_draw3d (scene) (wxanimate-draw scene '($gr3d))) (defmspec $wxanimate_draw3d (scene) (wxanimate-draw scene '($gr3d))) (defun $wxplot2d (&rest args) (let ((preamble ($wxplot_preamble)) (system-preamble (get-plot-option-string '$gnuplot_preamble 2)) (filename (wxplot-filename))) (when (string= system-preamble "false") (setq system-preamble "")) (setq preamble (format nil "~a; ~a" preamble system-preamble)) (dolist (arg args) (if (and (listp arg) (eql (cadr arg) '$gnuplot_preamble)) (setq preamble (format nil "~a; ~a" preamble (caddr arg))))) (apply #'$plot2d `(,@args ((mlist simp) $plot_format $gnuplot) ((mlist simp) $gnuplot_preamble ,preamble) ((mlist simp) $gnuplot_term $png) ((mlist simp) $gnuplot_out_file ,filename))) ($ldisp `((wxxmltag simp) ,filename "img"))) "") (defun $wxplot3d (&rest args) (let ((preamble ($wxplot_preamble)) (system-preamble (get-plot-option-string '$gnuplot_preamble 2)) (filename (wxplot-filename))) (when (string= system-preamble "false") (setq system-preamble "")) (setq preamble (format nil "~a; ~a" preamble system-preamble)) (dolist (arg args) (if (and (listp arg) (eql (cadr arg) '$gnuplot_preamble)) (setq preamble (format nil "~a; ~a" preamble (caddr arg))))) (apply #'$plot3d `(,@args ((mlist simp) $plot_format $gnuplot) ((mlist simp) $gnuplot_preamble ,preamble) ((mlist simp) $gnuplot_term $png) ((mlist simp) $gnuplot_out_file ,filename))) ($ldisp `((wxxmltag simp) ,filename "img"))) "") (defun $wxdraw2d (&rest args) (apply #'$wxdraw (list (cons '($gr2d) args)))) (defun $wxdraw3d (&rest args) (apply #'$wxdraw (list (cons '($gr3d) args)))) (defvar $display_graphics t) (defun $wxdraw (&rest args) (unless ($get '$draw '$version) ($load "draw")) (let* ((filename (wxplot-filename nil)) (*windows-OS* t) res) (setq res ($apply '$draw (append `((mlist simp) ((mequal simp) $terminal $png) ((mequal simp) $file_name ,filename)) (cond ((= ($get '$draw '$version) 1) `(((mequal simp) $pic_width ,($first $wxplot_size)) ((mequal simp) $pic_height ,($second $wxplot_size)))) (t `(((mequal simp) $dimensions ,$wxplot_size)))) args))) (if $display_graphics (progn ($ldisp `((wxxmltag simp) ,(format nil "~a.png" filename) "img")) (setq res "")) (setf res `((wxxmltag simp) ,(format nil "~a.png" filename) "img"))) res)) (defmspec $wxdraw_list (args) (unless ($get '$draw '$version) ($load "draw")) (let (($display_graphics nil)) ($ldisp (cons '(mlist simp) (mapcar #'meval (cdr args))))) '$done) (defun $wximplicit_plot (&rest args) (let ((preamble ($wxplot_preamble)) (system-preamble (get-plot-option-string '$gnuplot_preamble 2)) (filename (wxplot-filename))) (when (string= system-preamble "false") (setq system-preamble "")) (setq preamble (format nil "~a; ~a" preamble system-preamble)) (dolist (arg args) (if (and (listp arg) (eql (cadr arg) '$gnuplot_preamble)) (setq preamble (format nil "~a; ~a" preamble (caddr arg))))) ($apply '$implicit_plot `((mlist simp) ,@args ((mlist simp) $plot_format $gnuplot) ((mlist simp) $gnuplot_preamble ,preamble) ((mlist simp) $gnuplot_term $png) ((mlist simp) $gnuplot_out_file ,filename))) ($ldisp `((wxxmltag simp) ,filename "img"))) "") (defun $wxcontour_plot (&rest args) (let ((preamble ($wxplot_preamble)) ($plot_options $plot_options) (system-preamble (get-plot-option-string '$gnuplot_preamble 2)) (filename (wxplot-filename))) (when (string= system-preamble "false") (setq system-preamble "")) (setq preamble (format nil "~a; ~a" preamble system-preamble)) (dolist (arg args) (if (and (listp arg) (eql (cadr arg) '$gnuplot_preamble)) (setq preamble (format nil "~a; ~a" preamble (caddr arg))))) ($set_plot_option `((mlist simp) $gnuplot_preamble ,preamble)) (apply #'$contour_plot `(,@args ((mlist simp) $plot_format $gnuplot) ((mlist simp) $gnuplot_term $png) ((mlist simp) $gnuplot_out_file ,filename))) ($ldisp `((wxxmltag simp) ,filename "img"))) "") (defun $show_image (file) ($ldisp `((wxxmltag simp) ,file "img" "del=\"no\""))) ;; ;; Port of Barton Willis's texput function. ;; (defun $wxxmlput (e s &optional tx lbp rbp) (cond (($listp s) (setq s (margs s))) ((atom s) (setq s (list (wxxml-stripdollar ($sconcat s)))))) (cond ((or (null lbp) (not (integerp lbp))) (setq lbp 180))) (cond ((or (null rbp) (not (integerp rbp))) (setq rbp 180))) (cond ((null tx) (if (stringp (nth 0 s)) (putprop e (nth 0 s) 'wxxmlword) (let ((fun-name (gensym)) (fun-body `(append l (list (let ((f-x (mfuncall ',s x))) (if (stringp f-x) f-x (merror "wxxml: function ~s did not return a string.~%" ($sconcat ',(nth 0 s)))))) r))) (setf (symbol-function fun-name) (coerce `(lambda (x l r) ,fun-body) 'function)) (setf (get e 'wxxml) fun-name)))) ((eq tx '$matchfix) (putprop e 'wxxml-matchfix 'wxxml) (cond ((< (length s) 2) (merror "Improper 2nd argument to `wxxmlput' for matchfix operator.")) ((eq (length s) 2) (putprop e (list (list (nth 0 s)) (nth 1 s)) 'wxxmlsym)) (t (putprop e (list (list (nth 0 s)) (nth 1 s) (nth 2 s)) 'wxxmlsym)))) ((eq tx '$prefix) (putprop e 'wxxml-prefix 'wxxml) (putprop e s 'wxxmlsym) (putprop e lbp 'wxxml-lbp) (putprop e rbp 'wxxml-rbp)) ((eq tx '$infix) (putprop e 'wxxml-infix 'wxxml) (putprop e s 'wxxmlsym) (putprop e lbp 'wxxml-lbp) (putprop e rbp 'wxxml-rbp)) ((eq tx '$postfix) (putprop e 'wxxml-postfix 'wxxml) (putprop e s 'wxxmlsym) (putprop e lbp 'wxxml-lbp)) (t (merror "Improper arguments to `wxxmlput'.")))) ;;;;;;;;;;;;; ;; Auto-loaded functions ;;;; (setf (get '$lbfgs 'autoload) "lbfgs") (setf (get '$lcm 'autoload) "functs") ;;;;;;;;;;;;; ;; Statistics functions ;;;; (defvar $draw_compound t) (defmacro create-statistics-wrapper (fun wxfun) `(defun ,wxfun (&rest args) (let (($draw_compound nil) res) (declare (special $draw_compound)) (setq res ($apply ',fun (cons '(mlist simp) args))) ($apply '$wxdraw2d res)))) (create-statistics-wrapper $histogram $wxhistogram) (create-statistics-wrapper $scatterplot $wxscatterplot) (create-statistics-wrapper $barsplot $wxbarsplot) (create-statistics-wrapper $piechart $wxpiechart) (create-statistics-wrapper $boxplot $wxboxplot) (dolist (fun '($histogram $scatterplot $barsplot $piechart $boxplot)) (setf (get fun 'autoload) "descriptive")) (dolist (fun '($mean $median $var $std $test_mean $test_means_difference $test_normality $simple_linear_regression $subsample)) (setf (get fun 'autoload) "stats")) (setf (get '$lsquares_estimates 'autoload) "lsquares") (setf (get '$to_poly_solve 'autoload) "to_poly_solver") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; Redefine load so that it prints the list of functions ;; used for autocompletion. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defun symbol-to-string (s) (maybe-invert-string-case (symbol-name (stripdollar s)))) (defun $print_function (fun) (let ((fun-name (symbol-to-string (caar fun))) (*print-circle* nil) (args (mapcar (lambda (u) (cond ((atom u) (symbol-to-string u)) ((eq (caar u) 'mlist) ($concat "[" (symbol-to-string (if (atom (cadr u)) (cadr u) (cadadr u))) "]")) (t (symbol-to-string (cadr u))))) (cdr fun)))) (format nil "FUNCTION: ~a$TEMPLATE: ~a(~{<~a>~^, ~})" fun-name fun-name args))) (defun $add_function_template (&rest functs) (let ((*print-circle* nil)) (format t "<wxxml-symbols>~{~a~^$~}</wxxml-symbols>" (mapcar #'$print_function functs)) (cons '(mlist simp) functs))) ;;; ;;; Rewrite of the function load (maxima/src/mload.lisp) ;;; (displays functions after loading a maxima package ;;; (no-warning (defun $load (filename) (let ((searched-for ($file_search1 filename '((mlist) $file_search_maxima $file_search_lisp ))) type) (setq type ($file_type searched-for)) (case type (($maxima) ($batchload searched-for) (format t "<wxxml-symbols>~{~a~^$~}</wxxml-symbols>" (append (mapcar #'$print_function (cdr ($append $functions $macros))) (mapcar #'symbol-to-string (cdr $values))))) (($lisp $object) ;; do something about handling errors ;; during loading. Foobar fail act errors. (load-and-tell searched-for)) (t (merror "Maxima bug: Unknown file type ~M" type))) searched-for))) ;;;;;;;;;;;;;;;;;;;;; ;; table_form implementation (defun make-zeros (n) (cons '(mlist simp) (loop for i from 1 to n collect ""))) (defun take-first (l n) (if (= n 0) nil (cons (first l) (take-first (rest l) (- n 1))))) (defun $table_form (mat &rest opts) (when (mapatom mat) ($error "table_form: the argument should not be an atom.")) (setq mat ($args mat)) (unless (every #'$listp (cdr mat)) ($error "table_form: data can not be displayed as a table.")) (setq opts (cons '(mlist simp) opts)) (let ((row-names ($assoc '$row_names opts)) (col-names ($assoc '$column_names opts)) (m (apply #'max (mapcar '$length (cdr mat)))) (n (length (cdr mat))) (mtrx '(special))) (when ($assoc '$transpose opts) (rotatef m n)) (when (eq row-names '$auto) (setq row-names (cons '(mlist simp) (loop for i from 1 to n collect i)))) (when (eq col-names '$auto) (setq col-names (cons '(mlist simp) (loop for i from 1 to m collect i)))) (when row-names (setq row-names ($append row-names (make-zeros (- n ($length row-names))))) (setq row-names (cons '(mlist simp) (take-first (cdr row-names) n)))) (when col-names (setq col-names ($append col-names (make-zeros (- m ($length col-names))))) (setq col-names (cons '(mlist simp) (take-first (cdr col-names) m)))) (when (and row-names col-names) (setq col-names ($cons "" col-names))) (setq mat (cons '(mlist simp) (mapcar (lambda (r) ($append r (make-zeros (- m ($length r))))) (cdr mat)))) (setq mat ($apply '$matrix mat)) (when ($assoc '$transpose opts) (setq mat ($transpose mat))) (when row-names (setq mat (cons '($matrix simp) (mapcar #'$append (cdr ($transpose row-names)) (cdr mat)))) (setq mtrx (cons 'rownames mtrx))) (when col-names (setq mat (cons '(matrix simp) (cons col-names (cdr mat)))) (setq mtrx (cons 'colnames mtrx))) ($ldisp (cons (append '($matrix simp) mtrx) (cdr mat))) '$done)) ;; Load the initial functions (from mac-init.mac) (let ((*print-circle* nil)) (format t "<wxxml-symbols>~{~a~^$~}</wxxml-symbols>" (mapcar #'$print_function (cdr ($append $functions $macros))))) (no-warning (defun mredef-check (fnname) (declare (ignore fnname)) t)) (when ($file_search "wxmaxima-init") ($load "wxmaxima-init")) �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/data/wxmaxima.png������������������������������������������������������������������000644 �000765 �000024 �00000053661 11670654443 017361� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������>a�� �IDATx铝ם9<{߻ @RHP437vRUI9U~O9xRciƴF"E")J&.�Akow{sN^F7>Zf w � _^%�� /?gJ+Y$ BM}>%vy,vײrEQ�R!AJ.sZ; ,p6n?Ε~g~ok {"Vjs v[@gu0;kn�ȉ ]kEP"Nw.gg/[-K Hh#,< ? סO(=.8}' #?jg_(A)8DL(}6[k=k�2.BBTJ !b!DN~F.)nRJ)R$Iymp�"_:h?R\zU!^$zN2P)UbXkZ몵,%RR$ ÐRRyn `!MEnk۝$qjcb+l+ZBΎNv(Jm1acǎ#G @B`gemm m}3KAFFF>5�|'"}]Ξ=+677yE9='tufmiڰ=Zccjdl/r^ KՊPH ! ;e5&5:uimwvY_[,-KKҢݨYKK)fg 1H)Nc^}UlO8aIc f !06w<?ō7\OQf;v z3X.57O8T T�RUR !N1@6䳵X Zj�ְϚISǝW.n]qu~~~l}c36ly&\6hfGL*H) =wC=ĩSlJ�ϲ|'c^~e[o4Mes{Ȏ!cpfGRﺧ16u`T~yT*zJ{S%RxJ D`CZ-$ڐ$%%>rWc9Hw_pKF666BUV80$}AZk^{M_rӧO}$ɧw~�B>W\?q@e\9fLjzTk=֨תG>p2sA|ߓЧR),XŎ{"§o'ZqƚN7hGrcᙻ=>+D5UDWa.--|;桇E M0ƨ0 sw(sZ1ᡡʃtxtѠ2?V W|ʡ<K_c@$boERF5ZKhZݸծ]==so_~k_d +80@h]\/}Ɏ<ׯ�vyxweU_a1iN4ǎR}V TJ1ͧDnkG!ߓ If<^Ff~swaky7%`Dhm!Da2??gy9r$I~)q_:�|ߧj}O\zUJ�#D$A= y g}/ TK K&XRד)@zvZ.?Rns8^y7<RVqq@p@AĝNG{<=~8q  ygƆ,Jky ׏Ƙ4MgW>}˥xЫ Ө@֢r=vk`R/lr:vz<~x^;v|߯!`*R*6sϙUsiw8 'w]nECJǀ$Iʥp駞'ҁȾAVLJ*rgݬ[yTK>~̷'?<|ן}q2AK@J)#!DzYg@K@N''~.Z;ٙҡ?iz9`bRż(=wDg7v7m"`bJ9T,<=S^yO_;i\ "x7>W|�ȃ;93/'~3|'f~A[Q U3a'3;6==]OϹjC1ɵRe/=?53ٵR0ն\EgΜ?\>|{+?wriy}̗cgyo00h(3<PAɜ%l7a^<`i {c}/6Xk$AO|}hxdp0 <sY�7x0 SO=E+�jϊVU%qğI@\7)=E8 Í C ژ=W89-kOn'翅ŝF[<%ipmi?6sc ?]+X;Ðgh4̱cNJ;^K.7=sի9�f$9ܨצw~?7!hiB3ܨj168Ztw!f%;)k->bw}^hm}P k5R+')%IrZʃ8)BxBϋK.}ҽ�A/>@\L$'~wt3_^yƚ!ÍJ7,9s>9[N߅mEQɝ֚jS/؁=?X!k>`g7 @JX[[>0�Ð>gϊ n $ML~б'f?bvr@yhm35}ݦWvK"v_[ \<m˻+h j )Xњpp汯|oةA$s8 : PJ-s cWgR @ !rC(0z:;#AmTJ 3-'z')PxsTe/uznٝ ׋DIIyKZWxoN ʢmũA؋/W^y>䓷،g_~#q`Rk=7k' ķ$'Z6o9qd,5G=nO v5Զmw�o3Ϥ(rp^!AcsovZ֥?w0]̂ ŒY�yJN<s`}_ 'Xt@Xm�%%BrqP�)zpC�cu {U?Z�aQJ8^ށ�-W+oGW 5Aa?Nމ*n*4y7ԉ_iViTT+rHm|2pD ..ݛtAE[/# m 2FDr*7Qb{̠(%;YCj'TO}fbi hY]]B}'�9)`<}G<pA0TŹk7Xk&)8F6ZJ@L 61Qn?8)WXcC~{\]^\)#=աWω^k/[ &ҡJlDMSL9RyGWӿο6ƴyrRbmbv7h|kߪWF=15Zgr5or2.(a-h4q`4qrdjv:mѿ@!{H!ke66y+T| QmMcZgj@v4͕H!u"5P -61"ƪ<rڕsA\�y~o�# O=>rɻMRZyRAeLb^FZCuF _-, m}9HxR<<1ocӥ@*mslW3N0PiUZR:NͶHyD)yXmv +D/mu_gyիW\6~^Mԡ/ ]I\�WcI<p}>uI"76TUBﱩS݈#Ü0Í 'TS|L299ƚmSK!@¹[qpqaR!LbdY"JRfk<qtZ%EqlUZl7y�)QRk6[]^9_/@Hic</mc,M2AD0m|�ZɁՒǿXPםU Z8ၹq~J9; A�9n61_'}$\.y n4c2NcG}JXTpٝOjo 5֢rPC<q/KAn+d*&7ZO:yJLȀxqz灔dB$7fV=$G(GfҍR31um{6ZL"J!k<:i#}k B>ͬO{�%QN۩5uVx [{lI )?ՅE޺p}# ʬm3~hTy'sWV&=۠_nKےw "Idbff|}a6x/,eNZO=aqJlX:TBH Tt^))ߋ!XHȉ$A' :Im<$(B7[�+R3j QB)??fYR / JᇡRA]QZk8$ qMyd'?::~ sx|c!l, CGy/ǿw'pUƹ$Gc{kSDk[mW.%Hs$Iӣ;0V\xU$zU<s9D /V!{]Ḥ%Cso3{$M\|r 30s:l:`0B>!ʝ %%kW94J801oApGp7߸p p]H-bs@r'I2ߜGZ7z.T)"U|!R"�S,< C2�(!WNE6y&m'tӔN*Jb3siq7PS +25#$zHDsm㌸0j% @ '@ZĜE7Xf-m,QӍ"bCll9we)=<ˌMuxGO>vkDj\R`u'�(rnՁa)ȉՑRcHR<Q-v[mfE/֊2g!H]=zOWY9ߧ5?G=њNӎb8%AZR,8f`nSosG 0i lu'jJ54cX R 667?G/-+BFre`ZR}$!cj>F>9Imr ESISTxKp*;X׏>聹W| rUK=�Ř Hdtvv?rꂔ8c{v#)VyXcZq 7ֶ843NѣG^׈[,;ϥ~gӄ6Vt28 3mqw G?bpz@i Z\o2:z/PY{xJ2f;bюLL;o)?zyx"/<Y8F˜ÿ/&l4&X Ͷ3p=5=|Wqh7<s/f2oxW'w wd\""N@X5PlE Y.0P)+MLt;Hg|<O ݹ|4z'!GC) ]pZ8o08;Ckc5ZmRP G)IKui<9W7PJrcyf!=t&UOM $׵d|Ss^l!tڋ^zz̽;Gxv|lOtg&yq١;)IkJw{l ,@bq4!Nk{ C5}:˫[[qB:IƾuRk7!e/|+ta<#$V P U.cRMsc^Y>tnS,o132>qĤIX R\[^F[ˍ-b ?}4w9mQ#ou\r.\sy\]Xe5ѻWc3�&yɞg]SWzrx\o_^#O^6KeP ^ʥ8߽/G&1XYtQ%Rc1Bf[.l њ "S;RZ&2B?0Z{@x(%U_Rqm@wvcbc~; }ʕ*A[ΈjؽZwwlg4dPJYu8Tujw`Ujsn76tw>αoffBEu1:u) K!ZM-xy;f J\\ˆ~CgF@J[oa҄$ܵ14E*Wc [$ k<]<y~6V'X$ǏDH_*qͷ9AMab�(pURchP(.G*LYݗ1>wLt'j`O:�r}[zpltě9pt"ʫ<D)pJS0(:QAf(',W*U:(C 1Blm^l'<}+W�,ɒR$ڰۧqV :}^an|O_ՉX\=s ~B R!{NIs0ա}G!KvJسg�cT};xX8e+7xC ɇ826nT R1ec Ny RZ; b E AµW^an|So4<Sg[ ,RN7Ӎ v(0�ZX`Tq%M0y!yMEb �wƫR}w,߼a&k HѡZc�]i};�(Clz?x,^%+)=vĻ_gayg_y/'ٱ,3澶1ZD9.i謭:՚3OS9zNǁ UdS|al.OSTS*WuO[{V S=;\;{hm Xt zXzJY8K]6F'f'''ֺ eZE0ƘZ^&fx/l|xm./"ǎr|nZ:M%y;�� �IDATS:Z4(I8<3guJj4` =P�G&F?1Fe.W`dx9�ev(Xh2\-ḱutŗ^z /0iB!8qV86 3wiƳ@l#kε+�!L󬵹 pK p;^N�ֵq3(?-ṼxT][_}|4!t?:ȁ!ׯ2](2('=:?Z.*u!\ ?u c-Z0I  +pI + {OA>\`9Sm:},׺ s!G;)h,#p�AdUJ}.ppϮ}V߳Z T}Xk+B�E ��PO�ɩi/F٣鮾nZ39@(ɟQ"Xi92̃w)ZH }O CCT5UTiC'I&)qRžez+W Ib)8"$IVá)e/"`06ɓ v`+LYl{tVW1Y{gmS*p{ýPӃZ3%gPo`-yJSenUte Ւp& 1R =$q7HӔ8tJIh&N=N0=M7bO-.J Y쌄F:^şG?Fe|TtsqRtWW3C|zؾu;$na 7gDN$G0 *?;Da\䍏Q]s)hJR+h//XV'WF)՚@3g�po*@) O:)zJ;c�ȧv*% e5\fߙ34E*Euv#k. [窆EIIAlO&]vJ;`OokC##ZOɍ]@>%0Ɣj4]%֌hE1Ϟ}/2"[QGl&A\ti-- HOڰ eE *!ի\ rᡁL{.55qS)V* |s̍+W: :NRfaꥭ[mJ$inlvC*Բ配qOl^N%o-5 J^7�]p.w֌<],lYv鮭!R0+N5Qf|n%¯'OH|!Yj 0ȦoS8fxhU y.pwTL 5~Kg65(1BӅ&nD9 LKkq)]\]y@5myvłCã)Z[9U@�ڝˈM4ُR*K]$} dmM\r$rZQڦ}_2\!A),;^hq)Ҍc^w{n‡} v<<heRW7ԩ9i.,@9Bams; ^m`S֋wKT`Z.+{N"~ }z:Gpy*ciuk,0J%ݍ vJXc3#IL<nm�[Q5vK/h4R i&)Q18pJ̕Z'kL^<:J VTh+_YC9ٜƛi7.\0= N@Uk5%ڳʗֆV87DRGى"� MZ12awc-UR֠ 8)\\{U:[Mws Qu;$iBG`hpc \|E(P)=P1X))Z<ߧ:9u:�XW6<EDk,D$ Qm`ECpeT)a(bWҶI�(:=H!UXxHvJ* xJ0Ԩ깋./J2P =auA :KKPW*NK]l!L?CM7\0.g :s:~sZ i8PW �!N?@@Gz4i(t<Dcvƅs*IN$Y[D^UTx"Y[{K0 yi}G*AZkBA A:}hCZb0trY@aVaà'Q Ksm[MgC_27UDJ܍)aT@R4[IPuٸ|1z 8ce 5iP2343 7ٍ~uj"B)I9 �ع}6") =/bŻ*8nB~VvsOd-#5][`eAX$on%RR\@-eWXm( j )ISSTfg;[U">~HhnnQ)VK._e@tL?rL$4eQŤ\v (K7 <WsPw {E <Z[$|;) <;**<|O\RJWc -φ8o-I X[_"\SD(V].G1hDJبs/,Kヒx>w}+ndum=lͦ3 H&'Ļ؜*JNw?Rfcv'zq �DЎ¾(5cU3˓#qEA>JHW֐JSO kyYdrh}] |vS̒8fQ&u�##,o:URCg!V:C /rT[v/ vit'�ɺOQ-1A3{G$$KmC(IlZ,N/ IQG\bu}4uWL<ICżBx>%&'&\qXtk?~ꥵ3y (oGD&'F3T0>P'M HЅgZx[nv�P<1XзT!Z "dNWqD1 ]@Aә h.,MS<# B8ecs{pK`80߅<<x/@j=W?i&c`ļse/\ B[^O}fU(V $)HIwy!'Tߔ4K 4MB Awí�Bcq=,iIW7Jz,OjU,9$1< 6dC:H l^;z{q.av~pt>`yT&a\^/'Q'ҨaW_||z#r5;H5Ԕ+UKSʁp66謭RK!v&vm$t :M{ 'wcuXJ�ؿ[m{1w4*]g)(KK=+ZOX6!ڨ!NV r<C iVAdžrcP& ^E G=G j|)Rc 7+o:�![-4:6 CL bSU2;tغq7�r)`V_i{Z;1uGq[!DqN/z7QvbtSeY'4StcV Bh--.k.jʚD=CJ k̉Td.JR.X>{R.7NԂR|g!I\KhPdj@̏ټv-J9-M7o&} IFQT#n�;o4I6ͮ==qLjï5 lXv u^^ɢ`+K%du/Gll5عe3?N7CrWQ]`Й3Y.A?+  <.nZ{f6>+W\*y@N b�[B@spM[ �Cqy[\u:ŵ%"-\pwm:x2*3 …pmTH1ol"XӈJd1(P|~2Vk?!!4NhV{Y*%#D Al#efdiuY7)غ6Ou ЩuTmZ >enZ5N'Fszا2s⧸v777v/S( Bb(p)Ô-@ZNcmfRHV3?{1a_ܿDc"Rf痸NZEf-.8XZ]cjN͓Ml'Oyt鮯CV2_ vׂwc%\id�ݴ 4IeZl,,)H9v7rܬ]opV뤝FnjVީ6y'h6ۙ; OƠ@HY~E> w=u(f:5S($J@mjP+%77i., BHARenyT0c M㭕Xs-X@�b!DswA *z9Xkc .M^TZ_:ʣ~@y10Ô&&HfY;e%vwQQ׉s Je7e\syp$Q6>Tn^c֯\V8eLO%}hoE�HM-݉ HHM4ZqIlT(ZG%Aa|r36ʽlD&B6* &9A7\>\> 0` OrmeWXnvJ%DF6:nsq6ZD RMAЫ3k}N%UeYf z]ݹ\]Y]]5J�;o[ U@@ԹqZFO(P`g/vBiVRs㭥%in3]) f~ ydO`~dp{mpj\uOmYn@x>R*=Οӏ-rdo_.smy+WH],P.x!hqQ/�եk[ZJgvdT‚i/--J!Ll C?4p>rڧ@fYBez_I@f]'N^k|ui^L)VKKaE4QCݗO)z I*AmjWs`{WG{ajXJ+G'BH0(0i>�.Jn//[qR|Kw:|]_"֚sW^ eR󙅄IܪV ,%tt`-~0}QblYҖN1x" ֒1h0Z n#4xetgNdkyfԫegZ{ { lݸ|bbQ�p}*�!qt._eh(NB|a[jWi lv[[DxRQ ֚ (r)k�X[t 3DV@>˕eCw1|`?VTs |?hĤQo= 'ǘ_^G7cXHw}~>C_Y `GbW ll^>Ͽ')+7oܸaR�:peKyǺzexBЉ*a@5 \ݚmZ)z<̌9KH:kkͦK&QԻ()$iISݛhM?"Kml$epGű%I)6js駐Sk˫,nyGh_;v⪻%qֽ|epĒ8)Gm R@4uUGv:c767Tqll.v y zGWq):q#Y�GXm? ? ;I nוZF޿RnCӦuDQh^^<:݈f L:I�Ơ|v+kT<v')x,hۜ:23*q6/b$;#=>/�!TJV(v#MӾD-Hviyw6MsC?5�.t ٰiga7)+㔹A8B' iG1NV =GH&DW.S<*GI|%hi RzB5 HmI J$$^6|AkJ?A4y8Vs}(:Q0u*Àaxr(qAV7hFv&="ubA q E/^Bz>RHf&dssv:8,�A /]hRk ۝K$�%\; Óv;k-M`҄VE) =ZIq,ͱob8NXR?ߣT{ _HlЙFgu٥\ҕ]ZInJ) VS/y. 5hMczÇiTseeǟRՊ lv(3=X|fVe"Ե {27;TE{˜%$KDr?gꑇ)A/%46\ xYTbdso/olF'rhL -m`ť(tU,o4905̉óL0=:L9 BDkj rV')f:O-H!M1Y[.833PevfjVSxFRc1zh&h C?#H!ZJ\T #nu+>K:m0d9oP"t8oSqBZ;� Sw�4u/|ݿq4[]17_{VoO:oΥj57e8z9\,GHRJJQ.(Fw/5Nvoy{atAF|aJemť5a=~J7V009:@ᦗ *t6x_+6.|@5]ߖ'o{_Ǒ̪hq$ CAQ$ᐔ|3xV a?M|cXf$q$QHI$HM@ +3!$Ьeϋ껪^v@8JkECloA{k!((={|:j0["�@c@ zvjzcv} 3I5JNpTȎ̅ XbZ5z h.ǕH_N}`'­*?O5C}xb`n.2 צxz2zړwwehAd瞃Zrw⩝=(Vmv�Rj6S \.a /."s&FFPGKKQ&F Cu)H@iLw?q=d?D eZhk5,Faw]87 cOp~@fYvt`ϡzf-?\ oaa(g h"q�J;SBB`R_||PkvDI0]ÐlK,!D2U$%p'0{u (v��`IDAT"};RvA�`bqh? )wџJB @P^Y!eWVP - a@8dTU1p�\A(t-eLw~!#т_;]HDȬA3>;>1!t]_2E4"?<| PRVzfDr޵;Ç_۠媍d2{Qaa@+ Q=gu>: @X|R إv;V˚P^z`y-joGf%'TŦ\bhx* wPTqd6t') ~O?u!B#]ެ8i p!pBѹ<\:x@dLS`wF?X,;g5$0S;<Ɛ`T79BHֲK\X ;I}tpL6lۂ0]*p2!8*⺨6Lo3cY :xWZ cBD`;SplǶ'@t=,``n5a 6DFAy!s'( ܑE,J`4yG8fA8 :yo/A@K˘`Xu}qb|"y<u⫻ a-R:T13Ӟa搌DU.?JFHp($8 ,Paq^ ar!B =ʖ;:&tF1SA%n u,LR ݍ"sh̃aQ>akkIrY&8 mH.Zj}}>x�VI|tWUqFG�@uB ⅑mG[�ʗ25 rt=Ca`PA\W:Tj/.!\e"b=*4Me;HƣJOeӄBgKR:%ȕ*ʗB#Č2ʸ93}0m탃سc <VK˹i<h@;jz$b\ &GMNOں/4f? ?_4mqaqs/~> %vq"Ȋkwg6ģM64t"H M Qp-ҭ= 0vog@P <;َ_ݼD w\蔂X/ T, AS%Qp$CY?ީ=>^e a1j8FX~/rJ(篹M̧2xΡC%$⚦GGܽgNJDJ躆|ĕSN  qԺK'DlvB < >cF=VT"DNz|i=ża;Wot|0>r j)Y?illCXg'�qbc @8L%QJ ]t\bbn^:VsP(g�_ K<4fZV˹ڷ;2TBz%Tm%> 'XX ,]ض[Oze\>>Tz6tG9&6t':6s k:ryD!c|nZ  $WTy}7(u Md5'Bsoݾ1ygl{|!(k'zln>y~| pW;H/Q]kMB± QpZoR %h5Dgރl :[bh1+x~K"5Gnu/F.x?B_BHaO/72RJ !Ͷ @pEA�†aD\_Zj~]osh'd=o@j̯;>&a}RWet$Hţ[̓BcR"jXɕTΡ)KÌm7s__~@!D󛩆^.&*ꊮim޺_ !Q6#�P!DJPH$wvwt7̩cϵ>ۥTPn�'x{TIAX+j[,F2X8\ƒںvX+frjDL"%_lKL|͟.Ja@</p H,X!>1PCX Jdc󕪹~b]yBV' U'0u$"~qẢd lˁF u"9mc^ e a/l0AVD5ކA4v?붮3�fs9رc2pY@JՎ矗1. f ��t]ɮ'?*egn8$`o; "5P0MWD#;1mqt:.ǭUP س7/| mQ}!ڎlJ=BUD,D; aYW]>4}Fgplp>3m+ϟ?=l:?BLkahsi�ڹ^Bh OFu޺U8~c)FЛlPoS )/M$B |a WwjxhFpw9㡃l<&#~~_|O Ց/[2CR~ȷ v]'O>dh>�lÇN8B~C@ àSS?~oR"\-Ix=,JD {J:n.da0d,Ζ8QoDj!/\,�Tط ܃jݦ{@#1 ._d!DiVaξ&B0fTҥӧOD"4?D�_Ž 2ϋl6ꪶ/}a0Bd|#ʟ8pZŤ6C ёYdE1P-i�Ֆ9c-}`e1 \rT+U tOzbf{/‡1tRɼ~kׯ/b19x>)88} 69G4ŋ/(#pUm2.@yK�BL?ǵۗR>%*/J L7itF(pC%MqlTы/v\-@ r�gR߳ f-/W c}ٳgr16 `~&�q~!qСGA�sOOoJ]׹6š11^ȾO-}M84Tp9hQ^ftkfO>TdαmD94GXTzի6&? K ~YT>R/{7}`R: 阦w-O>Xv?H6A*8z(v)os/Q<a빼~{*NAM=Z;ޭ UDKC[ U7Ϲ|H8oۅc|vŲaڊyYAg >+ {mq/ɪ׼%(y-�mn<}s-��T*x饗8|W�1-^Y4۶ٳۗ3KxLbw:-F PerL^Fc{7mN/Df5p$Llp uMkn^蝷rWWּ 0۶y__W*#Hm'fh/2�W_}UJ"0l)eձ  7/%L.eV<!:b!XD eT0YGbAHU}K$ `<ԩ]PGQG'JJO_plzttTr.N0Pk۶>';m[B!) A u0rɉ|酙=OnoO vuN 9.i;(Wl`Z.P[qAy5 j>;@ NyksRE9M|/?cY_W � _~CCC[XZZr/�͸.Dҥۦ=~v3㩾C1NZWuZ(B U&BKɛx|[ue0|'/ )m)kYꩧĉ'iږ2b4 KKKFA87 _dY�s� @RZ6 ]]y_t߹ucȱߙpk2Կ?"v!+7]Gc2_( Xʸ}g᜻�ѣGVӖ �\lv{H<wKJiU�%M �&{ffRCxȱ"=`zLD[H[Lz׮]eP( ڶͣѨ,ﵵ|s1alxsպ̙3rllL^tIڶ-t]QEY^u)eDT;|'n1BmĐ͍�Y7sݙNJw|[6Pʳ_G#5;RJ8߾}<y!|^:Ľ:#GO" | aRَٶ #ήݻ{{m;Z{-RV$u_X]~mg>ecYoÆ<62ކc#GرcR3 �2˲ۋW^yE^~]J4�Ho+:5]W�K.];:R;&w {]]HiVIhc&/5.v!9@ ]䚕jqme5^_rQ*L4m0 ԝ2pιb``@?~\Rڿ ڴ�˲>{Rɺѣ/_s.4MM&uCc XBJ,..-^&R*J^=M$Sp,7B8QBYPjx`CE )Nն̲mUJz1RZ]XKigyyYr9^5- @QӴn g }u/O?-<MjqG` .y*vJpy}9::*٬]4_"��i1@KxPݟQJBabr,x DH$aPƴZ)t][X)ժTʼT,r,K0p]גI)-1ʆaLG%0Lԝ;ѕR ]ÇH$`T>!xڸK={VuJBHC�J9%9썈 3aE8/s@:!$>sbSJ-BT?VlG#f� )XYYMT,�\n?@>/ɣfA͂@1dNA T5z;4@B`YQ'`f'Pơ~C) f3Xo:>]ЃTwt5 A iz}Lo:yǿ+[DU&)xC}Gן2�4 1GtS&�>5'p}# N63@׃B0=H_Thfpwl<nMzq M�uQ*~Q[EmRԞ%qxս@$@"ɓ'<D�~Kyh˪K_L�'”S����IENDB`�������������������������������������������������������������������������������wxMaxima-13.04.2/art/config/������������������������������������������������������������������������000755 �000765 �000024 �00000000000 12150104171 016105� 5����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/license.txt��������������������������������������������������������������������000644 �000765 �000024 �00000001231 11670654443 017042� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������ LGPL Toolbar Icons ------------------ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. http://www.gnu.org/copyleft/lesser.html Version: 03-29-2004 Author : Jens Neuwerk Contact: jenne@stockicons.org �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/maximaicon.ico�����������������������������������������������������������������000644 �000765 �000024 �00000302536 11670654443 017514� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �h��V��� ���� �����00���� �%��f��@@���� �(B��;������ �(�6}��(������ ���� �����@���������������������������������999999999 999 999999������������������������444888 LKJ?nifa888888���������������666999ɷŵŶĵó_\YM888������������888ǵϿʼŵȸda^S888������999|ÿĽȼǸ:::%������99:)ôʻ}yͻXUɽx}999999njf_ónmȺ_\Ŷ999 999~Ĵih{xǸ888999}ĴʺɷǸ888999lhe]óͿroyuŶ999 ���999'µ帤xŻ~yPJ[Xó|v{999���999}}v99:#���������888Ǻb`^O888���������777888ZWUG888���������������222888 FFE9gd`Y888888���������������������������999888888 888999�����������������������������������������������(��� ���@���� ��������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999999999999 999999999���������������������������������������������������������888999 9999995677S>>?kLKKyQQP}JJJw<==i777Q9991999999888���������������������������������������������444888888777O][YϿóóóξ﹬ݔTSR777I888888333������������������������������������666888888=\[Y˾Ⱥ²óóóóóóó²RQP8885888 555������������������������������666888999SɻolvǶȺȺȹǸŶĴóóϾ~yt888I888666������������������������666888:::Y²ĵcr±jű̿˽ɺƷóó³888M888555���������������������888 888Kó²ȹɶv˾ȺŶôô~888?888 ������������������999999/ytpѿȸi̷²óĶƱʿɽɽóda_999%999������������999999CCCmɺxǭ˻oӾ;;;_999������������9999993òWPMFvpý`ZзͻYUYUso²|ws999)999���������999 :::aŷ²ȹgWUSP~WTXU˿п²777Q999���������999a_]ó²ŵjĵSPig^\ʽWTYVķǸóJJJw999������999999)~óóŵlTQ][badctZWqm˾ɺóóvrn999������9999997óĴǸl`^^]yx[YʻĴó999+333���999888?óŵivt^\]\xwǽSPʼĵó9993333���999888?óŶlĮ^]kimfKEʼĵó9991333���9999997óŵ˽ĵec]\SLSPʻĴó999+333���999999)|óĴɻt][igPJQN^[Ⱥóótpl999���������999^\[óóǹʻpkfd`SPDZ}nj\Yli̿ǸóHHHu999���������999 999]ôĵ˼ktLFRLNHŷ|[X\Ypmƺǹĵó777O999���������9999991~ƶdm}TPQMNI˾vԿZW[XXUóówsn999'999���������999999@@AiǼ鯗dguƯx½ɼɺ:::[999 ���������������999999+spmͿvƺuvx~_ɼ`][999#999������������������888 888GŶʹ°}888;888 ���������������������666888999S̾Ⱥ}777G888 333������������������������777888888M}wǼtpl888C888555������������������������������666888 8887SRQJJIu999/888 666������������������������������������222888888777GRQP}ɿ뷮׋~JJJw888A888888777���������������������������������������������999999999999/777K999cBCCoGGGsABBo889a777I999-999999888������������������������������������������������������������999999888 888888888 888 999999�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���0���`���� �����%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������888999999999999999999999������������������������������������������������������������������������������������������������������������999999999999 999888888888999999999888 999 999888������������������������������������������������������������������������������������������999999888 999999!8881999A888Q666]666e777i677g666a777U888G9997888%999888 888999���������������������������������������������������������������������������222777888 999999/888M::;kJJJhfc|ˮϬ͢ŏsolTSR===u888W8889999888888444������������������������������������������������������������������444888888888/777W?@@uroʻóóóóóóóóóϿ񺭢ًKLL777c999;999888 666������������������������������������������������������������666888 999%888MAAA|Ƹó²²óóóóóóóóóóóó񞖎RRQ888_888/888777111������������������������������������������������111777888999/999eigdûİ;ıʻ˽ŶĴŵŶŵŵĴóóóóóóʻ뇂}===w888?888888444���������������������������������������������6668889997999sǻ󷥃adccfyȺɻɻȺȹǸƷĵóóóòóHHH888I999888111���������������������������������������7778889999AAA{ó̾qdfelrjdͿ̾˽ʼȺǷŵóóóóTSR888K999888������������������������������������6668888881???yó³ĵɸ²ǸɶƷiȻ̾ʼȺƷĴóóóµONN888E888777333������������������������������888 888'777i²²²óŶ˾̿˾s̿ʼǹŶĴĴĵDDD9999888777���������������������������888999888UrolϾ˼ͿŻȾпzZɵƹȻɻǹķƻ·÷:::q999'999 999���������������������999999 8889MMLŷѿθpj˿̱pqrзpmj888O888999���������������������999999778eóƹmh^Wf_jckcjcg`aZmf¯y~p^W^Xc\g`f`f_c]`YXQ==>999/999 ������������������999999 9999UTS;²Ƹ^WMFNGMFicƿuɿGA~ʽѾebYVYVXUVS{w888S999999���������������888888777[ó²ɻɺҺe`RN_[ͽMHVSZWYU@@@y999)999���������������999888+<<<}Ƹó²ɸhhlXU|lj[Zc^|VSZWVRɺ³²²²db`888A999 999������������999 888A`^]ôó²İhjVRZX^\[YŨrɼURZWURǺǸĴóó777]999999���������999999777Uóóò¬hiTQ][_]\[wuWTZWfbź˽ɺŵóó;;;s888!999���������999999999g²óóíhnWT{xed^]_]dc^\wqZXZWźʼƶóóʻGGG999-999���������888999%>>>uóóĵDzina_qn\[^]onYXqr[YYVȽ˽ǸóóZYX9997888 ���������999999+CCCǸóóŶ̼jjtrgetr^]]\vusrujdZXYV˽Ǹôó²ifd999?888 ���������999999-GGFʻ²óƷsi`]ZY^][ZWVYSNI[Y˾ǸĴó³qmk888A888 ���������888999-FGFʺóóƷk̿ZX^\^\fdPINHXT˾ȹĴó³pmj888A888 ���������999888)CCCƸòóƷʼ˺jWU_^^]]\][MFMGqoǾ˽Ǹôó²hec888=888 ���������999999%===uóóŶɻkɷWT\[^\on_^LFVTǽ˽ƷóóXWV9997888 ���������999999999eóóĵȺ̿lzZWec]\[ZNH|vTQZXʿʻƶóóɺFFF999+999������������888777SóóĴǹ˽Ĭm`]ZX][a_KEkg\ZXU̿ɺŵòó:::q999!999������������999 888?\[Zó³óƶͿqma[sm\VNHOJc]_[ca\YWT˽ǸĴóó777[888888������������999999)::;yµó²fhowwqPIRLRLLFpտ[Y\Z\YXT¶ɼɺƶó³_]\999?999 999������������888999777WóxggǺvqNGQJQKKEŷvYV]Z\YXUĵĴóó>>>w999'888���������������999999 9997POO˻ðbhtdaYVWUSPPLOJtqȽvv׿|zYW[XZWYVYU}Ÿ²³ówtq888Q999888������������������999888777aųagiqưyív}¯ʼó;;;{999-999 ���������������������888999 9997HHGȿ߷dd~vDZyůxǵƶ^пjhe888K999999������������������������999999888Ohfc˿Ϳusvʾsutrqpmkjjijka^999k999#888999���������������������������888 999%777c~ȺпѿѿпоϾϽμλͺ̹˸ʷı@@@}9995888 777������������������������������666888 999-<<<s²óHHG888A888777������������������������������������6668889995===uĵɺLLK888E888888������������������������������������������7778888881777kzv̿ABB888C888888000���������������������������������������������777888888+888_][Zʽyuq::;o8889888777333���������������������������������������������������666888 888!888G===wxtp·Ƽ鐉III888W888)888777������������������������������������������������������������222888888999+888O:;;ydbaɽĺ밥zvrBBB777[8885999888 666������������������������������������������������������������������222777999 888999+888E899cCCC[YXwsoÞ~yudb`III:::k888O8883999888 888222������������������������������������������������������������������������������999999888999999+999;888I777U666]666_666]777W888M888?9991999!999888 999999���������������������������������������������������������������������������������������������888999999 888 888888888888888888999 999999999���������������������������������������������������������������������������������������������������������������333333333333333333333������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���@������� ������B������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999999999999999999999���������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999999999999999999!999!999999999999999 999 999999999���������������������������������������������������������������������������������������������������������������������������999999999999999999!999-9997999A999K999Q999W999Y999Y999U999Q999I999?9995999)999999999 999999���������������������������������������������������������������������������������������������������������������888999999 999999!9993999E999Y666m566;<<FFGQQQZZZ_^]^^]XXXOOOCCD99:555y777g999S999?999-999999999 888������������������������������������������������������������������������������������������������������666888 999999%999;999W666s<<=YYYöο´ĴĴĴô´̽翳٦{xvPPP889777k999O9995999!999888444������������������������������������������������������������������������������������������444888999999#999;888[666PPPöôĴóóóóóóóóóóóóĴ񺯥~{xEFF666w999S9993999999 888333���������������������������������������������������������������������������������666888 9999991999S666}UUTijóóóóóóóóóóóóóóóóóóĴ˽咍GGH666s999I999)999888 666���������������������������������������������������������������������������666999 999!999?777kCDDʽôóóóijĴĴijóóóóóóóóóĴ˼}z;;;888]9997999888 555������������������������������������������������������������������111777999999'999K666}gfeξqps~ŰĵƷƸǸƸƸƷƶŶĴóóóóóóóijPPP777o999A999!999 666���������������������������������������������������������������777999999)999S9::^dffffebd˿ɻʼʼʻɻɺȹǹƷŶĴóóóóóó̾mlj666{999G999#999666���������������������������������������������������������666999999)999U<==Ĵͽ\dfggdcceejͿͿ̿̿˾˽ʼɻȹǸƶĴóóóóó³~{777999I999!999 555���������������������������������������������������666999999'999S===ijó²abnŰпqhj̾˽ʻȹǸŵijóóóóô777999G999888 555���������������������������������������������777888 999!999K9::Ĵóóó²̿}i̿˽ɻȹƷĴóóóóô|y666{999?999888 444������������������������������������������888999999A677}Ĵ²²²²ĴƷǸȺ˽ϻjp˾ɼǹƷĵĵĵĵögfe777m9995999888���������������������������������������9999999991777kihgμʸǶƶɹŻǽǾǾȿ˽q[ůůƯŮíʿƺ·´III888[999)999 999���������������������������������999999 999#999UEFFǹͼ¶vp\}pnoniɼҾϺͷʳɳɲȲʴ˵ιѽDzȹ999999E999999���������������������������������999999999=667óϽttrɪospοsqo777m9991999999���������������������������999999 999'888]XXX³²Ͻ92uA:xG?~JBKDLDLEJCIBF?|C<y|ǵoQLmpiϷ@:x@:xC<|D>F?F@F@F?E>C<~A:x;4srkɼ¶@AA999M999999���������������������������999999999=777ij²ϽTLKDNGOHNGLFUNjC={kiURXVYVYVXUVSSP~{Ÿ²~{666o9991999999������������������������999 999#999YTUT³ó²п|uIBLEKEYSĭzļHB_YħWTZVYVYTVQϽ²ķ>>>999G999999���������������������9999999995666wijóóag~gdZXXVa_WUE@jö»TQ[WZWXT}õɹμ²Ĵkjh888c999'999 ���������������������999999999G??@ǹóó²nijcƿXTSPüVT][TQoĭƿURZWZWTPöĵó²óó6669999999999������������������999999#888[_^^ôóó±ekjķƿVRSP\Z^\^][XζnrSQ[WZWROɻȺǹŵóóó˼CCD999K999999������������������999 999/666qijóó²ckgSPSP^]]\_]^\XWvvtUR[XZW^Z¶˽ɺƷóóóĴcbb888]999#999���������������999999999;666óóóócjkøSPSPXW^]_^^]\[ƺsxuXU[XZVxtȻ̿ʻǸĴóóij666o999-999 ���������������999999999E>??ǹóóóĴdkoǼWTTQzx]\_^_]kj][XVoxtZX\YXUĻ˿ʽǹŵóóó556}9997999���������������999999999OKLLóóóŵfkob_USYW^]_]YXutYXusĸqpZX[XUR˽ȹŶóóó99:999?999333������������999999999WYYXĴóóóŶkkksqWT\Z_^^]jiVUcbmnʰQM]\[XTQø˾ɺƶóóóɺ?@@999E999333������������999999!888[ccbĴóóĴƷ|khWUa`^\_][ZjhVUfF@RN][[XǼ̾ɻƷóóóξEEF999K999333������������999999#888]ihgĴóóĴǸƷjhϽWT}YX^]^][ZWVvuJDLGSPol̿ɻƷóóóHII999M999333������������999999#888]ihgĴóóĴǸɻfkŷȿTRpmon^\_^]\_^VTNHOIHB̿ɻƷóóóϿHHI999M999333������������999999!888[bbaĴóóĴƸɻsksǽSPc`WV^]^]XWXW{tPINHGBƾ̾ɻƷóóó;DEF999I999333������������999999999UWWWôóóóƷʻ«hiνURYW][_]^\mlXVYWaZOILFTQĺ˾ɺŶóóóȺ>??999E999333������������999999999MJJKóóóƷɺʽrl~]ZTRXV^\^]ZXXWOILFXVTRĺ˽ȹŶóóó889999?999333������������999999999C===ƸóóóŶȹ˽ͻgiɿkhSP[Y^\]\\[HDSMF@US\ZZWǼʼǹĵóóó555{9995999������������������9999999666óóóĵǹʼ̿³kj~US\Z][^[\ZZTICNJ]\[Xfcʿ̿ʻƸĴóóĴ666m999-999 ������������������999 999-666mĴóóĴƸʻ̾lyLHROYV][XVʽKEic][[YZWwt˾ɺƷóóóĴ_^]888[999#999������������������999999!888Y[[ZôóóóŶɺŵvmmHBztXRNHMGKFdajJDMHlj\Y\YZW˿ʼǹŵóóóɻAAA999I999999������������������999999999E<==öóó²wdiif`IBQJRKRLRKKEyqǺnh[Y\Y]Z\YZVǽĹ˾˽ɺƷijóóij555{9997999999������������������9999999991666sĴò˾¬ahifHBPJSLSLRLJDvruWU\Z]Z\YZV}zĺĹĶƷŵóóóôcba888_999%999 ������������������������999999!999UNON`fig~NJLFNHOIOIHCvwȸXV\Z\Z\YZWWS³ijóóó;;<999E999999������������������������999999999;666}Ŷ̿ahh}fbSOWT[Y[YVTROQMQMTQŹtîytռWUYW[W[WZWYVXTSOd`ν²óóĴvtr777k999/999 999������������������������999999 999#999YPPQaghla]`\c`hdjglimjnkmjigc`jgn­xȱztfc`^fchfljljkijgfc`^\Zɼòó<==999I999999������������������������������9999999999666ycefcuDZyʲzŮw˺\ôhgf777g999-999999������������������������������999999 999!999O@@AúͽiacbȽ̾kvůxƯyĭxsijǪæ˿ɼǹƹƸǹɼŧ__²777999A999999������������������������������������999999999/888e\\[÷İ|vsy{qstsrpmlkkkjjihhgd`]µCDD999U999%999 999���������������������������������������888999999;666w~{x²Ĵ̿ɵʵ˵˵ʵʵʴʴɴɳȳȲȱDZưƯƯʽıZYY777g9991999777������������������������������������������555888 999999G777ĴòɻŶönlj777s999;999888������������������������������������������������666999 999#999M999Ĵŵòwur666y999A999888 333���������������������������������������������������666999999'999O999óȹϿoml666y999C999888 666���������������������������������������������������������777999999%999M777xvtϿ̽ķ[[[666s999A999999 555���������������������������������������������������������������777999999#999E666uVVVɻEEE777g999;999888 555���������������������������������������������������������������������666999 9999999888a<==}Ϳlji888999W9991999888 666���������������������������������������������������������������������������666888 999999+999K666sGHHͿ¶|yv>>?777i999C999%999888333���������������������������������������������������������������������������������2227779999999995999S666wDDEyvsķͿ娠hgf===666m999K999/999888 666777������������������������������������������������������������������������������������������555888 999999!9995999M777i777JJKpnlŷ;µĶĶ´˽µݰ͐edcCDD666888a999G999/999999888333������������������������������������������������������������������������������������������������������999999 999999999+999=999Q888c555u677<==DDEKKKNNNNNNIIJBCC:;;666666q888]999K9999999'999999 999888������������������������������������������������������������������������������������������������������������������999999999 999999999'9991999;999C999I999M999Q999O999M999I999A9999999/999%999999999 999999���������������������������������������������������������������������������������������������������������������������������������999999999 999 999999999999999999999999999999999 999999999���������������������������������������������������������������������������������������������������������������������������������������������������������333333333333333333333333�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���������� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999999999999999999999999999999999999999999999999999���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999999 999 999 999 999999999999999999999999999999999999999999999 999 999 999999999999999������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999999 999 999999999999999999999#999%999'999'999)999+999+999+999)999)999'999%999#999!999999999999999999999 999 999999999999���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999 999999999999999#999'999+999/99959999999;999?999A999C999E999G999G999G999E999E999C999A999=999;99979993999-999)999%999999999999999 999 999999999999���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999 999999999999!999'999-9995999;999A999G999M999S999Y999]999a999c999g999i999i999k999k999i999g999e999c999_999[999U999Q999K999E999?99979991999+999%999999999999999 999999999���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999999999999!999)99919999999A999K999S999[999c999k888s666{555333333333333444455455455445344333333333444555777w888o999g999_999W999O999G999=9995999-999%999999999999 999 999999���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������888999999999 999999999999%999/9999999C999M999Y999c999o666{444333455:;;DEFOPQ[\]hhiqqq{zz~~}vvvmmmbccUVWJKL?@@778334333555888u999i999]999S999G999=9993999)999!999999999 999 999888���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������777555999999 999999999999'9993999?999K999W999e888q555233566ABCTUVnnnƻµĶŶŶŶŶŶĶõʾ·Ӹǧ{zz`abJKL:;<333333777y999k999]999Q999E9999999-999#999999999 999 888333������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������333888999 999999999999)9995999A999O999_999m666333778JKLiij¸ŷƶƵƵŴŴĴĴĴijijijĴĴĴŴŴŵƵƶƶĶʽݸǝzzyYZ[??@334444888u999e999W999I999;999/999#999999999 999666222������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������222777999 999 999999999'9993999A999Q999a888s444444DEFhiiƶƶŵŴijóóóóóóóóóóóóóóóóóóóóĴŴƵƶöĹӦ}}|TUV9::333666}999k999Y999I999;999-999!999999999 999444������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������444999999 999999999#9991999?999O999a888u333677RST̿ƶƵŴijóóóóóóóóóóóóóóóóóóóóóóóóóóóóĴŴƶĶ͙hijABC333666999k999Y999G9997999+999999999 999 888333������������������������������������������������������������������������������������������������������������������������������������������������������������������������222777999 999 999999999+999;999K999_999s444777WXYĶƶŴijóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóĴƵƶ˿ݩrssCDD233776999i999U999C9993999%999999999 999333������������������������������������������������������������������������������������������������������������������������������������������������������������������222999999 999999999%9993999C999W999m555555TUVŵŴó²óóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóŴǶ㪥ppq?@A222888w999a999M999;999+999999999 999 666666���������������������������������������������������������������������������������������������������������������������������������������������������������111999999 999999999+999;999M999c777{333GHI~ôŵĵĵĵôҿҿóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóŴƶߢbcd888444999m999W999C9991999#999999999 888111���������������������������������������������������������������������������������������������������������������������������������������������������333:::999 999999!999/999A999U999m44499:hiiȺҿóĴĴĴĴĴŴŵŵŵŵŵŵŴĴĴĴijijóóóóóóóóóóóóóóóŴƶƻӍKLM333877y999a999K9997999'999999999 999222���������������������������������������������������������������������������������������������������������������������������������������������555999 999999999#9993999G999]888w333JLLȽνĶĵͼó±ŵƶƶƶƷƷƷƷƷƷƷƷƶƶŶŵŵŵĴĴóóóóóóóóóóóóóóŴĶ񲬧kll788555999i999Q999=999+999999999 999333������������������������������������������������������������������������������������������������������������������������������������111666999 999999999'9997999K999c666555defôuZY\]]]]\[[\cs̺ĶĴǸǹǹǹȹȹȹǹǹǹǸǸǸǸƷƷƶŵŵĴĴóóóóóóóóóóóóijǵǼՊEFF333999q999W999A999/999999999 999333���������������������������������������������������������������������������������������������������������������������������������666999 999999999'9999999O999i555;<<|||ùògYbdeffffeeeec`\\oǺĶȺɻɺɻʻɻɻɺɺɺɺȺȹȹǹǸǸƷƶŵŵĴijóóóóóóóóóóóƴĶUVW333888w999]999E9991999!999999 999333���������������������������������������������������������������������������������������������������������������������������555999 999999999)999;999S999m333DEFƵɻWbdfgggggggggfffeb[kîǹʻ˽˽˽˽˽˽˽ʼʼʻʻʻɺɺȺǹǸƷƷŶŵĴijóóóóóóóóóóŴƶghi444777}999_999G9991999!999999 999111���������������������������������������������������������������������������������������������������������������������555999 999999999)999;999S999o333MNOĶŴóYbdfggghhggggggggggb\ɻ˾̿̿̿̿̾̾̾̾˽˽˽ʼʼʻɺɺȹǹǸƷƶŵĴijóóóóóóóóóijƶtuu777777999a999G9991999!999999 999333���������������������������������������������������������������������������������������������������������������444999999999999'999;999S999q222RSTŶĴóó̿Vbdefggggfca___`bfggf]|ʼͿ̿̾̾˾˽˽ʼʻɺȹǹǸƷŶŵĴóóóóóóóóóóƵȼ~~~899666999a999G9991999999999 888333���������������������������������������������������������������������������������������������������������222999999 999999'999;999S999o233UVWƶĴóóómW`cddc_]csƷ˾ʼó~f`gih^̿Ϳ̿̾˾˽ʼʻɺȹǹǸƷŵŵijóóóóóóóóóƵ˿݂99:666999a999E999/999999999 888������������������������������������������������������������������������������������������������������222999999 999999#9997999Q999m333STUƶijóóóóóc^_boªĵefih]Ϳ̾̾˽ʼʻɺȹǸƷƶŵĴóóóóóóóóóƴ߁788777999_999C999-999999999 555���������������������������������������������������������������������������������������������������888999 999999!9993999M999i333NOPƶĴóóóóóó²̿ʽʽ˾̿lgjflͿ̿̾˽ʼʻȺȹǸƷŵĴijóóóóóóóóƵ˾|||666888{999[999?999)999999999333���������������������������������������������������������������������������������������������777999 999999999/999G999e444EFGŶĴóóóóóóóijò±Ⱥ˽Ⱥɻ˾нgjk`Ϳ̾̾˽ʼɺȹǹƷƶŵijóóóóóóóóƵƻopq344888u999U999;999'999999 999444���������������������������������������������������������������������������������������888999999999999+999A999_666<=>ĶŴóóóóóóóóĴŶƷƷŶƷǸȺʻ̾hle̾˽˽ʼɺȹǸƷŶĴij²±±±±±±ų`ab333999o999O9995999!999999 777���������������������������������������������������������������������������������������999999 999999%999;999W888w566Ŵ³²²²²±òĴĵƷǸȹɺʼʼ˽̾̿Ƿfomp˿˾ʽȼǺǺǺǺǺǺǺǺȻ˾MMN444999g999I999/999999999 777���������������������������������������������������������������������������������999999 9999999993999O999o222ghiùŴ²ѿоϽμννξϾϾξϿµµ÷ķĸŹźǻȼʾmzvq==>666999]999A999)999999 999999���������������������������������������������������������������������������999999999 999999-999E999c444MNOŵ²оͻȷƴò°ŹžͿjzeHw?¸Ǽnxzzz{{{{yyxuomkihffeeddddccbba`_```abbeʹzzz444888w999S9999999#999999 999���������������������������������������������������������������������������999999 999999%999;999Y777};;<ĵòϾʸ̼ųȽxhrzL{?UȲ̸nejkllllkiec˿īʿƺĸ´öǻɽź}v\]^222999i999I999/999999999999���������������������������������������������������������������������9999999999999991999M999m333nop˾Ŵѿ˹ķĬeclozhEǺjpqrrqpllʯBCD666999]999?999'999999 999���������������������������������������������������������������������999999 999999)999A999_555KLMƵ²μöδmor|Ltnrssrpkʬξ˼|||444999q999O9993999999999999���������������������������������������������������������������9999999999999995999Q888u667ĶĴ²˹ĽüǵkylEεȷjrttsmžʿѽRTT444999c999C999)999999 999���������������������������������������������������������������999999 999999+999C999c333Z[[Ƶó²ѿͼ?;70q<5t?8wC<zE>|H@IBJBJCKCKCKDKDIBG@HAF?}D={C<zB;y?8xOHƤjxg`wtB;z»̮hqttsjȹVP:4v>8x@:yA:yC=|D>~D>G@GAGAGAGAG@G@G@F?D=~D=}B;{@9w?8v<5t92sB;x̺ô899888w999S9997999!999999999���������������������������������������������������������9999999999999997999S888w99:ƶijó²оνvr/(l?8vD=yG@|JBKCKDLELEMFNFNFNFNFMFMFLEMFKDIA|G?{E>z92t˫jpmŹQL=7vpmllj`Ķ60r=7v@:xB=yD>}D>E?F?F?F?F?F?F@F?F?F?E?E>E>D=D=|B;w?8u;4s+$k˹ò¸\]^333999e999C999+999999 999���������������������������������������������������������999999 999999)999C999e333]__ĹƵóó²ѿνpjc\OHA:xC<|KDMFNGOGOHPHPHOHOHNGNGLED=E?|UNg`wp|uǧikg?:zF?{c\p¥Ĩçsp^[NKGDMISPSPTQTQUQUQURTPSOSORNQMOKKGC?FAWSkgyt̺ŵ9::888w999S9995999999999999������������������������������������������������������9999999999995999Q888w9::ƶijóó²˹yrIAF?NGNGOHOHOHOHNGMGJCG@}wĶhdtpl@:zJCGA}ƪdоomSQ\Z][^\_\^\^\_]^\][]Z[YSQa_ͻŴĺ]^_333999c999C999)999999 999���������������������������������������������������999999 999999'999A999a333YZ[¸Ƶóóó²˹üc[C<MFMFNGMGMFLEICICлjb\NJD>JDA:~kkOLXUYUZVZVYVYUYTXSWRNItpνо²óƷ788888u999O9993999999999���������������������������������������������������999999 9999991999M999q566ŶijóóóóĶ˿ӾjdA:ICJDKEKEJE@:̸Ż{¸QPKFHBF@c]bvtpSPZV[W[W[WZVZVYTTO`[νμ²óƵRST444999]999=999%999999 999������������������������������������������������999999999#999;999[555JKLƵóóóóóѿYZbgpѻXTPMXV[Z\ZYXa_}TS\ZJFIBF@ľʰehOKYV[W[X[W[WZVXTMHƻĶŶǶɷμѿ²óĴĶ~444999m999I999-999999 999���������������������������������������������999999 999999+999E999g333rrrµŴóóóóóѿȻ[eedaYYRQ[Z[YZXSQ|yſĿ\ZWU_^ZYID?:skhQMYV[W[X[XZWYUWSQMǷ̼ξп²²óóƶBCD666}999U9997999999999���������������������������������������������999999 9999993999Q888u;;<ƶóóóóó²Ĵ_hijifYaNKWTYUYUOKǿPN[Y[Ya`YVD>YSµgqiȼúROYVZW[X[XZWYUSOgcƼ˽ôôó²²óóóóŴʽbcc333999a999A999'999999999������������������������������������������999999999#999;999[444RSTƵóóóóó±ʽrciklkekĻVSWSYVYVNK}TR\Z][][a`UR?9ӼiqrkȴQNYVZW[X[X[WYUNJɺöƸǸƷŵĴóóóóóijŶ566999o999K999/999999 999���������������������������������������999999 999999)999E999g333sssµĴóóóóógfjllkbïb_UQYUYVNKĽ[YZX][^\^\^\a`IFwqltsnļOMYV[W[X[WZVXULHǹɺȺǸƶĵóóóóóóƶCDE666{999U9995999999999���������������������������������������999999 9999991999M888s899ƶóóóóóóbgjllgxƾȽroROXUXUNKƿPN\Z]\^]_]^\]\]\RO¦gsursžNLYV[X[X[XZWWTPMöķɻʼɻǹƷŵijóóóóóŴƻ[\]333999_999=999%999999���������������������������������������9999999999997999W666HIIƵóóóóóijϾ`hkllcȺ·ȽOLXUXUNKutUT][^]_]_]^]][]\SRqpvwp{žOLZW[X[X[XYVUR^ZƽȻƺʽ˽ʻȹǸŶĴóóóóóĴĶ{{{334999i999E999+999999 ���������������������������������������999999999%999=999_333_`aɽŴóóóóóĴʷ^hkkkcѿĹǽNJXUYVNKVT[Y^\^]_^_^_^^\\ZWVvujuxwnžQNZW[X[X[XYVQNuqȽ̿ȼ˾̾ʼɺǸƶĴóóóóóóƶ9:;888s999M9991999999 999������������������������������������999999999)999E999g333zyyĶĴóóóóóŴ²ɶ^ijkjjǼȽNKYVYVNKQP][^]_]_^_^_^_]]\ZYVVιiswxwlomTQ[X\Y[X[WYVNJŹ÷˾Ϳ̾˽ɺȹƷŵijóóóóóƵGHH666}999U9997999999 999���������������������������������999999 999999/999K888o778ƶóóóóóóŵ²ɶ^ijliqʿɾPMXUXUNLhgXV]\_]_^`^`^_^^]]\\[PO}mvyyvh^\WT[X\Y[Y[WYVNJĸƺ̿̿˽ʻȹǸŵĴóóóóóƴźYZZ333999]999;999#999999���������������������������������999999 9999993999Q777w?@Aƶóóóóóijŵóʶ_iklhwURWTXUOMQP][^]_^`^`^_^^]ZY^\][XW_]Ⱦguxywq^óTRYW[Y\Y\Y[XXUSOǻȽͿ˾ʼȺǸƶĴóóóóóŴlmm333999c999A999'999999���������������������������������999999 9999997999W555LMNƵóóóóóijŵôͻ`iklhxù^[URXVQO~{TR^\^]_^_^_^^]a`\Z][[ZOMppwyxrcOLZX\Y\Y\YZWVRa]˾ʾ̾ʽɺǸƶĴóóóóóĴŶ󂁀445999i999G999+999999���������������������������������999999999#999;999]333Z[\ƺŴóóóóóĴƶĴbiklgxƼjgSPXVSPsp[Z[Y^\_^_^_^^]XV|zutVU[ZUSrpguxwriҾNLZX\Y\Y\YZWROuq·̾˽ɺǹƷŵóóóóóóƶ889888o999K999/999999 ���������������������������������999999999%999?999a333hiiŴóóóóóĴƶĵehklhwȿļ{xQNXVTQjhQP][^]_^_^_]^\SRRQ[ZZYSQeqvvorVUZX[Y\Y[XZWOLǽƻ̿˽ʻȹƷŵijóóóóóǶ=>?777u999O9991999999 333������������������������������999999999'999C999e333vuuöĴóóóóóĴƷŶlgkliqNLXVUSb`kjXV^\_^_^_^^]ZYedkjVUZYQPettm~\WVT_][X\Y[XZWNKǼɾ̿˽ʻȹǸŵijóóóóóƵDEF666{999S9993999999 333������������������������������999999999)999E999i444ŶĴóóóóóŵƷƷxdkljkNKXVWTZXRP][^]_^_^_]^]RQPNZYXW[ZqlrhLFID^]_^[X[XYVQNȽ˿Ϳ˽ʻȺǸŶĴóóóóóƵKLM555999U9997999999 333������������������������������999999999+999G999k566ƶijóóóóóŵƷǸɻbjlkgNKXVWUUS~TS^\^]_^_^^]\[WVcaWVZYONlleʾE?HBNJ__^\ZWXUZWͿ˾ʼȺǸŶĴóóóóóƵQRS444999Y9999999999 333������������������������������999 999999-999I888m677ƶijóóóóóŵƷȹǸʽ`kllc˷¹RPWUXVQOWV[Z^\_^_^_]^]UT|{PNZYVUigĽfbʲB<LFJDQM``\ZTQifƾù̾ʼɺǸƶĴóóóóóŵøVWX444999[999;999!999333������������������������������999 999999-999K888o889ƶóóóóóóŵƷȹƷbjlldǺĻYWWTXVNLſRP]\^]_^_^_]]\RP[ZXWZYPO^D>NHMHJESO`_RO~zǼ̾ʼɺǸƶĴóóóóóŴźZ[\333999[999;999!999333������������������������������999 999999-999K888o899ƶóóóóóijŵƷȹǸngllgǽecUQXVOL½a_ZX^\_^_^_^^]XXgfQPZYSR{ytnGAOIOIMGICSPTSȾɿ̾ʼɺǸƶĴóóóóóŴƻ\]^333999]999;999!999333������������������������������999 999999-999K888o899ƶóóóóóijŵƷȹɺ˾clljnǿtqROXVOLPO][^]_^_^_]]\QPUSYXYXUS_YKEPJPJNHKEFAJHȽ̾ʼɺǸƶĴóóóóóŴƻ[\]333999]999;999!999333������������������������������999 999999-999K888o788ƶóóóóóóŵƷȹʻǹɵ`klldͺļPMXVPMmlWV^\_]_^_^^][ZYX}RQZYPOPJNHQJPJOIKFE?GCɿ̾ʼɺǸƶĴóóóóóŴĹYZ[333999[999;999!999333������������������������������999999999+999I888m677ƶijóóóóóŵƷȹʻȺngkle¹NKXVRPzxQP][^]_^_^_]]\TSQOZYXW\[GAPIQJPJOHKEC=TQ̾ʼɺǸƶĴóóóóóŵ¸UVW444999[9999999!999333������������������������������999999999+999G999k556ƶijóóóóóŵƷǹɻ˼˾´akljn¹NKXUTQmj|{TS][^]_^_^^]]\RQomUTZYONE>PJPJOJMGHBIEnmǿĺͿ˾ʼȺǸŶĴóóóóóƵPQR555999W9997999999 333������������������������������999999999)999E999g344~~}ĶĴóóóóóŴƷǹɺ˽Ⱥfilldĭ¹PNXUUSb`US[Z^\_^_^_^^\XWkiONZXVTgeE>PIPINHJEMHUT~ǽͿ˽ʻȺǸŶĴóóóóóƵIJK555}999U9995999999 333������������������������������999999999'999A999e333rrrµĴóóóóóĴƶǸɺ˽˽bklizVSWTWUYVRP][^]_]_^^]]\QPa`WUYWNMoiHAOIOILFLH\[RPɾʿ̿˽ʻȹƷŵijóóóóóƶBCD666y999S9993999999 333������������������������������999999999%999?999_333eef̿ŴóóóóóĴƶǸɺʼ̾ɻfilldȴù`]URWUSQZXZX]\_]_]_]^\[Y[ZONYXWVqo[UJDNHLGKG\[^]MJȾ̿˽ʻȹƷŵijóóóóóƶ<<=777s999O9991999999 333������������������������������999999999!999;999[444VWXøŵóóóóóĴŶǸȺʻ˾˾´alliwžmjSPXVOMPO\[^\^]_]^]^\SRUS[[WU?;}MGLELFKEZY`_XVPMɾ̾˽ɺǹƷŵóóóóóijƶ678888o999I999-999999 ���������������������������������999999 9999997999U555}HIJƵóóóóóijŵƷȹʻ˽̿ʽpfllcŹü~{PMXUNLb`XV][^]^]^]^]\[RQRQID?:~ysD>KEIDWUaaZXXUXU̾ʼɺǸƶĴóóóóóĴĶ}|{334999g999E999)999999���������������������������������999999 9999991999O777u==>ƶóóóóóóŵƷǹɺ˽̾̿˷bklkiNKXUOLPN\Z]\^\^]^]]\WUnmA=GAICLFA;ICTQab\ZZWVSc`øͿ˽ʻȺǸŶĴóóóóóŴghh333999a999?999%999999������������������������������������999 999999-999I888m667ƶijóóóóóĴƶǸɺʼ̾̿blmfuLJWTOMljVT\Z^\^\^\^\\[PNUOF@LFC={@:QMaa][[X[XTQroûź̿˽ʻȹƷŵijóóóóóƵTUV444999[999;999!999999������������������������������������999999999'999C999e333sssµĴóóóóóĴŶǸȺʻ˽̿̾ygnmb}PNZXTSxwRP\Z][][^[^[][ZX][A;~MGJDZSgaHC__^][Y\Y[XQNɿǼ̾˽ɺǹƷŵóóóóóóƶBDE666{999S9995999999 999������������������������������������999999999#999=999]333YZ[źƴóóóóóijŵƷȹʻ˽̿˿nlnkYƼSPVSSQgfvtUT^]a`a``_^\\ZQOICLFNHD>VR[Y_^[Y\Y[XZWOLǽȽͿ˾ʼɺǸƶĴóóóóóóƶ788888q999K999/999999 999������������������������������������999999 9999995999U666{CDEƶóóóóóóŵƷǹɺ˼̽ʼ˾mnl`IDD>E@LGB=JELGOKSPYW^]_^TSʾpjF?MGFAoi[Z_][Y\Y\Y[XZWNKƼȾ̿˽ʻȹǸŶĴóóóóóĴõttt333999g999C999)999999 ���������������������������������������999999 999999/999K888o677ƶijóóóóóĴŶǸȹǸȺɱǷpnlc|YSE?JDJDysF@MGMGMGKEJEJFJGrqseB<LFKEMH`_[Y]Z]Z\Y[XYVNKźɽͿ̾ʼɺǹƷŵóóóóóóƵ¸VWX444999]999;999#999999������������������������������������������999 999999'999C999e333kllŴóóóóóijŵŵĴʶjcgnnlepjdF?MGMGTMOIPJPJPJOINHKE<7jfǻSMGBHCUQba\Z]Z]Z]Z\Y[XYVQNĹǼ̿˽ʼȺǸƶĴóóóóóóƶ??@777y999S9995999999 999������������������������������������������999999999!9999999Y555JLMƵóóóóóóƷ¬r_bikllliab~xD>OHQJQJQJRLRLRLRLQJOIJDOIµltlyy>8QMa`\Z\Z]Z]Z\Y\Y[XYUTPĹ˿Ϳ˽˽ʻȹƷŵijóóóóóĴĶ~444999k999I999-999999 999������������������������������������������999999 9999991999M888q788ƶijóóóóȺy\chiijie`cj{TdzC=OHQJQJSLSMSMSMSMRLPJF@yslvuqfϷEA^]][\Y]Z^[]Z]Z\Y[WYUTPʾƺɼʽʽʼɺȹǸƶŴóóóóóóƴùXYZ333999_999?999%999999���������������������������������������������999999 999999)999C999e333efg˾ŴóóóƸȵa^ghjiic^sǿľC<OHQJRKSLTMTMTMSMRLPJD>ȹ¿ͺmvwvrbmlXW[X\Z]Z^[][]Z\Y[XYUPM¿ǹķƹȹȹǸǷŵĴóóóóóóƶ<=>777y999S9995999999999������������������������������������������������999999999!9997999W666}BCDƶóóò̺]aghiih`o¯D>MGOIQJRLSLSLSMSLRKPJGAǷptwwulgPM\Y]Z]Z^[]Z]Z\Y\XYVOKĹĶŷƷŶŵóóóóóóĴµrrr333999i999G999+999999 999������������������������������������������������999999 999999-999I999m344}}|ĶĴói^ehijia}vrE?JDMGNHPJQJQKQKQKPJOHD>wrxxwpVT[X]Z]Z][]Z]Z\Y[XZWWTYUôŵŵĴóóóóóóƵIJK555999[999;999#999999999������������������������������������������������999999 999999%999=999]444NPPƵóȺXdfhjien[YVUZYQMKFJEKFMGNHNHNHNHLGD?icowyíyu{WU[Y\Z\Z]Z\Z\Y\Y[XZWZVTP]YпôijóóóóóóĴŶ񄃃455999o999M9991999999 999������������������������������������������������������9999999999991999M999q566Ŷòŷz]egiii`³kgQMNJUQYV][`_]\WUQNMHKFJEJDJDICHCB=]Zmwxįyįyq̼ecPNZW[X\Y\Y\Y\Y\Y[X[XZWYUYUTPNJhdν²óóóóóóóƵQRS444999_999?999'999999 999������������������������������������������������������999999 999999'999A999_444QRSijɼo_fgiih_ȺIFKHKHPLVRWTXTXUXUYV[Y]\_^^]\ZZXYWYVYVZX[ZWVNMWUjvxįyưzůypƥTSJHROXUYVYWZVZWZWZVYVYVYVXUXTWSVSUQOKHDIDFA˻ϽóóóóóĴĶ󇆆566999s999O9993999999999���������������������������������������������������������9999999999999993999O999s555ôʼp_egiih`C?OKOKOKOLPLPLPMPMPLOLOLPMPNRORQSQTRSRSQQOQNQMOLʸfswĮyDZzȱzƯyoţNLTRTSTSUSUSUSTSTRTRSRSRSQSQSQSQSQRQRQRPSPFE³óóóóƵPQR444999a999A999'999999 999������������������������������������������������������������999999 999999'999?999_444MNOǸ\eghhhebfcnktqvsyu}}}zxurohekvíxưyɲ{ɲzưyq̼b_jgqntq{x|y~{~{{xxuromjc`vsµóòóóĴõ뀀455999q999O9993999999999999������������������������������������������������������������9999999999999991999M999o334wwx̿­Wdfgggf^rsqwŰyɲzʳzʲzǰyt{{{MkóóǶFHH555999]999?999'999999 999������������������������������������������������������������������999999 999999%999=999[666ABBxZdffgfd\ku¬xDZzɲzʳ{ʳ{ȱyĮxoȷŶZ^[óŴʾmnn233999m999K9991999999999999������������������������������������������������������������������999999999999999/999G999i333]^_pXbeeedb^ҿdqu¬xưyȱyȱzȱzǰyĮxumIJij[``^ijŶ:;;777{999W999;999%999999 999������������������������������������������������������������������������999999 999999#9997999S888u566^Z`ccchbfvxrjĽļŽļŽŽžƿǿøfruwíxĮyĮyĮyíx¬wvtnp}{wuqpolkkkkjjmnoruz{i\bb`^ƶOPQ444999c999E999+999999 999999������������������������������������������������������������������������999999999 999999)999A999_666ABB³o_Y\bca]\ZTxtosvvwwwwvuusqnllkkkkkkkjjjiihghggfggccc`_ñȽkll233999o999O9995999999999 999������������������������������������������������������������������������������999999 999999999/999I999g333UVW±ŷïŸɾȽenppqqqqqpppoonmmmllllllkkkjjjiiiiig`_^\[눇778777{999Y999;999%999999 999������������������������������������������������������������������������������������999999 999999#9997999Q999q333jkkŻųҿ²ʽ~~~~~}}}|||{{{zzzyppokôABB555999a999C999+999999999777������������������������������������������������������������������������������������777999999 999999'999=999Y888y566~~~ŴòѿƸNPQ333999g999K9991999999999 666������������������������������������������������������������������������������������������555999999999999+999C999_666:;;µŴóóòƷȻɼɼʽɺZ[\333999m999O9997999#999999 888������������������������������������������������������������������������������������������������666999 999999999/999G999c555@AAĶŴóóóȺ±ųefg333999s999U999;999%999999 999222������������������������������������������������������������������������������������������������666888999 999999!9993999K999g554CDDĶŴó±̿ijóóƵijk333888w999W999=999)999999999333������������������������������������������������������������������������������������������������������222999999 999999#9995999M999i444DEEöŴóó̿±ijƵjkk444888y999Y999A999+999999999 666������������������������������������������������������������������������������������������������������������111999999 999999#9997999M999i444ABCŴ²ʻòijƶefg333888y999[999A999-999999999 777������������������������������������������������������������������������������������������������������������������444999999 999999%9997999M999g555>>?˿Ƶ±ŶijŶ\]^333888w999Y999A999-999999999 888666���������������������������������������������������������������������������������������������������������������������555999999999999%9995999K999e655899wwxƵòǸijö렝PQR222999s999Y999A999-999999999 999111���������������������������������������������������������������������������������������������������������������������������555999999 999999#9995999I999a777}444bcdŶijȸųʾًBCD333999o999U999?999+999999999 999222���������������������������������������������������������������������������������������������������������������������������������555999999 999999!9991999E999[888w222MNOͿųǷĵnop999555999i999Q999;999)999999999 999222���������������������������������������������������������������������������������������������������������������������������������������444999999 999999999/999A999U999m444;<=uuvôʺƴ˾ݙSTU223777{999a999K9997999'999999999 888222���������������������������������������������������������������������������������������������������������������������������������������������444999999 999999999+999;999O999e777}333QRSǻŵʺ³ﳬqqr<<=444999q999Y999C9993999#999999999 777555���������������������������������������������������������������������������������������������������������������������������������������������������111999999 999999999%9995999G999Y999q4449::fggͿȷͽĵɆKLM333777}999e999O999=999-999999999 999666������������������������������������������������������������������������������������������������������������������������������������������������������������222888999 999999999!999-999=999O999c777y333ABCpqqͿǸ̼ĵ͎UVX666555999o999Y999E9995999'999999999 999333���������������������������������������������������������������������������������������������������������������������������������������������������������������������555999999 999999999'9993999C999U999i666233CDEqqrȻŶ̼ȸ빱njWXY778333888s999_999M999;999-999!999999999 888222���������������������������������������������������������������������������������������������������������������������������������������������������������������������������222888999 999999999999+9999999I999Y999k666333?@Acdeƶ˻ȸôǻ٨{zzOPQ667333888u999a999Q999A9991999%999999999 999555777���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999555999999 999999999#999-999;999I999Y999i777{333788OPQtttͿĴǶʺο˼ȷŵ´ƺ׮`abABB333444888s999a999Q999A9995999'999999999 999 888222���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������222777999 999 999999999#999/999;999G999U999e888s554333:;<OPQmmnͿ´ĴŴƵƶȸɹɺɺʻʻɺɹȸǷƵƴŴĴǻ۶Ş~}}]^_CDE555333777{999k999]999O999A9995999)999999999999 999333���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������555999999 999 999999999#999-9997999C999O999[999g888u444333667ABBSTUiij~~}·ǻʽ̾̾̾˾ɼĹ׿ѷǫsss^^_HIJ;;<344333666}999o999a999U999I999=9991999'999999999999 999777777������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999 999 999999999!999)9991999;999E999O999[999e888o777y444333344788=>?EFGNOPUVW]^_ccdggggggggheef`abYZ[RSTJKLABB:;;556333333555888u999i999_999U999K999A9997999-999%999999999999 999999777������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999999999999#999+9993999;999C999K999S999[999a999i888o777u666{555444333333333333333333333333444555777y888s999k999e999_999W999O999G999?9997999/999'999999999999 999 999999999������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999 999999999999!999'999/9995999;999?999E999K999O999S999W999[999]999_999a999a999a999_999_999[999Y999U999Q999M999I999C999=99979991999+999%999999999999999 999999999������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999 999 999999999999999!999%999)999-999199959997999;999;999=999?999?999?999=999=999;999999979993999/999+999'999#999999999999999999 999 999999999���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999999 999 999999999999999999999999!999#999#999%999%999%999#999#999!999999999999999999999999999 999 999999999999������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������999999999999999999 999 999 999 999999999999999999999999999999 999 999 999 999 999999999999999������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������333333333333333333333333333333333333333333333333��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/readme.txt���������������������������������������������������������������������000644 �000765 �000024 �00000000531 11670654443 016657� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������Toolbar icons (in toolbar/ subdirectory) are from the Tango project (http://tango.freedesktop.org) and are released under Creative Commons Attribution Share-Alike license (http://creativecommons.org/licenses/by-sa/2.5/). wxMaxima icons (wxmac.icns, maximaicon.ico, wxmaxima.png) were created by Sven Hodapp (http://4pple.de) and are under GPL. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/�����������������������������������������������������������������������000755 �000765 �000024 �00000000000 12150104171 016302� 5����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/wxmac-doc-wxm.icns�������������������������������������������������������������000644 �000765 �000024 �00000111340 11670654443 020233� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������icns��is32����q������+� 鵦n� 窥� ꧱ɮ� ǯ� ���� � ުږķ� ߟ����q�����å�+� 鿪s� 縩� 긯� ̫� ˹���� � ުږķ� ߟ����q�����ʪ�+� Ƶx� Ĵ� ĸ� ҴŴ� ���� � ުږķ� ߟ��s8mk����������������������������������������������������������������������������il32���$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ״?�Ƣȴhrx?�˜ntl�ݢv®i �进k�騧~ˤ�ߢ·�ܣdzպ�㥳|ѷ�ﭭxİű�Ǧʲ�뫿�ا� ׭�� ȱׂ�� �� �� �� {nv]W� e}tpkk� ψYt˜q� betcq�� zXdtq����$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ״?�Ƥϻirx?�ʡyul�ݦ �迨IUkR�鬵bUӱfY�ߩqޤXû�ܪd̑ZǼ�jwzʾ�ﱼݑ_śiɾ�DzS«yQȮ�Ī�دĺȹ� ײƿ�� ȵׂ�� �� �� �� {nv]W� e}tpkk� ψYt˜q� betcq�� zXdtq����$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ׵?�ƩՀ ‘jrx?�ʨvl�ݩ �迳MYnR�ƲeYڸjZɳ�߰ŷrᥠ]ʼ�ܳҶĢe͒`̿�Ҳ͔lw}�ʹȇ`ϝmϺ�ǿʙWʲ|SԴ�вĺĿ�ضʻƼ� ַѾ�� Ȼüׂ�� �� �� �� {nv]W� e}tpkk� ψYt˜q� betcq�� zXdtq���l8mk������(_ccccccccccco`���������������oI��������������tX�������������tY�������������tX�����������tW�����������tX���������tU��������t$��������ti��������to��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������oj��������3yy4������������it32��D�������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� &�<Ĵ�(­ <�ű҇Ʒ~��ιϋ˿|ˀ � ɮϏ#ɾ� ¥ˀʀ̅IJ}݁ � ʁ́΁%Ÿǣ� Ɂ̇Ĵ ˣ�ˀ̄�̀« ϣ�˂̀̀ӣ� ǣ ׀Ӏ҂ɽî٣�Ѱؕv{zzyyxwwvvuttmh}¢ܣ�ؼqb`[]XȽhjlmjddb``__^]\]^_^WY\�(ʞbV\Z_bprssonxV_�Բa[a`[}krssm̂s^�=řVab\֟dqsqwٜǯ�?հXbc]ɔjrp|֜ӫ�5ǘX`d]һlqqƨç��7ڷzXbc`֛tony嬱ĭ��AΣ~Z_a]n̗ͺoocϸȡ��8ÓƤs``c`V̍ieҐ�8۶ȳqedÁp˾ʭ�AӨtciʈƭϰѡ~ѯ�C˜}caљݩх~ɕٱ�Ɣ1̚_bĕ촪~}ѓ಻�C࿑ddsﺕԥ򵓋ҝ跺�Ćܷbb꭮Ҩ켸�C۴bds͸먖˦δĶ�CذɌabѵ塗竱褙ͳ�C׭lecǷݝéəʍײ�Cخafo̿՛᧴権Ԗ೾�Cذė`dҽʙќjء跻�C۵ǃbcҹئ򱝭|c֬�C޹vdbзﶛ𳰻ޤeoyͿǴ�Cῑnea϶̨¦qprl᧰Ѱ�Ǖ1kfcγ꧞竵jupjאַܰ�CϜjecͳ㢟Ӂnso𴪵屶�A֪lfe{ʳڞ֧Թlrl뷱�޸/qdhhО뭲ؕjjɥ�8Ɣ~bicuş׺ugͤΥ�AҤW_\a𽩮٦٭aǶϦᤢ�?ݹ{Է¾؃t򿩶�?˙ʫΊ^yu̩帪�?ڲ李|ֳd}xۣ|䷢Ϭ�+șpwzuִlgϕ؇ijeшrx~|unԭ�-ٶՔm`rnqjɿȀ ȩ�<ϡٰripXӻfkkhgƻ�,͵waK~~} �سِjuց ƺ�Ϧ a�ɟȯГd`€ �ƛ}X\_h}ra^ҽ �ěYbeeda_`_]Ͼ� Şa]cba^^qм �ʧʵveddfmyij �вľú ���ʹ� ˲ �ͺ� Ⱥ �ȿ��������WWWW؀WWWWlWWj�W�ە�bWWWWfWXWflW�؁�W�ە�WlWW d`WWvnWʀ�lW��tW�ە�WW^WWfWWWW lWwWfWqWWە�WWWWWWZW\Wd lWWWWWWە�bWWXWW�W�Ƃ lWlWjnWWە� WlYsW]gXWWԂ lWԤWbWWWە� WWdyWvW�Ws lWWWΛWWWە� WWWWXWXc}WW lWnWcuWWە� aW`WWW^WwWZW`lWWWWە��WbWWnWWWlWWWWە�WWnWW\^iWWlWpW~WWە�WWWWǀWWWxmWWWܕ������������������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� $�<Ĵ�­ЁĽ <�űׂ�Ձ·}��ιԀӄɹ{ˀ � ɮԅӄԀӀ ȶ� ¥ӄ҉Ӏ˾}݁ � ӃҀӆ%òǣ� сЀҀӅӀ˿ ˣ�ЀҀӂԀӀʹ ϣ�Ѐр҅�ҁôӣ�ǣЀ؁ف�׀Ӏ ʹ٣�Ѱπ�рܮ ͦܣ�ؼȫƽǐ� ž�ʞԀ&㮍¾ ý�ԲʋߠځӖɹ�)ŘŲgeknquvwxwsob‘hdjnqsqmh[н÷�?հɫUIAFKNNLJIIGJ䦙[GLNNMMLKGDMtٹ�?ǘȚdQMGDCB>PףޥXSUUTSLf̵��4ڷ̜g<DGHH=՜^RVUTPZ̀��Σ̟o>FI'?t͘ߣOTVVTJ{ͪ��)ÒϹ[@JGHHCKÕfEU TKdz�A۶IJJ<MACC>㴕D>gYUTLxи�AӨןED|EPURsҿ:IYVTNlֹ�C˜աLXTXXWRU9qQTWQ`ݺ�Ɠ1ղF^}PXXP<<_AXSV¿�C࿐ɐFjQXYV_F[z:IXO�CܷգGxnSYYOWL=CLO¾�C۴ǐoGNYZSqIb߬AFCD¿�CذҪ־aHcUZXSbJIFE9zӾ¿�C׭ϕVIOZZQKXXDF;dܼ¿�CخÐPLYWZX]nJ泿l?DH]¿�CذͱLPQZZQORЍ9KWQ¿�C۵ѥIUSZ[VmwKr蛒>YVK�C޹ќJZtT[[TTN߸SVVKξÿ�CῐЙֿwJ_PZ[UO^◠\TVNy׺¿�Ȕ½ϗԽhJg^W[YO򽘧iRVQb�CϜϗԼ\KlQZ[[XV㦠~NVSR¿�A֪ϗҽSKqRYZZTtΛKUTK�޸8ϛLLrhTZZN鵙KUUIɸ¸�8ƔϡINnOYVMޟLUULrԱé�AҤ˯OSeSYAtǐϾLUURW箯�?ݹþHILJùkE<ꨜLTTSJʿö�?˘¿՛I@DD?Wܫ4PٞWTVVURXĺ¡�ڲľhN;AD+?CauΖ7xľrYEJMLMKKFCYq׽�șĿ`2=FJKL*JF@7fϡ`쯝[4>CEGGHGFDA;/cۼ�+ٶĸ¼両ܣоʁ »ѱ�+ϠĜЭӀ Ɠ�;¼ɣ�سþ"޳ˁѼ�Ϧā!ݦ¼�ɟĿٲ΀ ľ�ƛĿҠʁ Ŀ�ěÇɀļ�ŞЌƂ Ʒ�ʧɝŁ é�в Ĺ�ÿ Ž�ʹĺ�'˲ü�#ͺ� Ⱥ �ȿ��������WWWW؀WWWWlWWj�W�ە�bWWWWfWXWflW�؁�W�ە�WlWW d`WWvnWʀ�lW��tW�ە�WW^WWfWWWW lWwWfWqWWە�WWWWWWZW\Wd lWWWWWWە�bWWXWW�W�Ƃ lWlWjnWWە� WlYsW]gXWWԂ lWԤWbWWWە� WWdyWvW�Ws lWWWΛWWWە� WWWWXWXc}WW lWnWcuWWە� aW`WWW^WwWZW`lWWWWە��WbWWnWWWlWWWWە�WWnWW\^iWWlWpW~WWە�WWWWǀWWWxmWWWܕ������������������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� )�<Ĵ�­ڀ <�ű߁݂«|��ι܎Ū{ˀ � ɮ܂ۈ%â� ¥ۃځۂ܂ۀʷ|݁ � ۂڀۊ$ǣ� ځـڀۉ܀Ű ˣ�́ـڂۄ܁ȶ ϣ� ׀ـڀ܄ۀʸӣ�Ǣـځށۀ ع٣�Ѱ؀�ڀṩ ׬ܣ�*ؼӹϠ ͞�<ʝ͟湟βŎ�Բ՞ᮯ߀ڦδ�=Řѿihnrtxxyzyvqeɤkgmqtvvutpj^˙� հغYLEJNPPNLKKJK泬\IOQQPOJGQwϻ�ǘƜ˝fRPJIDVܱߧZVXWWVPjŀ̛��ڷ֬lCJMCۭaUYXWS]ˀ϶��4ΣծuELOONEzԪQWYXWNҵȀ ɑ��Ñ΀/ŪaGQMNNIQ̧lHWWXWOξˀϨ�8۶PBRHIHB群JCi[WWOz̀ѽ�Aӧ޳JGHRVSt@O[XWQoȏ�C˛ݱNXVYZXTZ?wWTXTcΛ�ƓЀ1I`RYYQABeDXVX̀ϩ�:࿏ӣIlRY[W`H`AMZQ΀Ӷ�:ܷݲIzoT[[PYMDIPQ΀Ҿ�:۴ѤqIP[[UrKcHKHHπĎ�CذܸcJeV[ZTcKOLK?}Ɛ�C׭٩YKQ[[QLZ^IKAgƑ�CخΤRO[Y[Y^pKqEIL_Ȓ�CذٿNRR[[RPRӜ@NYSǑ�C۴۵LVU[\WmyLs騤C[YNƏ�:޹گL\vV\\UUOTXYNЀ�:ῐ٬zMaR\\VP`槴]VYQ|ЀԸ�ȓԀ1٫jMh`Y]]\[PǫkTYTfрӮ�Ϝث_NnS\ YW賳QYVVӟ�֪Ҁ8٫UNtSZ\[Uv׭NXWN͓�޸Ԁ/ٮPOuiV[\ONXXLрŽ�8ƓٳMQqQ[XQ寪OXXPvڿЀԯ�AҤ׽QUgTZEyϤPXXU[Й�?ݹ̯MMPMlIBPXXWNտ�?˘ܣQGKKF^⹚:VZWYYXU]Ҥ�ڲoUBHKL+FJg|٪=~Ͷv\INPQQOOKG]vŏ�+șd7ENRSTTSQMG=m۶da:DILN MKHB5ị�+ٶǷ丹с ݺ�<ϠήڽД�ӷź ̯�س΀݀ۀ �Ϧׂ左ۀ сŐ�ɟڀ ҁʖ�ƚݱ؁ ҂ʖ�ěϝك҂ƕ�ŝܢւӂ ׿�ʧ֮ԃԀӂ ҭ�в҅Ӆ š� Ҁэ ȧ�͵ӉŨ�˲ׁȴ�#ͺ�Ⱥ �ȿ��������WWWW؀WWWWlWWj�W�ە�bWWWWfWXWflW�؁�W�ە�WlWW d`WWvnWʀ�lW��tW�ە�WW^WWfWWWW lWwWfWqWWە�WWWWWWZW\Wd lWWWWWWە�bWWXWW�W�Ƃ lWlWjnWWە� WlYsW]gXWWԂ lWԤWbWWWە� WWdyWvW�Ws lWWWΛWWWە� WWWWXWXc}WW lWnWcuWWە� aW`WWW^WwWZW`lWWWWە��WbWWnWWWlWWWWە�WWnWW\^iWWlWpW~WWە�WWWWǀWWWxmWWWܕ���������������t8mk��@��������������������������������������������������������������������������������#056777777777777777777777777777777777777777777777777640' �������������������������������������������������������������� !ӆ> �������������������������������������������������������������/=������������������������������������������������������������ 9_�����������������������������������������������������������Bq����������������������������������������������������������#Ja���������������������������������������������������������&M`��������������������������������������������������������(O_�������������������������������������������������������(O`������������������������������������������������������(O^�����������������������������������������������������(O_����������������������������������������������������(O`���������������������������������������������������(O_��������������������������������������������������(O`�������������������������������������������������(O`������������������������������������������������(O`�����������������������������������������������(N_����������������������������������������������(N`���������������������������������������������(N_��������������������������������������������(Ma�������������������������������������������(M`������������������������������������������(M_�����������������������������������������(M^����������������������������������������(L^���������������������������������������(L^��������������������������������������(L\�������������������������������������(L\������������������������������������(L[�����������������������������������(LZ����������������������������������(KZ���������������������������������(KA��������������������������������(K+�������������������������������(J! �������������������������������(JC������������������������������(J#������������������������������(I1������������������������������(I< ������������������������������(IC������������������������������(IH"������������������������������(IK$������������������������������(IM&������������������������������(IM&������������������������������(HM'������������������������������(HM'������������������������������(HM'������������������������������(HM'������������������������������(GM'������������������������������(GM(������������������������������(GM(������������������������������(GM(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(FL(������������������������������(FL(������������������������������(FL(������������������������������(FK(������������������������������(FK(������������������������������(FK(������������������������������(FK(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(EI(������������������������������(EI(������������������������������(EI(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EG(������������������������������(EG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������&AC&������������������������������#<=#������������������������������3Mapz{qbN4������������������������������ (<LX`dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd`XL<( ������������������������������(3;@BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB@;3(������������������������������ #&((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((&# ������������������������������  ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/wxmac-doc-wxmx.icns������������������������������������������������������������000644 �000765 �000024 �00000112264 11670654443 020431� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������icns��is32����q������+� 鵦n� 窥� ꧱ɮ� ǯ� ���� � ުږķά� ߟͤ����q�����å�+� 鿪s� 縩� 긯� ̫� ˹���� � ުږķά� ߟͤ����q�����ʪ�+� Ƶx� Ĵ� ĸ� ҴŴ� ���� � ުږķά� ߟͤ��s8mk����������������������������������������������������������������������������il32���$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ״?�Ƣȴhrx?�˜ntl�ݢv®i �进k�騧~ˤ�ߢ·�ܣdzպ�㥳|ѷ�ﭭxİű�Ǧʲ�뫿�ا� ׭�� ȱׂ�� �� �� � {nv]Wyݑ� e}tpkka|� ψYt˜q}� betcqΘe� zXdtqv����$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ״?�Ƥϻirx?�ʡyul�ݦ �迨IUkR�鬵bUӱfY�ߩqޤXû�ܪd̑ZǼ�jwzʾ�ﱼݑ_śiɾ�DzS«yQȮ�Ī�دĺȹ� ײƿ�� ȵׂ�� �� �� � {nv]Wyݑ� e}tpkka|� ψYt˜q}� betcqΘe� zXdtqv����$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ׵?�ƩՀ ‘jrx?�ʨvl�ݩ �迳MYnR�ƲeYڸjZɳ�߰ŷrᥠ]ʼ�ܳҶĢe͒`̿�Ҳ͔lw}�ʹȇ`ϝmϺ�ǿʙWʲ|SԴ�вĺĿ�ضʻƼ� ַѾ�� Ȼüׂ�� �� �� � {nv]Wyݑ� e}tpkka|� ψYt˜q}� betcqΘe� zXdtqv���l8mk������(_ccccccccccco`���������������oI��������������tX�������������tY�������������tX�����������tW�����������tX���������tU��������t$��������ti��������to��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������oj��������3yy4������������it32��E�������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� &�<Ĵ�(­ <�ű҇Ʒ~��ιϋ˿|ˀ � ɮϏ#ɾ� ¥ˀʀ̅IJ}݁ � ʁ́΁%Ÿǣ� Ɂ̇Ĵ ˣ�ˀ̄�̀« ϣ�˂̀̀ӣ� ǣ ׀Ӏ҂ɽî٣�Ѱؕv{zzyyxwwvvuttmh}¢ܣ�ؼqb`[]XȽhjlmjddb``__^]\]^_^WY\�(ʞbV\Z_bprssonxV_�Բa[a`[}krssm̂s^�=řVab\֟dqsqwٜǯ�?հXbc]ɔjrp|֜ӫ�5ǘX`d]һlqqƨç��7ڷzXbc`֛tony嬱ĭ��AΣ~Z_a]n̗ͺoocϸȡ��8ÓƤs``c`V̍ieҐ�8۶ȳqedÁp˾ʭ�AӨtciʈƭϰѡ~ѯ�C˜}caљݩх~ɕٱ�Ɣ1̚_bĕ촪~}ѓ಻�C࿑ddsﺕԥ򵓋ҝ跺�Ćܷbb꭮Ҩ켸�C۴bds͸먖˦δĶ�CذɌabѵ塗竱褙ͳ�C׭lecǷݝéəʍײ�Cخafo̿՛᧴権Ԗ೾�Cذė`dҽʙќjء跻�C۵ǃbcҹئ򱝭|c֬�C޹vdbзﶛ𳰻ޤeoyͿǴ�Cῑnea϶̨¦qprl᧰Ѱ�Ǖ1kfcγ꧞竵jupjאַܰ�CϜjecͳ㢟Ӂnso𴪵屶�A֪lfe{ʳڞ֧Թlrl뷱�޸/qdhhО뭲ؕjjɥ�8Ɣ~bicuş׺ugͤΥ�AҤW_\a𽩮٦٭aǶϦᤢ�?ݹ{Է¾؃t򿩶�?˙ʫΊ^yu̩帪�?ڲ李|ֳd}xۣ|䷢Ϭ�+șpwzuִlgϕ؇ijeшrx~|unԭ�-ٶՔm`rnqjɿȀ ȩ�<ϡٰripXӻfkkhgƻ�,͵waK~~} �سِjuց ƺ�Ϧ a�ɟȯГd`€ �ƛ}X\_h}ra^ҽ �ěYbeeda_`_]Ͼ� Şa]cba^^qм �ʧʵveddfmyij �вľú ���ʹ� ˲ �ͺ� Ⱥ �ȿ���������WWWW؀WWWWlWWj�W^W]`[�bWWWWfWXWflW�؁�WWWW�WlWW d`WWvnWʀ�lW��tW rWWWx�WW^WWfWWWW lWwWfWqWWۀWWh^Z�WWWWWWZW\Wd lWWWWWWہWW^W�bWWXWW�W�Ƃ lWlWjnWWہaWWu� WlYsW]gXWWԂ lWԤWbWWWۂWW� WWdyWvW�Ws lWWWΛWWWہ`W�ő� WWWWXWXc}WW lWnWcuWWہWWWh� aW`WWW^WwWZW`lWWWWۀWqWW��WbWWnWWWlWWWWgW`WZ�WWnWW\^iWWlWpW~WWWWW�WWWWǀWWWxmWWWXjuWWˎ������������������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� $�<Ĵ�­ЁĽ <�űׂ�Ձ·}��ιԀӄɹ{ˀ � ɮԅӄԀӀ ȶ� ¥ӄ҉Ӏ˾}݁ � ӃҀӆ%òǣ� сЀҀӅӀ˿ ˣ�ЀҀӂԀӀʹ ϣ�Ѐр҅�ҁôӣ�ǣЀ؁ف�׀Ӏ ʹ٣�Ѱπ�рܮ ͦܣ�ؼȫƽǐ� ž�ʞԀ&㮍¾ ý�ԲʋߠځӖɹ�)ŘŲgeknquvwxwsob‘hdjnqsqmh[н÷�?հɫUIAFKNNLJIIGJ䦙[GLNNMMLKGDMtٹ�?ǘȚdQMGDCB>PףޥXSUUTSLf̵��4ڷ̜g<DGHH=՜^RVUTPZ̀��Σ̟o>FI'?t͘ߣOTVVTJ{ͪ��)ÒϹ[@JGHHCKÕfEU TKdz�A۶IJJ<MACC>㴕D>gYUTLxи�AӨןED|EPURsҿ:IYVTNlֹ�C˜աLXTXXWRU9qQTWQ`ݺ�Ɠ1ղF^}PXXP<<_AXSV¿�C࿐ɐFjQXYV_F[z:IXO�CܷգGxnSYYOWL=CLO¾�C۴ǐoGNYZSqIb߬AFCD¿�CذҪ־aHcUZXSbJIFE9zӾ¿�C׭ϕVIOZZQKXXDF;dܼ¿�CخÐPLYWZX]nJ泿l?DH]¿�CذͱLPQZZQORЍ9KWQ¿�C۵ѥIUSZ[VmwKr蛒>YVK�C޹ќJZtT[[TTN߸SVVKξÿ�CῐЙֿwJ_PZ[UO^◠\TVNy׺¿�Ȕ½ϗԽhJg^W[YO򽘧iRVQb�CϜϗԼ\KlQZ[[XV㦠~NVSR¿�A֪ϗҽSKqRYZZTtΛKUTK�޸8ϛLLrhTZZN鵙KUUIɸ¸�8ƔϡINnOYVMޟLUULrԱé�AҤ˯OSeSYAtǐϾLUURW箯�?ݹþHILJùkE<ꨜLTTSJʿö�?˘¿՛I@DD?Wܫ4PٞWTVVURXĺ¡�ڲľhN;AD+?CauΖ7xľrYEJMLMKKFCYq׽�șĿ`2=FJKL*JF@7fϡ`쯝[4>CEGGHGFDA;/cۼ�+ٶĸ¼両ܣоʁ »ѱ�+ϠĜЭӀ Ɠ�;¼ɣ�سþ"޳ˁѼ�Ϧā!ݦ¼�ɟĿٲ΀ ľ�ƛĿҠʁ Ŀ�ěÇɀļ�ŞЌƂ Ʒ�ʧɝŁ é�в Ĺ�ÿ Ž�ʹĺ�'˲ü�#ͺ� Ⱥ �ȿ���������WWWW؀WWWWlWWj�W^W]`[�bWWWWfWXWflW�؁�WWWW�WlWW d`WWvnWʀ�lW��tW rWWWx�WW^WWfWWWW lWwWfWqWWۀWWh^Z�WWWWWWZW\Wd lWWWWWWہWW^W�bWWXWW�W�Ƃ lWlWjnWWہaWWu� WlYsW]gXWWԂ lWԤWbWWWۂWW� WWdyWvW�Ws lWWWΛWWWہ`W�ő� WWWWXWXc}WW lWnWcuWWہWWWh� aW`WWW^WwWZW`lWWWWۀWqWW��WbWWnWWWlWWWWgW`WZ�WWnWW\^iWWlWpW~WWWWW�WWWWǀWWWxmWWWXjuWWˎ������������������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� )�<Ĵ�­ڀ <�ű߁݂«|��ι܎Ū{ˀ � ɮ܂ۈ%â� ¥ۃځۂ܂ۀʷ|݁ � ۂڀۊ$ǣ� ځـڀۉ܀Ű ˣ�́ـڂۄ܁ȶ ϣ� ׀ـڀ܄ۀʸӣ�Ǣـځށۀ ع٣�Ѱ؀�ڀṩ ׬ܣ�*ؼӹϠ ͞�<ʝ͟湟βŎ�Բ՞ᮯ߀ڦδ�=Řѿihnrtxxyzyvqeɤkgmqtvvutpj^˙� հغYLEJNPPNLKKJK泬\IOQQPOJGQwϻ�ǘƜ˝fRPJIDVܱߧZVXWWVPjŀ̛��ڷ֬lCJMCۭaUYXWS]ˀ϶��4ΣծuELOONEzԪQWYXWNҵȀ ɑ��Ñ΀/ŪaGQMNNIQ̧lHWWXWOξˀϨ�8۶PBRHIHB群JCi[WWOz̀ѽ�Aӧ޳JGHRVSt@O[XWQoȏ�C˛ݱNXVYZXTZ?wWTXTcΛ�ƓЀ1I`RYYQABeDXVX̀ϩ�:࿏ӣIlRY[W`H`AMZQ΀Ӷ�:ܷݲIzoT[[PYMDIPQ΀Ҿ�:۴ѤqIP[[UrKcHKHHπĎ�CذܸcJeV[ZTcKOLK?}Ɛ�C׭٩YKQ[[QLZ^IKAgƑ�CخΤRO[Y[Y^pKqEIL_Ȓ�CذٿNRR[[RPRӜ@NYSǑ�C۴۵LVU[\WmyLs騤C[YNƏ�:޹گL\vV\\UUOTXYNЀ�:ῐ٬zMaR\\VP`槴]VYQ|ЀԸ�ȓԀ1٫jMh`Y]]\[PǫkTYTfрӮ�Ϝث_NnS\ YW賳QYVVӟ�֪Ҁ8٫UNtSZ\[Uv׭NXWN͓�޸Ԁ/ٮPOuiV[\ONXXLрŽ�8ƓٳMQqQ[XQ寪OXXPvڿЀԯ�AҤ׽QUgTZEyϤPXXU[Й�?ݹ̯MMPMlIBPXXWNտ�?˘ܣQGKKF^⹚:VZWYYXU]Ҥ�ڲoUBHKL+FJg|٪=~Ͷv\INPQQOOKG]vŏ�+șd7ENRSTTSQMG=m۶da:DILN MKHB5ị�+ٶǷ丹с ݺ�<ϠήڽД�ӷź ̯�س΀݀ۀ �Ϧׂ左ۀ сŐ�ɟڀ ҁʖ�ƚݱ؁ ҂ʖ�ěϝك҂ƕ�ŝܢւӂ ׿�ʧ֮ԃԀӂ ҭ�в҅Ӆ š� Ҁэ ȧ�͵ӉŨ�˲ׁȴ�#ͺ�Ⱥ �ȿ���������WWWW؀WWWWlWWj�W^W]`[�bWWWWfWXWflW�؁�WWWW�WlWW d`WWvnWʀ�lW��tW rWWWx�WW^WWfWWWW lWwWfWqWWۀWWh^Z�WWWWWWZW\Wd lWWWWWWہWW^W�bWWXWW�W�Ƃ lWlWjnWWہaWWu� WlYsW]gXWWԂ lWԤWbWWWۂWW� WWdyWvW�Ws lWWWΛWWWہ`W�ő� WWWWXWXc}WW lWnWcuWWہWWWh� aW`WWW^WwWZW`lWWWWۀWqWW��WbWWnWWWlWWWWgW`WZ�WWnWW\^iWWlWpW~WWWWW�WWWWǀWWWxmWWWXjuWWˎ���������������t8mk��@��������������������������������������������������������������������������������#056777777777777777777777777777777777777777777777777640' �������������������������������������������������������������� !ӆ> �������������������������������������������������������������/=������������������������������������������������������������ 9_�����������������������������������������������������������Bq����������������������������������������������������������#Ja���������������������������������������������������������&M`��������������������������������������������������������(O_�������������������������������������������������������(O`������������������������������������������������������(O^�����������������������������������������������������(O_����������������������������������������������������(O`���������������������������������������������������(O_��������������������������������������������������(O`�������������������������������������������������(O`������������������������������������������������(O`�����������������������������������������������(N_����������������������������������������������(N`���������������������������������������������(N_��������������������������������������������(Ma�������������������������������������������(M`������������������������������������������(M_�����������������������������������������(M^����������������������������������������(L^���������������������������������������(L^��������������������������������������(L\�������������������������������������(L\������������������������������������(L[�����������������������������������(LZ����������������������������������(KZ���������������������������������(KA��������������������������������(K+�������������������������������(J! �������������������������������(JC������������������������������(J#������������������������������(I1������������������������������(I< ������������������������������(IC������������������������������(IH"������������������������������(IK$������������������������������(IM&������������������������������(IM&������������������������������(HM'������������������������������(HM'������������������������������(HM'������������������������������(HM'������������������������������(GM'������������������������������(GM(������������������������������(GM(������������������������������(GM(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(FL(������������������������������(FL(������������������������������(FL(������������������������������(FK(������������������������������(FK(������������������������������(FK(������������������������������(FK(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(EI(������������������������������(EI(������������������������������(EI(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EG(������������������������������(EG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������&AC&������������������������������#<=#������������������������������3Mapz{qbN4������������������������������ (<LX`dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd`XL<( ������������������������������(3;@BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB@;3(������������������������������ #&((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((&# ������������������������������  �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/wxmac-doc.icns�����������������������������������������������������������������000644 �000765 �000024 �00000105075 11670654443 017432� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������icns��=is32��Ӆ��q������+� 鵦n� 窥� ꧱ɮ� ǯ� ������������q�����å�+� 鿪s� 縩� 긯� ̫� ˹������������q�����ʪ�+� Ƶx� Ĵ� ĸ� ҴŴ� ����������s8mk����������������������������������������������������������������������������il32��R�$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ״?�Ƣȴhrx?�˜ntl�ݢv®i �进k�騧~ˤ�ߢ·�ܣdzպ�㥳|ѷ�ﭭxİű�Ǧʲ�뫿�ا� ׭�� ȱׂ�� �� ��� ��� �� �� �� �� ����$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ״?�Ƥϻirx?�ʡyul�ݦ �迨IUkR�鬵bUӱfY�ߩqޤXû�ܪd̑ZǼ�jwzʾ�ﱼݑ_śiɾ�DzS«yQȮ�Ī�دĺȹ� ײƿ�� ȵׂ�� �� ��� ��� �� �� �� �� ����$:3��ɂ>�ß9�¼9�Ͷ?� Ļд@� ׵?�ƩՀ ‘jrx?�ʨvl�ݩ �迳MYnR�ƲeYڸjZɳ�߰ŷrᥠ]ʼ�ܳҶĢe͒`̿�Ҳ͔lw}�ʹȇ`ϝmϺ�ǿʙWʲ|SԴ�вĺĿ�ضʻƼ� ַѾ�� Ȼüׂ�� �� ��� ��� �� �� �� �� ���l8mk������(_ccccccccccco`���������������oI��������������tX�������������tY�������������tX�����������tW�����������tX���������tU��������t$��������ti��������to��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������tm��������oj��������3yy4������������it32��<�������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� &�<Ĵ�(­ <�ű҇Ʒ~��ιϋ˿|ˀ � ɮϏ#ɾ� ¥ˀʀ̅IJ}݁ � ʁ́΁%Ÿǣ� Ɂ̇Ĵ ˣ�ˀ̄�̀« ϣ�˂̀̀ӣ� ǣ ׀Ӏ҂ɽî٣�Ѱؕv{zzyyxwwvvuttmh}¢ܣ�ؼqb`[]XȽhjlmjddb``__^]\]^_^WY\�(ʞbV\Z_bprssonxV_�Բa[a`[}krssm̂s^�=řVab\֟dqsqwٜǯ�?հXbc]ɔjrp|֜ӫ�5ǘX`d]һlqqƨç��7ڷzXbc`֛tony嬱ĭ��AΣ~Z_a]n̗ͺoocϸȡ��8ÓƤs``c`V̍ieҐ�8۶ȳqedÁp˾ʭ�AӨtciʈƭϰѡ~ѯ�C˜}caљݩх~ɕٱ�Ɣ1̚_bĕ촪~}ѓ಻�C࿑ddsﺕԥ򵓋ҝ跺�Ćܷbb꭮Ҩ켸�C۴bds͸먖˦δĶ�CذɌabѵ塗竱褙ͳ�C׭lecǷݝéəʍײ�Cخafo̿՛᧴権Ԗ೾�Cذė`dҽʙќjء跻�C۵ǃbcҹئ򱝭|c֬�C޹vdbзﶛ𳰻ޤeoyͿǴ�Cῑnea϶̨¦qprl᧰Ѱ�Ǖ1kfcγ꧞竵jupjאַܰ�CϜjecͳ㢟Ӂnso𴪵屶�A֪lfe{ʳڞ֧Թlrl뷱�޸/qdhhО뭲ؕjjɥ�8Ɣ~bicuş׺ugͤΥ�AҤW_\a𽩮٦٭aǶϦᤢ�?ݹ{Է¾؃t򿩶�?˙ʫΊ^yu̩帪�?ڲ李|ֳd}xۣ|䷢Ϭ�+șpwzuִlgϕ؇ijeшrx~|unԭ�-ٶՔm`rnqjɿȀ ȩ�<ϡٰripXӻfkkhgƻ�,͵waK~~} �سِjuց ƺ�Ϧ a�ɟȯГd`€ �ƛ}X\_h}ra^ҽ �ěYbeeda_`_]Ͼ� Şa]cba^^qм �ʧʵveddfmyij �вľú ���ʹ� ˲ �ͺ� Ⱥ �ȿ�������������������������������������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� $�<Ĵ�­ЁĽ <�űׂ�Ձ·}��ιԀӄɹ{ˀ � ɮԅӄԀӀ ȶ� ¥ӄ҉Ӏ˾}݁ � ӃҀӆ%òǣ� сЀҀӅӀ˿ ˣ�ЀҀӂԀӀʹ ϣ�Ѐр҅�ҁôӣ�ǣЀ؁ف�׀Ӏ ʹ٣�Ѱπ�рܮ ͦܣ�ؼȫƽǐ� ž�ʞԀ&㮍¾ ý�ԲʋߠځӖɹ�)ŘŲgeknquvwxwsob‘hdjnqsqmh[н÷�?հɫUIAFKNNLJIIGJ䦙[GLNNMMLKGDMtٹ�?ǘȚdQMGDCB>PףޥXSUUTSLf̵��4ڷ̜g<DGHH=՜^RVUTPZ̀��Σ̟o>FI'?t͘ߣOTVVTJ{ͪ��)ÒϹ[@JGHHCKÕfEU TKdz�A۶IJJ<MACC>㴕D>gYUTLxи�AӨןED|EPURsҿ:IYVTNlֹ�C˜աLXTXXWRU9qQTWQ`ݺ�Ɠ1ղF^}PXXP<<_AXSV¿�C࿐ɐFjQXYV_F[z:IXO�CܷգGxnSYYOWL=CLO¾�C۴ǐoGNYZSqIb߬AFCD¿�CذҪ־aHcUZXSbJIFE9zӾ¿�C׭ϕVIOZZQKXXDF;dܼ¿�CخÐPLYWZX]nJ泿l?DH]¿�CذͱLPQZZQORЍ9KWQ¿�C۵ѥIUSZ[VmwKr蛒>YVK�C޹ќJZtT[[TTN߸SVVKξÿ�CῐЙֿwJ_PZ[UO^◠\TVNy׺¿�Ȕ½ϗԽhJg^W[YO򽘧iRVQb�CϜϗԼ\KlQZ[[XV㦠~NVSR¿�A֪ϗҽSKqRYZZTtΛKUTK�޸8ϛLLrhTZZN鵙KUUIɸ¸�8ƔϡINnOYVMޟLUULrԱé�AҤ˯OSeSYAtǐϾLUURW箯�?ݹþHILJùkE<ꨜLTTSJʿö�?˘¿՛I@DD?Wܫ4PٞWTVVURXĺ¡�ڲľhN;AD+?CauΖ7xľrYEJMLMKKFCYq׽�șĿ`2=FJKL*JF@7fϡ`쯝[4>CEGGHGFDA;/cۼ�+ٶĸ¼両ܣоʁ »ѱ�+ϠĜЭӀ Ɠ�;¼ɣ�سþ"޳ˁѼ�Ϧā!ݦ¼�ɟĿٲ΀ ľ�ƛĿҠʁ Ŀ�ěÇɀļ�ŞЌƂ Ʒ�ʧɝŁ é�в Ĺ�ÿ Ž�ʹĺ�'˲ü�#ͺ� Ⱥ �ȿ�������������������������������������ȼ ��M�¾a�ſN�O�P�»ǾO�üʾN�ƾʾU�ǾʾU�ɿʾU�ʽU�ùʽU�ŻʽW�ȼʽX�ɿʽW�ʽX� ¶ʽV� ķʽ\� ĸʽ]� źʽY� ƺʽY� ǻʽ^� Ǽʽ[�Ⱦzyʽ^� ʿ~xspooqtuz~ʾ\�~ywv y{~]�2ĹZ�6ǽ'� )�<Ĵ�­ڀ <�ű߁݂«|��ι܎Ū{ˀ � ɮ܂ۈ%â� ¥ۃځۂ܂ۀʷ|݁ � ۂڀۊ$ǣ� ځـڀۉ܀Ű ˣ�́ـڂۄ܁ȶ ϣ� ׀ـڀ܄ۀʸӣ�Ǣـځށۀ ع٣�Ѱ؀�ڀṩ ׬ܣ�*ؼӹϠ ͞�<ʝ͟湟βŎ�Բ՞ᮯ߀ڦδ�=Řѿihnrtxxyzyvqeɤkgmqtvvutpj^˙� հغYLEJNPPNLKKJK泬\IOQQPOJGQwϻ�ǘƜ˝fRPJIDVܱߧZVXWWVPjŀ̛��ڷ֬lCJMCۭaUYXWS]ˀ϶��4ΣծuELOONEzԪQWYXWNҵȀ ɑ��Ñ΀/ŪaGQMNNIQ̧lHWWXWOξˀϨ�8۶PBRHIHB群JCi[WWOz̀ѽ�Aӧ޳JGHRVSt@O[XWQoȏ�C˛ݱNXVYZXTZ?wWTXTcΛ�ƓЀ1I`RYYQABeDXVX̀ϩ�:࿏ӣIlRY[W`H`AMZQ΀Ӷ�:ܷݲIzoT[[PYMDIPQ΀Ҿ�:۴ѤqIP[[UrKcHKHHπĎ�CذܸcJeV[ZTcKOLK?}Ɛ�C׭٩YKQ[[QLZ^IKAgƑ�CخΤRO[Y[Y^pKqEIL_Ȓ�CذٿNRR[[RPRӜ@NYSǑ�C۴۵LVU[\WmyLs騤C[YNƏ�:޹گL\vV\\UUOTXYNЀ�:ῐ٬zMaR\\VP`槴]VYQ|ЀԸ�ȓԀ1٫jMh`Y]]\[PǫkTYTfрӮ�Ϝث_NnS\ YW賳QYVVӟ�֪Ҁ8٫UNtSZ\[Uv׭NXWN͓�޸Ԁ/ٮPOuiV[\ONXXLрŽ�8ƓٳMQqQ[XQ寪OXXPvڿЀԯ�AҤ׽QUgTZEyϤPXXU[Й�?ݹ̯MMPMlIBPXXWNտ�?˘ܣQGKKF^⹚:VZWYYXU]Ҥ�ڲoUBHKL+FJg|٪=~Ͷv\INPQQOOKG]vŏ�+șd7ENRSTTSQMG=m۶da:DILN MKHB5ị�+ٶǷ丹с ݺ�<ϠήڽД�ӷź ̯�س΀݀ۀ �Ϧׂ左ۀ сŐ�ɟڀ ҁʖ�ƚݱ؁ ҂ʖ�ěϝك҂ƕ�ŝܢւӂ ׿�ʧ֮ԃԀӂ ҭ�в҅Ӆ š� Ҁэ ȧ�͵ӉŨ�˲ׁȴ�#ͺ�Ⱥ �ȿ����������������������������������t8mk��@��������������������������������������������������������������������������������#056777777777777777777777777777777777777777777777777640' �������������������������������������������������������������� !ӆ> �������������������������������������������������������������/=������������������������������������������������������������ 9_�����������������������������������������������������������Bq����������������������������������������������������������#Ja���������������������������������������������������������&M`��������������������������������������������������������(O_�������������������������������������������������������(O`������������������������������������������������������(O^�����������������������������������������������������(O_����������������������������������������������������(O`���������������������������������������������������(O_��������������������������������������������������(O`�������������������������������������������������(O`������������������������������������������������(O`�����������������������������������������������(N_����������������������������������������������(N`���������������������������������������������(N_��������������������������������������������(Ma�������������������������������������������(M`������������������������������������������(M_�����������������������������������������(M^����������������������������������������(L^���������������������������������������(L^��������������������������������������(L\�������������������������������������(L\������������������������������������(L[�����������������������������������(LZ����������������������������������(KZ���������������������������������(KA��������������������������������(K+�������������������������������(J! �������������������������������(JC������������������������������(J#������������������������������(I1������������������������������(I< ������������������������������(IC������������������������������(IH"������������������������������(IK$������������������������������(IM&������������������������������(IM&������������������������������(HM'������������������������������(HM'������������������������������(HM'������������������������������(HM'������������������������������(GM'������������������������������(GM(������������������������������(GM(������������������������������(GM(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(GL(������������������������������(FL(������������������������������(FL(������������������������������(FL(������������������������������(FK(������������������������������(FK(������������������������������(FK(������������������������������(FK(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FJ(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(FI(������������������������������(EI(������������������������������(EI(������������������������������(EI(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EH(������������������������������(EG(������������������������������(EG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DG(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(DF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CF(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������(CE(������������������������������&AC&������������������������������#<=#������������������������������3Mapz{qbN4������������������������������ (<LX`dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd`XL<( ������������������������������(3;@BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB@;3(������������������������������ #&((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((&# ������������������������������  ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/wxmac.icns���������������������������������������������������������������������000644 �000765 �000024 �00000146150 11670654443 016666� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������icns��hics#���H��????����????��ics8����������������������������������+V�������+�����zO++OOO����OO2]+O92+���V+O99++��OO2V2++��O+292V2++���VO229O9++���+V]V+2]���++OOO�����OOO++++�������++V��������������������������������is32��H�Irwb �Uθ~� nlj� Vȇ�L̜ƤA��*ݰͿu��SͰļ��VҶż��1ӻôw� Ʊī>� M½Ô� h¾�Zy�Ypud$��Nu|f �Y־� nՓ� Qδ�LRŪ^ұA��*ηd`}��XĿᯅ̏��Vǣ{̏��1q{~� ̖kѢ^D� MƷ�mƖ�]ļ�Yx}h$��N{i �]Ɖ� s� Qȏ�LƋWԱ`A��*ȧgcք��X̰㰊ޚ��[ҥ|ޚ��)˟sͼ~ׅ� ۞pƿڥbD� QÒ� uء�aͻ�]~n�s8mk����������������������� 4Y`F���������?q ������X����5���+��j��7��8��k��-���8�����]������Dx�������� 9_fL���������������������ICN#���������������??????��������������������������??????�������������icl8����������������������������������������������������������������������������������������������������������VVV�������������������V++V������������������������������V������������+����������OUO+OyyyOUUUUyUV��������UzO+++++yy++O+��������yy9]cd2Oy+299]2++�������+OyyO+]cc+UO992++++������V+++Oz]]d2O]92++++�����+++UO+2+99]]9++++�����+++Oz299+22c9++++�����+++yO22292]]c++++�����+++zO22992O]d+++++�����++Oz+92929+UO2?2+++�����+Oz+]++999+yOc2+++�����+OzO]+992OO+99+++������+OyO+c+2cO+99++�������++V]d]+O]OO]cd]�������++V+yO+OyOVVV���������+++++Oz+OOO+OOOOOV����������++O+++OU++++++������������Ozyyyz+++++++++��������������UUUO+++++++++����������������V++++++++V�������������������VVV�����������������������������������������������������������������������������������������������������il32���%*&�$-[{T&3�-p˧g(�UN݄͔@�^եP�\¨N�Hޭy}~t4�&]ܽqx|�Wsfҳt³õG�nvʜފ̻{�<hѱҾ+�YNJٸ۹ߓG� lsϻ̹ΙºZ�v}Ӹ֜ûd�vlܼ漺ֽӭ»f � mjݴ̹Һ؊[�Zhޭ¾lױѼI�<c‘ڳն.�!sϩҠܷٿ|�\ȥƜȮרI�'ֳvʇjҁ�Iʧo<�`ɤ¾U�?g]fttv¿W�?WI�7m.�7c_3*� %260& ��%&"�$-_V&3�-uӮj$�UN֜@�bR�^ҶN�E§4�"̨ͲĶ˃� YޱsOKG캫ՍSUUƶG�̾SGI䱶TTȁ�<μbeDybTɥ(�[ҭĀSp]N{ƷG� q۰oT좐Kež^�}Υ䛗Qp\Jh�|Ȝ䇩e]⹄sIi� ruQyKž]�^ǾgZ\tѡĶKƸI�<ɾ[vRQqɧ*�LLTZȃ� ^ȏN<XɶnmJHlݷK�#̙ƪ̵řو�Iʼ˫9�dԾʶU�?iʳY�?YßL�4ɀr+�7ga/*� %.30" ��!&"�$-aZ&3�-zݷn$�UPC�fU�`N�E˻κ1�°μԾظ܉� [ϷvROKݏVWXG�ͳYNOƿVWڇ �9̰gjHeWܲ(�]߾ƂUqcQ}G�wβⲊqUQg`�ܸꝙRqcOn�ֱꉫf^⺄xLm�wбwRzʗNa�`Ͳi[]tصϷNI�<β^wSTtܲ*�ѸOPW]ڋ � `ΖUC_tpMLqK�ў;ǸП�Kвس9�h̸W�?lϪ[�?[ժL�4Ѷw+�4je/*�  .3, �l8mk���������������������������������������������������������������������������$7DHB4"�������������������"Oǩ|H���������������OՒE������������%xj����������){ �������� u��������jX ������<.�����k �����3%����YF���}g���������������h���\H����5'�����o �����@1������o] �������${���������.#����������*r!������������WݜL��������������� 'XϲP!�������������������*>LPJ;'�����������������������������������������������������������������������it32��v �����������*$83*'63/33''.3*3� 3$3*38071637438 3461383.5/6.*�*8*/35667784574865678687654331.8633�*8'-.86475487767786878798 6674683353.$3�3$./08468467787876532212134576788765875158'8*�3'8573487688762237>ENV^cfeaYSK@943246789778603.$�3'5144767886217@Ui|q^I:31577987443./.*�1*51374598721:Ol|^D33567533.33*�*.-548475517Osü`A2377865443'83�386.15687641@cyO6167674718.$�$.885759743Dq¸W71785847.683�36.7866862Bo̼W53767458-.*�33/37566839fߢϽL25867413'$�*.86647852Rݧκp<38758476�$*3177983<u܍ۋ܍ŴS2577853/83�$'.647861Mۈـځۊ܂ۀڇηo8386878-33�$'.358753bهفڂۆ܄ڀهӸB276556-33�$67846748vه؀فڄہ܄ۀڀـ؆ӸP1746833�$'.88584=փր؀ـڎۀڀـքѶ\2646-33�**.383BՅ׀قڊۂڀՄʲf178646-8�*.045583DԂ׀؀فډۀځ ӂտj3767583�33578772Bӂ ؀فڈۂـ ҂̀ j1676336$�8-463@р؀فۄڃـρϺf27647.**� $315684:׀؀ف߂ރ݀܀ ԁ ɻZ286843�**7475}؀ق ƠP28743-8�3548 2j ց ߁~~}|{zyppok㿕@475516$�2/46782Uȯenppqpoonmlkjig`_^\[˱66787..3�$3*57784@ȓo_Y\bca]\ZTxɀ tosvvwvuusqnllkj iihghggfggc `_ʱj27751-�8547765~ڍ^Z`c!hbfvxrjԽfruwxyxwvtnp}{wuqpolkjjmnoruz{i\bb`^ʰO38853'*� *687581^pXbe db^dquxyyzzyxumˀȁƎ[``^ʰ9574838�307785AxZdffgfd\уkuxzz{{yxo܌؀ؗZ^[˰m186563*� *344572vۭWdfgf^r sqwyz yt{ӀԄ{MkưG465503� 304883M\egheb︣kvxy{zyq鶜͞ٳ~487843*� *347674p_egiih`ˎ#fswyzzyo真̳P277403�F804782Ro_fgiih_̐jvxyzyp杔ܫ 577846*�3664884z]egiI`ͺmwxyyqȦ֮R385538�\58673OޡXdfhjienٺowyyu{ůư47558'�%.38782zi^ehijia}媑5wrxxwp㮸ϲI4844-$�&*/7785C޺]aghiih`oڿ5ٷptwwulgͪq186573�803681fa^ghjiic^sóش/ٹmvwvrbֳ¾ؤ=575463�*15867Sy\chiijie`cjTڨlvuqf۹ Y28588$�3/6573L r_biklEiabٝltly۝Ȫ}268473�34681k(ᶆjcgnnlepՑ'jf·ľϮ>5754'�357676TԱpnlc|Јȩseܳý֯V3784-*�'4465C*mnl`ȁʸݱs27533�3/4773YUnlnkYߛ򺱼ƾŁӝ㳽6753�$54573rVygnmb}՝ګ٥~؜鶼C4754*�878755Vblmfuƙ񱭷݅ڦĿU28463�.1466=WbklkiΥ¿ۃܱƽ¸g27878*�'3893IWpfllc~ܼŷʶz38773$�36483VXalliwʾ񩟣Ʀ埪}ȉӴ787�3/8581eXfilldꢡ称žюݴ<57533�*85681pXbklizи❢¾北ؗ嵿B4778.�$33882|YfilldĹ؛ᥳϝܢ칽J3944'�$06674akljn¹͛Ѐ9½ܰQ3771'�$.5855Yngkleùإ¿ٞڽȷV28576�787Yߵ`klld¼ɈѵY18463�78678Yclljn󭠥Φ¿㠦ҏ۴[37863�786786ngllgǽ漽Γؙ䴿]37863�78778Ybjlldǻ堣è¾룥۟^ܥ븼[18463�.4755Y`kllcǹܝ妳ƟfbܲøV28476�$05564Ybjlkgŷћ񨥨lleۿǵQ3761'�$37783~Yxdkljk÷Ŝ٥¿ϡqlrhʆҲK4983'�*54683sXlgkliqettm~ѐܱE4776*�3-8873gXehklhwſ󰠦ʧ¿٩eqvvorص泻>66413�34873[Xbiklgxļ諸騲guxwriˣ8758�'3774LWֻ`iklhxù袤¿зppwyxrcҡ37660$��.85@Wض_iklhw٥ܤguxywq^ޣ˯k18658*�857676Wض^ijliqϿ֝򭯺ÿ}mvyyvhꦬ׭Y1784/3�$37882xVض^ijkjjӼ˜ŧڹiswxwl񮩵⯷G5983'�*-8681_׷^hkMc۹⦲Ŀݐjuxwnھ볳97853.�61784HUӾ`hkllc䷳󵟩¼qpvwp{ʾţ𽯺z38760�.15877Tbgjllgx޾ﬢͥÿަgsurs;Ϣʪ\2868-*�07872rTgfjllkbѺ饦觰ltsnμԡاC56436�*-4883RTrciklkekࡩܼiqrk˺ע婮5753�'6866:U_hijifYaԟ籿ѤݔgqiƳ٣ﳣb27755$�8.6782qaۢ[eedaYYͬ馬skhƹפΖC598133�$-4484J`YZbgp̘ݰehͥα}28783.�*85584`֌ϕĸ{ң܊bv񳫵ɯR36685�835771ZNؿ޻jb\~kkۮ7668463�*335868Cɵݒhdtz}ުdα^286308�k3.7582^晴x||ܧikgz{ۆpޱͩ87741/*�$/18778lvy|.|{ztܫjpmڍvpmllj`־rvxy}|wuskө\28567.�.76582Z̄qtwz|,}{zyxݤjxg`بzݮhqttsj̅vxyy|~~}{wvtsxΩ86787/$�$/14865ƴ/¾ۋkylE܏jrttsmƯ€R36677.�..3783LՀրׁ؀ ݴmor|Ltnrssrpkفׂր쯮z38671/$�$/44582o҅ӁլeclozhEˇjpqrrqpllځۈڂـ ԱB4754..�7307875;سxhrzL?Unejkl kiec}v٭]077663*�4*'14883MjzeH?nxz{ yyxuomkihffeedccbba`_` abbex3676458�8817,1gmzvq؁�ր�ԃ ږ=56775'*� 3..78875}fomp΁Ѐ M37866/� $636685<hleǀȀ a1764653� -46582EŽ€ gjk`ȁǀ o36945.**� 33567572Oſlgjfl€Ƃ {5688736$� **.37683Sуc^_boјefih]ÂĀ 668586/� $'754772VmW`cddc_]cs~f`gih^Ϳ 95776388�$6348780SڨVbdefgfca_ `bfggf]|ؼ }857551533��38773MYbdfghhgb\ڻ t6675475.*�3138782EܣWbdfgfeb[kӹ g3586473**�83345674:zgYbdefe c`\\oö U2778575**�33586844fuZY\] \[[\csʶ E1876715.*�673761JὛ j63787548.*�$'07679829hƺL3676741/33� *.54648661H}�c62875437383�*3/38757844Up?17788533'�3'015468735XrB14866873-3*�*.-335867615R~hA146757630'3�3'3647687732Dh{T8357674865/3*�*33.3356688417KixZ>33678847318*$�*./.34857786315BTmy`K:126766868315'3�$.3047766878743149EP\gpx~|tkbVK?621468675677638'83�*365373556778867431232124578877665484./.3� 3./0174858658787878768896785746845868$�*8*33544556568865767867648 7811.-'3$3�3$3'/5.3614854767347373173-6.*� 3*3*'3-853 0358-/6'.8$*�3**$**3�������������*$83*'63/33''.3*3� 3$3*38071637438 3461383.5/6.*�*8*/35667784574865678687654331.8633�*8'-.86475487767786878798 6674683353.$3�3$./08468467787876532212134576788765875158'8*�3'8573487688762237<ENU]bfc_YQJ@943246789778603.$�3'5144767886215@Sg}q\H:31577987443./.*�*51374598741:OlȀ|\C33567533.33*�*.-54847517Os`A2377865443'83�386.15687641>cºyO4167674718.$�$.885759743BoW51785847.683�36.7866862AoõT53767458-.*�33/37566839fòJ25867413'$�*.86647852Pp:38758476�$*3177983:sƼS0577853/83�$'.647861Mîm8386878-33�$'.358753bŽB276556-33�$67846748v߁P1746833�$'.88584=߄߀߄ĩ\2646-33�**.383@ބ݀ހ߀ރŰf178646-8�*.045583D݃݀߀߀݄Ƶj3767583�33578774Bހ߀߀܂Ʒi1676336$�8-463@ŀڀ߀ ـųf27647.**� $315684:ŀ�Ƃڀ݀߀݀܀ ɭZ286843�**747 5}؀ހ߀� ҤO28743-8�3548 2jſ ށ 礣˘@475516$�!/46782Uøځ�܀ֿ66787..3�3*57784@հπр 嚛 �üj27751-�8547765~⫌Ā�ƀ 縑 ƬO38853'*�*687581\ޗ򡐟 ݀ہٳĒ9574838�307785A睊ަ涊żm186563*� *344572v‡؝{ǨG465503�304883M碍ckqsu}} zuoe_gnqxy{ {xuoj`sٵ ~487843*�*347674䗐?KLMMLMNOQQRRQONMLʒLRSRQ PPEƱP277403�H804782Q㖑FHHLRTTUUVY\^]ZXWVVXZVMUSHOUVWVWWVUTSSQKDDA⻽ Å577846*�F3664884枎ѵgMJQV[_\UNHFEDDCC=ZߣcNWXYXXWUUPJd޽„ƱQ385538�&58673O争ȊYUYMFEFGHG?c짞UYZYYXWVPYпăā47558'�.38782|ᒏ r?DGHJJK4JH>䠡TXZZ[ZZYXWTUăƭI4844-$�*/7785Aƀ̋>GIJL6MLKJAٜMYZZ[ZZYXVKŃq186573�803681eŀȎǾ<HJKLM5LJ>ȿ͚lWXZZ[[ZYXUMޭăś;575463�*15867āן{=HJJLM-LJ@sA][YZ[ZZYWUPȫɀŃƸW28588$�3/6573Kƃšx>HJLJIDIy8M`ZYYXUPδĂ}268473�34681kłʩd?GGMIJ IHE7񨘔MBCQaZYXVNչăƠ>5754'�357676ĂɷS?DDs@G EEFGq&㙏<FEH_YZZYXVKۺŃƷV3784-*�'4465Cƃ*ԠD>@Gմ=EGKPW]^Sʣj?GAiZ]YXWKĂs27533�3/4773YƂVܝPSQftT]``_\ZOCFH>RY^YYXWLăŏ6753�$54573rĂ願NXSwPZ[3X[;GDSaC_]YYXNŃƧC4754*�878755Ă𰒛JTMjTZ\4[NO@F={:Ma[XXQoĂƵU28463�.1466<ƃWˏKULNZ\\]]\Um=ACF;CQbZWS`Ăſg27878*�'3893HƂ 噕{MUL`V[]3[QQD:s>EDUaXUUĂz18773$�36483Vł!ﴐjPVMO[\]3\RS[U;GEFEY_VMپłō787�3/8581cł!ے]RUQXX\]4\YZNXVoUDHGG[]JĂƜ:57533�*85681pĂYSTUVP[]]^]\P`UWMiAIIFH[PĂƦB4778.�$33882}Ă"ۓNUS`SZ\^3\WiNXTe>IIHEHT~ĂƭH3944'�$06674Ă@촑KUQj{S[]^^]\QmTYN>JGBEmĂƳP3771'�$.5855ĂY䘘KVPxP[]^^]\SOYW[AIJJHE=QĂŷU28576�787ŃYɐMVMlV\]^^]ZX}QYOJHJJIF?C׿ĂŸY18463�78678łZ뫓qOVLO[]^^]\PSXXSYEJJHEAH߽Ăź[37863�78678ł%䘘cQVL_X\^1]XfPYRyЩnAIIGCPSĂź[37863�787ŃYґWTVLP\]^^]\PZWYOڲ>HHEO_OzĂŹY18463�.4755ĂY潑PUVOVZ\^^]]T{NYUg콎<FDM`ZQfĂŶV28476�$05564ĂY꫔KVUS~S\]^^][VaVYN˒?BJ_\WUWĂƳQ3761'�$37783~ĂY矖KVTXP[]^^]]QNYWZ哗FD]^XXVN׽ĂƯK4983'�*54683sĂ&ᗙLVS`jV\^/]YdjUYPWT]XYXWKĂƨD4776*�3-8873głYۓxNVQhP[]^^]\RQZYQՌUXYYXWLĂǝ<66413�34873Ył'ӒgPVPpZY\^]VztUZSp򫔥LXYWOqŃő6758�'3774LƂ(͐[RVO{R\]^]`Z[ZMؗLXYWR]ǾĂ37660$��.85?Ƃ(ʐRTUMP[]^]Y\[W]羕RWYXUOѻĂk18658*�857676Ń(ɐʾMUULgV\]^*]\[O⣝\TXYYWVJܸĂƹY1784/3�$37882xĂ)ɐǽKVVKP[]]^*]\YVΗmQXYXWVJĂƫG5983'�*-8681_ł)ʏĽJUVKTY\]^\ZVu鲛NWXVNqソăŖ97853.�61784HƂ(ϐ½LUUKtT[][\RܝLWXVRZƻĂz18760�.15877Ń*ՑƽoOUUKNZ\]]\O˜LVXWTMѶĂźZ2868-*�07872rĂ(ݓ_QUVKYX[\(`Fq秝MVWXWVUH޳ăƧC56436�*-4883RƂT䚕SSVVK}RZ[[`R9ӘNVWXXWUJ괺Ăć5753�'6866:łP禑KTUUKNYY`V>S쵖ͺOVWXXWUOc󼯽żb27755$�8.6782qłaịQZYXQyZU^YD:᝚MVWXXWUSMԢƥA598133�$-4484JƂN҇TMVZZX_}SZFB@ʔKVWXWWVTHջ~28783.�*85584āݪd:CDE-:̻PFB@]뮓pPVWVVTO[ӽƴR36685�835771Yƀ[<FFGGFECCЗJ>D:ޙLUUVUTSRIp⽾Ŏ7668463�*335868ҭrA?GGH-GGC@w궘l:CAƕ֪mQZ[\]\[ZYQ_̻Ź\286308�3.7582^¿j\H:<DFGGH+GGE=?N`puǝ:?\ꭟ܇p[KDIPPQRPOONMKG?ASgtֺē87741/*�$/18778¾r(8=@BCDEEF'EFDA?>2ˡL7ߠ07:=>>?�@?>>==;84$۹÷\28567.�.76582Z¿;058<>@BBC.DDB@A?=<;8HƢt;̝P48::=>>@A@?==;9852;׺86787/$�$/14865-ü鵢뷠Ȟ€ʽR36677.�..3783J%Οߥ��ᄏz38671/$�$/44582mēݰʆ ڿB4754..�3078759Ӏ,Ž{̧Ŀ[077663*�*'14883Mɀ�͂꿛wx3676458�8817 1g﫞 ߃ހہ<56775'*� 3..78875}ł"ׂـȅ ʨL37866/� $636685<ŅԁӀҀă Ų_1764653� -46582EĄЖЂӁрą ƻo36945.**� 33567572MăҘπ҂рą Ƽ{5688736$� **.37683SĂܤݵ΅ЀĆ ƾ668586/� $'754772TĀ┆Ѓ΀ Ć ƾ85776388�$6348780R῅ ʁ΂̀̀ ć ƻ}857551533��38773M氆˅̀ˀ Ć Ʒt6675475.*�3138782D⻅ʄ˂ ć Ůg3586473**�83345674:zߑȀ�ʃɀȀĈ àU2778575**�33586844dך āǀȄǀĉ ǻE1876715.*�673761Jζ ŊƁċ ëj63787548.*�$'07679828h ÂąłČźJ3676741/33�*.54648661G~ŀƾb62875437383�*3/38757844S¤n?17788533'�3'015468735WğžrB16866873-3*�*.-335867615R~ęõhA146757630'3�3'3647687732Dhđ¸{T8357674865/3*�*33.3356688416IgĀņĀüxY>33678847318*$�*./.34857786315@TmÁy`I:126766868315'3�5$.3047766878743149DNZgpx~}tkbUJ?621468675677638'83�*365373556778867431232124578877665484./.3� 3./0174858658787878768896785746845868$�*8*33544556568865767867648 7811.-'3$3�3$3'/5.3614854767347373173-6.*� 3*3*'3-853 0358-/6'.8$*�3**$**3�������������*$83*'63/33''.3*3� 3$3*38071637438 3461383.5/6.*�*8*/35667784574865678687654331.8633�*8'-.86475487767786878798 6674683353.$3�3$./08468467787876532212134576788765875158'8*�3'8573487688762217<DLU[bfc_XQH@943246789778603.$�3'5144767886215@Qg}ɀþq\F:11577987443./.*�*513745987418NlڄƵ}\A33567533.33*�*.-548475515NsĬ_@2377865443'83�386.15687641>bƧzN4167674718.$�$.885759741BoиV51785847.683�36.7866862?oԿT53767458-.*�33/37566838eԻJ25867413'$�*.86647852PҲp:38758476�$*3177983:sʘR0577853/83�$'.647861Lնm8386878-33�$'.358753aȊ@276556-33�$67846746vџO1746833�$'.88584=֯Z2646-33�**.383@׸d178646-8�*.045583Bٽi3767583�33578774Bg1676336$�8-463?؀ؼd27647.**� $3156849؀�ׁ ڴY286843�**7473}ց� ߫M28743-8�3548 2i ڛ@475516$�/46782S ȣ͇66787..3�3*57784@߿؀ق ꫭ j07751-�8547764~꼢΀̀ãÀ ٳN38853'*�*687581\檠ƀħՓ9574838�307785?㳭ļŠk186563*�*344572vΞ߮篒٭D465503� 304883Lfntvy}xrhƾbjqt{|~~{xrmcvԀ ~387843*�*347674몧COP OOPPRRSTSSQOҥƽNTUTSR SFԁٹO277403�804782OꪨIKKPVWXY[]_^\ZYZ[WNWżTJRXYYZYXXWVUOHIFӂ Ӆ477846*�'3664884չkQNUY]`]WQMKJIHB]ﻯĽߥePZ[\[[ZYYTNhӄٺO385538�&58673Lȟ̍[VZQKJKMNLDiﶲÿW[\\]\[ZZT]ԄӃ37558'�%.38782|駦vEJMNPQPOD건V[]\[ZWYփٳH4844-$�*/7785Aـ֡DMOQRS4RPGஶP\]]^]]\\YOփq186573�803681c؀ԣCOQRST0SRPD֭mX[\]^]]\[YPⷼրփ؟;575463�*15866ցఢCOQQS.RPFy̭E^]\]^]]\[YTж؁փW28588$�3/6573Iكέ~DOQR,QOJO­>Qa\\]]\\[YT؁փ268473�34681i׃ԺjFMMTOP ONK<SGHUb\]\[YQփ٥>5754'�357674ւǹYEJJyFM�KJr&訠BLKM`[]]\[YNփU3784-*�'4465Bك*߶IDEL۹BJLOSY^_T'ϮpFMFo[_[\\[ZNւs27533�3/4773Xك*䲴SVSgvU^aa`^\Q'ILNDV[_[\[ZOւג6753�$54573rׂVPZTxR\]]^^]Z]AMJZgH_^[\[Qփ٭@4754*�878755ւLWOlV\^3\PUFLC@Qa][[TrփS28463�.1466<كդNXOP\]^(]WnAGILAITa\ZVcڀւf27878*�'3893Fك쫪~PXNbX]^ \R݀"RI?yDKIWaZXXւ|18773$�36483UقـP¥mSXOP\^^_^^SU[W?MLLKZ`XPւא57787�3/8581c؂!㦭`UWSZZ]_3^[[OYWq[JNLK\^Mփ٠:57533�*85681pׂX󼧰VWWYR]^__^]QaWYNoHOOLL\Rփ٫@4778.�$33882}ׂ"⧮PXUbU[^_2^XkOZVgEPPNJMUփٶH3944'�$06674ւM¦NXTm|T]^__^]RoUZOEPPOMHInۀւٽN3771'�$.5855ւ#뫭NXRzQ]^_&]TQZX\GPQPOKCTڀւU28576�787ւ#ԥPXPmW^_2^[YRZPPNQPOKEGւX18463�78677ւ׀񻩲tRXOP]^_1]QUYYU_KPPNKFJւY37863�78677ւ$묭eUXOaZ^_1^XgQZS{ѱtGOOMISTւ[37863�787ւ%ܦYWXNR]^_0]R[XZP۹DNMJS`R~ւY18463�.4755ւ%ʧRWXQW[^_0^U|PZViĞBLJQ`\TiւU28476�$05564ւY𻪳NXWUT^^__^\WcWZOϢEHN_^ZXZւپP3761'�$37783ւ&NXWZR]^_/^RPZX[硩LI^_[[YQւٸJ4983'�*54683uׂ&諯NXUbkX^_.^ZekVZQ\V_[\[ZNփٯB4776*�3-8873gׂ'⨰{QXTjQ]^_-^SR[ZS۝VZ[\[ZOփ٣<66413�34873Yق'ܧjSXSs[[^_^X|uV[UrNZ\ZRuւה6758�'3774Kك'ئ^UXQ~T^^_^a\][OߧOZ\ZVaւӁ37660$��.85=كWզUWXOQ]^_``_^Z^]X_ȧTY[\\[XSւk18658*�857676ւVզPXXNhX]__``_^]\P貰^W[\[[YNփW1784/3�$37882xׂ(ԦNYYNQ]^_(]ZVשoT[\[[YNփٱE5983'�*-8681^؂)եNXYNV[^^_^\Wv○QZ[YQuփؚ77853.�61784GكB٦OXXNuU]^__^]]S䯵OZ[YU^ւz18760�.15877ւBާrRXXNP\]^_^]]RάNY[ZWPփZ2868-*�07872rׂ(娯bUYYN[Z]^aIwOY[ZXLփ٬B56436�*-4883QقC뮭VWYYNT\]]aU?۪QYZ[ YNւՉ3753�'6866:؂QNWYYOP[[aYDYªRYZ[[ZYSgƽӁԁ`27755$�8.6782qׂAȡR[[ZS|\W_ZI?训ɴQY[ZYWQۯ٫A598133�$-4484IقAۜXPX[\YaT\JIFԦOY[ZXM~28783.�*85584ցAjAIJKKJ@ŭQKHFc𼦲tSZ[ZZYT`ٽQ36685�835771WـcCMMNMMLII٩NDJA嫭 OXYZZYXWNt֑5668463�*335868ڴyIFNNOLNMJG}īp@JGѩ׬oS\]^_^^_^]][Sa\286308�M3.7582\pcOACKMNOOPPOONNLDEUgw|Բ?Fc߉s^NGMSSTTUTSSRQOKCFWkyՕ87741/*�$/18778v/?DGJKKLLMN*MMLMKIGE9طQ=糶6=@BDDEFEDDB?;+Z28567.�.76582Y?7<?CEHIJJK+IGHFDCB?OԹwBسV:>@ACDDGFDDB@?<9Bҏ66787/$�$/14865ñȁ/ǹȷϥɂſѶQ36677.�..3783J#ٴ纹z38671/$�$/44582mϧϠ@4754..�3078759ـ+ոŬ[077663*�*'14883L҂&ͱǩ x3676458�8817 1fρЀ󽳺  <56775'*� 3..78873}؁ԁف݀ Ǯ݀ۀ׃ ڬL37866/� $636685:ׅւހ 󻮯߀ހ�܀Ն ػ_1764653� -46582D׆ګ݃ހ܀׀օ m16945.**� 33567572Mփ ڀ ܬ݃߀݀ ֆ {5688736$� **.37683Rւ䶣Ĩ܅ހ݁ـֆ 668586/� $'754770T׀騜öۄ݂܀ڀև Ɂ85776388�*$6348780P̛؆܁ۀڀ׀ֆ }657551533��38773L܆ۀڀـև r6675475.*�'3138782Bɛنڂـ׀ֈ ׵f3586473**�%83345674:z神؈ق׀։ ңS2778575**�"33586844b୞Ջ؀ׁ։ ƉD1876715.*�673761Hĺ֊ׂ֋Աj63787548.*� $'07679828fՍ֎ČJ3676741/33�*.54648661E~Հ�ӀԠ̡`62875437383�*3/38757844S֤Ϊn>17788533'�3'015468735U֟ɨqB16866873-3*�*.-335867615Q֙ӿf@146757630'3�3'3647687732Bf֐å{R8357674865/3*�*33.3356688416IgՀ�؀׃؀ɷxW>33678847318*$�*./.34857786313@Rmԁz_I9126766868315'3�$.3047766878743129BNZgpz}tkaUH>621468675677638'83�*365373556778867431232124578877665484./.3� 3./0174858658787878768896785746845868$�*8*33544556568865767867648 7811.-'3$3�3$3'/5.3614854767347373173-6.*� 3*3*'3-853 0358-/6'.8$*�3**$**3������t8mk��@�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  ���������������������������������������������������������������������������������������������  "#$$$#"! �������������������������������������������������������������������������������������� !%)-147:;=>>>=<;863/+'# ��������������������������������������������������������������������������������� !'.4:?EJOSWZ]^```_^[XUQMHB=71*$ ���������������������������������������������������������������������������� "*2:BJRZahou{~xrke^VNF>6.& ������������������������������������������������������������������������  (1;EOZdnyti_UJ@6-$ �������������������������������������������������������������������� ",7BN[guƼ|naUH<1' ���������������������������������������������������������������� #.:GUdsų{k\N@4( ������������������������������������������������������������ "-:IXi{׽r`QA4' ���������������������������������������������������������� +8HXkطuaP@1% ������������������������������������������������������� &3CUi~ƨs_L;,  ����������������������������������������������������� -=OcyͨnYE5& �������������������������������������������������� %4FYpɥ}dO<, ������������������������������������������������ *:Nd}。pXC2"���������������������������������������������� .@Umܫ{aJ6& �������������������������������������������� !1E[vhP;) ������������������������������������������ #4Ha}٤nT>+ ����������������������������������������$5KeꭡsX@, �������������������������������������� $6LgvYA, ������������������������������������ #6MhxZA, ���������������������������������� "4LhȠxY@+���������������������������������  2JfˠvW=(������������������������������� /FbȠrT:% �������������������������������+B^mO6" ����������������������������� '<XxgJ1 ��������������������������� "6Qp`C+���������������������������/IgꤞzX;% ������������������������� )@^֠oN4����������������������� "7SucD+ �����������������������.Gh{W:$ ��������������������� %<ZܡlK0���������������������1Lo]>& ������������������� '?_룛qN2�������������������3Orš`@' ������������������ '@_rN2�����������������1MqƠ^>& �����������������$=\oL0 ��������������� -IlZ:"��������������� 7V}碔hF+ ��������������� (BdxR4�������������� 0MqӠ^>$�������������!9XkH, �������������'BdxR4 ������������� .Koџ\;"������������ 5T{꣒fC(������������"<\pK. �����������'CezS4 ����������� -ImџZ:!����������� 1Ou⢍a?%����������� 6U}gE)����������!:ZnI-����������$>_sN0 ����������&AdyR3 ����������(Dgƞ}U5 ���������*Fj͟W7 ���������+HmӟZ9 ���������-Jn֟[:!���������-Ko؟\;!���������-Ko؟\;!���������-Joן[:!���������,ImԟZ: ���������+GkϟX8 ����������)EhȞ~U6 ����������'BdzR3 ����������$?auO1 ����������";\oJ. ���������� 7WiF*���������� 2Qw棏cA&����������� .Ko֠\;"�����������)DgÞ}U6 �����������$=_rM0 ������������7V~凜hE*������������ 0Mrנ^=$������������)Df{T5�������������";[nJ. �������������� 2Puۡa@&�������������� *Eg|U6��������������":ZlI- ��������������� 0Lpˠ]=$���������������� &@`tO2����������������4QvҠcB( ����������������� )CdwR5������������������6SwѠdC* ������������������ *CcvR6 ��������������������5QtƠbB) �������������������� (@_ꤚqO3����������������������1Lm\>' ���������������������� %;X|ΡiI/������������������������ ,Dc꥝vS8" ������������������������ 3Nn]@) �������������������������� %;VwfH/���������������������������*A^ɠnO5! ����������������������������/GdҠuU:& ������������������������������ !3LiܡzZ?)�������������������������������� #7Pmߢ~^C-�������������������������������� &:Roݢ`E/ ����������������������������������';SpաaG0 ������������������������������������(;So̠aG1  ��������������������������������������(;Rm|_F1  ��������������������������������������� '9Oiw\D0  �����������������������������������������&6KcեqWA. �������������������������������������������#3F]v񻠟iQ<+ ���������������������������������������������  /@Ulӧy`K7' ����������������������������������������������� *:Mbz߱mWC1# �������������������������������������������������� $3CWl㷡waM;+ ���������������������������������������������������� +:K^rݶ~hTB2% ������������������������������������������������������� #0?OatͮkXG7* ��������������������������������������������������������� '3AQasӶ}jYI:-! ������������������������������������������������������������ (4AO^m~DzueVH:.# ��������������������������������������������������������������� '2>JWdqƹyj]PD8-# ������������������������������������������������������������������� %.8BMXcnzth]RG=3)! �����������������������������������������������������������������������  (09AJR[cksz~wog_WNF=4,$ ���������������������������������������������������������������������������  '-4;AGMSX\`cfhijjigeb^ZUPJD>71*$ �������������������������������������������������������������������������������� "&+/48;?ACEFFFEDB@=:62-)$ ������������������������������������������������������������������������������������ "$&')***)('%#  �������������������������������������������������������������������������������������������  ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/configure.png����������������������������������������������������������000644 �000765 �000024 �00000002177 11670654443 021022� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� d_���tIME  %yQI�� IDAT8˥Lu_q)ࡖriV  eijX ۓQ֚c--s&i-ؔg;C%v8.@;?Am}g{>Ͼk~?DB=WvBhGiMBhŀ/JA/ Q6>=۷<%ԜS`I 0`}=222"UEB�;1/gMNyKe!8íV+(] -�F`ILḺ7c}޲e 6mDT$I?3yE%(j�њ%;\!~?iZdJ`kut6DۧeB`!DJ||o/4=SHo}r:�Հj+72E'ڣC֟m+\_hƲ$Z[[isfpS�ZUu; og|{#g8Z9qTSE7%\p+C^JMr.Ե%Ef5|8tdn^IVQ#u>,�H+ZjEPH4($ ypf#>.;7 ܨ`L~?cO?!ʲʇW#I҂pC$kVqvɳpnOߟ-2+V=Ņ=Eʐ+,{gsE=^Kpnuߤ_P__ng~<@ee%#V<#eOSZI z؞+ ZwXt:NXe̩i466B0wҘU5FNV.$ 0<11뱱1TU{7cɶX_nq~)Ѿ6%b&jUg``Ś;zMMѯg,PS%:Ps魇 uBb#1 JQb]b*����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/copy.png���������������������������������������������������������������000644 �000765 �000024 �00000001325 11670654443 020005� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD��� ��� pHYs�� �� ����tIME 3 EZ��bIDAT8˕MOQsLt_vc+W&.](Q0&D!qƭ+C $@k]XX"2әNٴ9Tyv1CB4>[q-,O7N\��33YQlWdft:r7$I03O n6FGnn "3a}B<uK~13MDlΎ4V][SnM?�inWݙjcblJu"z},uKBƸ\׍ďfRF1oaJw`Cƞ^X*FX~"3633gOP@2ցj8N`7hL$`YJ)h^st03AL&l6 �r+aES�RJh!?3; NlX,Qض "a,+XjmZkXv"֦;m ZaYq+k/&0f�\^]e;mۂcM\qrzT&Y VJ!JE}^O'ǀ֎y* hj?Ɣ }DW����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/cut.png����������������������������������������������������������������000644 �000765 �000024 �00000002231 11670654443 017623� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� ���tIME 21A|��&IDAT8˅]H\G3;wݬ&cc̮641%Ո$Җ>I_6AK@!!!?Si5%&icm4{g!+Ȳ s99 I_,4ͪ;@ϞjЩi?$ir22#4M}kiN7^x ڴo/HǽͲgPa۹/-sq�w* iD#ix|j5nCa mW<>'33s`y8Bi�-=]"%#YWm.O 7VZڻ҂Z484 N'xyy�?=R9c=X,Z+F[K{끇ݗ w_tkꀔwb6'ٲ`y%233?)(,'hSZ{-mfAQ9!iGBtsN>go "!D1=3 f=H�`(psx$P]sTeqI)Lӄa?|M;U: &@qq1BXzAc30IqnӴJHmsmޗ㿣5b/UtKQ̤퍊yQVV(P賆gge"W�0- iʊcq>wu˕'}4pgX gaQL|+˕/lkR{Wx^$pۡ(Xaw7�XPBt/}H^h}ji>1a%!Tv;(!'�:{JȼnXÒCczk䞠clL,,,r @,^xv-/PA] @`4q 3vy.@0χe)~�ىէRPUd( `1@M!]մ*e%%Iyi$bVR]V3BD[9�|b4z$;M@\J@ĺ ,�՟����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/find.png���������������������������������������������������������������000644 �000765 �000024 �00000002102 11670654443 017745� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� B(x���tIME .9w ��IDAT8˵UmLU~Ֆ-v0&-aF`3l| 9bfKe],2"q"Ĩ-1O.ATFZ"ېvRJ{?(2ěܓ> O,}16?0ư'rמ\w)cQJ׼cLk OH�"˳kNj ֥aJU)+]6tn,c]~/&2 APYY>wOqY9|uj:tH<AwwƉ+Ycfg8h|(na,dʂ3J;62;zmtTى7O^'cƀNB /㛁)ٚ͸nBR2N! WK�,K]$ ߋ-[103|lay0o0иc$;.tɻ%qs>\^.'DQ@ Me ZRG`f<Uq-ig.TY5(`pE%hIIUL4f JQMɔQYǣjtgt4_|EIbZV � Г( O)2 ].)َ`0lI`�I"`j:̒�N÷MX^dA߀Js1�(I (eHh:!K܊ڇ>HJ`�N@(͑A-bhBF(10|0</| ͱW9tpӲAk]ן^,@�۶a_a[UNUtD2H$LeYDi/T[�lE-Cαe¬ί:9~]<gG]m^F՞jePD�' }Ph,Ǔlo_ofx?ltXezX,V?ЇLw.IdihhxΔe$;7K&u(����IENDB`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/help.png���������������������������������������������������������������000644 �000765 �000024 �00000002517 11670654443 017767� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���sBIT|d���tEXtSoftware�www.inkscape.org<��IDAT8klTE3mm;l--w* $ &CT"((&F^eIHЈQ#!l�r%Re[ 6E(ݶs?v۠8ɛ3̗yD jⱢ'^":`60dZx s&$SFN_KW7%ⱢD1T^[xV>j(m)$!?P8U%'XQC@$jy#Eq{;頔I!2mwWf|0wʪcEo< Ͷ5ۺ$'1}p^Z8 !?9${oqLOV Xdϯ՞J.NJFnO5>uٸYV,*|?z=R录3i_l<FcEm2}I}=bw1M%|[ÑK}ضm>p3<fh!:�NpP;Жp8]v46-ɼi}L�D-`ĄTěu CWBWc>`I}-ؖeXA]] C~![D Q鱗4t]0R߲vd&?{J-40MycH!R(MCi=+^bژT@UtCGHJZ[e@U6!DRRRC}_P\z]ױ-1 ])F�T<V"ʊ[s)t)SaФ@$;]gX=�%$!nt=`W8UZ̟2T*9NEcX ,|4&R``g:[JJgX| �y>}sItv.tVS7*}[鷿t cJ`\u<\M^]=$]tv%NP0?}pwEt .Q8r޶M2{R(!@iSc}\jX{`ӎ^ֿfb{VdL7Wnq>7ZuQˢ003e ަ/twt !0)2ތ#v̙͟2ãDA�T7Ey-+ɳ5mh>vh<`!D60g  YO2rt6'Z[/? mpy^q+|@VZ̴ Ri " >@����IENDB`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/input.png��������������������������������������������������������������000644 �000765 �000024 �00000002720 11670654443 020172� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� B(x���tIME *@��]IDAT8ˍ]lT3^{K&65$^' !Фi5DMM~SVYMSUj%+.Vm / mj 0L׻^!NitfuΜa;_i\w׸ѡ~DF&>l~fzAg|GWu׎|=nS\h8|`}J$FE_(A ЃcM2q~yjal (:{6{{M_58voW/>2Q <[!T&/,]mMxJBRXΖIKLfzMáihR!)b tVz3 fN5m(0ύ%<Kfq�A"$R:NL[:z6O).7xL UxvtsI̐N-i<ۉCHe nv WֲDh8w`@OG/vX&\rB&4NGT5ѡ~׾tk")tښuZJ׿gz[xj{ 2[:Ų-ܸv긿۶nc4t#hc2Z� O>`q1 iWuhݲ#B'YYѩVT|{50kb,yMEH,o-?m 22V<~P}/\_[$rs==-XU MQ5xpSgPw-OzXڝhbqpv]�onϽ>ǿMH!BHo;ĬuE_w?n" ؙٱ<#]{+>tJ_,t!OkK#R 2Պ @vMS8y>d-woO*#|.uw>&-ZK)jkPɦ� J!'Q~71J_�[Ot摆Y#T0>r . T*u5bYvjB5/>xnϷ|)W8?=Z\9¦RbI }r4Ұٜ19=S8YE(]M\.8ָkKGc?^!zK}q ,@r1;3+GŽKݗ?q(qeP7P@[Ͼ=35w=aENb]OX< < @`MPQ4gi��FϺ)Ӂ<P�J@0R5E*Uns79Kdyeo:N4 wx]P X%1�Vp! ;����IENDB`������������������������������������������������wxMaxima-13.04.2/art/toolbar/new.png����������������������������������������������������������������000644 �000765 �000024 �00000001264 11670654443 017626� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD���O4ױ ��� pHYs�� �� B(x���tIME%0C& ��AIDAT8˭kaTM5<xV҃'oճb/?xE5 zԐ("1d~fSj}!dwyg~]akYW8.woU P[ᨱ3/4^f[qfaGK|`uV fq03D5%iQ8Ylsh5<,m]C 03,0�ƨdtP�0.#@SAD9H"2 b?6߂U5ADDQq8ʀevks6?o!OXUS*3ç˜SΕhl|TkI2'?*L082s^W)KjrDQuaUcRpi(CR>IDL-O]abIv^NA)�N6j } q޽;H(E j, {SVD42Nlh1D1le4NOьyxI/ NԸ[NI f6ƅUP,c+Ap{պ:˫c #M����IENDB`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/open.png���������������������������������������������������������������000644 �000765 �000024 �00000001751 11670654443 017777� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� B(x���tIME /4|��vIDAT8˵_h[U?6In֦ٲsE:dd ΉA|VaԲu > Ylk?v%I,i6ɹMȶ ~~~~{~>8(F=!P[<|w ( rFqwY)w"YyW� zP;o>��i,|~ٹ�X'CC '�AtXdb|p$L_/'y|>�G<e|"#HCmR Z&bϬ;{':9y9J>> 5H=~X]Pv8NZ=PTJ;VB,PJa<!yǻ>m;LgROC" ϿH6_ (n1H=¶D?fNid^ypd6e9:j]Gݕ6p;z<9c?\f(U+1Pǎ@\T=#ruh0*e0ͮV=IeR?[ ;օѱ$Q]v(mM_3@a}lDғ#1`iЇ,U`[7O*_a[ڳeRa%UrОX?fX,~ &+7DǢɾfE&&o@r*5'z̪މ浾[gM4:uxtۺhU#RߦFcs"`6kSSEv[fS8@w)ݚ�`[K)_9d^����IENDB`�����������������������wxMaxima-13.04.2/art/toolbar/paste.png��������������������������������������������������������������000644 �000765 �000024 �00000001405 11670654443 020146� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;��� pHYs�� �� ����tIME �6?��IDAT8˥MHTQsΔ48$B ( s&,rDZd&m"j6" ]( ҅BA f̘νsq<댃yr=Tx?g'''/' '~?,d 3THUJMT"68KG�(s)[ۣ5ƒVW#S'74vŇ�zVglR+WsC[[{NCZtzL$`}CTuYE5=sȃgq8ujvN|`D ǟTRYںZgiD=(r/J`%]FR`]BrObJIp!P?T@IW"<XW*@w<y1 7M}3==z،esr>H))2kv-݊B@kkm8JeFbe7s #zT^4gEFaD1Mˊ|-p8]4 ֙x=lN;$-C- #Zu;++n{#*5n|-Yފ7$Fi<tOvKT@{B^DE@lɪnS`pj@*А@6̌`pJ^a9&Pk����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/playback-start.png�����������������������������������������������������000644 �000765 �000024 �00000001701 11670654443 021752� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���sBIT|d���tEXtSoftware�www.inkscape.org<��SIDAT8kW﹓.*mMK*B!l ZcԂ A.k[jbZ&IVmA+S)Mdv̎s|}{;xQV<!e�d�#<`�ކwC#wO� f6c~p[�If =צu}Y׿jٮ߻;( `f.$W7l23[9i>eѲ9;+5Numy}--jxC8OLm|;Ύ?4}1 k6n{fLxm :M[Ů6)n彔GzoƄ?*kV)M4ے U2Mw}7caMn !F(ŸdšPɏ%IJ`f(1}.YOv7mlzm^Lf�AQ A'lk*sSiYX ۶8fE`i�6[>4 20;Bp2� ! @D�Q~ِe*##GL̀�2HB@ BdY5g[cZ 6o*HWj, $A.�=7<}{v E \UUUA%d<|D"$]ֲӆ!�ର( =Bki#cMݡ={`y _*Ggԓ,Yr�;:^"~?X8'({7Dcc ٢HX @`ji�rva?8;R*M����IENDB`���������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/playback-stop.png������������������������������������������������������000644 �000765 �000024 �00000001001 11670654443 021573� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���sBIT|d���tEXtSoftware�www.inkscape.org<��IDAT8Օˊ@sm_}cq';_OWPe4"AqIIژ{amRuR|_q'ED FXDV`Še$Ƀ/SuD Z lL՝y(z/^M e6_B>z^x} ze/re9iZ3n=nޘÝdb?/<HV`FEzM@kn[fvwP~6uG *N<Ex|DchP4N4 G1sPXby -I+x@e%(`w+�PmIng `C5TInnhT<Oۆax<6uPZjƭ4= OkE:(����IENDB`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/print.png��������������������������������������������������������������000644 �000765 �000024 �00000001545 11670654443 020173� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� ����tIME D��IDAT8˵kI?$3 Q4Ŭ1N9!]aœzCHzQ$ Iv$o9caM3ɘz$QEWէ^U_=N}̎LƃGZ7tchYr�OQJqARضM[[[ɗl`}kk+SSHR$Ia6e5 w.y^C(r^RSN"}�',k98X5xвpqH$_!^E횺3ڈmƶmoAgg'e^cϣj83x"�b�c Zkev<u]9] UZ]361?&ɰg>޽{ÿ0xiTu]RsGǑ%/_vƍSkBOMOΕr{3;tI::N* Xb: c\JR  AXFk & QƊX)لֆT*E 2JaH!>J.R XM!N9ٌy M%B5--hTN$"cQ˸ tI?G_oƫ/}Q .Dwa_E5%K4!^˽ɼ@﷔ o^|:*�uh5/5@"jQ SFY^A>"o����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/save.png���������������������������������������������������������������000644 �000765 �000024 �00000002176 11670654443 017776� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������ pHYs�� �� B(x���tIME 4Her�� IDAT8˭]lU39meeY>"ڒVX0B4F|�5HUR FilD4ȋh 16ƈ4AT%6ݶvggw|hwlPL'7s=3W`{?ƦH\om~8ያ#>1UeNϸT:CdVۻ_;rĖ"U[pm##J+PvutPv=ܹϥ:p+bkw'tO>P+Ft6N<@}A/.yYb5%3}}pG_6G$TUHNeR�ELhekԡ>;r?Ϫ I۩7/Jrk|ow�_&ǎdۺe<w1:Ç'C'RTjd&Yf_72:B2@kX�H$d׿*-(�xitM=�(B,�u[IT7\fl:κڻYS�@T=Ml6K<\YYHջ73�asdI3*�CWzygv3'  ?Z+I%v<hFoJ 1_2hF2,@kDV�,Ȳ(6й$Wy/йp3^UNQ^VwnD.3V 333$IȲLMSm^`ښԛ$ c횵�Mb6q\)x1AUU*Jt<@oo=SOEi:( "ɖZH$b͠(|}qeuu5N Řy/6|^\k?4Mp9RW("I I. UU|D%H,.Mu, a ,a6oX4uuzłfn F ?LyMr�%vll�'?bll|`Sp"j����IENDB`��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/stop.png���������������������������������������������������������������000644 �000765 �000024 �00000002370 11670654443 020021� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���bKGD������C��� pHYs�� �� ����tIME +�C+G��IDAT8ˍ[hTGsnl jH[M f R DB)TzЇBPA (ڂsѴIۺI9sD<o.<c%xƖH s-<IB\ 4%Oꆆ65u *m,T3}}K$|`Νx_qm<TJ-b5\9w.3 Wuuo۵# !DnJaaPS_կ;Y@`fOt$BA*˶gf2ɚSXM>߮޾M:!v#Ș&v6[' ]x8#JxwF ; 77{]]dB!rJ,}H|L ieejme޽BV # [lh'�hB OZ3gBRڊm�F8iB.źT*y!@)*lӧYq /?ihJ1p0r9R()IU*Ò*`r pz<8^"/bmc?Gxm=%tvM4FnaIF&i4 JJX|3HI0<^:v gY:EhBPs(Sĥ$C=~0i?*)HIr<V{Fٳ9bc{;yr,^fBJ98" b&lDM_DuJGG)/ӭiԄ+/H.bҙ-Ͷu \$Bnbg"p52g`��Ц޹C.r%U�=7nWR)5:6qΜa цC".SJrdGF(2Noݻz'XE耫i9:>^ﯯwIx*+YY[_mxԭe2h08s ttiWU/dbmxX1|V}ֆ %ee/hy%!R`9< v o�B B䣠os8SUyP,�y@xP(0 (?dy����IENDB`������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/toolbar/text.png���������������������������������������������������������������000644 �000765 �000024 �00000000757 11670654443 020027� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR���������Ĵl;���sBIT|d���tEXtSoftware�www.inkscape.org<��IDAT8NPgN/ 1p+ODD`BBRT8h+=4'i3=&e�м}q6i^_�j\_aSqs��ҽ&ql�(Zu@/p@rgk!JC$рDDA?YQ.jrvЛji>LA8n{׊B@Z5boR*R..V�v9ZqT i=L-<]* +0Vz t:U%G+X= 0X6̃`0ޚ.DD ==}hd};5NL&%6 S�<af[a !4MuC1L%SvXG+����IENDB`�����������������wxMaxima-13.04.2/art/config/maxima.png��������������������������������������������������������������000644 �000765 �000024 �00000005224 11670654443 020114� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���szz���bKGD������C��� pHYs�� �� ~��� vpAg��� ��� ��� IDATXŖ{pTǿ{>}el^ @ ( q`)ՎN3:Z[;VvD$ZEU! &GvMuw|"v_gΙ{{w~ Et UplR6=-TV+�8z>\}2|,,e'ZVh(.HީHǙh)ptr^rҢ?kn2z{5͵uN*~ eu rkJUC[2(QX4La21P Ad!Up:`"Lߖ>xeLǎ@QR3Js)T@RLj_4R>%N`Wh"Ĕ7jɅؐH <7eW�s(_ࣟ.kHTRLD7�#1;RvjDzPF(XG;<܁�\8�`eRJNu>�` &J� }/_ŵ7Xj87zr_2ui��U`:lv0 B&�/��l^oN$d2|g5;6 (h};[ݷ!a{-qԘBkڹWjiBG3i'CwG{ _)B�{q̌`sRlqkw O&-> J'M%[Y:ь9Uԇ+9:qwB++Vu GOX�H}/4D҇8l˷Xj/]Y%aQ<S@Ue4mT|]֜yVCcy1HiVҷ"qDgl%X[UsEgSKYyv+"gq Q gX6Q!&Ai2 (22&'�ȳ6@�n>%ͻHc}.qKÈh :`<�(wap55AXM ykD,�xVk*=CGn|Σl_۫AQZv[ 7K䆕9_!lt:TåIJv˹V Xr,>0YTwj8L==Bȹb-[XlXX\b{UK}IX[�M1͙c6mCtzU��l(,$:>1Qߴ*M;N{u765 k ?pjsBH\67'ו{E� �B@9zB#bQE ;\Xײf\x +n QdP�\iŃx㼜\ 8}~QM%e2R)g26 aEe5 cI*W<tpx 7op/$@P$NGP=gDNN17/�yh TeY\;.gM%fk[hUط N9ߵrYNgX%3 ,mٚHuMwN%=fSF:JBTRp'G>9ICOaѺ+&Rpzh/2!d6�V7Av>5:zGY"+"Rl1Ks*<Lj^n*$ٚnţ33"jU&U  D36{{ mjy?45O0p:sa8:})1Owjuo2,Ad2| RV!<WP+ժHVBG[_: 7  Ub{jkx50d;̼l=7Ɂ{@m'lK5-sR%n6 sN̳Ȋ)d0W4ԇAUTx=pZ`IG].bT=!ͺTne`5D02,�!�BLQYHbc 72Dba*PHᖱ!FzEƱXLD;i/dCFGtSуOP:X'ĸBQ҅*yμ+ʯZ÷>tME>0RlȲ1R,�>>/kZuO0Sɷgbq$Ji k.��0(JH>RqZʊh(�&bd1k<rie)Ƨ9t|8v�BY=yU-NGUfA$8[i~̦4RDekXƊsb"tϕ䆬kaZ$9f2CG� |9q�ܳ<w�'΂���%tEXtdate:create�2007-11-09T19:06:50+01:00 C���%tEXtdate:modify�2002-04-28T22:44:41+02:00@t����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/config/options.png�������������������������������������������������������������000644 �000765 �000024 �00000004121 11670654443 020326� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���szz���sBIT|d��IDATXkPT]eeA.j:BDcjLS`AtR)budHd:m´Z FƚN(-.,{fVg}y{3nCMMrHܗ`PxTH ȑ#&i@�[8L'~ĻU([Jw>|O>+l&=Hp`ڬ$IwYuuuSeu_-.(@bJaWx;�(eRUU^$d-Ȧ zÂ꣯NZwLƛLf֜EVAAhR%o2STUU<b�(�HMM3fˤ:ES��YzAx׮]�NgZVO:ǪsXh4 $a4 S&'T̙Cym^l(߻{`4ٜ\H7^BR.I`Hh4j8N~R鬵Ȋ<CD|(`Q}C~1�Jt$ٓgx  NXVXV$4I 8\['8y4Q%!G_ eSYѧ8~2}~fYnB$,# BQ0 ^P mIõzmiʘgVx 0v*>k%/Lz\8YV3˲e$I H [ /&`^漂(#{VͲK'4*r,Zrs$8h a0 dY?0EV "k pGYq٢;!L'Tvsg.j% Т(j6 H�huu X3v~)dKW)"T1ߔa?[[ "q^', .WfzP̒Wǚ##ڽb<6b$;:! $g(׮64>gTTTx'紟ⰥnޮenŞ&- (2&!!!ʍ5_:N䥦lȲn..L&z9<ƛM5#?g.hp8IY K mnn{Z|.n.^*qˍN06 <~YwKrP�qSH%?f^Eԕ A~ ~`!> .7~)EQ@$�^(XNl91uuuS:%@Zq.>\̤>} NVDK,K��  Qbk6[Vx)/֚Y3`S^!)> %vԍ�PZZިʖˍ^AdYX"Vn<7H.n[m1Z< 14F =.pxr8սm\sX E3?=c-)(s~9+#3fFiqftv . Hm.X)iOF{WeYE  \D^8p`PWbLCFi3M8xz`6@ꬸ7*RT�Pg$MzQq!~x<DEE$,N-CL:]:vf4MHEk[wn?ݤhgK?рa2"(�,�*y94QNB׃6vbO/��4q( @?�W\yy9w{_pI#^oO�e"ֶ'+M3.]�BWx_ �. "a0j%{���La��E[Q C Xύ[>[8h¹!LOT(BD�cL̊6&,Y{[n>扨V8<c.Sx|b%W/����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������wxMaxima-13.04.2/art/config/styles.png��������������������������������������������������������������000644 �000765 �000024 �00000002772 11670654443 020170� 0����������������������������������������������������������������������������������������������������ustar�00andrej��������������������������staff���������������������������000000 �000000 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���szz���sBIT|d��IDATXŗOl[I?~~OR;b$lUmZEpX8ą 7qAD{q@*t*ҥt+g[otNR{{Yih|g~3o i ~M;HqDէPsC,Z(H%ll4{SM]FK1_:;[o0{mJeVJGy_rRj5zs�ȗR|Qs nѰc@5[%A4@>a-ɉQ36={{xu)dxr@Hemgs /GT /i*qanYrȁu4(>b)h_OZzAԊq+DS � J +i6G^ϳ\! m=?pxK¥7#,\rj=JIB+j Azm#Bm; $,1*'p]<cƱ)s`jjjPQyuRʾEARC46m)%1KCD2fV\ {_npw(L&<q`!DOq]Bm;>RJ|_51M~T/RUi###y"RJ:N(B&ѣEΤJ6UM Mk8--a" s5<cppy|*D8wRĻ�i9fd?~qF4M2 ϟ\.S4MLݻeY;v7nt uKgn{ГBRjhZNT"( +++lnnNi6]q[�N)JanrBZ-RB>ԻRJA4McffVť?^&R.o`YQJFh4F)^fau#\ʕuP$E4\uB}ЭT֮pq])%l)%կ9i!eUoujہcG458k۱pX!յ5>7CQ"w'q\cY^8<7b9s>PA۞5qC*$H`;6a-D?oI/ 3P}w.C8y^_tr :X{�+^zRh>&{8kL&v ](Tmv= $`I]SD  �O1"NHPPȑ uNT*lA$~Ƿ7~+/߾o|^3gϜfzz#_ E%~_~\߹�|`hWvv*x]v����IENDB`����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������

) FUNCTION: tenth TEMPLATE: tenth() FUNCTION: third TEMPLATE: third() OPTION : %e_to_numlog FUNCTION: li TEMPLATE: li[] () FUNCTION: log TEMPLATE: log() OPTION : logabs OPTION : logarc OPTION : logconcoeffp FUNCTION: logcontract TEMPLATE: logcontract() OPTION : logexpand OPTION : lognegint OPTION : lognumer OPTION : logsimp FUNCTION: plog TEMPLATE: plog() FUNCTION: lsquares_estimates TEMPLATE: lsquares_estimates(, , , ) TEMPLATE: lsquares_estimates(, , , , initial = , tol = ) FUNCTION: lsquares_estimates_exact TEMPLATE: lsquares_estimates_exact(, ) FUNCTION: lsquares_estimates_approximate TEMPLATE: lsquares_estimates_approximate(, , initial = , tol = ) FUNCTION: lsquares_mse TEMPLATE: lsquares_mse(, , ) FUNCTION: lsquares_residuals TEMPLATE: lsquares_residuals(, , , ) FUNCTION: lsquares_residual_mse TEMPLATE: lsquares_residual_mse(, , , ) FUNCTION: plsquares TEMPLATE: plsquares(,,) TEMPLATE: plsquares(,,,) TEMPLATE: plsquares(,,,,) FUNCTION: makeOrders TEMPLATE: makeOrders(,) FUNCTION: addcol TEMPLATE: addcol(, , ..., ) FUNCTION: addrow TEMPLATE: addrow(, , ..., ) FUNCTION: adjoint TEMPLATE: adjoint() FUNCTION: augcoefmatrix TEMPLATE: augcoefmatrix([, ..., ], [, ..., ]) FUNCTION: charpoly TEMPLATE: charpoly(, ) FUNCTION: coefmatrix TEMPLATE: coefmatrix([, ..., ], [, ..., ]) FUNCTION: col TEMPLATE: col(, ) FUNCTION: columnvector TEMPLATE: columnvector() TEMPLATE: covect() FUNCTION: conjugate TEMPLATE: conjugate() FUNCTION: copymatrix TEMPLATE: copymatrix() FUNCTION: determinant TEMPLATE: determinant() OPTION : detout FUNCTION: diagmatrix TEMPLATE: diagmatrix(, ) OPTION : doallmxops OPTION : domxexpt OPTION : domxmxops OPTION : domxnctimes OPTION : dontfactor OPTION : doscmxops OPTION : doscmxplus OPTION : dot0nscsimp OPTION : dot0simp OPTION : dot1simp OPTION : dotassoc OPTION : dotconstrules OPTION : dotdistrib OPTION : dotexptsimp OPTION : dotident OPTION : dotscrules FUNCTION: echelon TEMPLATE: echelon() FUNCTION: eigenvalues TEMPLATE: eigenvalues() TEMPLATE: eivals() FUNCTION: eigenvectors TEMPLATE: eigenvectors() TEMPLATE: eivects() FUNCTION: ematrix TEMPLATE: ematrix(, , , , ) FUNCTION: entermatrix TEMPLATE: entermatrix(, ) FUNCTION: genmatrix TEMPLATE: genmatrix(, , , , ) TEMPLATE: genmatrix(, , , ) TEMPLATE: genmatrix(, , ) FUNCTION: gramschmidt TEMPLATE: gramschmidt() TEMPLATE: gramschmidt(, ) FUNCTION: ident TEMPLATE: ident() FUNCTION: innerproduct TEMPLATE: innerproduct(, ) TEMPLATE: inprod(, ) FUNCTION: invert TEMPLATE: invert() OPTION : lmxchar FUNCTION: matrix TEMPLATE: matrix(, ..., ) FUNCTION: matrixmap TEMPLATE: matrixmap(, ) FUNCTION: matrixp TEMPLATE: matrixp() OPTION : matrix_element_add OPTION : matrix_element_mult OPTION : matrix_element_transpose FUNCTION: mattrace TEMPLATE: mattrace() FUNCTION: minor TEMPLATE: minor(, , ) FUNCTION: ncexpt TEMPLATE: ncexpt(, ) FUNCTION: ncharpoly TEMPLATE: ncharpoly(, ) FUNCTION: newdet TEMPLATE: newdet() OPTION : nonscalar FUNCTION: nonscalarp TEMPLATE: nonscalarp() FUNCTION: permanent TEMPLATE: permanent() FUNCTION: rank TEMPLATE: rank() OPTION : ratmx FUNCTION: row TEMPLATE: row(, ) OPTION : scalarmatrixp FUNCTION: scalefactors TEMPLATE: scalefactors() FUNCTION: setelmx TEMPLATE: setelmx(, , , ) FUNCTION: similaritytransform TEMPLATE: similaritytransform() TEMPLATE: simtran() OPTION : sparse FUNCTION: submatrix TEMPLATE: submatrix(, ..., , , , ..., ) TEMPLATE: submatrix(, ..., , ) TEMPLATE: submatrix(, , ..., ) FUNCTION: transpose TEMPLATE: transpose() FUNCTION: triangularize TEMPLATE: triangularize() FUNCTION: uniteigenvectors TEMPLATE: uniteigenvectors() TEMPLATE: ueivects() FUNCTION: unitvector TEMPLATE: unitvector() TEMPLATE: uvect() FUNCTION: vectorsimp TEMPLATE: vectorsimp() OPTION : vect_cross FUNCTION: zeromatrix TEMPLATE: zeromatrix(, ) FUNCTION: minpack_lsquares TEMPLATE: minpack_lsquares(, , [, , ]) FUNCTION: minpack_solve TEMPLATE: minpack_solve(, , [, , ]) OPTION : aliases OPTION : alphabetic FUNCTION: args TEMPLATE: args() OPTION : genindex OPTION : gensumnum TEMPLATE: gensym() OPTION : infolists FUNCTION: integerp TEMPLATE: integerp() OPTION : m1pbranch FUNCTION: numberp TEMPLATE: numberp() FUNCTION: properties TEMPLATE: properties() OPTION : props FUNCTION: propvars TEMPLATE: propvars() FUNCTION: put TEMPLATE: put(, , ) FUNCTION: qput TEMPLATE: qput(, , ) FUNCTION: rem TEMPLATE: rem(, ) FUNCTION: remove TEMPLATE: remove(, , ..., , ) TEMPLATE: remove([, ..., ], [, ..., ], ...) TEMPLATE: remove("", operator) TEMPLATE: remove(, transfun) TEMPLATE: remove(all,