This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ukrainian translations for Study.sx | |
# By Yuri Sidorov | |
uk: | |
locale_name: "Ukrainian" | |
locale_native_name: "Українська" | |
home: "головна" | |
admin: "адміністрування" | |
admin_page: "панель адміністрування" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
############################## | |
# > this is a name, right? no need to translate? | |
# Yes, @RobotInTheCloak is the name of our small team, but we try to translate it so people know it in their native language | |
robot_in_the_cloak: "Robot in the Cloak" | |
site_title: "#iOSonRailsConf 2013" | |
site_description: "Eine Konferenz für Ruby on Rails und iOS-Entwickler aus aller Welt, die im Frühjahr 2013 in Aluschta stattfinden wird." | |
site_description_short: "Ruby on Rails und iOS-Entwickler Konferenz." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
############################## | |
robot_in_the_cloak: "Робот в плаще" | |
site_title: "#iOSonRailsConf 2013" | |
site_description: "Алуштинская конференция для разработчиков Ruby on Rails и iOS со всего мира, которая пройдет весной 2013 года." | |
site_description_short: "Алуштинская конференция разработчиков Ruby on Rails и iOS 2013." | |
site_keywords: "ruby, rails, ios, разработчики, конференция, 2013, веб, вэб, сеть, mobile, iphone, ipad, ipod" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
############################## | |
robot_in_the_cloak: "Roboter im Regenmantel" | |
site_title: "#iOSonRailsConf 2013" | |
site_description: "Alushta Konferenz für Ruby on Rails und iOS-Entwickler aus aller Welt, die im Frühjahr 2013 stattfinden wird." | |
site_description_short: "Ruby on Rails und iOS-Entwickler Alushta Konferenz 2013." | |
site_keywords: "Ruby, Rails, ios, Entwickler, Konferenz, 2013, Web, Handy, iphone, ipad, ipod" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# S3 backend for paperclip plugin. Copy the file to: | |
# +config/initializers/+ directory | |
# | |
# Example configuration for CNAME bucket: | |
# | |
# has_attached_file :image, | |
# :s3_host_alias => "bucket.domain.tld", | |
# :s3_headers => { :cache_control => 10.years.from_now.httpdate }, | |
# :url => ":s3_alias_url", | |
# :styles => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String.class_eval do | |
def downcase | |
Unicode::downcase(self) | |
end | |
def downcase! | |
self.replace downcase | |
end | |
def upcase | |
Unicode::upcase(self) |