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
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
ar: | |
devise: | |
confirmations: | |
confirmed: "لقد تم تأكيد حسابك بنجاح، وتم تسجيل دخولك." | |
send_instructions: "ستصلك خلال دقائق رسالة على بريدك الإلكتروني تتضمن الخطوات اللازمة لتأكيد حسابك." | |
send_paranoid_instructions: "إذا كان بريدك الإلكتروني مسجلاً عندنا فستصل إليه خلال دقائق رسالة تتضمن الخطوات اللازمة لتأكيد حسابك." | |
failure: | |
already_authenticated: "تم تسجيل دخولك مسبقاً." |
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
/* Slightly customized version of https://gist.github.com/michaelv/11145168 | |
Usage: | |
1. Put the IDs you want to remove in the globalToBeRemoved array, and make sure | |
they are strings | |
2. Go to the group's members page (https://www.facebook.com/groups/GID/members/) | |
3. Paste the code (after adding the IDs to globalToBeRemoved) In the Javascript | |
console, and then wait until the work is done. It takes a reasonable time. | |
*/ | |
var globalToBeRemoved = ["10000152515xxxx","10000152515xxxx"]; |
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 skeleton for testing models including examples of validations, callbacks, | |
# scopes, instance & class methods, associations, and more. | |
# Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
# | |
# I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
# so if you have any, please share! | |
# | |
# @kyletcarlson | |
# | |
# This skeleton also assumes you're using the following gems: |