XLIFF Localization Automation?

Hi everybody,
We have quite a big project in NW2004s, better part of it is a web dynpro application and we need it in two languages.
Every i18n documentation you can find describes the situation where you have final application in one language and you create additional language version by manually copying the xliff (*.xlf) files. So far so good - the real problems start when you want to change that already translated application.
Is there ANY way how to compare the xlf files to find missing or changed translation? I did not find any mention of that situation in the documentation, I did not find anything similar inside the NWDS menus and I even failed to find any eclipse plugin supporting xliff
If you add some visible WD element into an (already translated) application, the only method I see currently is to remember what you have changed and correct it - i.e. do it fully manually. I can't believe this is the only way SAP offers ... or is it so?
Do you have any advice?
Regards,
Tomas

Hi,
Two things I can think of:
  1. one free tool that should let you open both xliff files:       OLT XLIFF Translation Editor 1.2.6
https://open-language-tools.dev.java.net/servlets/ProjectDocumentView?documentID=40324&showInfo=true
Try this tool and see if this would help you have a better view to compare the xliff files and facilitate the files.
  2. Or use a Translation Memory software: this will enable to identify the modified or non translated segments by creating a Translation Memory from your original translated xliff.
Victor

Similar Messages

  • Localization - Automated Screen Captures?

    Hi RHelpers,
    I'm wondering how many of you localize your projects, and if you do, do you use or know of any tools to automate the screen capture process? Our RH projects contain thousands of images of our UI in them and we simply can't keep up with our standard process of getting the localized .htms back from localization and then trying to get screen captures on the backend. We support 15 non-English languages and will likely add more. There's just no way to keep up without such a tool. Just wondering what you all use or if your translators take care of the images along with the text.
    Thanks,
    Jared
    RH 7.0.3
    Win 7 - 64 Bit
    HTMl Help (.chm) Output

    I have since recalled the tool I was thinking of was an authoring tool and the problem I had when I looked at it was I couldn't write the topics the way I wanted and I couldn't use it as a tool to extract the images. I might have used it just for that purpose.
    Take a look at http://www.indoition.com and download the PDF there. It lists lots of tools and may you will find something in that.
    If you do find something that works for you, don't forget to post back here.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to localize LiveCycle Form in different languages ?

    Dear All,
    I want to localize the captions of the fields in PDF Form developed using Adobe LiveCycle Designer 7.1.
    In order to do that, I figured out that have to prepare XML Data Source of all Captions and related text in the target language.
    The languages are English, Arabic and French. For each Language, there must be one XML File which will be the Data Source of the required captions, and the captions on the form will be bound to that XML Data Source.
    I need to find automated way (programmatic or any other way) to generate the XML in a special format using input for a Table in any Database, say MS Access/SQL, as follows:
    I have input table of Captions in all languages that looks like the following (see the Excel Sheet below for a sample input table):
    http://spreadsheets.google.com/pub?key=pDk9OsF0emb5zxEhSunL3UQ
    Note: I am sorry as I do not know the French translation.
    Using the above input table, I need to generate 3 separate XML Text Files as follows:
    ---- For Arabic ---
    الاسم
    العنوان
    تاريخ الميلاد
    عدد افراد الاسرة
    الجنسية
    ---- For English ---
    Name
    Address
    Date of Birth
    Family Members
    Nationality
    ---- For French ---
    xxx
    yyy
    xxx
    xxx
    yyy
    The Input Table above is relatively huge, and it may change from time to time, therefore, it will be very important to generate XML using programmatic approach.
    I was able to use Dynamic Property Biding to bind the captions and the tool tip text to such XML Data Source, but I am still facing some difficulties.
    So, after generating the above XML Files one for each language, and do all the binding in LiveCycle Desinger, then before publishing the forms LIVE, I will create 3 copies of the PDF form, one for each language, and use Acrobat to import the Resource XML File (using Import Form Data Menu Option) of the related resource language file in the related PDF File, and save the PDF file.
    To summarize:
    ============
    1. Is this the correct approach for localization, or there is better one ?
    2. How I can generate the above XML in an easy way from the input table shown in the link above ?
    3. Can I control the direction the the PDF From so that I can make it From Right to Left for Arabic instead of from Left to Right ? I want to avoid making a new separate PDF specially form Arabic Language. The direction will affect the reading order and the Tab Order of the Fields and the location of the Objects on the Form.
    4. I figured out how to change the field alignment, caption location, and locale using javascript, but is there an easy way to change such properties using JavaScript for all fields in one go, because the form has 14 pages, and each page has many subforms which are nested up to 3 levels.
    Please help.
    Tarek.

    Thank you PDL,<br /><br />With regards to localizing the Text and Captions, I worked out a model using MS Excel Sheet, Pivot Table, and Linking to MS Access, and now I have a working model with semi-automated method to generate the XML Data Source of the Caption Text. I will post the details later.<br /><br />With regards to controlling the object layout during runtime, I started with this script on the Layout Ready Event of the "untitled subform" (page 1):<br /><br />var cnt = this.nodes.length;<br />for(var i = 0; i<cnt; i++) {<br /><br />  var elm = this.nodes.item(i);<br /><br />  if (elm.className == "field") {<br /><br />    switch (Language.rawValue)<br />    {<br />      case "&#8207;&#1593;&#1585;&#1576;&#1610;&#8206;": // Arabic<br />        elm.locale = "ar_SA";<br />        elm.para.hAlign = "right";<br />        elm.caption.placement = "right";<br />        elm.caption.para.hAlign = "right";<br />        break;<br />      case "English":<br />        elm.locale = "en_GB";<br />        elm.para.hAlign = "left";<br />        elm.caption.placement = "left";<br />        elm.caption.para.hAlign = "left";<br />        break;<br />    }<br />  }<br />//app.alert(elm.name + " -  " + elm.className);<br />}<br /><br />---<br /><br />The above scripted is only working on the first subform of and only for the fields in "this" subform.<br /><br />And also, this code you prvided:<br /><br />>var coll = xfa.resolveNodes("xfa.form.form1.#subform[*].TextBox[*]"); <br /><br />will not give me a collection of all Required Fields (such as Text Field and Radio Button Fields and all others).<br /><br />Perhaps the question should be:<br /><br />1. How to get a collection of (or be able to loop through) all required fields (all Labels and any field that has a caption, placement, and alignment) in all pages and all subforms and the nested subforms ???<br /><br />2. With regards to the direction issue, I was reading the Adobe_XML_Form_Object_Model_Reference.pdf for version 8.0 and it seems there is a Direction Tag for the subform but not sure if this will be useful for my requirement.<br /><br />Just to make sure you understand what I am talking about, imagine that I want to flip the PDF Layout horizontally, so that all objects that were located on the left side, should be relocated on the opposite side starting from the right. I was thinking I could use the x,y coordinates of the field object to relocate the position during runtime using javascript. But this requires some complex formula to calculate the relative dimension in relation to the parent object. Can you help me on this ?<br /><br />Any feedback will be appreciated.<br /><br />Tarek.

  • Automation testing Flash 8

    Our project is currently faced with having to build an
    automation testing framework for our flash games. We are currently
    using Flash 8, flex, and ActionScript 2, but we are wrapping
    everything for easy transition into Flash 9 and AS 3 as soon as it
    is released.
    The challenge with most industry products like QTP (mercury)
    is that they cannot programmatically interpret Flash UI elements.
    QTP 9.0 professes to have compatibility to Flex 2 through MXML, but
    we are not using MXML because it severely limits the productivity
    of our designers.
    Our flash framework is abstracting all interactive visual
    elements into a component library, so that all versions of a
    particular game are forced to use the same UI element IDs (for
    example: the spin button for a slots game). This allows us to
    implement automation testing scripts that refer to that button ID
    and not the bitmaps x,y location. So, for any variation of this
    game, including localization and branding, i have the luxury of
    using a single script to do my functional testing.
    Here is the problem however. What technology exists out there
    that will allow me to do this? The flash community is huge and i
    find it hard to believe that my research has yielded very little on
    this topic. I've come across things like MSs Active Accessibility,
    but i'm not convinced QTP 9.0 can implement this interface to read
    Flash UI elements. I have looked at an open source tool called
    AutoTestFlash, but i'm not confident it is robust enough.
    Anwyay, what are you guys using to test your flash
    applications? Have you automated these tests? Is it bitmap x,y
    based, or have you attempted to do what i am proposing above? If
    so, what technologies exist out there in the internet ether that
    can help us all save time in the QC grindstone? :)
    Thanks in advance,
    RabidFly

    You can try to test the movie using flash player 8, but more
    than likely code from flash 6 will not be parsed correctly using
    the flash player's engine. You can always uninstall flash player 8,
    install a lower flash player and then test it, but that seems like
    more trouble than what it might be worth.

  • Problem with XLIFF

    Hi All,
    I am new to ADF. I want to localize sample application using XLIFF. I wrote xlf file for each jsff file with the locale 'en_US'. It was working fine. Now i added another locale 'fr_CA'. It is always picking 'fr_CA' properties only. Below is the xlf file.
    <?xml version="1.0" encoding="UTF-8" ?>
    <xliff version="1.1" xmlns="urn:oasis:names:tc:xliff:document:1.1">
    <file original="this" source-language="en" datatype="xml" >
    <body>
    <trans-unit id="HELLO_WORLD">
    <source xml:lang="en">Hellow World</source>
    </trans-unit>
    </body>
    </file>
    <file original="this" source-language="fr" datatype="xml" >
    <body>
    <trans-unit id="HELLO_WORLD">
    <source xml:lang="fr">Novella Bonza</source>
    </trans-unit>
    </body>
    </file>
    </xliff>
    Can you please help me?
    Regards,
    Raghu.

    1. Ensure faces-config.xml is added with supported locales
    2. Create separate XLF file for each locale like properties file (abc.xlf, abc_de.xlf, abc_fr.xlf etc)
    3. Add adfBindings filter to Web.xml
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    Thanks Harsha for following up.
    HTH
    Raza
    Edited by: Raza Naqui on Nov 19, 2008 2:45 PM

  • What should i choose XLIFF or TL tables in database?

    Hello friends,
    What is the best way to translate codes what i have in database?
    For better understanding e.g: i have an item/product status code in my DB table:
    item, status_code, completed_flag
    Laptop, DELIVERY,N
    Assume In UI i have ViewObject called ItemsVO based on the table showed above.
    Assume In UI i'd like to translate DELIVERY code to "Delivering" (if it's not completed- still in delivery) or "Delivered".
    - There are two ways how i can translate it one is by creating translatable database table. This is easiest way i just join translatable table in my ItemsVO query and passing language code as bind parameter to this VO.
    - Another way - using bundle XLIFF file and then loading values from that. This is more complicated method. Because i need to create programmatic VO load translatable values inside from xliff file and then create additional logic to map values from programmatic VO to ItemsVO...or smthnig like that. But we are using xliff to translate UI titles, headings, name of columns... in our project and probably it would be good to store translation/localization in one place.
    what is the best practice for this situation? should i use xliff or just translate codes in db? what is your experience with this kind of situations?
    thanks in advance...

    sorry for confusing i meant translate = different languages per one code depend on what is current user locale.

  • Error Initializing localization module

    Hi,
    I logon to the server,I try to run automation scripts in cmd prompt.I type essmsh cmd,hit enter,I am getting " Error Initializing localization module".
    Then I added ARBOPATH and ESSBASESERVER path in system settings,still I am getting the same error.Can anyone help me out in resolving this.
    Swathi.

    Not at all, it's just much easier to help when you set out everything you're doing in detail like that. Thanks. :)
    You have successfully started MaxL and logged in to Essbase (so far so good!). But 'essmsh' is not a valid MaxL statement at all. 'essmsh' is the name of the MaxL executable itself. So I'm wondering why you are trying to enter 'essmsh'.
    I suspect that you are copying the syntax from an existing script, is that right? You probably have an existing .bat file that says something like this:essmsh MyMaxLScript.mshThe 'startMaxL.bat' just replaces the 'essmsh'. So to call the MaxL automation script MyMaxLScript.msh you really just need to do this:startMaxL.bat MyMaxLScript.mshIn short, just use 'startMaxL.bat' wherever you see 'essmsh'.
    Does that make sense?

  • Does OATS support recording for Globalization and Localization?

    We are looking to automate an EBS application that support 30 different languages and also has localization for some countries. Can we use OATS for regression automation? Does OATS support Globalization and Localization?

    If you are testing web application, It requires to have webdom.api imported and reference scriptservice in the class.
    import oracle.oats.scripting.modules.webdom.api.*;
    public class script extends IteratingVUserScript {
         @ScriptService oracle.oats.scripting.modules.webdom.api.WebDomService web;
    Then you can reference in your script depending on the component that you are trying to drag.  Below command will give you some idea on how to do it.
    web.element("{{obj.Reservation.LTB Rate Code Select}}").dragTo("{{obj.Reservation.LTB Trip Composer Est Grand Total}}");
    Thanks,
    Sri

  • FYI - Importing Translated XML (XLIFF) into Captivate 5

    I just want to make a point about an issue I've come across when translating a Captivate 5 project.
    On exporting to XML - which is actually a mono-lingual XLIFF format in reality, this is where the problems start.
    A true XLIFF file contains both source and target tags which is what happened to me when I used the file in a translation application.
    On importing back into Captivate I couldn't see my translated text - the file was converted to a true XLIFF format (source and target tags).
    So even thou the target had my translations Captivate was only concerned with the source tags!
    I had to write a batch script then to change around the source/target tag content.
    Hopefully this will help someone who's come across this in the future.
    I think Adobe should include a target tag identifier on importing so the user can choose the language they want to import back in.
    It just seems strange having translations inside a <source> </source> tag!
    My 2 cents anyway,
    Keith

    Hi everyone.
    Is there any update and support in Adobe Captivate 8 of  XLIFF 2.0 ?
    I have to write an interactive tutorial that I want to be able to offer for localization while updating the software itself.
    That means I am looking for language updates. To volunteer translators I don't want to offer full re-writes of PO or XML files.
    Please advice.

  • [svn:fx-trunk] 13323: Localization property file update 4.0.0.13320

    Revision: 13323
    Revision: 13323
    Author:   [email protected]
    Date:     2010-01-06 21:50:22 -0800 (Wed, 06 Jan 2010)
    Log Message:
    Localization property file update 4.0.0.13320
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/automation/bundles/da_DK/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/de_DE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/es_ES/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fi_FI/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fr_FR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/it_IT/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ja_JP/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ko_KR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nb_NO/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nl_NL/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/pt_BR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ru_RU/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/sv_SE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_CN/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_TW/automation.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/da_DK/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/es_ES/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/fi_FI/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/it_IT/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/ko_KR/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/nb_NO/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/nl_NL/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/pt_BR/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/sv_SE/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/components.properties
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_TW/components.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_da. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_de. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_es. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_fi. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_fr. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_it. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_ja. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_ko. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_nb. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_nl. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_pt. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_ru. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_sv. properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_zh_ CN.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException_zh_ TW.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_da.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_de.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_es.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_fi.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_fr.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_it.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_ja.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_ko.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_nb.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_nl.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_pt.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_ru.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_sv.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_zh_CN.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_zh_TW.properties

  • [svn:fx-trunk] 13286: Localization property file update 4.0.0.13283

    Revision: 13286
    Revision: 13286
    Author:   [email protected]
    Date:     2010-01-05 12:58:42 -0800 (Tue, 05 Jan 2010)
    Log Message:
    Localization property file update 4.0.0.13283
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/automation/bundles/da_DK/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/de_DE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/es_ES/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fi_FI/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fr_FR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/it_IT/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ja_JP/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ko_KR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nb_NO/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nl_NL/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/pt_BR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ru_RU/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/sv_SE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_CN/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_TW/automation.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/olap.properties

  • [svn:fx-trunk] 13686: Localization updates from change 266140

    Revision: 13686
    Revision: 13686
    Author:   [email protected]
    Date:     2010-01-21 07:06:48 -0800 (Thu, 21 Jan 2010)
    Log Message:
    Localization updates from change 266140
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.dividedBoxC lasses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.channels.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.management.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.channels.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.management.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.messaging.channels.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.messaging.management.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.channels.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.management.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.channels.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.management.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.utils.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/fl.video.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/fl.video.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/fl.video.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/fl.video.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/fl.video.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.compos e.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.contai ner.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.conver sion.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.edit.x ml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.elemen ts.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.events .xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.factor y.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.format s.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.operat ions.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.utils. xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.textLayout.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/flashx.undo.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.compos e.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.contai ner.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.conver sion.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.edit.x ml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.elemen ts.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.events .xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.factor y.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.format s.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.operat ions.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.utils. xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.textLayout.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/flashx.undo.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.compos e.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.contai ner.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.conver sion.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.edit.x ml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.elemen ts.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.events .xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.factor y.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.format s.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.operat ions.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.utils. xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.textLayout.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/flashx.undo.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.compos e.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.contai ner.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.conver sion.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.edit.x ml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.elemen ts.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.events .xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.factor y.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.format s.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.operat ions.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.utils. xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.textLayout.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/flashx.undo.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.compos e.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.contai ner.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.conver sion.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.edit.x ml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.elemen ts.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.events .xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.factor y.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.format s.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.operat ions.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.utils. xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.textLayout.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/flashx.undo.xml
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/zh_CN/docs/packages.dita

  • [svn:fx-trunk] 12329: Localization updates from change 260982

    Revision: 12329
    Revision: 12329
    Author:   [email protected]
    Date:     2009-12-01 11:13:12 -0800 (Tue, 01 Dec 2009)
    Log Message:
    Localization updates from change 260982
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.dividedBoxC lasses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.dividedBoxC lasses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.dividedBoxC lasses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.dividedBoxC lasses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.dividedBoxC lasses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.scrollClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.sliderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.textClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.treeClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.videoClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.messages.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.remoting.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.soap.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.messages.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.remoting.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.soap.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.messaging.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.soap.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.soap.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.messages.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.remoting.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.soap.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/docs/packages.dita
    Added Paths:
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.components.windo wClasses.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.skins.spark.wind owChrome.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/spark.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.dataGridClass es.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.menuClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/air.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/air.update.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/air.update.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.errors.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.external.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.media.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.net.drm.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.printing.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.profiler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.security.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/de_DE/docs/flash.xml.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/air.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/air.update.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/air.update.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.errors.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.external.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.media.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.net.drm.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.printing.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.profiler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.security.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/fr_FR/docs/flash.xml.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/air.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/air.update.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/air.update.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.errors.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.external.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.media.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.net.drm.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.printing.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.profiler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.security.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ja_JP/docs/flash.xml.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/air.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/air.update.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/air.update.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.errors.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.external.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.media.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.net.drm.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.printing.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.profiler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.security.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/ru_RU/docs/flash.xml.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/__Global__.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/air.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/air.update.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/air.update.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.accessibility.xm l
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.data.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.desktop.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.display.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.errors.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.events.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.external.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.filesystem.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.filters.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.geom.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.html.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.media.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.net.drm.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.net.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.printing.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.profiler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.sampler.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.security.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.system.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.text.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.ui.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.utils.xml
        flex/sdk/trunk/frameworks/projects/playerglobal/bundles/zh_CN/docs/flash.xml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.channels.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.config.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.messages.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.messaging.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.netmon.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.events.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.http.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.remoting.mxml.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.remoting.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.soap.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/rpc/bundles/ru_RU/docs/mx.rpc.xml.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/de_DE/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/fr_FR/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ja_JP/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/ru_RU/docs/spark.utils.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/flash.text.engine.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.dataGridClasses.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.accessibility.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.components.mediaClasses .xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.components.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.core.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.animation.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.interpolation.x ml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.effects.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.events.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.filters.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.layouts.supportClasses. xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.layouts.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.primitives.supportClass es.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.primitives.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.spark.mediaClasse s.fullScreen.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.spark.mediaClasse s.normal.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.skins.xml
        flex/sdk/trunk/frameworks/projects/spark/bundles/zh_CN/docs/spark.utils.xml

  • Translation Using Xliff file

    In the Translation Manager, we have a feature of using XLIFF file.
               Could anyone help me in understanding how this works..How this file could be used in Translation manager,
               Is there any automated way by which the Translation happens.
               For e.g, if i want my Universe descriptions to be changed to Dutch or German, is there any automated  manner by  which  the translation could be done , rather than using the Text Editor
    -Sherine

    Hi Joe,
    Is that so..That would be quite a cumbersome task to do...
    Any idea on how the XLIFF file  works along with Translation Manager...
    -Thanks,
    Sherine

  • Unable to capture startup and shutdown event of Photoshop in automation Plugin.

    Hi,
    I am creating an automation plugin and I want to register some events. I have seen listener plugin sample to register event in startup and unregister event in shutdown. I have used same code in my plugin but I am unable to capture the startup nad shutdown event of Photoshop. On clicking the menu item of my plugin the calls come inside the AutoPluginMain but during the startup or shutdown of plugin, the calls does not come inside the AutoPluginMain.
    I am unable to detect the cause of the problem. Can someone please giude me??
    Thanks in advance.

    Hi Tom,
    Thanks for the suggestion.
    Yes, I am working on Windows. As you suggested, I compiled .rc file but the compile option for .r file was disabled. After compiling the .rc file, I again rebuild the complete project and tested my build. But still I was not able to achive the desired result.
    Any other thing that I need to do to make it work?
    Thanks

Maybe you are looking for