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
he: | |
devise: | |
sessions: | |
link: 'התחבר/י' | |
signed_in: 'התחברת בהצלחה' | |
signed_out: 'התנתקת בהצלחה.' | |
unauthenticated: 'עליך להתחבר או להרשם על-מנת להמשיך.' | |
unconfirmed: 'עליך לאשר את הרשמתך לפני שתוכל להמשיך.' | |
locked: 'חשבונך ננעל.' | |
invalid: 'כתובת אימייל או סיסמא שגויה.' |
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
it: | |
errors: | |
messages: | |
not_found: "non trovato" | |
already_confirmed: "è stato già confermato" | |
not_locked: "non era bloccato" | |
devise: | |
failure: | |
unauthenticated: "Devi accedere o registrarti per continuare." |
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
ja: | |
errors: | |
messages: | |
not_found: "は見つかりませんでした" | |
# not_found: "not found" | |
already_confirmed: "は既に登録済みです" | |
# already_confirmed: "was already confirmed" | |
not_locked: "は凍結されていません" | |
# not_locked: "was not locked" |
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
pt: | |
errors: | |
messages: | |
not_found: "não encontrado" | |
already_confirmed: "já foi confirmado" | |
not_locked: "não foi bloequeado" | |
devise: | |
failure: | |
unauthenticated: 'Para continuar, deve fazer login ou registrar-se.' |
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
es: | |
errors: | |
messages: | |
not_found: 'no encontrado' | |
already_confirmed: 'ya ha sido confirmada' | |
not_locked: 'no está bloqueada' | |
devise: | |
failure: | |
unauthenticated: 'Necesitas acceder a tu cuenta o registrarte antes de continuar.' |
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
sv: | |
errors: | |
messages: | |
not_found: "hittaes inte" | |
already_confirmed: "är redan bekräftad" | |
not_locked: "är inte låst" | |
devise: | |
failure: |
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
# Другие переводы на http://github.com/plataformatec/devise/wiki/I18n | |
ru: | |
errors: | |
messages: | |
not_found: "не найдена" | |
already_confirmed: "уже подтверждена. Пожалуйста, попробуйте войти в систему" | |
not_locked: "не заблокирована" | |
not_saved: | |
one: '%{resource}: сохранение не удалось из-за %{count} ошибки' |
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
from django.db import models | |
""" | |
INFORMATION ABOUT LOCATION AND HEALTH CENTERS AVAILABLE | |
""" | |
class HealthCenterCategory(models.Model): | |
name = models.CharField(max_length=250) # name of category | |
description = models.TextField() #description of this type of health center | |
def __unicode__(self): |
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
/* | |
* ATTENTION: | |
* | |
* This layout is now maintained in the `iosched' code.google.com project: | |
* | |
* http://code.google.com/p/iosched/source/browse/android/src/com/google/android/apps/iosched/ui/widget/DashboardLayout.java | |
* | |
*/ | |
/* |
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
# | |
group = core | |
admin-port = 13000 | |
smsbox-port = 13001 | |
admin-password = maw | |
status-password = maw | |
admin-allow-ip = "127.0.0.1" | |
log-level = 1 | |
box-allow-ip = "*.*.*.*" |