i18n-timezones 1.4.8 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 09455f17f44787eb5c9d9f4b2c3d41bcff83638289b91de5d637b52404523a01
4
- data.tar.gz: 5c4d1cd722bb21d54cf5959579b90e6d09835c140d4c755fc985ed8c8544ca27
3
+ metadata.gz: 06133f4d27e3c111027c7200bef6e3c470a09edf965f01d4fa37403683379bc8
4
+ data.tar.gz: 9a98655dae1430625ffb0f58732c7ae665c3b82a1a840f76b20404195545d9d1
5
5
  SHA512:
6
- metadata.gz: 8f814240e356563f1cb04d959135657d6d3ef7106c49b0de971d1e6fdbbb60a487becb9bdbf536f5070800bf14ea42263823defb1eef4edaabae1e3a760ef541
7
- data.tar.gz: be941b496ac7fec72cfee4a48f8272465c2bf1d63426f606c4ff88ad0ba6d8430db33fe511d48ee8438cc9358f3c4a09af6d4ca29cd86f599e0085af83a1b6f6
6
+ metadata.gz: 6736312aea343a966e9f16ef14ac5a3d5b764b304c7fa4f69d52c84695737d4584af4189c5b2f09e98c88036740ea5454b7a3ecbef33b1529e7f75bde96a6fcb
7
+ data.tar.gz: d2a46ff12b65564c51308b78d3d9adb8ede564ebded2be574d931dd1d97a9ecee77a21929ecfe60442349c6c0a7728054c223e1d4e43be37ceb43f2faec65964
data/CHANGELOG.md ADDED
@@ -0,0 +1,98 @@
1
+ ## 2.0.0
2
+
3
+ ### Breaking Changes
4
+ - Minimum Ruby version is now 3.1 (was 2.3)
5
+ - Minimum Rails/ActiveSupport version is now 7.0 (was 5.1)
6
+ - Runtime dependency changed from `rails` to `activesupport` + `railties`
7
+ - License simplified to MIT only (removed GPL-3.0)
8
+
9
+ ### New Features
10
+ - Added English (en) locale file
11
+ - Added Albanian (sq) locale
12
+ - Added Basque (eu) locale
13
+ - Added Catalan (ca) locale
14
+ - Added Finnish (fi) locale
15
+ - Added Norwegian (no) locale
16
+ - Added Swedish (sv) locale
17
+ - Added Thai (th) locale
18
+ - Added Ukrainian (uk) locale
19
+ - Added Asuncion timezone to all locales
20
+
21
+ ### Bug Fixes
22
+ - Fixed Korean and Japanese pronunciation of Kyiv to Ukrainian style
23
+ - Fixed Spanish translations: Muscat (Mascate), Kolkata (Calcuta)
24
+ - Fixed spec_helper.rb redefining Ruby's built-in RbConfig module
25
+
26
+ ### Improvements
27
+ - Replaced Travis CI with GitHub Actions (Ruby 3.1-3.3 x Rails 7.0-8.0 matrix)
28
+ - Converted README from rdoc to Markdown
29
+ - Modernized Ruby syntax (frozen string literals, new hash syntax)
30
+ - Railtie now requires only `rails/railtie` instead of all of Rails
31
+ - Railtie loading is conditional on `defined?(Rails::Railtie)`
32
+ - Test suite no longer boots a full Rails application
33
+ - Removed Gemfile.lock from repository
34
+ - Fixed MIT-LICENSE copyright holder
35
+
36
+ ## 1.4.8
37
+
38
+ - Updating dependencies. Adding Puerto Rico.
39
+
40
+ ## 1.4.7
41
+
42
+ - Updating dependencies. Fixing Ulaanbaatar and Kyiv translation names, typo in Russian translation of "Solomon Is.", some zh-CN translations.
43
+
44
+ ## 1.3.7
45
+
46
+ - Adding Polish translation
47
+
48
+ ## 1.3.6
49
+
50
+ - Fix mistakes of translation in Japanese. add hebrew translation. Fix Buenos Aires name in Russian
51
+
52
+ ## 1.3.5
53
+
54
+ - Adding pt-BR
55
+
56
+ ## 1.3.4
57
+
58
+ - Added missing Russian Federation timezones. Russian name of "Central America" was fixed.
59
+
60
+ ## 1.3.3
61
+
62
+ - Fix ru translation for Paris
63
+
64
+ ## 1.3.2
65
+
66
+ - Adding zh-CN and updating de
67
+
68
+ ## 1.3.1
69
+
70
+ - Adding license to gemspec
71
+
72
+ ## 1.3
73
+
74
+ - Upgrading to Rails 4
75
+
76
+ ## 1.2.3
77
+
78
+ - Adding Arabic, Italian, Dutch, Portuguese, and Chinese (Traditional) locales
79
+
80
+ ## 1.2.2
81
+
82
+ - Adding Japansese locale
83
+
84
+ ## 1.2.1
85
+
86
+ - Fixing a German translation
87
+
88
+ ## 1.2
89
+
90
+ - Adding German locale
91
+
92
+ ## 0.1.1
93
+
94
+ - Adding Russian locale
95
+
96
+ ## 0.1.0
97
+
98
+ - Adding Korean locale
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2012 YOURNAME
1
+ Copyright 2012 Brian McQuay
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -13,7 +13,7 @@ included in all copies or substantial portions of the Software.
13
13
 
14
14
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
15
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ FITNESS FOR A PARTICULAR PURPOSE AND
17
17
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
18
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
19
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
data/README.md ADDED
@@ -0,0 +1,91 @@
1
+ # I18n Timezones
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/i18n-timezones.svg)](https://rubygems.org/gems/i18n-timezones)
4
+ [![CI](https://github.com/onomojo/i18n-timezones/actions/workflows/ci.yml/badge.svg)](https://github.com/onomojo/i18n-timezones/actions/workflows/ci.yml)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+
7
+ Provides timezone translations for Rails applications. Translates `ActiveSupport::TimeZone` names via I18n so that `time_zone_select` and similar helpers display localized timezone names.
8
+
9
+ ## Why This Gem?
10
+
11
+ As of Rails 8.x, **Rails does not provide native timezone translations**. The `ActiveSupport::TimeZone#to_s` method returns English timezone names regardless of the current locale. This gem fills that gap by overriding `to_s` to look up translations via `I18n.t`.
12
+
13
+ ## Requirements
14
+
15
+ - Ruby >= 3.1
16
+ - Rails >= 7.0 (or `activesupport` + `railties` >= 7.0)
17
+
18
+ ## Installation
19
+
20
+ Add to your Gemfile:
21
+
22
+ ```ruby
23
+ gem 'i18n-timezones'
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ Timezones are automatically translated to the current locale:
29
+
30
+ ```ruby
31
+ time_zone_select :user, :time_zone, ActiveSupport::TimeZone.us_zones,
32
+ default: "Pacific Time (US & Canada)"
33
+ ```
34
+
35
+ Or simply:
36
+
37
+ ```ruby
38
+ time_zone_select :user, :time_zone
39
+ ```
40
+
41
+ The `:default` value also gets translated to the current locale.
42
+
43
+ You can also use translations directly:
44
+
45
+ ```ruby
46
+ I18n.locale = :de
47
+ ActiveSupport::TimeZone["Tokyo"].to_s
48
+ # => "(GMT+09:00) Tokio"
49
+ ```
50
+
51
+ ## Supported Locales
52
+
53
+ Translations are provided for 24 locales:
54
+
55
+ ar, ca, de, en, es, eu, fi, fr, he, it, ja, ko, nl, no, pl, pt, pt-BR, ru, sq, sv, th, uk, zh-CN, zh-TW
56
+
57
+ ## Without Rails
58
+
59
+ If you're using ActiveSupport without Rails, load the locale files manually:
60
+
61
+ ```ruby
62
+ require "i18n"
63
+ require "active_support"
64
+ require "i18n_timezones/timezone"
65
+
66
+ I18n.load_path += Dir[File.join(Gem.loaded_specs["i18n-timezones"].full_gem_path, "rails/locale/*.yml")]
67
+ ```
68
+
69
+ ## Contributing
70
+
71
+ ### Adding a new locale
72
+
73
+ 1. Copy `rails/locale/en.yml` to `rails/locale/<locale>.yml`
74
+ 2. Translate all timezone names
75
+ 3. Run tests: `bundle exec rake spec`
76
+ 4. Submit a pull request
77
+
78
+ ### Running tests
79
+
80
+ ```bash
81
+ bundle install
82
+ bundle exec rake spec
83
+ ```
84
+
85
+ ## Known Limitations
86
+
87
+ - `TimeZone#to_s` is translated, but `TimeZone#name` intentionally returns the original English name. The English name is used as a lookup key for translations and must remain stable.
88
+
89
+ ## License
90
+
91
+ MIT
@@ -1,25 +1,28 @@
1
- require 'rails'
1
+ # frozen_string_literal: true
2
+
3
+ require "rails/railtie"
2
4
 
3
5
  module I18nTimezones
4
- class Railtie < ::Rails::Railtie #:nodoc:
5
- initializer 'i18n-timezones' do |app|
6
+ class Railtie < ::Rails::Railtie
7
+ initializer "i18n-timezones" do |app|
6
8
  I18nTimezones::Railtie.instance_eval do
7
- pattern = pattern_from app.config.i18n.available_locales
8
-
9
+ pattern = pattern_from(app.config.i18n.available_locales)
9
10
  add("rails/locale/#{pattern}.yml")
10
11
  end
11
12
  end
12
13
 
13
- protected
14
+ class << self
15
+ private
14
16
 
15
- def self.add(pattern)
16
- files = Dir[File.join(File.dirname(__FILE__), '../..', pattern)]
17
- I18n.load_path.concat(files)
18
- end
17
+ def add(pattern)
18
+ files = Dir[File.join(File.dirname(__FILE__), "../..", pattern)]
19
+ I18n.load_path.concat(files)
20
+ end
19
21
 
20
- def self.pattern_from(args)
21
- array = Array(args || [])
22
- array.blank? ? '*' : "{#{array.join ','}}"
22
+ def pattern_from(args)
23
+ array = Array(args || [])
24
+ array.empty? ? "*" : "{#{array.join(",")}}"
25
+ end
23
26
  end
24
27
  end
25
28
  end
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ActiveSupport
2
4
  class TimeZone
3
5
  def to_s
4
6
  offset = "(GMT#{formatted_offset})"
5
- translated_name = I18n.t(name, :scope => :timezones, :default => name, :separator => "\001")
6
- %(#{offset} #{translated_name})
7
+ translated_name = I18n.t(name, scope: :timezones, default: name, separator: "\001")
8
+ "#{offset} #{translated_name}"
7
9
  end
8
10
  end
9
- end
11
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module I18nTimezones
2
- VERSION = "1.4.8"
4
+ VERSION = "2.0.0"
3
5
  end
@@ -1,2 +1,4 @@
1
- require 'i18n_timezones/timezone'
2
- require 'i18n_timezones/railtie'
1
+ # frozen_string_literal: true
2
+
3
+ require "i18n_timezones/timezone"
4
+ require "i18n_timezones/railtie" if defined?(Rails::Railtie)
data/rails/locale/ar.yml CHANGED
@@ -22,6 +22,7 @@ ar:
22
22
  "Indiana (East)": "إنديانا (شرق)" # -05:00
23
23
  "Lima": "ليما" # -05:00
24
24
  "Quito": "كيتو" # -04:00
25
+ "Asuncion": "أسونسيون"
25
26
  "Caracas": "كراكاس" # -04:00
26
27
  "Atlantic Time (Canada)": "توقيت المحيط الأطلسي (كندا)" # -04:00
27
28
  "Georgetown": "جورج تاون" # -04:00
@@ -0,0 +1,154 @@
1
+ ca:
2
+ timezones:
3
+ "International Date Line West": "Línia de data internacional de l'oest"
4
+ "American Samoa": "Samoa Nord-americana"
5
+ "Midway Island": "Illa de midway"
6
+ "Hawaii": "Hawaii"
7
+ "Alaska": "Alaska"
8
+ "Pacific Time (US & Canada)": "Temps del Pacífic (EUA i Canadà)"
9
+ "Tijuana": "Tijuana"
10
+ "Arizona": "Arizona"
11
+ "Chihuahua": "Chihuahua"
12
+ "Mazatlan": "Mazatlán"
13
+ "Mountain Time (US & Canada)": "Temps de la muntanya (EUA i Canadà)"
14
+ "Central America": "Amèrica Central"
15
+ "Central Time (US & Canada)": "Hora estàndard del centre (EUA i Canadà)"
16
+ "Guadalajara": "Guadalajara"
17
+ "Mexico City": "Ciutat de Mèxic"
18
+ "Monterrey": "Monterrey"
19
+ "Saskatchewan": "Saskatchewan"
20
+ "Bogota": "Bogotà"
21
+ "Eastern Time (US & Canada)": "Temps Estàndard de l'est (EUA i Canadà)"
22
+ "Indiana (East)": "Indiana (Est)"
23
+ "Lima": "Lima"
24
+ "Quito": "Quito"
25
+ "Asuncion": "Asunció"
26
+ "Atlantic Time (Canada)": "Temps Estàndard de l'Atlàntic (Canadà)"
27
+ "Caracas": "Caracas"
28
+ "Georgetown": "Georgetown"
29
+ "La Paz": "La Paz"
30
+ "Puerto Rico": "Puerto Rico"
31
+ "Santiago": "Santiago de Xile"
32
+ "Newfoundland": "Terranova"
33
+ "Brasilia": "Brasília"
34
+ "Buenos Aires": "Buenos Aires"
35
+ "Montevideo": "Montevideo"
36
+ "Greenland": "Groenlàndia"
37
+ "Mid-Atlantic": "Atlàntic mitjà"
38
+ "Azores": "Açores"
39
+ "Cape Verde Is.": "Cap Verd"
40
+ "Dublin": "Dublín"
41
+ "Edinburgh": "Edimburg"
42
+ "Lisbon": "Lisboa"
43
+ "London": "Londres"
44
+ "Casablanca": "Casablanca"
45
+ "Monrovia": "Monròvia"
46
+ "UTC": "UTC"
47
+ "Amsterdam": "Amsterdam"
48
+ "Belgrade": "Belgrad"
49
+ "Berlin": "Berlín"
50
+ "Bern": "Berna"
51
+ "Bratislava": "Bratislava"
52
+ "Brussels": "Brusseŀles"
53
+ "Budapest": "Budapest"
54
+ "Copenhagen": "Copenhaguen"
55
+ "Ljubljana": "Ljubljana"
56
+ "Madrid": "Madrid"
57
+ "Paris": "París"
58
+ "Prague": "Praga"
59
+ "Rome": "Roma"
60
+ "Sarajevo": "Sarajevo"
61
+ "Skopje": "Skopje"
62
+ "Stockholm": "Estocolm"
63
+ "Vienna": "Viena"
64
+ "Warsaw": "Varsòvia"
65
+ "West Central Africa": "Centre-Oest d'Àfrica"
66
+ "Zagreb": "Zagreb"
67
+ "Zurich": "Zuric"
68
+ "Athens": "Atenes"
69
+ "Bucharest": "Bucarest"
70
+ "Cairo": "El Caire"
71
+ "Harare": "Harare"
72
+ "Helsinki": "Hèlsinki"
73
+ "Istanbul": "Istanbul"
74
+ "Jerusalem": "Jerusalem"
75
+ "Kaliningrad": "Kaliningrad"
76
+ "Kyiv": "Kíev"
77
+ "Pretoria": "Pretòria"
78
+ "Riga": "Riga"
79
+ "Sofia": "Sofia"
80
+ "Tallinn": "Tallinn"
81
+ "Vilnius": "Vílnius"
82
+ "Baghdad": "Bagdad"
83
+ "Kuwait": "Kuwait"
84
+ "Minsk": "Minsk"
85
+ "Moscow": "Moscou"
86
+ "Nairobi": "Nairobi"
87
+ "Riyadh": "Al-Riyad"
88
+ "St. Petersburg": "Sant Petersburg"
89
+ "Volgograd": "Volgograd"
90
+ "Tehran": "Teheran"
91
+ "Abu Dhabi": "Abu Dhabi"
92
+ "Baku": "Bakú"
93
+ "Muscat": "Masqat"
94
+ "Samara": "Samara"
95
+ "Tbilisi": "Tbilissi"
96
+ "Yerevan": "Erevan"
97
+ "Kabul": "Kabul"
98
+ "Ekaterinburg": "Ekaterinburg"
99
+ "Islamabad": "Islamabad"
100
+ "Karachi": "Karachi"
101
+ "Tashkent": "Taixkent"
102
+ "Chennai": "Chennai"
103
+ "Kolkata": "Calcuta"
104
+ "Mumbai": "Bombai"
105
+ "New Delhi": "Nova Delhi"
106
+ "Sri Jayawardenepura": "Sri Jayewardenepura"
107
+ "Kathmandu": "Katmandú"
108
+ "Almaty": "Almati"
109
+ "Astana": "Astanà"
110
+ "Dhaka": "Dhaka"
111
+ "Urumqi": "Ürümqi"
112
+ "Rangoon": "Yangon"
113
+ "Bangkok": "Bangkok"
114
+ "Hanoi": "Hanoi"
115
+ "Jakarta": "Jakarta"
116
+ "Krasnoyarsk": "Krasnoiarsk"
117
+ "Novosibirsk": "Novossibirsk"
118
+ "Beijing": "Pequín"
119
+ "Chongqing": "Txungking"
120
+ "Hong Kong": "Hong Kong"
121
+ "Irkutsk": "Irkutsk"
122
+ "Kuala Lumpur": "Kuala Lumpur"
123
+ "Perth": "Perth"
124
+ "Singapore": "Singapur"
125
+ "Taipei": "Taipei"
126
+ "Ulaanbaatar": "Ulan Bator"
127
+ "Osaka": "Osaka"
128
+ "Sapporo": "Sapporo"
129
+ "Seoul": "Seül"
130
+ "Tokyo": "Tòquio"
131
+ "Yakutsk": "Iakutsk"
132
+ "Adelaide": "Adelaida"
133
+ "Darwin": "Darwin"
134
+ "Brisbane": "Brisbane"
135
+ "Canberra": "Canberra"
136
+ "Guam": "Guam"
137
+ "Hobart": "Hobart"
138
+ "Melbourne": "Melbourne"
139
+ "Port Moresby": "Port Moresby"
140
+ "Sydney": "Sydney"
141
+ "Vladivostok": "Vladivostok"
142
+ "Magadan": "Magadan"
143
+ "New Caledonia": "Nova Caledònia"
144
+ "Solomon Is.": "Illes Salomó"
145
+ "Srednekolymsk": "Srednekolimsk"
146
+ "Auckland": "Auckland"
147
+ "Fiji": "Fiji"
148
+ "Kamchatka": "Kamtxatka"
149
+ "Marshall Is.": "Illes Marshall"
150
+ "Wellington": "Wellington"
151
+ "Chatham Is.": "Ille Chatham"
152
+ "Nuku'alofa": "Nuku'alofa"
153
+ "Samoa": "Samoa"
154
+ "Tokelau Is.": "Ille Tokelau"
data/rails/locale/de.yml CHANGED
@@ -22,6 +22,7 @@ de:
22
22
  "Indiana (East)": "Indiana (Ost)" # -05:00
23
23
  "Lima": "Lima" # -05:00
24
24
  "Quito": "Quito" # -05:00
25
+ "Asuncion": "Asunción"
25
26
  "Caracas": "Caracas" # -04:30
26
27
  "Atlantic Time (Canada)": "Atlantic Time (Kanada)" # -04:00
27
28
  "Georgetown": "Georgetown" # -04:00
@@ -0,0 +1,154 @@
1
+ en:
2
+ timezones:
3
+ "International Date Line West": "International Date Line West"
4
+ "American Samoa": "American Samoa"
5
+ "Midway Island": "Midway Island"
6
+ "Hawaii": "Hawaii"
7
+ "Alaska": "Alaska"
8
+ "Pacific Time (US & Canada)": "Pacific Time (US & Canada)"
9
+ "Tijuana": "Tijuana"
10
+ "Arizona": "Arizona"
11
+ "Mazatlan": "Mazatlan"
12
+ "Mountain Time (US & Canada)": "Mountain Time (US & Canada)"
13
+ "Central America": "Central America"
14
+ "Central Time (US & Canada)": "Central Time (US & Canada)"
15
+ "Chihuahua": "Chihuahua"
16
+ "Guadalajara": "Guadalajara"
17
+ "Mexico City": "Mexico City"
18
+ "Monterrey": "Monterrey"
19
+ "Saskatchewan": "Saskatchewan"
20
+ "Bogota": "Bogota"
21
+ "Eastern Time (US & Canada)": "Eastern Time (US & Canada)"
22
+ "Indiana (East)": "Indiana (East)"
23
+ "Lima": "Lima"
24
+ "Quito": "Quito"
25
+ "Asuncion": "Asuncion"
26
+ "Atlantic Time (Canada)": "Atlantic Time (Canada)"
27
+ "Caracas": "Caracas"
28
+ "Georgetown": "Georgetown"
29
+ "La Paz": "La Paz"
30
+ "Puerto Rico": "Puerto Rico"
31
+ "Santiago": "Santiago"
32
+ "Newfoundland": "Newfoundland"
33
+ "Brasilia": "Brasilia"
34
+ "Buenos Aires": "Buenos Aires"
35
+ "Montevideo": "Montevideo"
36
+ "Greenland": "Greenland"
37
+ "Mid-Atlantic": "Mid-Atlantic"
38
+ "Azores": "Azores"
39
+ "Cape Verde Is.": "Cape Verde Is."
40
+ "Edinburgh": "Edinburgh"
41
+ "Lisbon": "Lisbon"
42
+ "London": "London"
43
+ "Monrovia": "Monrovia"
44
+ "UTC": "UTC"
45
+ "Amsterdam": "Amsterdam"
46
+ "Belgrade": "Belgrade"
47
+ "Berlin": "Berlin"
48
+ "Bern": "Bern"
49
+ "Bratislava": "Bratislava"
50
+ "Brussels": "Brussels"
51
+ "Budapest": "Budapest"
52
+ "Casablanca": "Casablanca"
53
+ "Copenhagen": "Copenhagen"
54
+ "Dublin": "Dublin"
55
+ "Ljubljana": "Ljubljana"
56
+ "Madrid": "Madrid"
57
+ "Paris": "Paris"
58
+ "Prague": "Prague"
59
+ "Rome": "Rome"
60
+ "Sarajevo": "Sarajevo"
61
+ "Skopje": "Skopje"
62
+ "Stockholm": "Stockholm"
63
+ "Vienna": "Vienna"
64
+ "Warsaw": "Warsaw"
65
+ "West Central Africa": "West Central Africa"
66
+ "Zagreb": "Zagreb"
67
+ "Zurich": "Zurich"
68
+ "Athens": "Athens"
69
+ "Bucharest": "Bucharest"
70
+ "Cairo": "Cairo"
71
+ "Harare": "Harare"
72
+ "Helsinki": "Helsinki"
73
+ "Jerusalem": "Jerusalem"
74
+ "Kaliningrad": "Kaliningrad"
75
+ "Kyiv": "Kyiv"
76
+ "Pretoria": "Pretoria"
77
+ "Riga": "Riga"
78
+ "Sofia": "Sofia"
79
+ "Tallinn": "Tallinn"
80
+ "Vilnius": "Vilnius"
81
+ "Baghdad": "Baghdad"
82
+ "Istanbul": "Istanbul"
83
+ "Kuwait": "Kuwait"
84
+ "Minsk": "Minsk"
85
+ "Moscow": "Moscow"
86
+ "Nairobi": "Nairobi"
87
+ "Riyadh": "Riyadh"
88
+ "St. Petersburg": "St. Petersburg"
89
+ "Volgograd": "Volgograd"
90
+ "Tehran": "Tehran"
91
+ "Abu Dhabi": "Abu Dhabi"
92
+ "Baku": "Baku"
93
+ "Muscat": "Muscat"
94
+ "Samara": "Samara"
95
+ "Tbilisi": "Tbilisi"
96
+ "Yerevan": "Yerevan"
97
+ "Kabul": "Kabul"
98
+ "Ekaterinburg": "Ekaterinburg"
99
+ "Islamabad": "Islamabad"
100
+ "Karachi": "Karachi"
101
+ "Tashkent": "Tashkent"
102
+ "Chennai": "Chennai"
103
+ "Kolkata": "Kolkata"
104
+ "Mumbai": "Mumbai"
105
+ "New Delhi": "New Delhi"
106
+ "Sri Jayawardenepura": "Sri Jayawardenepura"
107
+ "Kathmandu": "Kathmandu"
108
+ "Almaty": "Almaty"
109
+ "Astana": "Astana"
110
+ "Dhaka": "Dhaka"
111
+ "Urumqi": "Urumqi"
112
+ "Rangoon": "Rangoon"
113
+ "Bangkok": "Bangkok"
114
+ "Hanoi": "Hanoi"
115
+ "Jakarta": "Jakarta"
116
+ "Krasnoyarsk": "Krasnoyarsk"
117
+ "Novosibirsk": "Novosibirsk"
118
+ "Beijing": "Beijing"
119
+ "Chongqing": "Chongqing"
120
+ "Hong Kong": "Hong Kong"
121
+ "Irkutsk": "Irkutsk"
122
+ "Kuala Lumpur": "Kuala Lumpur"
123
+ "Perth": "Perth"
124
+ "Singapore": "Singapore"
125
+ "Taipei": "Taipei"
126
+ "Ulaanbaatar": "Ulaanbaatar"
127
+ "Osaka": "Osaka"
128
+ "Sapporo": "Sapporo"
129
+ "Seoul": "Seoul"
130
+ "Tokyo": "Tokyo"
131
+ "Yakutsk": "Yakutsk"
132
+ "Adelaide": "Adelaide"
133
+ "Darwin": "Darwin"
134
+ "Brisbane": "Brisbane"
135
+ "Canberra": "Canberra"
136
+ "Guam": "Guam"
137
+ "Hobart": "Hobart"
138
+ "Melbourne": "Melbourne"
139
+ "Port Moresby": "Port Moresby"
140
+ "Sydney": "Sydney"
141
+ "Vladivostok": "Vladivostok"
142
+ "Magadan": "Magadan"
143
+ "New Caledonia": "New Caledonia"
144
+ "Solomon Is.": "Solomon Is."
145
+ "Srednekolymsk": "Srednekolymsk"
146
+ "Auckland": "Auckland"
147
+ "Fiji": "Fiji"
148
+ "Kamchatka": "Kamchatka"
149
+ "Marshall Is.": "Marshall Is."
150
+ "Wellington": "Wellington"
151
+ "Chatham Is.": "Chatham Is."
152
+ "Nuku'alofa": "Nuku'alofa"
153
+ "Samoa": "Samoa"
154
+ "Tokelau Is.": "Tokelau Is."
data/rails/locale/es.yml CHANGED
@@ -22,6 +22,7 @@ es:
22
22
  "Bogota": "Bogotá"
23
23
  "Lima": "Lima"
24
24
  "Quito": "Quito"
25
+ "Asuncion": "Asunción"
25
26
  "Atlantic Time (Canada)": "Hora del Atlántico (Canadá)"
26
27
  "Caracas": "Caracas"
27
28
  "La Paz": "La Paz"
@@ -85,7 +86,7 @@ es:
85
86
  "Baghdad": "Bagdad"
86
87
  "Tehran": "Teherán"
87
88
  "Abu Dhabi": "Abu Dhabi"
88
- "Muscat": "Moscatel"
89
+ "Muscat": "Mascate"
89
90
  "Baku": "Bakú"
90
91
  "Tbilisi": "Tbilisi"
91
92
  "Yerevan": "Ereván"
@@ -95,7 +96,7 @@ es:
95
96
  "Karachi": "Karachi"
96
97
  "Tashkent": "Tashkent"
97
98
  "Chennai": "Chennai"
98
- "Kolkata": "Kolkata"
99
+ "Kolkata": "Calcuta"
99
100
  "Mumbai": "Mumbai"
100
101
  "New Delhi": "Nueva Delhi"
101
102
  "Kathmandu": "Katmandú"