Jump to content

Module:Flags/LocaleData: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Doh
Changing order of parameters in order to allow multiple keys e.g. GB UK pointing to a same flag value
Line 7: Line 7:
-- Examples for demo purposes. Remove them when you copy this module to your project.
-- Examples for demo purposes. Remove them when you copy this module to your project.


m.fullName["Afghanistan"] = "Afganistan"
m.fullName["Afganistan"] = "Afghanistan"
m.fullName["China"] = "中華人民共和國"
m.fullName["中華人民共和國"] = "China"
m.fullName["United Kingdom"] = "Regne Unit"
m.fullName["Regne Unit"] = "United Kingdom"
m.fullName["the Balearic Islands"] = "Illes Balears"
m.fullName["Illes Balears"] = "the Balearic Islands"
m.fullName["Pueblos Indígenas de Colombia"] = "Native Peoples of Colombia"


-- You don't want to touch this either!
-- You don't want to touch this either!

Revision as of 03:07, 25 June 2013

-- Instructions for translators can be found at the /doc page.

-- You don't want to touch this.  :)
local m = {}
m.fullName = {}

-- Examples for demo purposes. Remove them when you copy this module to your project.

m.fullName["Afganistan"] = "Afghanistan"
m.fullName["中華人民共和國"] = "China"
m.fullName["Regne Unit"] = "United Kingdom"
m.fullName["Illes Balears"] = "the Balearic Islands"
m.fullName["Pueblos Indígenas de Colombia"] = "Native Peoples of Colombia"

-- You don't want to touch this either!
return m