This file contains hidden or 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
# We need to trigger click event for pagination links and search submit. Also, we need to post | |
# to the entry point when searching, as it will avoid handling the search in 2 different places. | |
# | |
# The submit click event resets the page hidden field. The link event will get the page | |
# number, updates the page hidden field and submits the form. | |
# routes.rb | |
get 'will_paginate', to: 'will_paginate#index' | |
post 'will_paginate', to: 'will_paginate#index' |
This file contains hidden or 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
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-2.1.1.js"></script> | |
</head> | |
<body> | |
<div id="timer"></div> | |
<script> |
This file contains hidden or 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
# Additional translations at https://github.com/heartcombo/devise/wiki/I18n | |
# European Portuguese translations for devise | |
# | |
# The translation does not respect the 1990 agreement | |
pt: | |
devise: | |
confirmations: | |
confirmed: "A sua conta foi confirmada com sucesso." | |
send_instructions: "Dentro de alguns minutos irá receber um e-mail com instruções para confirmar a sua conta." |
NewerOlder