1 / 26

The Company….

The Company…. The Market Leader in Globalization Technology Pioneers in visual translation environments Solutions for major platforms & programming languages 24.9% owned by Corel Corporation Sales growing 60+% annually Currently 10,000+ customers worldwide Offices in Ireland and USA.

temple
Download Presentation

The Company….

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Company…. • The Market Leader in Globalization Technology • Pioneers in visual translation environments • Solutions for major platforms & programming languages • 24.9% owned by Corel Corporation • Sales growing 60+% annually • Currently 10,000+ customers worldwide • Offices in Ireland and USA

  2. Speed Consistency Reduced Costs Our Product… • Alchemy CATALYST delivers :- • Speed : Faster delivery of products to market • Consistency: Automate product revisions with glossary and translation memory tools • ReducedCosts : Reduced QA/Engineering and Translation times using integrated environment

  3. 60 mins Agenda • What is Microsoft .NET ? • NET Framework • NamesSpaces – System.Globalization • Launching a .NET Application • Develop a .NET Application • Multi-Lingual Application • Create code to switch UI language • Localizing a .NET Application • Creating different language Cultures • Re-integrating translations • QA

  4. = What is Microsoft .NET ? • Microsoft's platform for building, deploying, operating and integrating Web services • Rich XML, standard protocols • Cross-language development • Common language runtime • Common type system for all languages • Rich runtime environment • Rich class libraries (.NET Framework) • Windows Forms for rich, Win32 applications • Web application platform ASP.NET • Multi-lingual support • Rich API for internationalization features

  5. .NET Framework • .NET Framework • Globalization Namespaces • Culture-sensitive classes • Resource Model • ASP .NET • International Support • Localization Options • VisualStudio.NET • Unicode Development Environment • XML • Unified IDE • VB, C#, C++

  6. .NET Framework • 100% Unicode internally • Supports UTF-8 and UTF 16 encoding schemes • Consistent operations • Windows XP, Windows 2000, NT 4.0, 98, 95 etc. • Supports all NLS (Locale Support) • Collation Tables • String Comparisons • Language Processing (Casing etc.) • Currency, Date & Time etc.

  7. ServiceProcess Globalization Serialization Diagnostics Resources Collections Threading Reflection Security Text Net I/O Globalization Namespaces • Heart of the .NET Framework • System.Globalization • Core NLS services (Date/Time, Currency, String management etc.) • System.Resource • Multi-Lingual Resource Services • System.Text • Core character conversion Services. (To/From Unicode) System

  8. Locales System.Globalization • Culture-aware String Services • String Management • Casing, Comparison, Collation, • Segmentation, Enumeration etc. • Date/Time Formatting • dd/mm/yy, yy/mm/dd • Numeric Formatting • 12,000,000 and 12.000.000 • Calendar Support • Gregorian, non-gregorian • Our focus today :- • CultureInfo Class

  9. CultureInfo CurrentUICulture de-DE CurrentCulture de-AT de-CH System.Globalization.CultureInfo • Information about specific cultures (Locales) • CurrentCulture • String casing and comparison • Collation • Numeric Formatting • Culture Names • RFC 1766 Standard • <LanguageCode>-<RegionCode> Thread.CurrentThread.CurrentCulture = new CultureInfo(“es-ES");

  10. CultureInfo CurrentUICulture CurrentCulture System.Globalization.CultureInfo • Setting the UI of a .NET application • If not specified, .NET framework sets it for you ! • GetUserDefaultUILanguage • (ie UI Language of the OS) Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr"); System. Globalization

  11. CultureInfo CurrentUICulture CurrentCulture Language Locale Example 1 Launching .NET Applications Set UI Language to French, using Regional settings for France ! using System.Globalization; Thread.CurrentThread.CurrentCulture = new CultureInfo(“fr-FR");

  12. CultureInfo CurrentUICulture CurrentCulture Language Locale Launching .NET Applications Example 2 Set UI Language to French, using Regional settings for Canada ! using System.Globalization; Thread.CurrentThread.CurrentCulture = new CultureInfo(“fr-CA");

  13. CultureInfo CurrentUICulture CurrentCulture Locale Launching .NET Applications Example 3 Set UI Language to English, using Regional settings for Canada ! using System.Globalization; Thread.CurrentThread.CurrentCulture = new CultureInfo(“en-CA"); Language

  14. Application Directory Root .NET Application de CultureInfo de-AT CurrentUICulture de-DE CurrentCulture de-LU de-CH ja Launching .NET Applications • RFC 1766 Standard • Directory Structure • Filename(s)

  15. Application Directory Root .NET Application de CultureInfo de-AT CurrentUICulture de-DE CurrentCulture de-LU de-CH ja Launching .NET Applications Thread.CurrentThread.CurrentUICulture = new CultureInfo(“ja");

  16. Application Directory Root .NET Application de CultureInfo de-AT CurrentUICulture de-DE CurrentCulture de-LU de-CH ja Launching .NET Applications Thread.CurrentThread.CurrentUICulture = new CultureInfo(“de");

  17. Application Directory Root .NET Application de CultureInfo de-AT CurrentUICulture de-DE CurrentCulture de-LU de-CH ja Launching .NET Applications Thread.CurrentThread.CurrentCulture = new CultureInfo(“de-CH");

  18. Fallback mechanism used to locate appropriate resources Attempt to load de-CH resource assemble If not available, load de assembly If not available, load default application resources Else raise an exception! 3 2 CultureInfo CurrentUICulture CurrentCulture 1 Launching .NET Applications ResourceFallbackMechanism Root .NET Application de de-AT de-DE de-LU de-CH ja

  19. Resources are defined in XML documents RESX Files Filenames are significant Main1.resx Main1.fr.resx Main1.de.resx Satellite Assemblies For each language variant Building .NET Applications CompilationProcess .resx file .resource file .resource.dll file

  20. Resources are defined in XML documents RESX Files Filenames are significant Main1.resx Main1.fr.resx Main1.de.resx Satellite Assemblies For each language variant Main1.fr.resx Building .NET Applications RESXStructure Main1.resx

  21. Resources are defined in XML documents RESX Files Filenames are significant Main1.resx Main1.fr.resx Main1.de.resx Satellite Assemblies For each language variant Main1.fr.resx Main1.de.resx Building .NET Applications RESX Structure Main1.resx

  22. Resources are defined in XML documents RESX Files Filenames are significant Main1.resx Main1.fr.resx Main1.de.resx Satellite Assemblies For each language variant de fr Building .NET Applications Satellite Assemblies Main1.resx Main1.fr.resx Main1.de.resx Application Directory Root .NET Application

  23. Resources are defined in XML documents RESX Files Satellite Assemblies For each language variant Filenames are significant Main1.resx Main1.fr.resx Main1.de.resx Building .NET Applications Our First .NET Application • Simple .NET Application • En, Fr, De Languages • Menu, Dialog, Strings • Rich Text Editor

  24. Satellite Assemblies Translation Process Insertion Translation Extraction Application Rebuild Microsoft C# compiler de fr en Translating .NET Applications Application Directory Structure LrcApp.Exe Localization Process – .resx

  25. Questions

More Related