[office] OpenOffice multi language installer in staging

hi
here is the newest OO creation from my side
a installer where you can choose your language you want
and it automatically generates a package and installs it
still binarys are used but it makes life easier
At the moment some languages are supported you can help to expand it
supported languages are:
us,de,fr,it,cs,nl,ja
to install type
pacman -S oo-installer
Feedback is very welcome
enjoy the installer

Here is the gentoo.org ebuild
http://www.gentoo.org/cgi-bin/viewcvs.c … ld?rev=1.5
It seems that they also need gcc3.2/3 to get it working, but at least there seems to be options for multilanguage compile. I´ll try to compile it..
ebuild
==========================================
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/www/www.gentoo.org/raw_cvs/gentoo-x86/app-office/openoffice/openoffice-1.1.2.ebuild,v 1.5 2004/08/21 19:32:30 suka Exp $
# IMPORTANT:  This is extremely alpha!!!
# Notes:
#   This will take a HELL of a long time to compile, be warned.
#   According to openoffice.org, it takes approximately 12 hours on a
#   P3/600 with 256mb ram.  And thats where building is its only task.
#   It takes about 6 hours on my P4 1.8 with 512mb memory, and the
#   build only needs about 2.1GB of disk space - Azarah.
#   You will also need a bucketload of diskspace ... in the order of
#   4-5 gb free to store all the compiled files and installation
#   directories.
#   The information on how to build and what is required comes from:
#   http://www.openoffice.org/dev_docs/sour … linux.html
#   http://tools.openoffice.org/ext_comp.html
# Todo:
#   Get support going for installing a custom language pack.  Also
#   need to be able to install more than one language pack.
inherit flag-o-matic eutils gcc
IUSE="gnome kde"
LOC="/opt"
INSTDIR="${LOC}/OpenOffice.org"
S="${WORKDIR}/oo_${PV}_src"
DESCRIPTION="OpenOffice.org, a full office productivity suite."
SRC_URI="mirror://openoffice/stable/${PV}/OOo_${PV}_source.tar.gz
    ftp://ftp.cs.man.ac.uk/pub/toby/gpc/gpc231.tar.Z"
HOMEPAGE="http://www.openoffice.org/"
LICENSE="LGPL-2 | SISSL-1.1"
SLOT="0"
KEYWORDS="x86"
RDEPEND=">=sys-libs/glibc-2.1
    !=sys-libs/glibc-2.3.1*
    >=dev-lang/perl-5.0
    x11-libs/startup-notification
    virtual/x11
    app-arch/zip
    app-arch/unzip
    dev-libs/expat
    >=virtual/jre-1.4.1
    virtual/lpr
    ppc? ( >=sys-libs/glibc-2.2.5-r7
    >=sys-devel/gcc-3.2 )" # needed for sqrtl patch recently introduced
DEPEND="${RDEPEND}
    app-shells/tcsh
    !app-office/openoffice-bin
    >=virtual/jdk-1.4.1
    sys-apps/findutils
    dev-util/pkgconfig
    sys-libs/pam
    !dev-util/dmake"
pkg_setup() {
    if [ "$(gcc-version)" != "3.2" ] && [ "$(gcc-version)" != "3.3" ]
    then
        eerror
        eerror "This build needs gcc-3.{2,3}.x, but due to profile"
        eerror "settings, it cannot DEPEND on it, so please merge it"
        eerror "manually:"
        eerror
        eerror " #  ebuild ${PORTDIR}/sys-devel/gcc/gcc-3.2.1.ebuild merge"
        eerror
        eerror "Please make sure that you use the latest availible revision of"
        eerror "gcc."
        eerror
        die
    fi
    if [ -z "$(/usr/bin/java-config -O | grep "blackdown-jdk")" ] && [ "${FORCE_JAVA}" != "yes" ]
    then
        eerror
        eerror "This ebuild has only been tested with the blackdown port of"
        eerror "java.  If you use another java implementation, it could fail"
        eerror "horribly, so please merge the blackdown-jdk and set it as"
        eerror "system VM before proceeding:"
        eerror
        eerror " # emerge blackdown-jdk"
        eerror " # java-config --set-system-vm=blackdown-jdk-<VERSION>"
        eerror " # env-update"
        eerror " # source /etc/profile"
        eerror
        eerror "Please adjust <VERSION> according to the version installed in"
        eerror "/opt."
        eerror
        eerror "If you however want to test another JDK (not officially supported),"
        eerror "you could do the following:"
        eerror
        eerror " # export FORCE_JAVA=yes"
        eerror
        die
    fi
    ewarn "****************************************************************"
    ewarn " It is important to note that OpenOffice.org is a very fragile  "
    ewarn " build when it comes to CFLAGS.  A number of flags have already "
    ewarn " been filtered out.  If you experience difficulty merging this  "
    ewarn " package and use agressive CFLAGS, lower the CFLAGS and try to  "
    ewarn " merge again.                                   "
    ewarn "****************************************************************"
    set_languages
set_languages () {
    if [ -z "$LANGUAGE" ]; then
        LANGUAGE=01
    fi
    case "$LANGUAGE" in
        01 | ENUS ) LANGNO=01; LANGNAME=ENUS; LFULLNAME="US English (default)"
        03 | PORT ) LANGNO=03; LANGNAME=PORT; LFULLNAME=Portuguese
        07 | RUSS ) LANGNO=07; LANGNAME=RUSS; LFULLNAME=Russian
        30 | GREEK ) LANGNO=30; LANGNAME=GREEK; LFULLNAME=Greek
        31 | DTCH ) LANGNO=31; LANGNAME=DTCH; LFULLNAME=Dutch
        33 | FREN ) LANGNO=33; LANGNAME=FREN; LFULLNAME=French
        34 | SPAN ) LANGNO=34; LANGNAME=SPAN; LFULLNAME=Spanish
        35 | FINN ) LANGNO=35; LANGNAME=FINN; LFULLNAME=Finnish
        37 | CAT ) LANGNO=37; LANGNAME=CAT; LFULLNAME=Catalan
        39 | ITAL ) LANGNO=39; LANGNAME=ITAL; LFULLNAME=Italian
        42 | CZECH ) LANGNO=42; LANGNAME=CZECH; LFULLNAME=Czech
        43 | SLOVAK ) LANGNO=43; LANGNAME=SLOVAK; LFULLNAME=Slovak
        45 | DAN ) LANGNO=45; LANGNAME=DAN; LFULLNAME=Danish
        46 | SWED ) LANGNO=46; LANGNAME=SWED; LFULLNAME=Swedish
        48 | POL ) LANGNO=48; LANGNAME=POL; LFULLNAME=Polish
        49 | GER ) LANGNO=49; LANGNAME=GER; LFULLNAME=German
        55 | PORTBR ) LANGNO=55; LANGNAME=PORTBR; LFULLNAME="Portuguese brazilian"
        66 | THAI ) LANGNO=66; LANGNAME=THAI; LFULLNAME=Thai
        77 | ESTONIAN ) LANGNO=77; LANGNAME=ESTONIAN; LFULLNAME=Estonian
        81 | JAPN ) LANGNO=81; LANGNAME=JAPN; LFULLNAME="Japanese"
        82 | KOREAN ) LANGNO=82; LANGNAME=KOREAN; LFULLNAME=Korean
        86 | CHINSIM ) LANGNO=86; LANGNAME=CHINSIM; LFULLNAME="Simplified Chinese (PRC)"
        88 | CHINTRAD ) LANGNO=88; LANGNAME=CHINTRAD; LFULLNAME="Traditional Chinese (taiwan)"
        90 | TURK ) LANGNO=90; LANGNAME=TURK; LFULLNAME=Turkish
        91 | HINDI ) LANGNO=91; LANGNAME=HINDI; LFULLNAME=Hindi
        96 | ARAB ) LANGNO=96; LANGNAME=ARAB; LFULLNAME=Arabic
        97 | HEBREW ) LANGNO=97; LANGNAME=HEBREW; LFULLNAME=Hebrew
            eerror "Unknown LANGUAGE setting!"
            eerror
            eerror "Known LANGUAGE settings are:"
            eerror "  ENUS | PORT | RUSS | GREEK | DTCH | FREN | SPAN | FINN | CAT | ITAL |"
            eerror "  CZECH | SLOVAK | DAN | SWED | POL | GER | PORTBR | THAI | ESTONIAN |"
            eerror "  JAPN | KOREAN | CHINSIM | CHINTRAD | TURK | HINDI | ARAB | HEBREW"
            die
    esac
oo_setup() {
    unset LANGUAGE
    unset LANG
    unset LC_ALL
    # We want gcc3 if possible!!!!
    export WANT_GCC_3="yes"
    export NEW_GCC="0"
    if [ -x /usr/sbin/gcc-config ]
    then
        # Do we have a gcc that use the new layout and gcc-config ?
        if /usr/sbin/gcc-config --get-current-profile &> /dev/null
        then
            export NEW_GCC="1"
            export GCC_PROFILE="$(/usr/sbin/gcc-config --get-current-profile)"
            # Just recheck gcc version ...
            if [ "$(gcc-version)" != "3.2" ] && [ "$(gcc-version)" != "3.3" ]
            then
                # See if we can get a gcc profile we know is proper ...
                if /usr/sbin/gcc-config --get-bin-path ${CHOST}-3.2.1 &> /dev/null
                then
                    export PATH="$(/usr/sbin/gcc-config --get-bin-path ${CHOST}-3.2.1):${PATH}"
                    export GCC_PROFILE="${CHOST}-3.2.1"
                else
                    eerror "This build needs gcc-3.2 or gcc-3.3!"
                    eerror
                    eerror "Use gcc-config to change your gcc profile:"
                    eerror
                    eerror "  # gcc-config $CHOST-3.2.1"
                    eerror
                    eerror "or whatever gcc version is relevant."
                    die
                fi
            fi
        fi
    fi
    export JAVA_BINARY="`which java`"
src_unpack() {
    oo_setup
    cd ${WORKDIR}
    unpack ${A}
    # Install gpc
    cd ${WORKDIR}/gpc231
    cp gpc.* ${S}/external/gpc
    cd ${S}
    rm stlport/STLport-4.5.3.patch
    epatch ${FILESDIR}/${PV}/newstlportfix.patch
    epatch ${FILESDIR}/${PV}/openoffice-java.patch
    # Linux/SPARC fixes
    use sparc && epatch ${FILESDIR}/${PV}/linux-sparc.patch
    # Compile problems with these ...
    filter-flags "-funroll-loops"
    filter-flags "-fomit-frame-pointer"
    filter-flags "-fprefetch-loop-arrays"
    filter-flags "-fno-default-inline"
    append-flags "-fno-strict-aliasing"
    replace-flags "-O3" "-O2"
    replace-flags "-Os" "-O2"
    # Enable Bytecode Interpreter for freetype ...
    append-flags "-DTT_CONFIG_OPTION_BYTECODE_INTERPRETER"
    if [ "$(gcc-version)" == "3.2" ]; then
        einfo "You use a buggy gcc, so replacing -march=pentium4 with -march=pentium3"
        replace-flags "-march=pentium4" "-march=pentium3 -mcpu=pentium4"
    fi
    # Now for our optimization flags ...
    export CXXFLAGS="${CXXFLAGS} -fno-for-scope -fpermissive -fno-rtti"
    perl -pi -e "s|^CFLAGSOPT=.*|CFLAGSOPT=${CFLAGS}|g"
        ${S}/solenv/inc/unxlngi4.mk
    perl -pi -e "s|^CFLAGSCXX=.*|CFLAGSCXX=${CXXFLAGS}|g"
        ${S}/solenv/inc/unxlngi4.mk
    #Do our own branding by setting gentoo linux as the vendor
    sed -i -e "s,(//)(.*)(my company),2Gentoo Linux," ${S}/offmgr/source/offapp/intro/ooo.src
get_EnvSet() {
    # Determine what Env file we should be using (Az)
    export LinuxEnvSet="LinuxIntelEnv.Set.sh"
    use sparc && export LinuxEnvSet="LinuxSparcEnv.Set.sh"
    use ppc && export LinuxEnvSet="LinuxPPCEnv.Set.sh"
    use alpha && export LinuxEnvSet="LinuxAlphaEnv.Set.sh"
    # Get build specific stuff (Az)
    export SOLVER="$(awk '/^UPD=/ {gsub(/"/, ""); gsub(/UPD=/, ""); print $0}' ${LinuxEnvSet})"
    export SOLPATH="$(awk '/^INPATH=/ {gsub(/"/, ""); gsub(/INPATH=/, ""); print $0}' ${LinuxEnvSet})"
src_compile() {
    addpredict /bin
    addpredict /root/.gconfd
    local buildcmd=""
    # Do NOT compile with a external STLport, as gcc-2.95.3 users will
    # get linker errors due to the ABI being different (STLport will be
    # compiled with 2.95.3, while OO is compiled with 3.x). (Az)
    einfo "Configuring OpenOffice.org with language support for ${LFULLNAME}..."
    cd ${S}/config_office
    rm -f config.cache
    if [ "LANGNAME" != "ENUS" ]; then
        LANGNAME="${LANGNAME},ENUS"
    fi
    ./configure --enable-gcc3
        --with-jdk-home=${JAVA_HOME}
        --with-lang=${LANGNAME}
        --enable-libsn
        --without-fonts
        --with-x || die
    cd ${S}
    get_EnvSet
    # Set $ECPUS to amount of processes multiprocessing build should use.
    # NOTE:  Setting this too high might cause dmake to segfault!!
    #        Setting this to anything but "1" on my pentium4 causes things
    #        to segfault
    [ -z "${ECPUS}" ] && export ECPUS="1"
    # Should the build use multiprocessing?
    # We use build.pl directly, as dmake tends to segfault. (Az)
    if [ "${ECPUS}" -gt 1 ]
    then
        buildcmd="${S}/solenv/bin/build.pl --all -P${ECPUS} product=full strip=true --dlv_switch link"
    else
        buildcmd="${S}/solenv/bin/build.pl --all product=full strip=true --dlv_switch link"
    fi
    if [ -z "$(grep 'CCCOMP' ${S}/${LinuxEnvSet})" ]
    then
        # Set CCCOMP and CXXCOMP.  This is still needed for STLport
        export CCCOMP=${CC}
        export CXXCOMP=${CXX}
    fi
    einfo "Bootstrapping OpenOffice.org..."
    # Get things ready for bootstrap (Az)
    chmod 0755 ${S}/solenv/bin/*.pl
    # Bootstrap ...
    ./bootstrap
    einfo "Building OpenOffice.org..."
    echo "source ${S}/${LinuxEnvSet} && cd ${S}/instsetoo && ${buildcmd}" > build.sh
    sh build.sh || die "Build failed!"
    [ -d ${S}/instsetoo/${SOLPATH} ] || die "Cannot find build directory!"
src_install() {
    # Sandbox issues; bug #11838
    addpredict "/user"
    addpredict "/share"
    addpredict "/dev/dri"
    addpredict "/usr/bin/soffice"
    addpredict "/pspfontcache"
    addpredict "/opt/OpenOffice.org/foo.tmp"
    addpredict "/opt/OpenOffice.org/delme"
    # The install part should now be relatively OK compared to
    # what it was.  Basically we use autoresponse files to install
    # unattended.  Afterwards we
    # just cleanout ${D} from the registry, etc.  This way we
    # do not need pre-generated registry, and also fixes some weird
    # bugs related to the old way we did things.
    # <[email protected]> (9 Sep 2002)
    # Autoresponse file for main installation
    cat > ${T}/rsfile-global <<-"END_RS"
        [ENVIRONMENT]
        INSTALLATIONMODE=INSTALL_NETWORK
        INSTALLATIONTYPE=STANDARD
        DESTINATIONPATH=<destdir>
        OUTERPATH=
        LOGFILE=
        LANGUAGELIST=<LANGUAGE>
        [JAVA]
        JavaSupport=preinstalled_or_none
    END_RS
    # Autoresponse file for user installation
    cat > ${T}/rsfile-local <<-"END_RS"
        [ENVIRONMENT]
        INSTALLATIONMODE=INSTALL_WORKSTATION
        INSTALLATIONTYPE=WORKSTATION
        DESTINATIONPATH=<home>/.openoffice/<pv>
        [JAVA]
        JavaSupport=none
    END_RS
    # Fixing install location in response file
    sed -e "s|<destdir>|${D}${INSTDIR}|"
        ${T}/rsfile-global > ${T}/autoresponse
    einfo "Installing OpenOffice.org into build root..."
    dodir ${INSTDIR}
    cd ${S}/instsetoo/${SOLPATH}/${LANGNO}/normal
    ./setup -v -noexit -nogui -r:${T}/autoresponse || die "Setup failed"
    echo
    einfo "Removing build root from registry..."
    # Remove totally useless stuff.
    rm -f ${D}${INSTDIR}/program/{setup.log,sopatchlevel.sh}
    # Remove build root from registry and co
    egrep -rl "${D}" ${D}${INSTDIR}/* |
        xargs -i perl -pi -e "s|${D}||g" {} || :
    einfo "Fixing permissions..."
    # Fix permissions
    find ${D}${INSTDIR}/ -type f -exec chmod a+r {} ;
    chmod a+x ${D}${INSTDIR}/share/config/webcast/*.pl
    # Fix symlinks
    for x in "soffice program/spadmin"
        "program/setup setup"
        "program/spadmin spadmin"
    do
        dosym $(echo ${x} | awk '{print $1}')
            ${INSTDIR}/$(echo ${x} | awk '{print $2}')
    done
    # Install user autoresponse file
    insinto /etc/openoffice
    sed -e "s|<pv>|${PV}|g" ${T}/rsfile-local > ${T}/autoresponse-${PV}.conf
    doins ${T}/autoresponse-${PV}.conf
    # Install wrapper script
    exeinto /usr/bin
    sed -e "s|<pv>|${PV}|g"
        ${FILESDIR}/${PV}/ooffice-wrapper-1.3 > ${T}/ooffice
    doexe ${T}/ooffice
    # Component symlinks
    for app in calc draw impress math writer web setup padmin; do
        dosym ooffice /usr/bin/oo${app}
    done
    einfo "Installing Menu shortcuts (need "gnome" or "kde" in USE)..."
    if use gnome
    then
        insinto /usr/share/gnome/apps/OpenOffice.org
        # Install the files needed for the catagory
        doins ${D}${INSTDIR}/share/gnome/net/.directory
        doins ${D}${INSTDIR}/share/gnome/net/.order
        # Change this to ooo*.desktop from *.desktop for now, since
        # otherwise two sets of icons will appear in the GNOME menu.
        # <[email protected]> (04 Aug 2003)
        for x in ${D}${INSTDIR}/share/gnome/net/ooo*.desktop
        do
            # We have to handle soffice and setup differently
            perl -pi -e "s:${INSTDIR}/program/setup:/usr/bin/oosetup:g" ${x}
            perl -pi -e "s:${INSTDIR}/program/soffice:/usr/bin/ooffice:g" ${x}
            # Now fix the rest
            perl -pi -e "s:${INSTDIR}/program/s:/usr/bin/oo:g" ${x}
            doins ${x}
        done
    fi
    if use kde
    then
        local kdeloc="${D}${INSTDIR}/share/kde/net/"
        insinto /usr/share/applnk/OpenOffice.org 1.1
        # Install the files needed for the catagory
        doins ${kdeloc}/.directory
        dodir /usr/share
        # Install the icons and mime info
        cp -a ${D}${INSTDIR}/share/kde/net/share/mimelnk ${D}${INSTDIR}/share/kde/net/share/icons ${D}/usr/share
        for x in ${kdeloc}/*.desktop
        do
            # We have to handle soffice and setup differently
            perl -pi -e "s:${INSTDIR}/program/setup:/usr/bin/oosetup:g" ${x}
            perl -pi -e "s:${INSTDIR}/program/soffice:/usr/bin/ooffice:g" ${x}
            # Now fix the rest
            perl -pi -e "s:${INSTDIR}/program/s:/usr/bin/oo:g" ${x}
            doins ${x}
        done
    fi
    # Do not actually install the desktop bindings for users, we have
    # installed them globally
    for module in gid_Module_Optional_Gnome gid_Module_Optional_Kde gid_Module_Optional_Cde
    do
        perl -pi -e "/^Module $module/ .. /^End/ and s|(Installed.*)=.*|1= NO;|"
        ${D}${INSTDIR}/program/instdb.ins
    done
    # Remove unneeded stuff
    rm -rf ${D}${INSTDIR}/share/cde
    # Make sure these do not get nuked.
    keepdir ${INSTDIR}/user/registry/res/en-us/org/openoffice/{Office,ucb}
    keepdir ${INSTDIR}/user/psprint/{driver,fontmetric}
    keepdir ${INSTDIR}/user/{autocorr,backup,plugin,store,temp,template}
pkg_postinst() {
    einfo "******************************************************************"
    einfo " To start OpenOffice.org, run:"
    einfo
    einfo "   $ ooffice"
    einfo
    einfo " Also, for individual components, you can use any of:"
    einfo
    einfo "   oocalc, oodraw, ooimpress, oomath, ooweb or oowriter"
    einfo
    einfo " If the fonts appear garbled in the user interface refer to "
    einfo " Bug 8539, or http://www.openoffice.org/FAQs/fontguide.html#8"
    einfo
    einfo "******************************************************************"

Similar Messages

  • Question regarding multi-language installation

    Hello,
    I would like to know if there are any known solution regarding multi-language packages for the different Creative Suites that we can create using AAMEE?
    I was thinking to create a trial version with a serialization answer file after the installation, but I think I will run into issues using this method.
    Thanks for the help!

    Hi,
    Currently you cant create a single multi-language package using AAMEE. You will have to create a different package for every language. All the serial numbers will ultimately serialize the product in 1 language only. Even for serialization file approach you will have to create a trial package using AAMEE and trial packages are also language specific. If you have a multilingual serial number, my suggestion would be to create a serialized package for each language seperately and deploy them.
    Thanks,
    Saransh Katariya | Adobe Systems | [email protected]

  • Adobe reader multi language installer..

    Is there any adobe reader installer that supports all language?

    For Adobe Reader 11.0.0 all the msi and exe files for  Finnish, Dutch, Swedish are available in this location
    ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.00/
    But for the latest version of adobe reader 11.0.06, the installer for the languages such as Finnish, Dutch, Swedish are not availabe..
    So I want to know whether the current version supports for these languages? If so where can i get the installer files?

  • Multi-language installation disk

    When I insert the installation disk (leopard or snow leopard), there is an option to choose a language. The default is English. Does anyone know if this language option is only for the process of installing the system or is for the system itself which is to be installed? To clarify, for example, if I choose Chinese, the former means that only the installation process is in Chinese, when the system installed will still be in English; the latter means that both the installation process and the system will be in Chinese.
    Thanks!

    Chime wrote:
    Does anyone know if this language option is only for the process of installing the system or is for the system itself which is to be installed?
    It is for the system itself as well.  If you want the OS in English, choose English.  The OS language can also be switched at any time later via preference settings however.

  • Multiple language installer for Adobe Reader

    I need a compressed multiple language installer for Adobe Reader to install with my software.  Is one available?

    When we requested a license to distribute the multi-language version of Adobe Reader with our software, we recieved the following link to a download:
    "For full installers: "
    "To download the English language version of Adobe Reader 9 with Acrobat.com in compressed .exe format, click here."
    When you click on the link, you get a single file (AdbeRdr11006_en_US.exe).  This is an installation for english only.  I am looking for a single .exe file for a multi-language installation. 
    The link you provided above is to a .zip file that must be extracted and then run.  This requires additional steps in our installation process.  We were hoping you have a single installation file to prevent these additional steps.

  • Office 365 with Office 2013 MSI Language Pack on Windows 7 machine.

    Hello All,
    I have Office 2013 MSI Language Pack installed on Windows 7 machine. After deploying Office 365 using ODT, Lync is crashing.
    Is Office 2013 MSI Language Pack compatible with Office 365?
    Thanks in Advance !!

    Hi,
    Have you checked the log file? Does it record the error details there?
    So you only have the language pack on your computer, not the entire Office 2013 instance? Office 2013 MSI Language Pack doesn't work with Office 365. Try to remove the language pack then try again.
    Also, to plan a multi-language deployment of Click-to-Run-based Office installations, please refer to this article:
    http://technet.microsoft.com/en-us/library/dn186220(v=office.15).aspx 
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • MS Office 2011 for Mac - Installer quite unexpectedly

    Operating system Mac OSX 10.9.1
    First time installing office. Just purchased and downloaded today.
    I have not had this problem before installing any other software.
    This happens early in the installation process, and it happens every time without fail.  Here are the steps
    1) I click on Office Installer.pkg
    2) A dialog appears: "Welcome to the Microsoft Office for Mac 2011 Installer"
    3) I click the Continue button
    boom. The error message: "Installer quite unexpectedly"
    Here is the dump.  Please help!
    Process:         Installer [912]
    Path:            /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
    Identifier:      com.apple.installer
    Version:         6.0 (721)
    Build Info:      Installer-721000000000000~67
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [189]
    Responsible:     Installer [912]
    User ID:         501
    Date/Time:       2014-01-04 01:54:19.522 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  837B06F2-9F64-3004-867F-8B70E3596DCF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000011241ac00
    VM Regions Near 0x11241ac00:
        mapped file            00000001122ab000-0000000112352000 [  668K] r--/rwx SM=COW  /Library/Fonts/Tahoma.ttf
    --> mapped file            0000000112352000-000000011241f000 [  820K] r--/rwx SM=COW  /Library/Fonts/Microsoft/Times New Roman.ttf
        mapped file            000000011241f000-00000001129cc000 [ 5812K] r--/rwx SM=COW  /Library/Fonts/Microsoft/MS Gothic.ttf
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreText                      0x00007fff8c5c1805 OTL::GCommon::GCommon(OTL::GCommon::HowCalled, __CFData const*, OTL::GDEF&, unsigned int, unsigned int) + 129
    1   com.apple.CoreText                      0x00007fff8c5c1050 TOpenTypeMorph::TOpenTypeMorph(TRunGlue&, TCharStream const*) + 452
    2   com.apple.CoreText                      0x00007fff8c593699 TShapingEngine::ShapeGlyphs(TLine&, TCharStream const*, CFRange&, TGlyphList<TDeletedGlyphIndex>*) + 543
    3   com.apple.CoreText                      0x00007fff8c5a648b TTypesetter::TTypesetter(__CFArray const*, __CFString const*, void const* (*)(__CTRun const*, __CFString const*, void*), void*) + 211
    4   com.apple.CoreText                      0x00007fff8c5a628a CTTypesetterCreateWithRunArray + 93
    5   com.apple.AppKit                        0x00007fff83036e87 -[NSATSGlyphStorage createCTTypesetter] + 1493
    6   com.apple.AppKit                        0x00007fff830328d3 -[NSATSTypesetter _ctTypesetter] + 327
    7   com.apple.AppKit                        0x00007fff83031af9 -[NSATSLineFragment layoutForStartingGlyphAtIndex:characterIndex:minPosition:maxPosition:lineFragme ntRect:] + 85
    8   com.apple.AppKit                        0x00007fff8303064e -[NSATSTypesetter _layoutLineFragmentStartingWithGlyphAtIndex:characterIndex:atPoint:renderingCon text:] + 2777
    9   com.apple.AppKit                        0x00007fff83063c79 -[NSATSTypesetter layoutParagraphAtPoint:] + 149
    10  com.apple.AppKit                        0x00007fff836dbb45 -[NSTypesetter _layoutGlyphsInLayoutManager:startingAtGlyphIndex:maxNumberOfLineFragments:maxC haracterIndex:nextGlyphIndex:nextCharacterIndex:] + 4043
    11  com.apple.AppKit                        0x00007fff83062c9d -[NSTypesetter layoutCharactersInRange:forLayoutManager:maximumNumberOfLineFragments:] + 202
    12  com.apple.AppKit                        0x00007fff83062b81 -[NSATSTypesetter layoutCharactersInRange:forLayoutManager:maximumNumberOfLineFragments:] + 1107
    13  com.apple.AppKit                        0x00007fff83061219 -[NSLayoutManager(NSPrivate) _fillLayoutHoleForCharacterRange:desiredNumberOfLines:isSoft:] + 1306
    14  com.apple.AppKit                        0x00007fff83060ac9 -[NSLayoutManager(NSPrivate) _fillLayoutHoleAtIndex:desiredNumberOfLines:] + 201
    15  com.apple.AppKit                        0x00007fff831704c9 +[NSLayoutManager(NSPrivate) _doSomeBackgroundLayout] + 729
    16  com.apple.AppKit                        0x00007fff8316ec06 _NSPostBackgroundLayout + 310
    17  com.apple.CoreFoundation                0x00007fff8b7470a7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    18  com.apple.CoreFoundation                0x00007fff8b747017 __CFRunLoopDoObservers + 391
    19  com.apple.CoreFoundation                0x00007fff8b7387b8 __CFRunLoopRun + 776
    20  com.apple.CoreFoundation                0x00007fff8b738275 CFRunLoopRunSpecific + 309
    21  com.apple.HIToolbox                     0x00007fff86c38f0d RunCurrentEventLoopInMode + 226
    22  com.apple.HIToolbox                     0x00007fff86c38b85 ReceiveNextEventCommon + 173
    23  com.apple.HIToolbox                     0x00007fff86c38abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    24  com.apple.AppKit                        0x00007fff82f8b28e _DPSNextEvent + 1434
    25  com.apple.AppKit                        0x00007fff82f8a8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    26  com.apple.AppKit                        0x00007fff82f7e9cc -[NSApplication run] + 553
    27  com.apple.AppKit                        0x00007fff82f69803 NSApplicationMain + 940
    28  com.apple.installer                     0x0000000106a2b254 0x106a29000 + 8788
    29  libdyld.dylib                           0x00007fff8f0e15fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff87fe491a __recvfrom + 10
    1   com.apple.installframework              0x0000000106b1ddc4 do_log_udp_listen + 247
    2   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff87fe5662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8973843d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff89738152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff89d888d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff89d7f778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.installframework              0x0000000106b1ccc1 +[IFDTargetController(WorkerThread) _handleTargetRequests] + 157
    5   com.apple.Foundation                    0x00007fff89db770b __NSThread__main__ + 1318
    6   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff87fe0a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87fdfd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8b739315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8b738939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8b738275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8312b1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff87fe0a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87fdfd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8b739315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8b738939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8b738275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff89db7907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff89db770b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b38e15 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b39887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87b39718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b39887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87b39718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b39887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87b39718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b39887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87b39718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b39887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87b39718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87fe4716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff867f8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87b39887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87b39718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87b2e0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff867f6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff867f672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff867fafc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff87fe4e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff867f7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff867fafb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff87fe4e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff867f7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff867fafb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000011241abf8  rbx: 0x00007fff591d38b8  rcx: 0x0000000000000014  rdx: 0x00007fff744873c0
      rdi: 0x00007ff0f3530e20  rsi: 0x0000000000000000  rbp: 0x00007fff591d3710  rsp: 0x00007fff591d36e0
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00000000e0d166ed  r11: 0x0000000035770e98
      r12: 0x0000000000000000  r13: 0x00007ff0f3530e20  r14: 0x000000011241c76a  r15: 0x00007fff591d38d0
      rip: 0x00007fff8c5c1805  rfl: 0x0000000000010206  cr2: 0x000000011241ac00
    Logical CPU:     4
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x106a29000 -        0x106a52ff7  com.apple.installer (6.0 - 721) <AB8A6C63-00AC-34C5-B1D7-AA7CDA4555F0> /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
           0x106a6c000 -        0x106ab1fff  com.apple.GraphKit (1.0.5 - 30) <288D0898-D573-3834-8DBA-B73396C40FD0> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
           0x106ad3000 -        0x106ad8fff  JavaLaunching (1) <528DEA76-B869-36B5-87A6-D9B722968E16> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
           0x106ae6000 -        0x106afafff  com.apple.InstallerPlugins (6.0 - 721) <4C68DDE4-69F1-387C-A519-0EFFFBE77E8B> /System/Library/Frameworks/InstallerPlugins.framework/Versions/A/InstallerPlugi ns
           0x106b13000 -        0x106bb9fff  com.apple.installframework (700 - 846) <793B31D4-A323-3E08-A3E3-0426281C09F9> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
           0x10d778000 -        0x10d778ff9 +cl_kernels (???) <ED86006C-885E-4677-AEB4-CE7E6FA9B6A9> cl_kernels
           0x1107bf000 -        0x1108a5fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x110a80000 -        0x110a81ffa +cl_kernels (???) <310FD731-B8BC-4B7C-9CA3-861A6454BA31> cl_kernels
           0x110c74000 -        0x110c75ff7  libSymbolConverter.dylib (61) <D7180B51-E764-34F1-A9B3-9E7F94562017> /System/Library/CoreServices/Encodings/libSymbolConverter.dylib
           0x11205a000 -        0x112076fff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
        0x7fff64049000 -     0x7fff6407c817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff826eb000 -     0x7fff82859ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff829b3000 -     0x7fff82a84ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff82a85000 -     0x7fff82a8cff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff82a8f000 -     0x7fff82a96fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff82a97000 -     0x7fff82b86fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82b87000 -     0x7fff82b8bff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff82e15000 -     0x7fff82ecdff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff82ece000 -     0x7fff82ed8fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff82f29000 -     0x7fff82f2bfff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff82f2c000 -     0x7fff82f55ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff82f56000 -     0x7fff82f5aff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff82f66000 -     0x7fff82f66ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff82f67000 -     0x7fff83adbff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff83adc000 -     0x7fff83ae6ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff83ae7000 -     0x7fff83b4aff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff83b4b000 -     0x7fff83b53fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff83b6d000 -     0x7fff83e57fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff83e9a000 -     0x7fff83ea5ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff83ff2000 -     0x7fff83ff3ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff83ff4000 -     0x7fff84040ffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff841fd000 -     0x7fff8428cfff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff849dd000 -     0x7fff84b95ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
        0x7fff84b96000 -     0x7fff84d06ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff85b6e000 -     0x7fff85b96ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff85bd5000 -     0x7fff85bf0ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff85bf1000 -     0x7fff85c36ff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff85c37000 -     0x7fff85cbfff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff85cc0000 -     0x7fff85d26fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff85d4e000 -     0x7fff85de4fff  com.apple.PackageKit (3.0 - 329) <F619E170-BE26-37E8-8F6E-C74D68522083> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff85de5000 -     0x7fff85deeff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff86155000 -     0x7fff86179fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff861b4000 -     0x7fff861e3ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff861e4000 -     0x7fff861f7ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff861f8000 -     0x7fff86202fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff86203000 -     0x7fff86208fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff86429000 -     0x7fff86488fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff864ca000 -     0x7fff864e2ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff864e3000 -     0x7fff86507fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86750000 -     0x7fff8679dfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8679e000 -     0x7fff867a6fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff867a7000 -     0x7fff867f4ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff867f5000 -     0x7fff867fcff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff867fd000 -     0x7fff86846fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff86847000 -     0x7fff86850fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8689c000 -     0x7fff868a6ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff868a7000 -     0x7fff868a8ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff868b1000 -     0x7fff868dbff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff868dc000 -     0x7fff868e5ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8692f000 -     0x7fff8693dfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff86bfa000 -     0x7fff86bfaffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff86bfb000 -     0x7fff86c06fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff86c07000 -     0x7fff86c09ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86c0a000 -     0x7fff86eb4ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86eb5000 -     0x7fff86eb9fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff86ed8000 -     0x7fff86efcff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff86f7c000 -     0x7fff86f7dff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff86f7e000 -     0x7fff86fa5ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff86fa6000 -     0x7fff8727afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff872b3000 -     0x7fff872e2fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff872f0000 -     0x7fff87551ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff875fd000 -     0x7fff8764bfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff87687000 -     0x7fff87688fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8769d000 -     0x7fff87ad0ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff87ad1000 -     0x7fff87adafff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87b25000 -     0x7fff87e9bffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff87e9c000 -     0x7fff87f13fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff87f14000 -     0x7fff87f14fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff87f43000 -     0x7fff87f45fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff87f46000 -     0x7fff87f91fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff87fcf000 -     0x7fff87febff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff87fec000 -     0x7fff88244ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88245000 -     0x7fff8825cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8825d000 -     0x7fff8825eff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8825f000 -     0x7fff88261ff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff88262000 -     0x7fff88265ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff882bd000 -     0x7fff882bffff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff882c0000 -     0x7fff882c2ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff88396000 -     0x7fff88396ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff88397000 -     0x7fff88665ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff888f8000 -     0x7fff888f8fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff88900000 -     0x7fff88903ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff88904000 -     0x7fff88932ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8895b000 -     0x7fff88961ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff88962000 -     0x7fff88973ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff88974000 -     0x7fff88975ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff88976000 -     0x7fff88a67ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff88a68000 -     0x7fff88a70ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff88a71000 -     0x7fff88a71fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88a9d000 -     0x7fff88b60ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff88b61000 -     0x7fff88b63ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff88b7b000 -     0x7fff88b7efff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff88b7f000 -     0x7fff88c48fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff88c49000 -     0x7fff88c4cfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff89029000 -     0x7fff89055ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff89056000 -     0x7fff8907bff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff890b4000 -     0x7fff890b8ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff890b9000 -     0x7fff890c6ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff890c7000 -     0x7fff89100ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89101000 -     0x7fff89111fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8912f000 -     0x7fff891b8ff7  com.apple.SoftwareUpdate.framework (6 - 574) <A24BDCFF-6164-3028-8892-D3C00B7C5658> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff891b9000 -     0x7fff8920afff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8920b000 -     0x7fff89263ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff89264000 -     0x7fff8928cffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8929c000 -     0x7fff893ccff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff893cd000 -     0x7fff893e3fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff89403000 -     0x7fff8940bff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8940c000 -     0x7fff89470ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff894c9000 -     0x7fff894f8fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff894f9000 -     0x7fff894fcfff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff89577000 -     0x7fff89665fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff89666000 -     0x7fff896f2ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff896f3000 -     0x7fff89734fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff89735000 -     0x7fff8974ffff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff89750000 -     0x7fff897baff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8981e000 -     0x7fff89902fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff89903000 -     0x7fff89905fff  com.apple.loginsupport (1.0 - 1) <4772DFF0-E8FD-3F27-9C3B-39563B904E1C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff89913000 -     0x7fff8992eff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8992f000 -     0x7fff89959ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8995a000 -     0x7fff89973ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff899c3000 -     0x7fff899ccfff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff899cd000 -     0x7fff89a1bfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89a1c000 -     0x7fff89bb8ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89bb9000 -     0x7fff89bf8fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff89bf9000 -     0x7fff89ce0ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff89cfd000 -     0x7fff89d4ffff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff89d50000 -     0x7fff8a04ffff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8a050000 -     0x7fff8a050fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8a106000 -     0x7fff8a554fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8a5b2000 -     0x7fff8a5b4fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8a7f9000 -     0x7fff8a814ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8a85b000 -     0x7fff8a8bbff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8a8bc000 -     0x7fff8a901ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8a902000 -     0x7fff8a905fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8a906000 -     0x7fff8a9a1ff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8a9a2000 -     0x7fff8b2be05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8b2bf000 -     0x7fff8b2c7ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8b2c8000 -     0x7fff8b30eff7  com.apple.DiskManagement (6.0 - 744) <FE9F0616-FFCA-31D2-A0B5-E6C943326543> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8b324000 -     0x7fff8b341ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8b553000 -     0x7fff8b554fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff8b555000 -     0x7fff8b695fff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8b696000 -     0x7fff8b6c7fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8b6c8000 -     0x7fff8b8adff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8b8ba000 -     0x7fff8bc9bffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8bc9c000 -     0x7fff8bd6dff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8bd6e000 -     0x7fff8bd73fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8bed6000 -     0x7fff8bfdbfff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8bfdc000 -     0x7fff8c12fff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c130000 -     0x7fff8c164fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8c165000 -     0x7fff8c1f0fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff8c1fe000 -     0x7fff8c22dff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8c22e000 -     0x7fff8c240fff  com.apple.login (3.0 - 3.0) <B825A996-7F9C-3F47-B76F-A0F9B4BEB373> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8c241000 -     0x7fff8c25dfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8c2a9000 -     0x7fff8c304ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8c305000 -     0x7fff8c314ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8c460000 -     0x7fff8c46dff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8c46e000 -     0x7fff8c4b5fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8c4b6000 -     0x7fff8c4b6fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8c4de000 -     0x7fff8c52fff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8c530000 -     0x7fff8c531ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8c532000 -     0x7fff8c557ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8c558000 -     0x7fff8c573fff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff8c574000 -     0x7fff8c57fff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8c580000 -     0x7fff8c583ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8c584000 -     0x7fff8c646ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8c877000 -     0x7fff8c961fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8c962000 -     0x7fff8cbf0fff  com.apple.RawCamera.bundle (5.02 - 725) <4DE37ECB-24CD-38B1-B5AF-1EE911E19B80> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8cc06000 -     0x7fff8cc6aff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8cc6e000 -     0x7fff8cc80ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8cc81000 -     0x7fff8cc86ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8cc89000 -     0x7fff8cfa3ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8cfa4000 -     0x7fff8d514fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8d515000 -     0x7fff8d51bfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8d51f000 -     0x7fff8d525ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8d55e000 -     0x7fff8d568ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8d569000 -     0x7fff8d56eff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8d56f000 -     0x7fff8d5b1ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8d5b2000 -     0x7fff8d5cbff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8de90000 -     0x7fff8de97ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff8de98000 -     0x7fff8deaffff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8deb0000 -     0x7fff8debbfff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff8debc000 -     0x7fff8dfe8fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8dfe9000 -     0x7fff8e021ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e0b7000 -     0x7fff8e5dbfff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8e743000 -     0x7fff8e743fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e744000 -     0x7fff8e7f4ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8ea39000 -     0x7fff8ea8cfff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8ea8d000 -     0x7fff8eb6cfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8ebfa000 -     0x7fff8ec2afff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8efd0000 -     0x7fff8efe1ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8efe9000 -     0x7fff8efedfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8efee000 -     0x7fff8f028ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8f029000 -     0x7fff8f029fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f02a000 -     0x7fff8f037fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8f063000 -     0x7fff8f08aff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8f0de000 -     0x7fff8f0e1ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff8f0ef000 -     0x7fff8f29cf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8f29d000 -     0x7fff8f30afff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8f390000 -     0x7fff8f397fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8f398000 -     0x7fff8f39cfff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8f40c000 -     0x7fff8f47bff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8f4e0000 -     0x7fff8f539fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f53a000 -     0x7fff8f563fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Fr

    Back up all data.
    Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and this support article for instructions. If Font Book finds any issues, resolve them.
    From the application's menu bar, select
    File ▹ Restore Standard Fonts...
    You'll be prompted to confirm, and then to enter your administrator login password.
    Boot in safe mode to rebuild the font caches. Boot again as usual and test.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. In that case, ask for instructions.
    Also note that if you deactivate or remove any built-in fonts, for instance by using a third-party font manager, the system may become unstable.

  • Multi-Language Planning application - How to build?

    Hello,
    I might need to create a multi-language application for English, Spanish, and French users. I understand that installation localization will support multi-language user interface. However I need pointers on how to go about creating an app with minimal maintenance.
    How do deal with following?
    -> Member names: This can be handled through alias tables.
    -> Web forms : Should we create similar forms in different languages?
    -> Reports: Similar reports in different languages?
    -> Business Rules / Calcs: how display names in different langugaes?
    Thanks,
    Amit

    You only want a single WindowedApplication component in an
    AIR application. For the other windows, use the Window component.
    You can then create this window object in response to the user's
    menu selection. See
    http://www.adobe.com/devnet/air/flex/quickstart/launching_windows.html
    for examples of opening windows.

  • Multi Language Pattern?

    Is there a multi language pattern existing?
    We build a ERP software with a framework which is on top of EJB. The applications have to support multi language since the applications will be used in different countries.
    For example there is an Article value object which has an attribute 'description' which needs to support descriptions in many languages.
    There are many of such multi language attributes in our ERP software. If we would be put them all in an own table in the database, then we would have many, many tables. So we think of putting all the multi language attribute data in one table.
    If someone knows a pattern which is suitable for this purpose, please tell me. But please remember that we use a framework which is on top of EJB.

    Do any of the installations of this application need
    to support more than one language? More cleary, is
    each user going to specify their language in the on
    starting their use of app or is each installation of
    the solution going to be in a single language?
    Essentially, are you going to need to support
    mulitple languages simultaneaously or just one
    undetermined language?Yes, more than one language.
    It would be good if the users can switch languages dynamically in the application. Then the language of the GUI changes and/or the language of the objects, like the description attribute of the article object.
    Multiple languages should be supported simultaneaously.
    And there should be a default language.

  • Indesign GS4 Multi-languages - language change

    Hi,
    when I have installed Indesign GS4 Multi-languages in French on a Windows XP SP3 Uk(multi-languages UK-FR-NL) OS, the installation is made with the administrator account.
    Now, with the administrator account Indesign opens in Fr and with simple right user account, Indesign opens in Uk...
    What 's the problem? How can I fix it?
    Thank you.
    Coyote_fx

    Hi,
    actually we got the same problem. The only solutions i know is the translation tool fpr pcd content available in sdn.  but that is not really good.
    If you got any better solutions, please post it here.
    Thanks,

  • Why isn't there a JRE Multi-Language for LInux

    I can find the Multi-Language JRE for Windows but not Linux. Doesn't JRE support I18N in Linux?

    Not having downloaded any special version of JDK, it seems that my installation supports i18n just fine on Linux (for example: JOptionPane uses localized default answers, based on the locale).

  • Microsoft Office Pro plus 2013 installation wizard pops up everytime I open a Word document or a new page.

    Microsoft Office Pro plus 2013 installation wizard pops up everytime I open a Word document or a new page.  I realize that other people have the same problem.  However no answer has been found to stop this problem.  I wonder if there is a
    way.  Hope someone is able to tell me and the others.

    Hi,
    By the installation wizard, do you mean the First Run screen? If yes, please follow the steps below to disable it:
    STEP ONE: If you have not already, download the Office 2013 Administrative Template files. These can be downloaded from
    http://www.microsoft.com/en-us/download/details.aspx?id=35554
    STEP TWO: Copy the ADMX files to %systemroot%\PolicyDefinitions and the ADML files to the language specific folder (such as en-us) under %systemroot%\PolicyDefinitions.
    STEP THREE: Using the Group Policy Management Editor go to User Configuration | Administrative Templates | Microsoft Office 2013 | First Run |
    STEP FOUR: Set the Disable First Run Movie to Enabled and the Disable Office First Run on application boot to Enabled
    Please check the result then.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs. Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Multi Language iTunes?

    For iTunes 4.9, since I have both English and Traditional Chinese versions of Windows XP, I have to download the English and Traditional Chinese versions of iTunes 4.9 from the US and Taiwan Apple site respectively.
    But for iTunes 5.0 this does not seem to be necessary, the file size of iTunes 5.0 downloaded from the US and Taiwan Apple sites are exactly the same, and the installer seems to be able to detect the language of Windows installed. Can anyone confirm my suspicion that iTunes 5 is now multi-language like the iPod software updater?
    By the way, I saw a number of people here having problems with iTunes 5 and wanted (or needed) to downgrade to iTunes 4.9. I have no problems with iTunes 5 so far. And in anticipation of possible problems and need to downgrade I always keep the previous installers of iTunes (I have saved every one of the iTunes 4.5 to 5 installers in English and Traditional Chinese) and iPod software updater just in case, though I have never found it necessary to downgrade myself. May be that is what you should have done and have to do in the future. Just my two cents.

    hello Mr Bond!
    For iTunes 4.9, since I have both English and Traditional Chinese versions of Windows XP, I have to download the English and Traditional Chinese versions of iTunes 4.9 from the US and Taiwan Apple site respectively.
    my apologies for the threadjack. but, if you've got the time, could you please look at the following thread?
    b noir, "help from people with Asian language facility" #5, 01:19pm Sep 6, 2005 CDT
    would you mind replying here with any observations?
    love, b

  • Oracle 9i Support for multi language is not working.. Giving question mark

    HI,
    We have an application which uses oracle 9i as the database. Riight now we are supporting only english and there is a requirement to support multiple languages like korean, chineese and japaneese.
    But we are planning to migrate one part of the application to support multi languages. Means it may affect around 10 tables but with huge data. Totally we have around 100 tables.
    How to enable the database for supporting multiple langugages.?
    Is there any way to enable only the few tables supporting multiple languages. Because if we change the database level parameters for supporting languages, we may need to migrate entire tables. this will be a huge task.
    Even if want to set the parameters for supporting multiple languages.. how to set it. Is it possible set it in the existing database or do we need to re-create the table with these prameters.
    I have read in some documentation, that we can create table columns with nVarchar2 for supporting multi languages. I have created it. but if i copy some other language characters into those columns, it is giving question mark.
    Is it possible to do search using text in native langugage like chineese..
    Could somebody guide me on the above clarificationa and what would be the best approach..
    Thanks in advance
    Jino
    Regards,
    Jino George
    Ext: 6520

    You should not use any more Oracle 9.0.1 but at least Oracle 9.2.0.8 to get some extended support if you really cannot upgrade to 10g.
    I don't have any Oracle 9.x database available but I've run successfully following test with Oracle 10.2.0.1 in character mode under Linux:
    oracle@pbell:~$ export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
    oracle@pbell:~$ sqlplus / @nls
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Aug 29 17:29:56 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> drop table t;
    Table dropped.
    SQL> select * from v$nls_parameters where parameter like '%SET%';
    PARAMETER
    VALUE
    NLS_CHARACTERSET
    WE8ISO8859P1
    NLS_NCHAR_CHARACTERSET
    AL16UTF16
    SQL> create table t ( data nvarchar2(100));
    Table created.
    SQL> insert into t values(unistr('\76EE\7684\5730'));
    1 row created.
    SQL> select * from t;
    DATA
    目的地Try to make sure you have the right NLS_LANG setting on the client side (under Windows this is a registry setting).

  • Multi language web site

    Multi language web site
    What is the best way to have my web site switchable (initially from links on the main index.html page) between different languages?
    Do I simply clone the English version (including all the sub-directories and structure) into a sub-directory and translate each page and put a link on the main index.html page to a translated copy of the index.html page in the German sub-directory
    That would mean I effectively have two websites to maintain.
    More when it is translated into more languages.
    Currently all the English pages are made from a template (dwt file)
    I assume this adds a level of complication to the design.
    Or is there a better/easier way?
    thanks

    This is a website that the client did not continue with http://ncca.com.au/new/, hence it has not been finished.
    In the top right hand corner are two flags, Dutch and English. By clicking on a flag, the language session variable is changed. This session variable is used througout the website to determine the content as in
    if ($_SESSION['lang'] == 'en') {include("home_en.php");}
    if ($_SESSION['lang'] == 'nl') {include("home_nl.php");}
    If there are more languages it is better to use the select switch rather than an if statement.

Maybe you are looking for

  • Com.wm.app.b2b.server.ServiceException with Business Connector

    Hi Everybody, I could need some help with the Business Connctor 4.8... We just made an upgrade from SAP Business Connector 4.7 to 4.8. The new Business Connector also was moved to another server. The installation was fine. In SM59 the RFC test works

  • All video crashes Itunes.

    Running Vista. No problems with video until the latest Itunes upgrade. Tried the recommended fix involving Quicktime.  Quicktime will play the files but Itunes still crashes. It makes no difference what type of video file. Tried uninstall/Install dow

  • How to cancel 'zoom in' in view menu?

    I tried 'zoom in' on a clip in the viewer window and don't know how to get out of it. I can blow it up several fields or reduce it into a matte within the frame but cain't get the original field back. Anyone?

  • Jsf standard messages for italian language

    Where can I found the property file for the italian language Messages_it.properties Thank you

  • Can someone explain how to split an mp3 in Quicktime Pro

    I have a 1 1/2 hour mp3 file. I want to split it in two. I can't seem to figure out how to do this in Quicktime Pro. Could someone give step by step instructions? Thanks!