2c0c055
Index: lib/alexandria/ui/icons.rb
2c0c055
===================================================================
2c0c055
--- lib/alexandria/ui/icons.rb	(revision 1087)
2c0c055
+++ lib/alexandria/ui/icons.rb	(working copy)
2c0c055
@@ -63,7 +63,9 @@
2c0c055
       def self.load_icon_images
2c0c055
         Dir.entries(ICONS_DIR).each do |file|
2c0c055
           next unless file =~ /\.png$/    # skip non '.png' files
2c0c055
-            name = File.basename(file, ".png").upcase
2c0c055
+            # Don't use upcase and use tr instead
2c0c055
+            # For example in Turkish the upper case of 'i' is still 'i'.
2c0c055
+            name = File.basename(file, ".png").tr('a-z', 'A-Z')
2c0c055
           const_set(name, Gdk::Pixbuf.new(File.join(ICONS_DIR, file)))
2c0c055
         end
2c0c055
       end