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
ca: | |
errors: | |
messages: | |
expired: "ha caducat, demana'n un de nou" | |
not_found: "no s'ha trobat" | |
already_confirmed: "ja està confirmat" | |
not_locked: "no està bloquejat" | |
not_saved: | |
one: "1 error ha evitat que %{resource} es pugui desar:" | |
other: "%{count} errors han evitat que %{resource} es pugui desar:" |
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
# This class is responsible for the Books REST interface. | |
# | |
class BooksController < ApplicationController | |
# Get a book by the id | |
before_filter :get_book, only: [:edit, :update, :show, :destroy] | |
# Renders the form to create a new Book. | |
# | |
def new |
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
# This is the default format for Rails Translations. | |
# You can see the full file here: | |
# https://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/ca.yml | |
ca: | |
date: | |
day_names: | |
- Diumenge | |
- Dilluns | |
- Dimarts | |
- Dimecres |
NewerOlder