Add dashes to app name
This commit is contained in:
parent
5857f83cac
commit
14d9973c63
|
@ -1,11 +1,11 @@
|
|||
# Adopt a Hydrant [![Build Status](https://secure.travis-ci.org/codeforamerica/adopt-a-hydrant.png?branch=master)][travis] [![Dependency Status](https://gemnasium.com/codeforamerica/adopt-a-hydrant.png?travis)][gemnasium]
|
||||
# Adopt-a-Hydrant [![Build Status](https://secure.travis-ci.org/codeforamerica/adopt-a-hydrant.png?branch=master)][travis] [![Dependency Status](https://gemnasium.com/codeforamerica/adopt-a-hydrant.png?travis)][gemnasium]
|
||||
Claim responsibility for shoveling out a fire hydrant after it snows.
|
||||
|
||||
[travis]: http://travis-ci.org/codeforamerica/adopt-a-hydrant
|
||||
[gemnasium]: https://gemnasium.com/codeforamerica/adopt-a-hydrant
|
||||
|
||||
## <a name="screenshots"></a>Screenshot
|
||||
![Adopt a Hydrant](https://github.com/codeforamerica/adopt-a-hydrant/raw/master/screenshot.png "Adopt a Hydrant")
|
||||
![Adopt-a-Hydrant](https://github.com/codeforamerica/adopt-a-hydrant/raw/master/screenshot.png "Adopt-a-Hydrant")
|
||||
|
||||
## <a name="demo"></a>Demo
|
||||
You can see a running version of the application at
|
||||
|
|
|
@ -48,7 +48,7 @@ AdoptAThing::Application.configure do
|
|||
# Disable delivery errors, bad email addresses will be ignored
|
||||
config.action_mailer.raise_delivery_errors = true
|
||||
config.action_mailer.delivery_method = :smtp
|
||||
config.action_mailer.default_url_options = {:host => 'AdoptAThing.org'}
|
||||
config.action_mailer.default_url_options = {:host => 'adoptahydrant.org'}
|
||||
|
||||
# Enable threaded mode
|
||||
# config.threadsafe!
|
||||
|
|
|
@ -63,7 +63,7 @@ de:
|
|||
adopted: "{thing_name} wurde verabschiedet"
|
||||
byline: "von %{name}"
|
||||
edit_profile: "Ihr Profil bearbeiten"
|
||||
main: "Adoptieren Sie einen %{thing}"
|
||||
main: "Adopt-a-%{thing}"
|
||||
ofline: "der %{organization}"
|
||||
thank_you: "Vielen Dank für die Annahme dieser %{thing}!"
|
||||
tos: "Nutzungsbedingungen"
|
||||
|
|
|
@ -63,7 +63,7 @@ en:
|
|||
adopted: "%{thing_name} has been adopted"
|
||||
byline: "by %{name}"
|
||||
edit_profile: "Edit your Profile"
|
||||
main: "Adopt a %{thing}"
|
||||
main: "Adopt-a-%{thing}"
|
||||
ofline: "of %{organization}"
|
||||
thank_you: "Thank you for adopting this %{thing}!"
|
||||
tos: "Terms of Service"
|
||||
|
|
|
@ -63,7 +63,7 @@ es:
|
|||
adopted: "%{thing_name} ha sido adoptada."
|
||||
byline: "por %{name}"
|
||||
edit_profile: "Edita tu perfil"
|
||||
main: "Adoptar una %{thing}"
|
||||
main: "Adopt-a-%{thing}"
|
||||
ofline: "de %{organization}"
|
||||
thank_you: "Gracias por la adopción de esta %{thing}!"
|
||||
tos: "Términos de Servicio"
|
||||
|
|
|
@ -63,7 +63,7 @@ fr:
|
|||
adopted: "%{thing_name} a été adoptée"
|
||||
byline: "par %{name}"
|
||||
edit_profile: "Modifiez votre profil"
|
||||
main: "Adopter une %{thing}"
|
||||
main: "Adopt-a-%{thing}"
|
||||
ofline: "de %{organization}"
|
||||
thank_you: "Merci pour l'adoption de cette %{thing}!"
|
||||
tos: "Conditions d'utilisation"
|
||||
|
|
|
@ -63,7 +63,7 @@ pt:
|
|||
adopted: "%{thing_name} foi adotada"
|
||||
byline: "por %{name}"
|
||||
edit_profile: "Editar seu Perfil"
|
||||
main: "Adote um %{thing}"
|
||||
main: "Adotar-um-%{thing}"
|
||||
ofline: "do %{organization}"
|
||||
thank_you: "Obrigado por adotar este %{thing}!"
|
||||
tos: "Termos de Serviço"
|
||||
|
|
|
@ -4,7 +4,7 @@ class MainControllerTest < ActionController::TestCase
|
|||
test 'should return the home page' do
|
||||
get :index
|
||||
assert_response :success
|
||||
assert_select 'title', 'Adopt a Hydrant'
|
||||
assert_select 'title', 'Adopt-a-Hydrant'
|
||||
assert_select 'p#tagline', 'Claim responsibility for shoveling out a fire hydrant after it snows.'
|
||||
assert_select 'form' do
|
||||
assert_select '[action=?]', '/'
|
||||
|
|
Loading…
Reference in New Issue