SlideShare a Scribd company logo
1 of 23
Go Global Fearless
Conquer the world by Internationalizing your product!
D V enkata Rajesh
Principal QA Engineer
Progress Software
© 2014 Progress Software Corporation. All rights reserved.2
Agenda
Introduction –I18N , L10N
All about I18N & L10N - Terminology!
Unicode – Deep dive into details
Localization testing tips
© 2014 Progress Software Corporation. All rights reserved.3
Why L10N?
TOP 10 Global Internet Websites have
81% of User base outside America
92% of the Top 25 Grossing iPhone apps in
China use Chinese names
80% of the Top 25 Grossing
Android apps in Japan use
Japanese names
41% of the total app global
revenue came from Asia, while
North America generated 31% and
Europe23%
72.4% of global consumers indicated
that they prefer to use their native
language when shopping online
Sources: KPCB, Common Sense Advisory, App Annie 2014
© 2014 Progress Software Corporation. All rights reserved.4
Localization with trending Mobile & Cloud era – Social media
© 2014 Progress Software Corporation. All rights reserved.5
I18N and L10N
 Internationalization is
a process of designing a
software application to
adapt to various
languages and regions
without any changes in
source
 Localization is the process
of customizing a software
application that was
originally designed for a
domestic market so that it
can be released in foreign
markets
© 2014 Progress Software Corporation. All rights reserved.6
Internationalization Process
© 2014 Progress Software Corporation. All rights reserved.7
Internationalization process
Source code
Hard coded contents
Resource bundles
Move contents to a
properties file
MessagesBundle_fr_FR.propertiesMessagesBundle_en_US.properties
© 2014 Progress Software Corporation. All rights reserved.8
Evolution
Character sets, Code pages, Encoding
© 2014 Progress Software Corporation. All rights reserved.9
11000011 10000000
ÀU+00C0
Process of text to encoding
© 2014 Progress Software Corporation. All rights reserved.10
Code Pages
IBM code
pages
ISO code
pages
Microsoft
code pages
Code pages Name
ISO 8859-1 Latin-1
ISO 8859-2 Latin-2
ISO 8859-3 Latin-3
ISO 8859-4 Latin-4
ISO 8859-5 Cyrillic
ISO 8859-6 Arabic
ISO 8859-7 Greek
ISO 8859-8 Hebrew
ISO 8859-9 Latin-5
ISO 8859-10 Latin-6
ISO 8859-11 Thai
ISO 8859-13 Latin-7
ISO 8859-14 Latin-8
ISO 8859-15 Latin-9
ISO 8859-16 Latin-10
Code pages Name
CP 1250 Latin 2
CP 1251 Cyrillic
CP 1252 Latin 1
CP 1253 Greek
CP 1254 Latin 5
CP 1255 Hebrew
CP 1256 Arabic
CP 1257 Baltic
CP 1258 Viet Nam
CP 874 Thai
Code pages Name
37 USA/Canada - CECP
256 International #1
259 Symbols, Set 7
273
Germany F.R./Austria -
CECP
274 Old Belgium Code Page
275 Brazil - CECP
276 Canada (French) - 94
850
Personal Computer -
Multilingual Page
278 Finland, Sweden - CECP
280 Italy - CECP
281 Japan (Latin) - CECP
282 Portugal - CECP
284 Spain/Latin America - CECP
285 United Kingdom - CECP
© 2014 Progress Software Corporation. All rights reserved.11
Common Encoding Problems
Tofu
hollow boxes
Mojibake
garbage characters
Question Marks
(conversion not supported)
© 2014 Progress Software Corporation. All rights reserved.12
Unicode
Deep dive into
Normalization , Compatibility, Replacement characters ..
© 2014 Progress Software Corporation. All rights reserved.13
Unicode - Encodes the world’s scripts
 Code space of up to 0x10FFFF
(about 1.1 million) characters
 Currently encodes 120,737
characters
 Currently allocated code points
264,256
 U+0041 <= hex notation
Plane
Allocated code
points
Assigned characters
0 BMP 65,392 55,181
1 SMP 14,000 11,833
2 SIP 53,424 53,386
3 TIP 16,672 799
14 SSP 368 337
15 PUA-A 65,536
16 PUA-B 65,536
Totals 264,256 120,737
© 2014 Progress Software Corporation. All rights reserved.14
Four Normalization Forms
 Form D
canonical decomposition
 Form C
canonical decomposition followed by
composition
 Form KD
Compatibility decomposition
 Form KC
Compatibility decomposition followed
by composition
ways to represent:
U+01FA
U+00C5 U+0301
U+00C1 U+030A
U+212B U+0301
U+0041 U+0301 U+030A
U+0041 U+030A U+0301
Ǻ
© 2014 Progress Software Corporation. All rights reserved.15
Unicode Encoding Forms
 UTF-32
• Uses 32-bit code units
• All characters are the same width
 UTF-16
• Uses 16-bit code units
• BMP characters use one 16-bit code unit
• Supplementary characters use two special 16-bit code units: a “surrogate pair”
 UTF-8
• Uses 8-bit code units (bytes!)
• It’s a multi-byte encoding!
• Characters use between 1 and 4 bytes
• ASCII is ASCII in UTF-8
© 2014 Progress Software Corporation. All rights reserved.16
Localization testing tips
© 2014 Progress Software Corporation. All rights reserved.17
Case study: A Website + 10 languages + 4 Browsers + 20 test cases
L
O
C
A
L
I
Z
A
T
I
o
N
L
1
0
N
T
E
S
T
I
N
G
© 2014 Progress Software Corporation. All rights reserved.18
Localization testing UI checks
Layout Hot keys Text Graphics
• Text truncation
• Control truncation
• Misalignment
• Overlapping
• Tabbing order
• Oversized dialogs
• Different layout in
general
• Duplicated hotkeys
• Missing hotkey
• Inappropriate hotkey
• Un-translated text
• Mistranslated text
• Unexpected text
• Inconsistent translation
• Technical inaccuracy
• Double space after full
stop
• Wrong alphabetical
order
• Wrong date/time
format
• Corrupt characters
• Missing graphics
• Different graphics
• Un-translated icons
© 2014 Progress Software Corporation. All rights reserved.19
Pseudo Localization testing
A way to evaluate a website or software product’s readiness for the localization process
 Considered a part of the internationalization testing process
1. Identify hard-coded strings that should be translatable
2. Find strings in the source files that shouldn’t be translated
3. Identify design and layout issues that will affect the
software or site when it is translated
© 2014 Progress Software Corporation. All rights reserved.20
Regional differences
© 2014 Progress Software Corporation. All rights reserved.21
More localization testing
Aspect Challenge
Limitation of screen size Character count and font of characters differ in various languages.
Direction
Some languages are written left to right, whereas others are
written right to left.
Spelling rules and upper and lower
case conversions Rules differ based on locale.
Regional Standards
Applications may have to be compatible with not only national
languages, but also the regional languages
Data Handling
Different data storages and processing mechanisms along with
different encoding/code pages.
Context and Special Characters
The translation of special characters needs to be handled carefully
as different characters may have different meanings in different
languages.
Collation And Sorting Sorting and collation rules differ in various languages.
© 2014 Progress Software Corporation. All rights reserved.22
Go Global Fearless(I18N & L10N)

More Related Content

Similar to Go Global Fearless(I18N & L10N)

Beyond English - Make Your Android App a Global Success
Beyond English - Make Your Android App a Global SuccessBeyond English - Make Your Android App a Global Success
Beyond English - Make Your Android App a Global Success
Motorola Mobility - MOTODEV
 
The inevitable unicode conversion project white paper by tikkana
The inevitable unicode conversion project  white paper  by tikkanaThe inevitable unicode conversion project  white paper  by tikkana
The inevitable unicode conversion project white paper by tikkana
tikkana
 
Yakaiah_Resume_9Yrs
Yakaiah_Resume_9YrsYakaiah_Resume_9Yrs
Yakaiah_Resume_9Yrs
Yakaiah S
 
Resume_TRUONGBAPHUONG
Resume_TRUONGBAPHUONGResume_TRUONGBAPHUONG
Resume_TRUONGBAPHUONG
Ba Phuong
 

Similar to Go Global Fearless(I18N & L10N) (20)

Beyond English - Make Your Android App a Global Success
Beyond English - Make Your Android App a Global SuccessBeyond English - Make Your Android App a Global Success
Beyond English - Make Your Android App a Global Success
 
Devoxx: Developing for the Rest of the World
Devoxx: Developing for the Rest of the WorldDevoxx: Developing for the Rest of the World
Devoxx: Developing for the Rest of the World
 
Compilation Of C/C++ program in Android
Compilation Of C/C++ program in AndroidCompilation Of C/C++ program in Android
Compilation Of C/C++ program in Android
 
COMPUTER LANGUAGES AND THERE DIFFERENCE
COMPUTER LANGUAGES AND THERE DIFFERENCE COMPUTER LANGUAGES AND THERE DIFFERENCE
COMPUTER LANGUAGES AND THERE DIFFERENCE
 
Yaovi_
Yaovi_Yaovi_
Yaovi_
 
Myanmar fonts & unicode
Myanmar fonts & unicodeMyanmar fonts & unicode
Myanmar fonts & unicode
 
The inevitable unicode conversion project white paper by tikkana
The inevitable unicode conversion project  white paper  by tikkanaThe inevitable unicode conversion project  white paper  by tikkana
The inevitable unicode conversion project white paper by tikkana
 
Unit Tests and Test Seams for abap Hamburg June 2017 presented
Unit Tests and Test Seams for abap Hamburg June 2017   presentedUnit Tests and Test Seams for abap Hamburg June 2017   presented
Unit Tests and Test Seams for abap Hamburg June 2017 presented
 
Mobile Development
Mobile DevelopmentMobile Development
Mobile Development
 
MyAppConverter DroidconUK 2014
MyAppConverter DroidconUK 2014MyAppConverter DroidconUK 2014
MyAppConverter DroidconUK 2014
 
Yakaiah_Resume_9Yrs
Yakaiah_Resume_9YrsYakaiah_Resume_9Yrs
Yakaiah_Resume_9Yrs
 
Symbian os
Symbian osSymbian os
Symbian os
 
Basecamp Startups Company Profile
Basecamp Startups Company ProfileBasecamp Startups Company Profile
Basecamp Startups Company Profile
 
Oracle ADF Architecture TV - Design - Designing for Internationalization
Oracle ADF Architecture TV - Design - Designing for InternationalizationOracle ADF Architecture TV - Design - Designing for Internationalization
Oracle ADF Architecture TV - Design - Designing for Internationalization
 
The 10 Commandments of Building Global Software
The 10 Commandments of Building Global SoftwareThe 10 Commandments of Building Global Software
The 10 Commandments of Building Global Software
 
The Java Carputer
The Java CarputerThe Java Carputer
The Java Carputer
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
Mobile application development platform
Mobile application development platformMobile application development platform
Mobile application development platform
 
A Research Study of Data Collection and Analysis of Semantics of Programming ...
A Research Study of Data Collection and Analysis of Semantics of Programming ...A Research Study of Data Collection and Analysis of Semantics of Programming ...
A Research Study of Data Collection and Analysis of Semantics of Programming ...
 
Resume_TRUONGBAPHUONG
Resume_TRUONGBAPHUONGResume_TRUONGBAPHUONG
Resume_TRUONGBAPHUONG
 

Recently uploaded

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
panagenda
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
Muhammad Subhan
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
FIDO Alliance
 

Recently uploaded (20)

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
ADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptx
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
Intro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptxIntro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptx
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cf
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
Generative AI Use Cases and Applications.pdf
Generative AI Use Cases and Applications.pdfGenerative AI Use Cases and Applications.pdf
Generative AI Use Cases and Applications.pdf
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties ReimaginedEasier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
 
Top 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTop 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development Companies
 
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
 
UiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overviewUiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overview
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!
 

Go Global Fearless(I18N & L10N)

  • 1. Go Global Fearless Conquer the world by Internationalizing your product! D V enkata Rajesh Principal QA Engineer Progress Software
  • 2. © 2014 Progress Software Corporation. All rights reserved.2 Agenda Introduction –I18N , L10N All about I18N & L10N - Terminology! Unicode – Deep dive into details Localization testing tips
  • 3. © 2014 Progress Software Corporation. All rights reserved.3 Why L10N? TOP 10 Global Internet Websites have 81% of User base outside America 92% of the Top 25 Grossing iPhone apps in China use Chinese names 80% of the Top 25 Grossing Android apps in Japan use Japanese names 41% of the total app global revenue came from Asia, while North America generated 31% and Europe23% 72.4% of global consumers indicated that they prefer to use their native language when shopping online Sources: KPCB, Common Sense Advisory, App Annie 2014
  • 4. © 2014 Progress Software Corporation. All rights reserved.4 Localization with trending Mobile & Cloud era – Social media
  • 5. © 2014 Progress Software Corporation. All rights reserved.5 I18N and L10N  Internationalization is a process of designing a software application to adapt to various languages and regions without any changes in source  Localization is the process of customizing a software application that was originally designed for a domestic market so that it can be released in foreign markets
  • 6. © 2014 Progress Software Corporation. All rights reserved.6 Internationalization Process
  • 7. © 2014 Progress Software Corporation. All rights reserved.7 Internationalization process Source code Hard coded contents Resource bundles Move contents to a properties file MessagesBundle_fr_FR.propertiesMessagesBundle_en_US.properties
  • 8. © 2014 Progress Software Corporation. All rights reserved.8 Evolution Character sets, Code pages, Encoding
  • 9. © 2014 Progress Software Corporation. All rights reserved.9 11000011 10000000 ÀU+00C0 Process of text to encoding
  • 10. © 2014 Progress Software Corporation. All rights reserved.10 Code Pages IBM code pages ISO code pages Microsoft code pages Code pages Name ISO 8859-1 Latin-1 ISO 8859-2 Latin-2 ISO 8859-3 Latin-3 ISO 8859-4 Latin-4 ISO 8859-5 Cyrillic ISO 8859-6 Arabic ISO 8859-7 Greek ISO 8859-8 Hebrew ISO 8859-9 Latin-5 ISO 8859-10 Latin-6 ISO 8859-11 Thai ISO 8859-13 Latin-7 ISO 8859-14 Latin-8 ISO 8859-15 Latin-9 ISO 8859-16 Latin-10 Code pages Name CP 1250 Latin 2 CP 1251 Cyrillic CP 1252 Latin 1 CP 1253 Greek CP 1254 Latin 5 CP 1255 Hebrew CP 1256 Arabic CP 1257 Baltic CP 1258 Viet Nam CP 874 Thai Code pages Name 37 USA/Canada - CECP 256 International #1 259 Symbols, Set 7 273 Germany F.R./Austria - CECP 274 Old Belgium Code Page 275 Brazil - CECP 276 Canada (French) - 94 850 Personal Computer - Multilingual Page 278 Finland, Sweden - CECP 280 Italy - CECP 281 Japan (Latin) - CECP 282 Portugal - CECP 284 Spain/Latin America - CECP 285 United Kingdom - CECP
  • 11. © 2014 Progress Software Corporation. All rights reserved.11 Common Encoding Problems Tofu hollow boxes Mojibake garbage characters Question Marks (conversion not supported)
  • 12. © 2014 Progress Software Corporation. All rights reserved.12 Unicode Deep dive into Normalization , Compatibility, Replacement characters ..
  • 13. © 2014 Progress Software Corporation. All rights reserved.13 Unicode - Encodes the world’s scripts  Code space of up to 0x10FFFF (about 1.1 million) characters  Currently encodes 120,737 characters  Currently allocated code points 264,256  U+0041 <= hex notation Plane Allocated code points Assigned characters 0 BMP 65,392 55,181 1 SMP 14,000 11,833 2 SIP 53,424 53,386 3 TIP 16,672 799 14 SSP 368 337 15 PUA-A 65,536 16 PUA-B 65,536 Totals 264,256 120,737
  • 14. © 2014 Progress Software Corporation. All rights reserved.14 Four Normalization Forms  Form D canonical decomposition  Form C canonical decomposition followed by composition  Form KD Compatibility decomposition  Form KC Compatibility decomposition followed by composition ways to represent: U+01FA U+00C5 U+0301 U+00C1 U+030A U+212B U+0301 U+0041 U+0301 U+030A U+0041 U+030A U+0301 Ǻ
  • 15. © 2014 Progress Software Corporation. All rights reserved.15 Unicode Encoding Forms  UTF-32 • Uses 32-bit code units • All characters are the same width  UTF-16 • Uses 16-bit code units • BMP characters use one 16-bit code unit • Supplementary characters use two special 16-bit code units: a “surrogate pair”  UTF-8 • Uses 8-bit code units (bytes!) • It’s a multi-byte encoding! • Characters use between 1 and 4 bytes • ASCII is ASCII in UTF-8
  • 16. © 2014 Progress Software Corporation. All rights reserved.16 Localization testing tips
  • 17. © 2014 Progress Software Corporation. All rights reserved.17 Case study: A Website + 10 languages + 4 Browsers + 20 test cases L O C A L I Z A T I o N L 1 0 N T E S T I N G
  • 18. © 2014 Progress Software Corporation. All rights reserved.18 Localization testing UI checks Layout Hot keys Text Graphics • Text truncation • Control truncation • Misalignment • Overlapping • Tabbing order • Oversized dialogs • Different layout in general • Duplicated hotkeys • Missing hotkey • Inappropriate hotkey • Un-translated text • Mistranslated text • Unexpected text • Inconsistent translation • Technical inaccuracy • Double space after full stop • Wrong alphabetical order • Wrong date/time format • Corrupt characters • Missing graphics • Different graphics • Un-translated icons
  • 19. © 2014 Progress Software Corporation. All rights reserved.19 Pseudo Localization testing A way to evaluate a website or software product’s readiness for the localization process  Considered a part of the internationalization testing process 1. Identify hard-coded strings that should be translatable 2. Find strings in the source files that shouldn’t be translated 3. Identify design and layout issues that will affect the software or site when it is translated
  • 20. © 2014 Progress Software Corporation. All rights reserved.20 Regional differences
  • 21. © 2014 Progress Software Corporation. All rights reserved.21 More localization testing Aspect Challenge Limitation of screen size Character count and font of characters differ in various languages. Direction Some languages are written left to right, whereas others are written right to left. Spelling rules and upper and lower case conversions Rules differ based on locale. Regional Standards Applications may have to be compatible with not only national languages, but also the regional languages Data Handling Different data storages and processing mechanisms along with different encoding/code pages. Context and Special Characters The translation of special characters needs to be handled carefully as different characters may have different meanings in different languages. Collation And Sorting Sorting and collation rules differ in various languages.
  • 22. © 2014 Progress Software Corporation. All rights reserved.22