Class names are CamelCase
.
Methods and variables are snake_case
.
Methods with a ?
suffix will return a boolean.
border: no | |
license: MIT |
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
id: | |
devise: | |
confirmations: | |
confirmed: "Email anda telah berhasil dikonfirmasi." | |
send_instructions: "Anda akan menerima sebuah email dengan instruksi bagaimana cara untuk mengkonfirmasikan email anda." | |
send_paranoid_instructions: "Jika email anda telah terdaftar, anda akan menerima email dengan instruksi bagaimana cara untuk mengkonfirmasikan email anda." | |
failure: | |
already_authenticated: "Anda telah masuk." |
Stopping a Jekyll server with ctrl-z can cause issues as the process is not stopped fully. To kill it:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>
And next time, use crtl-c to stop.