air18n 0.1.23 → 0.1.24
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.
|
@@ -105,15 +105,15 @@ module Air18n
|
|
|
105
105
|
end
|
|
106
106
|
end
|
|
107
107
|
|
|
108
|
-
# In addition to basic colonial English, changes "Hi" to "G'
|
|
108
|
+
# In addition to basic colonial English, changes "Hi" to "G'day".
|
|
109
109
|
class AmericanToAustralian < AmericanToColonial
|
|
110
110
|
def initialize
|
|
111
111
|
super
|
|
112
|
-
@variants["hi"] = "G'
|
|
112
|
+
@variants["hi"] = "G'day"
|
|
113
113
|
end
|
|
114
114
|
end
|
|
115
115
|
|
|
116
|
-
# In addition to basic colonial English, changes "Hi" to "
|
|
116
|
+
# In addition to basic colonial English, changes "Hi" to "Kia ora".
|
|
117
117
|
class AmericanToKiwi < AmericanToColonial
|
|
118
118
|
def initialize
|
|
119
119
|
super
|
data/lib/air18n/version.rb
CHANGED
|
@@ -31,7 +31,7 @@ describe Air18n::PrimAndProper do
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
describe Air18n::AmericanToAustralian do
|
|
34
|
-
it "have a complete travel-related vocab list with G'
|
|
34
|
+
it "have a complete travel-related vocab list with G'day" do
|
|
35
35
|
@airpnp.guess(
|
|
36
36
|
"traveled realize flavor center learned practices airplane inquire specialties " +
|
|
37
37
|
"inquiry artifact program livable among spelled judgment defense fulfill spilled " +
|
|
@@ -39,12 +39,12 @@ describe Air18n::PrimAndProper do
|
|
|
39
39
|
:en, :"en-AU").should ==
|
|
40
40
|
"travelled realise flavour centre learnt practises aeroplane enquire specialities " +
|
|
41
41
|
"enquiry artefact programme liveable amongst spelt judgement defence fulfil spilt " +
|
|
42
|
-
"holiday apartment lift sofa voucher mobile G'
|
|
42
|
+
"holiday apartment lift sofa voucher mobile G'day bathroom"
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
describe Air18n::AmericanToKiwi do
|
|
47
|
-
it "have a complete travel-related vocab list with
|
|
47
|
+
it "have a complete travel-related vocab list with Kia ora" do
|
|
48
48
|
@airpnp.guess(
|
|
49
49
|
"traveled realize flavor center learned practices airplane inquire specialties " +
|
|
50
50
|
"inquiry artifact program livable among spelled judgment defense fulfill spilled " +
|