Skip to content

Instantly share code, notes, and snippets.

View newstler's full-sized avatar
🆓
Available for hire

Yuri Sidorov newstler

🆓
Available for hire
View GitHub Profile
# Ukrainian translations for Study.sx
# By Yuri Sidorov
uk:
locale_name: "Ukrainian"
locale_native_name: "Українська"
home: "головна"
admin: "адміністрування"
admin_page: "панель адміністрування"
@newstler
newstler / de.yml
Created October 23, 2012 08:12 — forked from polarblau/de.yml
#iOSonRailsConf 2013 web site translations
##############################
##############################
# > 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."
@newstler
newstler / ru.yml
Created October 21, 2012 10:58
#iOSonRailsConf 2013 web site translations, part 2
##############################
##############################
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"
@newstler
newstler / de.yml
Created October 18, 2012 07:39
#iOSonRailsConf 2013 web site translations
##############################
##############################
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"
@newstler
newstler / paperclip.rb
Created November 28, 2011 10:49
Paperclip patch file for European buckets with s3 gem, loacated at /lib/patches/paperclip.rb
# 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 => {
@newstler
newstler / unicode.rb
Created December 30, 2010 18:45
Expanding string class to work with Unicode. You'll also need gem 'unicode'.
String.class_eval do
def downcase
Unicode::downcase(self)
end
def downcase!
self.replace downcase
end
def upcase
Unicode::upcase(self)