aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dudle.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/dudle.rb b/dudle.rb
index 87b3fe9..2ac403d 100644
--- a/dudle.rb
+++ b/dudle.rb
@@ -33,7 +33,7 @@ require "locale"
if File.exists?("data.yaml") && !File.stat("data.yaml").directory?
$is_poll = true
- GetText.bindtextdomain("dudle", :path => Dir.pwd + "/../locale/")
+ GetText.bindtextdomain("dudle", :path => Dir.pwd.force_encoding("UTF-8") + "/../locale/")
else
$is_poll = false
GetText.bindtextdomain("dudle", :path => Dir.pwd + "/locale/")
@@ -126,7 +126,7 @@ class Dudle
@basedir = ".."
inittabs
@table = YAML::load(VCS.cat(self.revision, "data.yaml"))
- @urlsuffix = File.basename(File.expand_path("."))
+ @urlsuffix = File.basename(File.expand_path(".")).force_encoding("UTF-8")
@title = @table.name