Changes between Version 19 and Version 20 of Implementation_of_Internationalization_and_Localization


Ignore:
Timestamp:
Feb 18, 2024, 10:16:14 AM (3 months ago)
Author:
Alistair_Findlay
Comment:

Updated links, now providing https and avoiding redirects. tinygettext is now hosted on github. Fixed a typo "fo" fixed to "for.

Legend:

Unmodified
Added
Removed
Modified
  • Implementation_of_Internationalization_and_Localization

    v19 v20  
    55= Internationalization =
    66== Third-Party Libraries ==
    7 The internationalization and localization implementation fo the game relies on two libraries:
     7The internationalization and localization implementation for the game relies on two libraries:
    88
    9  * '''[http://site.icu-project.org/ ICU]''' is a common internationalization library that provides structures to handle locales, easily obtain the default system locale, handle date and number representations on each locale, or provide the localized names of locales to show them in a language combo box.
     9 * '''[https://icu.unicode.org/ ICU]''' is a common internationalization library that provides structures to handle locales, easily obtain the default system locale, handle date and number representations on each locale, or provide the localized names of locales to show them in a language combo box.
    1010
    11  * '''[http://code.google.com/p/tinygettext tinygettext]''' is a small library that we forked. This library provides the structures and methods that we use to load PO files in memory.
     11 * '''[https://github.com/tinygettext/tinygettext tinygettext]''' is a small library that we forked. This library provides the structures and methods that we use to load PO files in memory.
    1212
    1313== The Localization Singleton ==