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
.cubo { | |
transform-style: preserve-3d; | |
perspective: 1px; | |
position: relative; | |
left: 50%; | |
top: 100px; | |
} | |
.face { | |
width: 100px; | |
height: 100px; |
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
.cubo { | |
transform-style: preserve-3d; | |
transform: rotateX(15deg) rotateY(15deg); | |
perspective: 1500px; | |
position: relative; | |
left: 50%; | |
top: 100px; | |
} | |
.face { | |
width: 200px; |
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
# encoding: UTF-8 | |
# pt-BR translations for Devise | |
pt-BR: | |
devise: | |
confirmations: | |
confirmed: "Sua conta foi confirmada com sucesso. Você está logado." | |
send_instructions: "Dentro de minutos, você receberá um e-mail com instruções para a confirmação da sua conta." | |
send_paranoid_instructions: "Se o seu endereço de e-mail estiver cadastrado, você receberá uma mensagem com instruções para confirmação da sua conta." | |
failure: | |
already_authenticated: "Você já está logado." |
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
# config/initializers/locale.rb | |
# Where the I18n library should search for translation files | |
I18n.load_path += Dir[Rails.root.join('lib', 'locale', '*.{rb,yml}')] | |
# Whitelist locales available for the application | |
I18n.available_locales = [:en, :pt] | |
# Set default locale to something other than :en | |
I18n.default_locale = :pt |