sample/keyfile.rb in glib2-3.3.0 vs sample/keyfile.rb in glib2-3.3.1
- old
+ new
@@ -7,26 +7,24 @@
$Id: keyfile.rb,v 1.2 2006/12/23 17:43:03 mutoh Exp $
=end
require 'glib2'
-$KCODE = "U"
-
#
# Create a GLib::KeyFile
#
kf = GLib::KeyFile.new
kf.set_value("Group 1", "value", "Hello World")
kf.set_comment("Group 1", nil, "This file is generated by keyfile.rb")
kf.set_string("Group 1", "string", "Hello World\nRuby-GNOME2")
-kf.set_locale_string("Group 1", "locale_string", "ja", "こんにちわ世界")
+kf.set_locale_string("Group 1", "locale_string", "ja", "こんにちは、世界")
kf.set_locale_string("Group 1", "locale_string", "en", "Hello World")
kf.set_boolean("Group 1", "boolean", true)
kf.set_integer("Group 1", "integer", 1)
kf.set_double("Group 1", "double", 1.0)
kf.set_string_list("Group 2", "string_list", ["foo", "bar"])
-kf.set_locale_string_list("Group 2", "locale_string_list", "ja", ["こんにちわ", "世界"])
-kf.set_locale_string_list("Group 2", "locale_string_list", "en", ["Hellow", "World"])
+kf.set_locale_string_list("Group 2", "locale_string_list", "ja", ["こんにちは", "世界"])
+kf.set_locale_string_list("Group 2", "locale_string_list", "en", ["Hello", "World"])
kf.set_boolean_list("Group 2", "boolean_list", [true, false])
kf.set_integer_list("Group 2", "integer_list", [1, 2, 3])
kf.set_double_list("Group 2", "double_list", [1.2, 1.3, 1.45])
kf.set_comment("Group 2", "string_list", "comment of string_list")