Move locale files, fix syntax error in fr-informal
This commit is contained in:
parent
82bc5b097d
commit
972cb54828
35 changed files with 227 additions and 744 deletions
|
|
@ -104,8 +104,6 @@ GEM
|
||||||
addressable (2.2.1)
|
addressable (2.2.1)
|
||||||
arel (1.0.1)
|
arel (1.0.1)
|
||||||
activesupport (~> 3.0.0)
|
activesupport (~> 3.0.0)
|
||||||
async_sinatra (0.2.3)
|
|
||||||
sinatra (>= 1.0)
|
|
||||||
autotest (4.3.2)
|
autotest (4.3.2)
|
||||||
bcrypt-ruby (2.1.2)
|
bcrypt-ruby (2.1.2)
|
||||||
bson (1.0.7)
|
bson (1.0.7)
|
||||||
|
|
@ -214,8 +212,6 @@ GEM
|
||||||
selenium-client (1.2.18)
|
selenium-client (1.2.18)
|
||||||
selenium-rc (2.2.4)
|
selenium-rc (2.2.4)
|
||||||
selenium-client (>= 1.2.18)
|
selenium-client (>= 1.2.18)
|
||||||
sinatra (1.0)
|
|
||||||
rack (>= 1.0)
|
|
||||||
subexec (0.0.4)
|
subexec (0.0.4)
|
||||||
thin (1.2.7)
|
thin (1.2.7)
|
||||||
daemons (>= 1.0.9)
|
daemons (>= 1.0.9)
|
||||||
|
|
@ -242,7 +238,6 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
addressable
|
addressable
|
||||||
async_sinatra
|
|
||||||
autotest
|
autotest
|
||||||
bson (= 1.0.7)
|
bson (= 1.0.7)
|
||||||
bson_ext (= 1.0.7)
|
bson_ext (= 1.0.7)
|
||||||
|
|
@ -271,7 +266,6 @@ DEPENDENCIES
|
||||||
ruby-debug
|
ruby-debug
|
||||||
saucelabs-adapter (= 0.8.12)
|
saucelabs-adapter (= 0.8.12)
|
||||||
selenium-rc
|
selenium-rc
|
||||||
sinatra (= 1.0)
|
|
||||||
sprinkle!
|
sprinkle!
|
||||||
thin
|
thin
|
||||||
webmock
|
webmock
|
||||||
|
|
|
||||||
|
|
@ -1,264 +1,202 @@
|
||||||
# Spanish translations for Rails
|
# Copyright (c) 2010, Diaspora Inc. This file is
|
||||||
# by Francisco Fernando García Nieto (ffgarcianieto@gmail.com)
|
# licensed under the Affero General Public License version 3. See
|
||||||
|
# the COPYRIGHT file.
|
||||||
|
|
||||||
"es":
|
|
||||||
# Action View
|
|
||||||
number:
|
|
||||||
# Used in number_with_delimiter()
|
|
||||||
# These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
|
|
||||||
format:
|
|
||||||
# Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
|
|
||||||
separator: ","
|
|
||||||
# Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
|
|
||||||
delimiter: "."
|
|
||||||
# Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
|
|
||||||
precision: 3
|
|
||||||
# If set to true, precision will mean the number of significant digits instead
|
|
||||||
# of the number of decimal digits (1234 with precision 2 becomes 1200, 1.23543 becomes 1.2)
|
|
||||||
significant: false
|
|
||||||
# If set, the zeros after the decimal separator will always be stripped (eg.: 1.200 will be 1.2)
|
|
||||||
strip_insignificant_zeros: false
|
|
||||||
|
|
||||||
# Used in number_to_currency()
|
# Sample localization file for English. Add more files in this directory for other locales.
|
||||||
currency:
|
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
||||||
format:
|
|
||||||
# Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
|
|
||||||
format: "%n %u"
|
|
||||||
unit: "€"
|
|
||||||
# These three are to override number.format and are optional
|
|
||||||
separator: ","
|
|
||||||
delimiter: "."
|
|
||||||
precision: 2
|
|
||||||
significant: false
|
|
||||||
strip_insignificant_zeros: false
|
|
||||||
|
|
||||||
# Used in number_to_percentage()
|
es:
|
||||||
percentage:
|
hello: "Hola Mundo"
|
||||||
format:
|
application:
|
||||||
# These three are to override number.format and are optional
|
helper:
|
||||||
# separator:
|
unknown_person: "persona desconocida"
|
||||||
delimiter: ""
|
new_requests: "nuevas peticiones"
|
||||||
# precision:
|
dashboards:
|
||||||
|
helper:
|
||||||
# Used in number_to_precision()
|
home: "home"
|
||||||
precision:
|
error_messages:
|
||||||
format:
|
helper:
|
||||||
# These three are to override number.format and are optional
|
invalid_fields: "Campos Invalidos"
|
||||||
# separator:
|
correct_the_following_errors_and_try_again: "Corrija los siguentes errores y trate de nuevo."
|
||||||
delimiter: ""
|
people:
|
||||||
# precision:
|
helper:
|
||||||
# significant: false
|
results_for: " resultados para %{params}"
|
||||||
# strip_insignificant_zeros: false
|
people_on_pod_are_aware_of: " gente en pod estan al tanto de "
|
||||||
|
layouts:
|
||||||
# Used in number_to_human_size()
|
application:
|
||||||
human:
|
edit_profile: "editar perfil"
|
||||||
format:
|
logout: "desloguear"
|
||||||
# These three are to override number.format and are optional
|
shared:
|
||||||
# separator:
|
aspect_nav:
|
||||||
delimiter: ""
|
all_aspects: "Todos los Aspectos"
|
||||||
precision: 1
|
manage: "Manejar"
|
||||||
significant: true
|
manage_your_aspects: "Maneja tus Aspectos"
|
||||||
strip_insignificant_zeros: true
|
sub_header:
|
||||||
# Used in number_to_human_size()
|
all_aspects: "Todos los Aspectos"
|
||||||
storage_units:
|
manage_aspects: "Manejar Aspectos"
|
||||||
format: "%n %u"
|
publisher:
|
||||||
units:
|
share: "Compartir"
|
||||||
byte:
|
aspect_friends:
|
||||||
one: "Byte"
|
add_friends: "Añade amigos"
|
||||||
other: "Bytes"
|
albums:
|
||||||
kb: "KB"
|
album:
|
||||||
mb: "MB"
|
you: "usted"
|
||||||
gb: "GB"
|
new_album:
|
||||||
tb: "TB"
|
create: "Crear"
|
||||||
# Used in number_to_human()
|
add_a_new_album: "Añade un nuevo álbum"
|
||||||
decimal_units:
|
show:
|
||||||
format: "%n %u"
|
edit_album: "Editar Álbum"
|
||||||
# Decimal units output formatting
|
albums: "álbumes"
|
||||||
# By default we will only quantify some of the exponents
|
updated: "actualizar"
|
||||||
# but the commented ones might be defined or overridden
|
by: "por"
|
||||||
# by the user.
|
edit:
|
||||||
units:
|
editing: "Editando"
|
||||||
# femto: Quadrillionth
|
updated: "actualizado"
|
||||||
# pico: Trillionth
|
are_you_sure: "Esta seguro?"
|
||||||
# nano: Billionth
|
delete_album: "Eliminar Álbum"
|
||||||
# micro: Millionth
|
cancel: "Cancelar"
|
||||||
# mili: Thousandth
|
index:
|
||||||
# centi: Hundredth
|
home: "home"
|
||||||
# deci: Tenth
|
new_album: "Nuevo Álbum"
|
||||||
unit: ""
|
create:
|
||||||
# ten:
|
success: "Creo el álbum llamado %{name}."
|
||||||
# one: Ten
|
update:
|
||||||
# other: Tens
|
success: "Álbum %{name} fue editado exitosamente."
|
||||||
# hundred: Hundred
|
failure: "Fallo el editar el álbum %{name}."
|
||||||
thousand: "Mil"
|
destroy:
|
||||||
million: "Millón"
|
success: "Álbum %{name} fue eliminado."
|
||||||
billion: "Mil millones"
|
helper:
|
||||||
trillion: "Trillón"
|
friends_albums: "Álbumes de amigos"
|
||||||
quadrillion: "Cuatrillón"
|
your_albums: "Tus Álbumes"
|
||||||
|
aspects:
|
||||||
# Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
|
index:
|
||||||
datetime:
|
photos: "fotos"
|
||||||
distance_in_words:
|
show:
|
||||||
half_a_minute: "medio minuto"
|
photos: "fotos"
|
||||||
less_than_x_seconds:
|
manage:
|
||||||
one: "menos de 1 segundo"
|
add_a_new_aspect: "Añadir nuevo aspecto"
|
||||||
other: "menos de %{count} segundos"
|
add_a_new_friend: "Añadir nuevo amigo"
|
||||||
x_seconds:
|
show: "Mostrar"
|
||||||
one: "1 segundo"
|
update_aspects: "Actualizar Aspectos"
|
||||||
other: "%{count} segundos"
|
requests: "Requests"
|
||||||
less_than_x_minutes:
|
ignore_remove: "Ignorar/Remover"
|
||||||
one: "menos de 1 minuto"
|
new_aspect:
|
||||||
other: "menos de %{count} minutos"
|
add_a_new_aspect: "Añadir nuevo aspecto"
|
||||||
x_minutes:
|
create: "Crear"
|
||||||
one: "1 minuto"
|
create:
|
||||||
other: "%{count} minutos"
|
success:"Pulsa en el signo de mas a la izquierda para escojer quien puede ver su nuevo aspecto."
|
||||||
about_x_hours:
|
destroy:
|
||||||
one: "alrededor de 1 hora"
|
success: "%{name} fue removido exitosamente."
|
||||||
other: "alrededor de %{count} horas"
|
update:
|
||||||
x_days:
|
success: "Su aspecto, %{name}, fue editado exitosamente."
|
||||||
one: "1 día"
|
move_friends:
|
||||||
other: "%{count} días"
|
failure: "Fallo el editar aspecto para el amigo %{real_name}."
|
||||||
about_x_months:
|
success: "Los aspectos fueron editados exitosamente."
|
||||||
one: "alrededor de 1 mes"
|
move_friend:
|
||||||
other: "alrededor de %{count} meses"
|
error: "no funciono %{inspect}"
|
||||||
x_months:
|
notice: "Ahora estas mostrando a tu amigo un aspecto diferente de ti."
|
||||||
one: "1 mes"
|
helper:
|
||||||
other: "%{count} meses"
|
remove: "remover"
|
||||||
about_x_years:
|
aspect_not_empty: "Aspecto no esta vacio"
|
||||||
one: "alrededor de 1 año"
|
users:
|
||||||
other: "alrededor de %{count} años"
|
edit:
|
||||||
over_x_years:
|
cancel: "Cancelar"
|
||||||
one: "más de 1 año"
|
update_profile: "Actualizar Perfil"
|
||||||
other: "más de %{count} años"
|
home: "Home"
|
||||||
almost_x_years:
|
diaspora_username: "USUARIO DE DIASPORA"
|
||||||
one: "casi 1 año"
|
info: "Info"
|
||||||
other: "casi %{count} años"
|
picture: "Picture"
|
||||||
prompts:
|
editing_profile: "Editando perfil"
|
||||||
year: "Año"
|
albums: "Álbums"
|
||||||
month: "Mes"
|
you_dont_have_any_photos: "No tienes ninguna foto! ve a la pagina"
|
||||||
day: "Día"
|
page_to_upload_some: "para subir algunas"
|
||||||
hour: "Hora"
|
comments:
|
||||||
minute: "Minutos"
|
comment:
|
||||||
second: "Segundos"
|
ago: "atras"
|
||||||
|
new_comment:
|
||||||
helpers:
|
comment: "Commentario"
|
||||||
select:
|
photos:
|
||||||
# Default value for :prompt => true in FormOptionsHelper
|
show:
|
||||||
prompt: "Por favor seleccione"
|
prev: "prev"
|
||||||
|
full_size: "tamaño actual"
|
||||||
# Default translation keys for submit FormHelper
|
next: "prox"
|
||||||
submit:
|
edit_photo: "Editar Foto"
|
||||||
create: 'Guardar %{model}'
|
delete_photo: "Eliminar Foto"
|
||||||
update: 'Actualizar %{model}'
|
are_you_sure: "Esta seguro?"
|
||||||
submit: 'Guardar %{model}'
|
comments: "comentarios"
|
||||||
|
edit:
|
||||||
# Attributes names common to most models
|
editing: "Editando"
|
||||||
#attributes:
|
are_you_sure: "Esta seguro?"
|
||||||
#created_at: "Created at"
|
delete_photo: "Eliminar Foto"
|
||||||
#updated_at: "Updated at"
|
photo:
|
||||||
|
show_comments: "mostrar comentarios"
|
||||||
# Active Record models configuration
|
posted_a_new_photo_to: "a puesto una nueva foto en"
|
||||||
activerecord:
|
new:
|
||||||
errors:
|
new_photo: "Nueva Foto"
|
||||||
messages:
|
back_to_list: "Devuelta a la lista"
|
||||||
taken: "ya está en uso"
|
post_it: "post it!"
|
||||||
record_invalid: "La validación falló: %{errors}"
|
create:
|
||||||
# Append your own errors here or at the model/attributes scope.
|
runtime_error: "Photo upload failed. Are you sure that your seatbelt is fastened?"
|
||||||
|
integrity_error: "Photo upload failed. Are you sure that was an image?"
|
||||||
# You can define own errors for models or model attributes.
|
type_error: "Photo upload failed. Are you sure an image was added?"
|
||||||
# The values :model, :attribute and :value are always available for interpolation.
|
update:
|
||||||
#
|
notice: "Photo successfully updated."
|
||||||
# For example,
|
error: "Failed to edit photo."
|
||||||
# models:
|
destroy:
|
||||||
# user:
|
notice: "Photo deleted."
|
||||||
# blank: "This is a custom blank message for %{model}: %{attribute}"
|
registrations:
|
||||||
# attributes:
|
new:
|
||||||
# login:
|
sign_up: "Registrate"
|
||||||
# blank: "This is a custom blank message for User login"
|
create:
|
||||||
# Will define custom blank validation message for User model and
|
success: "Esta registrado en Diaspora!"
|
||||||
# custom blank validation message for login attribute of User model.
|
status_messages:
|
||||||
#models:
|
new_status_message:
|
||||||
|
tell_me_something_good: "dime algo bueno"
|
||||||
# Translate model names. Used in Model.human_name().
|
oh_yeah: "oh yeah!"
|
||||||
#models:
|
status_message:
|
||||||
# For example,
|
show_comments: "mostrar comentarios"
|
||||||
# user: "Dude"
|
delete: "Eliminar"
|
||||||
# will translate User model name to "Dude"
|
are_you_sure: "Esta seguro?"
|
||||||
|
show:
|
||||||
# Translate model attribute names. Used in Model.human_attribute_name(attribute).
|
status_message: "Mensaje de status"
|
||||||
#attributes:
|
comments: "comentarios"
|
||||||
# For example,
|
are_you_sure: "Esta seguro?"
|
||||||
# user:
|
destroy: "Destruir"
|
||||||
# login: "Handle"
|
view_all: "Ver Todos"
|
||||||
# will translate User attribute "login" as "Handle"
|
message: "Mensaje"
|
||||||
|
owner: "Dueño"
|
||||||
# Active Model
|
helper:
|
||||||
errors:
|
no_message_to_display: "No hay mensajes que mostrar."
|
||||||
# The default format to use in full error messages.
|
people:
|
||||||
format: "%{attribute} %{message}"
|
person:
|
||||||
|
add_friend: "añadir amigo"
|
||||||
template:
|
pending_request: "petición pendiente"
|
||||||
header:
|
index:
|
||||||
one: "No se pudo guardar este/a %{model} porque se encontró 1 error"
|
add_friend: "añadir amigo"
|
||||||
other: "No se pudo guardar este/a %{model} porque se encontraron %{count} errores"
|
real_name: "nombre real"
|
||||||
# The variable :count is also available
|
diaspora_handle: "usuario en diaspora"
|
||||||
body: "Se encontraron problemas con los siguientes campos:"
|
thats_you: "ese eres tu!"
|
||||||
|
friend_request_pending: "friend request pending"
|
||||||
# The values :model, :attribute and :value are always available for interpolation
|
you_have_a_friend_request_from_this_person: "you have a friend request from this person"
|
||||||
# The value :count is available when applicable. Can be used for pluralization.
|
show:
|
||||||
messages:
|
last_seen: "ultima vez visto: %{how_long_ago}"
|
||||||
inclusion: "no está incluido en la lista"
|
friends_since: "amigos desde: %{how_long_ago}"
|
||||||
exclusion: "está reservado"
|
save: "guardar"
|
||||||
invalid: "no es válido"
|
are_you_sure: "Esta seguro?"
|
||||||
confirmation: "no coincide con la confirmación"
|
remove_friend: "remover amigo"
|
||||||
accepted: "debe ser aceptado"
|
requests:
|
||||||
empty: "no puede estar vacío"
|
new_request:
|
||||||
blank: "no puede estar en blanco"
|
add_a_new_friend_to: "Añade un nuevo amigo a "
|
||||||
too_long: "es demasiado largo (%{count} caracteres máximo)"
|
enter_a_diaspora_username: "Escribe el usuario de Diaspora:"
|
||||||
too_short: "es demasiado corto (%{count} caracteres mínimo)"
|
your_diaspora_username_is: "Tu usuario de Diaspora es: %{diaspora_handle}"
|
||||||
wrong_length: "no tiene la longitud correcta (%{count} caracteres exactos)"
|
friends_username: "Usuario de amigo"
|
||||||
not_a_number: "no es un número"
|
destroy:
|
||||||
greater_than: "debe ser mayor que %{count}"
|
success: "Ahora son amigos."
|
||||||
greater_than_or_equal_to: "debe ser mayor que o igual a %{count}"
|
error: "Seleccione un aspecto!"
|
||||||
equal_to: "debe ser igual a %{count}"
|
ignore: "Ignorar peticion de amistad"
|
||||||
less_than: "debe ser menor que %{count}"
|
create:
|
||||||
less_than_or_equal_to: "debe ser menor que o igual a %{count}"
|
error: "No diaspora seed found with this email!"
|
||||||
odd: "debe ser impar"
|
already_friends: "Ya eres amigo de %{destination_url}!"
|
||||||
even: "debe ser par"
|
success: "Una peticion de amistad se envio a %{destination_url}."
|
||||||
|
horribly_wrong: "Algo horriblemente mal sucedio"
|
||||||
# Active Support
|
|
||||||
date:
|
|
||||||
formats:
|
|
||||||
# Use the strftime parameters for formats.
|
|
||||||
# When no format has been given, it uses default.
|
|
||||||
# You can provide other formats here if you like!
|
|
||||||
default: "%e/%m/%Y"
|
|
||||||
short: "%e de %b"
|
|
||||||
long: "%e de %B de %Y"
|
|
||||||
|
|
||||||
day_names: [Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado]
|
|
||||||
abbr_day_names: [Dom, Lun, Mar, Mie, Jue, Vie, Sab]
|
|
||||||
|
|
||||||
# Don't forget the nil at the beginning; there's no such thing as a 0th month
|
|
||||||
month_names: [~, Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Septiembre, Octubre, Noviembre, Diciembre]
|
|
||||||
abbr_month_names: [~, Ene, Feb, Mar, Abr, May, Jun, Jul, Ago, Sep, Oct, Nov, Dic]
|
|
||||||
# Used in date_select and datime_select.
|
|
||||||
order:
|
|
||||||
- :day
|
|
||||||
- :month
|
|
||||||
- :year
|
|
||||||
|
|
||||||
time:
|
|
||||||
formats:
|
|
||||||
default: "%A, %e de %B de %Y %H:%M:%S %z"
|
|
||||||
short: "%e de %b %H:%M"
|
|
||||||
long: "%e de %B de %Y %H:%M"
|
|
||||||
am: "am"
|
|
||||||
pm: "pm"
|
|
||||||
|
|
||||||
# Used in array.to_sentence.
|
|
||||||
support:
|
|
||||||
array:
|
|
||||||
words_connector: ", "
|
|
||||||
two_words_connector: " y "
|
|
||||||
last_word_connector: ", y "
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
||||||
# licensed under the Affero General Public License version 3. See
|
|
||||||
# the COPYRIGHT file.
|
|
||||||
|
|
||||||
|
|
||||||
de:
|
|
||||||
errors:
|
|
||||||
messages:
|
|
||||||
not_found: "nicht gefunden"
|
|
||||||
already_confirmed: "wurde bereits bestätigt"
|
|
||||||
not_locked: "war nicht gesperrt"
|
|
||||||
|
|
||||||
devise:
|
|
||||||
failure:
|
|
||||||
unauthenticated: 'Du musst dich anmelden oder registrieren um fortzufahren.'
|
|
||||||
unconfirmed: 'Du musst dein Konto bestätigen um fortzufahren.'
|
|
||||||
locked: 'Dein Konto ist gesperrt.'
|
|
||||||
invalid: 'Ungültige E-Mail-Adresse oder Passwort.'
|
|
||||||
invalid_token: 'Ungültiger Authentifizierungstoken.'
|
|
||||||
timeout: 'Deine Sitzung ist abgelaufen, bitte melde dich erneut an um fortzufahren.'
|
|
||||||
inactive: 'Dein Konto wurde noch nicht aktiviert.'
|
|
||||||
sessions:
|
|
||||||
signed_in: 'Erfolgreich angemeldet.'
|
|
||||||
signed_out: 'Erfolgreich abgemeldet.'
|
|
||||||
passwords:
|
|
||||||
send_instructions: 'Du wirst in ein paar Minuten eine E-Mail erhalten, die beschreibt, wie du dein Passwort zurücksetzt.'
|
|
||||||
updated: 'Dein Passwort wurde erfolgreich geändert. Du bist nun angemeldet.'
|
|
||||||
confirmations:
|
|
||||||
send_instructions: 'Du wirst in ein paar Minuten eine E-Mail erhalten, die beschreibt, wie du dein Konto bestätigst.'
|
|
||||||
confirmed: 'Dein Konto wurde erfolgreich bestätigt. Du bist nun angemeldet.'
|
|
||||||
registrations:
|
|
||||||
signed_up: 'Du hast dich erfolgreich registriert. Sofern aktiviert, wurde dir eine Bestätigung per E-Mail gesendet.'
|
|
||||||
updated: 'Dein Konto wurde aktualisiert.'
|
|
||||||
destroyed: 'Tschüss! Dein Konto wurde erfolgreich gekündigt. Wir hoffen dich bald wiederzusehen.'
|
|
||||||
unlocks:
|
|
||||||
send_instructions: 'Du wirst in ein paar Minuten eine E-Mail erhalten, die beschreibt, wie du dein Konto entsperren kannst.'
|
|
||||||
unlocked: 'Dein Konto wurde erfolgreich entsperrt. Du bist nun angemeldet.'
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions: 'Instruktionen zur Bestätigung'
|
|
||||||
reset_password_instructions: 'Instruktionen zum Zurücksetzen des Passworts'
|
|
||||||
unlock_instructions: 'Instruktionen zum Entsperren'
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
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.'
|
|
||||||
unconfirmed: 'Necesitas confirmar tu cuenta antes de continuar.'
|
|
||||||
locked: 'Tu cuenta esta bloqueada.'
|
|
||||||
invalid: 'Contraseña o Email incorrecto.'
|
|
||||||
invalid_token: 'Token de autenticación incorrecto.'
|
|
||||||
timeout: 'Tu sesión ha expirado, por favor accede de nuevo para continuar.'
|
|
||||||
inactive: 'Tu cuenta no ha sido activada.'
|
|
||||||
sessions:
|
|
||||||
signed_in: 'Has ingresado correctamente.'
|
|
||||||
signed_out: 'Has salido correctamente.'
|
|
||||||
passwords:
|
|
||||||
send_instructions: 'Recibirás un email con instrucciones para cambiar tu contraseña en pocos minutos.'
|
|
||||||
updated: 'Tu contraseña ha sido modificada. Ya has accedido a tu cuenta.'
|
|
||||||
confirmations:
|
|
||||||
send_instructions: 'Recibirás un email con instrucciones para confirmar tu cuenta en pocos minutos.'
|
|
||||||
confirmed: 'Tu cuenta ha sido confirmada. Ya has accedido a tu cuenta.'
|
|
||||||
registrations:
|
|
||||||
signed_up: 'Te has registrado correctamente. Si está disponible, te habremos enviado un email de confirmación.'
|
|
||||||
updated: 'Has actualizado tu cuenta correctamente.'
|
|
||||||
destroyed: '!Adiós! Tu cuenta ha sido cancelada. Esperamos verte pronto.'
|
|
||||||
unlocks:
|
|
||||||
send_instructions: 'Recibirás un email con instrucciones para desbloquear tu cuenta en pocos minutos.'
|
|
||||||
unlocked: 'Tu cuenta ha sido desbloqueada. Ya has accedido a tu cuenta.'
|
|
||||||
oauth_callbacks:
|
|
||||||
success: 'Has sido autorizado satisfactoriamente de la cuenta %{kind}.'
|
|
||||||
failure: 'No has sido autorizado en la cuenta %{kind} porque "%{reason}".'
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: 'Instrucciones de confirmación'
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: 'Instrucciones para cambiar tu contraseña'
|
|
||||||
unlock_instructions:
|
|
||||||
subject: 'Instrucciones para desbloquear tu cuenta'
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
||||||
# licensed under the Affero General Public License version 3. See
|
|
||||||
# the COPYRIGHT file.
|
|
||||||
|
|
||||||
|
|
||||||
fr:
|
|
||||||
errors:
|
|
||||||
messages:
|
|
||||||
not_found: "introuvable"
|
|
||||||
already_confirmed: "a déjà été confirmé"
|
|
||||||
not_locked: "n’a pas été verrouillé"
|
|
||||||
|
|
||||||
devise:
|
|
||||||
failure:
|
|
||||||
unauthenticated: 'Vous devez vous connecter ou vous inscrire avant de continuer.'
|
|
||||||
unconfirmed: 'Vous devez confirmer votre compte avant de continuer.'
|
|
||||||
locked: 'Votre compte est verrouillé.'
|
|
||||||
invalid: 'E-mail ou mot de passe invalide.'
|
|
||||||
invalid_token: 'Jeton d’authentification invalide.'
|
|
||||||
timeout: 'Votre session a expiré, veuillez vous connecter de nouveau afin de continuer.'
|
|
||||||
inactive: 'Votre compte n’a pas encore été activé.'
|
|
||||||
sessions:
|
|
||||||
signed_in: 'Connecté avec succès.'
|
|
||||||
signed_out: 'Déconnecté avec succès.'
|
|
||||||
passwords:
|
|
||||||
send_instructions: 'Vous allez recevoir dans quelques minutes un e-mail contenant des instructions vous expliquant comment réinitialiser votre mot de passe.'
|
|
||||||
updated: 'Votre mot de passe a été modifié avec succès. Vous êtes à présent connecté.'
|
|
||||||
confirmations:
|
|
||||||
send_instructions: 'Vous allez recevoir dans quelques minutes un e-mail contenant des instructions vous expliquant comment confirmer votre compte.'
|
|
||||||
confirmed: 'Votre compte a été confirmé avec succès. Vous êtes à présent connecté.'
|
|
||||||
registrations:
|
|
||||||
signed_up: 'Vous vous êtes inscrit avec succès. Si activée, une confirmation a été envoyée sur votre adresse e-mail.'
|
|
||||||
updated: 'Vous avez mis à jour votre compte avec succès.'
|
|
||||||
destroyed: 'Au revoir ! Votre compte a été résilié avec succès. Nous espérons vous revoir très bientôt.'
|
|
||||||
unlocks:
|
|
||||||
send_instructions: 'Vous allez recevoir dans quelques minutes un e-mail contenant des instructions vous expliquant comment déverrouiller votre compte.'
|
|
||||||
unlocked: 'Votre compte a été déverrouillé avec succès. Vous êtes à présent connecté.'
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions: 'Instructions de confirmation'
|
|
||||||
reset_password_instructions: 'Réinitialiser les instructions du mot de passe'
|
|
||||||
unlock_instructions: 'Instructions de déverrouillage'
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
||||||
# licensed under the Affero General Public License version 3. See
|
|
||||||
# the COPYRIGHT file.
|
|
||||||
|
|
||||||
|
|
||||||
it:
|
|
||||||
errors:
|
|
||||||
messages:
|
|
||||||
not_found: "non trovato"
|
|
||||||
already_confirmed: "è già stato confermato"
|
|
||||||
not_locked: "non era bloccato"
|
|
||||||
|
|
||||||
devise:
|
|
||||||
failure:
|
|
||||||
unauthenticated: "Devi effettuare l'accesso o registrarti prima di continuare."
|
|
||||||
unconfirmed: "Devi confermare il tuo account prima di continuare."
|
|
||||||
locked: "Il tuo account è bloccato."
|
|
||||||
invalid: "Email o password errati."
|
|
||||||
invalid_token: "Token di autenticazione errato."
|
|
||||||
timeout: "La tua sessione è scaduta, effettua di nuovo l'accesso per continuare."
|
|
||||||
inactive: "Il tuo account non è ancora stato attivato."
|
|
||||||
sessions:
|
|
||||||
signed_in: "Accesso effettuato con successo."
|
|
||||||
signed_out: "Disconnessione effettuata con successo."
|
|
||||||
passwords:
|
|
||||||
send_instructions: "Tra pochi minuti riceverai una email con le istruzioni su come cambiare la tua password."
|
|
||||||
updated: "La tua password è stata modificata. Hai appena effettuato l'accesso."
|
|
||||||
confirmations:
|
|
||||||
send_instructions: "Tra pochi minuti riceverai una email per confermare il tuo account."
|
|
||||||
confirmed: "Il tuo account è stato confermato con successo. Hai appena effettuato l'accesso."
|
|
||||||
registrations:
|
|
||||||
signed_up: "Ti sei iscritto. Se il servizio è disponibile, riceverai una conferma via email."
|
|
||||||
updated: "Hai aggiornato il tuo account."
|
|
||||||
destroyed: "Ciao! Il tuo account è stato rimosso. Speriamo che tu torni a trovarci presto."
|
|
||||||
unlocks:
|
|
||||||
send_instructions: "Tra pochi minuti riceverai una mail con le istruzioni su come sbloccare il tuo account."
|
|
||||||
unlocked: "Il tuo account è stato sbloccato. Hai appena effettuato l'accesso."
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions: "Istruzioni sulla conferma"
|
|
||||||
reset_password_instructions: "Istruzioni su come cambiare la password"
|
|
||||||
unlock_instructions: "Istruzioni su come sbloccare l'account"
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
||||||
# licensed under the Affero General Public License version 3. See
|
|
||||||
# the COPYRIGHT file.
|
|
||||||
|
|
||||||
|
|
||||||
pl:
|
|
||||||
errors:
|
|
||||||
messages:
|
|
||||||
not_found: "nie znaleziono"
|
|
||||||
already_confirmed: "potwierdzono wcześniej"
|
|
||||||
not_locked: "nie był zablokowany"
|
|
||||||
|
|
||||||
devise:
|
|
||||||
failure:
|
|
||||||
unauthenticated: 'By kontynuować musisz się zalogować lub zarejestrować.'
|
|
||||||
unconfirmed: 'Musisz aktywować swoje konto.'
|
|
||||||
locked: 'Twoje konto jest zablokowane.'
|
|
||||||
invalid: 'Nieprawidłowy adres email lub hasło.'
|
|
||||||
invalid_token: 'Nieprawidłowy kod identyfikacyjny.'
|
|
||||||
timeout: 'Twoja sesja wygasła, zaloguj się ponownie by kontynuować.'
|
|
||||||
inactive: 'Twoje konto nie zostało jeszcze aktywowane.'
|
|
||||||
sessions:
|
|
||||||
signed_in: 'Zalogowano pomyślnie.'
|
|
||||||
signed_out: 'Wylogowano.'
|
|
||||||
passwords:
|
|
||||||
send_instructions: 'W ciągu kilku minut otrzymasz maila zawierającego instrukcjie dotyczące zresetowania hasła.'
|
|
||||||
updated: 'Twoje hasło zostało zmienione, zostałeś zalogowany.'
|
|
||||||
confirmations:
|
|
||||||
send_instructions: 'W ciągu kilku minut otrzymasz maila zawierającego instrukcje dotyczące aktywacji konta.'
|
|
||||||
confirmed: 'Twoje konto zostało aktywowane, zostałeś zalogowany.'
|
|
||||||
registrations:
|
|
||||||
signed_up: 'Zostałeś zarejestrowany. Jeśli aktywowano odpowiednią opcję, wyślemy do Ciebie email potwierdzający rejestrację.'
|
|
||||||
updated: 'Pomyślnie zaktualizowano informacje o Twoim koncie.'
|
|
||||||
destroyed: 'Żegnaj! Twoje konto zostało usunięte.'
|
|
||||||
unlocks:
|
|
||||||
send_instructions: 'W ciągu kilku minut otrzymasz email z instrukcjami odblokowania konta.'
|
|
||||||
unlocked: 'Twoje konto zostało odblokowane, jesteś zalogowany.'
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions: 'Instrukcje aktywacji'
|
|
||||||
reset_password_instructions: 'Instrukcje zmiany hasła'
|
|
||||||
unlock_instructions: 'Instrukcje odblokowania'
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
||||||
# licensed under the Affero General Public License version 3. See
|
|
||||||
# the COPYRIGHT file.
|
|
||||||
|
|
||||||
|
|
||||||
ru:
|
|
||||||
errors:
|
|
||||||
messages:
|
|
||||||
not_found: "не найден(о)"
|
|
||||||
already_confirmed: "уже подтвержден(о)"
|
|
||||||
not_locked: "не заблокирован(о)"
|
|
||||||
|
|
||||||
devise:
|
|
||||||
failure:
|
|
||||||
unauthenticated: 'Вам нужно войти либо зарегистрироваться, чтобы продолжить.'
|
|
||||||
unconfirmed: 'Вам нужно подтвердить вашу учётную запись, чтобы продолжить.'
|
|
||||||
locked: 'Ваша учётная запись заблокирована.'
|
|
||||||
invalid: 'Неверный e-mail или пароль.'
|
|
||||||
invalid_token: 'Неверный ключ аутентификации.'
|
|
||||||
timeout: 'Срок вашего сеанса истёк, пожалуйста, войдите в систему снова.'
|
|
||||||
inactive: 'Ваша учётная запись ещё не активирована.'
|
|
||||||
sessions:
|
|
||||||
signed_in: 'Вход в систему выполнен успешно.'
|
|
||||||
signed_out: 'Выход из системы выполнен успешно.'
|
|
||||||
passwords:
|
|
||||||
send_instructions: 'Вы получите e-mail с указаниями по сбросу пароля в течение нескольких минут.'
|
|
||||||
updated: 'Ваш пароль был изменён. Вы вошли в систему.'
|
|
||||||
confirmations:
|
|
||||||
send_instructions: 'Вы получите e-mail с указаниями по подтверждению учётной записи в течение нескольких минут.'
|
|
||||||
confirmed: 'Ваша учётная запись была подтверждена. Вы вошли в систему.'
|
|
||||||
registrations:
|
|
||||||
signed_up: 'Регистрация выполнена успешно. В зависимости от настроек, вам может прийти e-mail с подтверждением.'
|
|
||||||
updated: 'Обновление вашей учётной записи выполнено успешно.'
|
|
||||||
destroyed: 'До свидания! Ваша учётная запись была удалена. Надеемся, что вскоре вас увидим снова.'
|
|
||||||
unlocks:
|
|
||||||
send_instructions: 'Вы получите e-mail с указаниями по разблокированию учётной записи в течение нескольких минут.'
|
|
||||||
unlocked: 'Ваша учётная запись была разблокирована. Вы вошли в систему.'
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions: 'Подтверждение учётной записи'
|
|
||||||
reset_password_instructions: 'Сброс пароля'
|
|
||||||
unlock_instructions: 'Разблокирование учётной записи'
|
|
||||||
|
|
@ -18,10 +18,10 @@ es:
|
||||||
signed_in: 'Has ingresado correctamente.'
|
signed_in: 'Has ingresado correctamente.'
|
||||||
signed_out: 'Has salido correctamente.'
|
signed_out: 'Has salido correctamente.'
|
||||||
passwords:
|
passwords:
|
||||||
send_instructions: 'Recibirás un email con instrucciones para cambiar tu contraseña en poco minutos.'
|
send_instructions: 'Recibirás un email con instrucciones para cambiar tu contraseña en pocos minutos.'
|
||||||
updated: 'Tu contraseña ha sido modificada. Ya has accedido a tu cuenta.'
|
updated: 'Tu contraseña ha sido modificada. Ya has accedido a tu cuenta.'
|
||||||
confirmations:
|
confirmations:
|
||||||
send_instructions: 'Recibirás un email con instrucciones para confirmar tu cuenta en poco minutos.'
|
send_instructions: 'Recibirás un email con instrucciones para confirmar tu cuenta en pocos minutos.'
|
||||||
confirmed: 'Tu cuenta ha sido confirmada. Ya has accedido a tu cuenta.'
|
confirmed: 'Tu cuenta ha sido confirmada. Ya has accedido a tu cuenta.'
|
||||||
registrations:
|
registrations:
|
||||||
signed_up: 'Te has registrado correctamente. Si está disponible, te habremos enviado un email de confirmación.'
|
signed_up: 'Te has registrado correctamente. Si está disponible, te habremos enviado un email de confirmación.'
|
||||||
|
|
|
||||||
|
|
@ -7,35 +7,35 @@ it:
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
not_found: "non trovato"
|
not_found: "non trovato"
|
||||||
already_confirmed: "già confermato"
|
already_confirmed: "è già stato confermato"
|
||||||
not_locked: "non bloccato"
|
not_locked: "non era bloccato"
|
||||||
|
|
||||||
devise:
|
devise:
|
||||||
failure:
|
failure:
|
||||||
unauthenticated: 'È necessario che tu acceda o ti registri prima di continuare.'
|
unauthenticated: "Devi effettuare l'accesso o registrarti prima di continuare."
|
||||||
unconfirmed: 'Devi confermare il tuo account prima di continuare.'
|
unconfirmed: "Devi confermare il tuo account prima di continuare."
|
||||||
locked: 'Il tuo account è bloccato.'
|
locked: "Il tuo account è bloccato."
|
||||||
invalid: 'Email o password invalida.'
|
invalid: "Email o password errati."
|
||||||
invalid_token: 'Invalido token di autenticazione.'
|
invalid_token: "Token di autenticazione errato."
|
||||||
timeout: 'La tua sessione è scaduta, per favore accedi nuovamente per continuare.'
|
timeout: "La tua sessione è scaduta, effettua di nuovo l'accesso per continuare."
|
||||||
inactive: 'Il tuo account non è ancora stato attivato.'
|
inactive: "Il tuo account non è ancora stato attivato."
|
||||||
sessions:
|
sessions:
|
||||||
signed_in: 'Collegamento avvenuto con successo.'
|
signed_in: "Accesso effettuato con successo."
|
||||||
signed_out: 'Uscita avvenuta con successo.'
|
signed_out: "Disconnessione effettuata con successo."
|
||||||
passwords:
|
passwords:
|
||||||
send_instructions: 'Tra quale minuto riceverai una email con le istruzioni per ripristinare la password.'
|
send_instructions: "Tra pochi minuti riceverai una email con le istruzioni su come cambiare la tua password."
|
||||||
updated: 'La tua password è stata cambiata con successo. Ora sei collegato.'
|
updated: "La tua password è stata modificata. Hai appena effettuato l'accesso."
|
||||||
confirmations:
|
confirmations:
|
||||||
send_instructions: 'Tra qualche minuti riceverai una email con le istruzioni per confermare il tuo account.'
|
send_instructions: "Tra pochi minuti riceverai una email per confermare il tuo account."
|
||||||
confirmed: 'Il tuo account è stato confermato con successo. Ora sei collegato.'
|
confirmed: "Il tuo account è stato confermato con successo. Hai appena effettuato l'accesso."
|
||||||
registrations:
|
registrations:
|
||||||
signed_up: 'Ti sei registrato con successo. Se abilitato, ti verrà inviata una email di conferma.'
|
signed_up: "Ti sei iscritto. Se il servizio è disponibile, riceverai una conferma via email."
|
||||||
updated: 'Hai aggiornato il tuo account.'
|
updated: "Hai aggiornato il tuo account."
|
||||||
destroyed: 'Addio! Il tuo account è stato cancellato. Speriamo di rivederti presto.'
|
destroyed: "Ciao! Il tuo account è stato rimosso. Speriamo che tu torni a trovarci presto."
|
||||||
unlocks:
|
unlocks:
|
||||||
send_instructions: 'Tra qualche minuti riceverai una email con le istruzioni per sbloccare il tuo account.'
|
send_instructions: "Tra pochi minuti riceverai una mail con le istruzioni su come sbloccare il tuo account."
|
||||||
unlocked: 'Il tuo account è stato sbloccato. Ora sei collegato.'
|
unlocked: "Il tuo account è stato sbloccato. Hai appena effettuato l'accesso."
|
||||||
mailer:
|
mailer:
|
||||||
confirmation_instructions: 'Istruzioni per la conferma'
|
confirmation_instructions: "Istruzioni sulla conferma"
|
||||||
reset_password_instructions: 'Istruzioni per il reset della password'
|
reset_password_instructions: "Istruzioni su come cambiare la password"
|
||||||
unlock_instructions: 'Istruzioni per lo sblocco'
|
unlock_instructions: "Istruzioni su come sbloccare l'account"
|
||||||
|
|
|
||||||
|
|
@ -1,202 +0,0 @@
|
||||||
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
||||||
# licensed under the Affero General Public License version 3. See
|
|
||||||
# the COPYRIGHT file.
|
|
||||||
|
|
||||||
|
|
||||||
# Sample localization file for English. Add more files in this directory for other locales.
|
|
||||||
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
|
||||||
|
|
||||||
es:
|
|
||||||
hello: "Hola Mundo"
|
|
||||||
application:
|
|
||||||
helper:
|
|
||||||
unknown_person: "persona desconocida"
|
|
||||||
new_requests: "nuevas peticiones"
|
|
||||||
dashboards:
|
|
||||||
helper:
|
|
||||||
home: "home"
|
|
||||||
error_messages:
|
|
||||||
helper:
|
|
||||||
invalid_fields: "Campos Invalidos"
|
|
||||||
correct_the_following_errors_and_try_again: "Corrija los siguentes errores y trate de nuevo."
|
|
||||||
people:
|
|
||||||
helper:
|
|
||||||
results_for: " resultados para %{params}"
|
|
||||||
people_on_pod_are_aware_of: " gente en pod estan al tanto de "
|
|
||||||
layouts:
|
|
||||||
application:
|
|
||||||
edit_profile: "editar perfil"
|
|
||||||
logout: "desloguear"
|
|
||||||
shared:
|
|
||||||
aspect_nav:
|
|
||||||
all_aspects: "Todos los Aspectos"
|
|
||||||
manage: "Manejar"
|
|
||||||
manage_your_aspects: "Maneja tus Aspectos"
|
|
||||||
sub_header:
|
|
||||||
all_aspects: "Todos los Aspectos"
|
|
||||||
manage_aspects: "Manejar Aspectos"
|
|
||||||
publisher:
|
|
||||||
share: "Compartir"
|
|
||||||
aspect_friends:
|
|
||||||
add_friends: "Añade amigos"
|
|
||||||
albums:
|
|
||||||
album:
|
|
||||||
you: "usted"
|
|
||||||
new_album:
|
|
||||||
create: "Crear"
|
|
||||||
add_a_new_album: "Añade un nuevo álbum"
|
|
||||||
show:
|
|
||||||
edit_album: "Editar Álbum"
|
|
||||||
albums: "álbumes"
|
|
||||||
updated: "actualizar"
|
|
||||||
by: "por"
|
|
||||||
edit:
|
|
||||||
editing: "Editando"
|
|
||||||
updated: "actualizado"
|
|
||||||
are_you_sure: "Esta seguro?"
|
|
||||||
delete_album: "Eliminar Álbum"
|
|
||||||
cancel: "Cancelar"
|
|
||||||
index:
|
|
||||||
home: "home"
|
|
||||||
new_album: "Nuevo Álbum"
|
|
||||||
create:
|
|
||||||
success: "Creo el álbum llamado %{name}."
|
|
||||||
update:
|
|
||||||
success: "Álbum %{name} fue editado exitosamente."
|
|
||||||
failure: "Fallo el editar el álbum %{name}."
|
|
||||||
destroy:
|
|
||||||
success: "Álbum %{name} fue eliminado."
|
|
||||||
helper:
|
|
||||||
friends_albums: "Álbumes de amigos"
|
|
||||||
your_albums: "Tus Álbumes"
|
|
||||||
aspects:
|
|
||||||
index:
|
|
||||||
photos: "fotos"
|
|
||||||
show:
|
|
||||||
photos: "fotos"
|
|
||||||
manage:
|
|
||||||
add_a_new_aspect: "Añadir nuevo aspecto"
|
|
||||||
add_a_new_friend: "Añadir nuevo amigo"
|
|
||||||
show: "Mostrar"
|
|
||||||
update_aspects: "Actualizar Aspectos"
|
|
||||||
requests: "Requests"
|
|
||||||
ignore_remove: "Ignorar/Remover"
|
|
||||||
new_aspect:
|
|
||||||
add_a_new_aspect: "Añadir nuevo aspecto"
|
|
||||||
create: "Crear"
|
|
||||||
create:
|
|
||||||
success:"Pulsa en el signo de mas a la izquierda para escojer quien puede ver su nuevo aspecto."
|
|
||||||
destroy:
|
|
||||||
success: "%{name} fue removido exitosamente."
|
|
||||||
update:
|
|
||||||
success: "Su aspecto, %{name}, fue editado exitosamente."
|
|
||||||
move_friends:
|
|
||||||
failure: "Fallo el editar aspecto para el amigo %{real_name}."
|
|
||||||
success: "Los aspectos fueron editados exitosamente."
|
|
||||||
move_friend:
|
|
||||||
error: "no funciono %{inspect}"
|
|
||||||
notice: "Ahora estas mostrando a tu amigo un aspecto diferente de ti."
|
|
||||||
helper:
|
|
||||||
remove: "remover"
|
|
||||||
aspect_not_empty: "Aspecto no esta vacio"
|
|
||||||
users:
|
|
||||||
edit:
|
|
||||||
cancel: "Cancelar"
|
|
||||||
update_profile: "Actualizar Perfil"
|
|
||||||
home: "Home"
|
|
||||||
diaspora_username: "USUARIO DE DIASPORA"
|
|
||||||
info: "Info"
|
|
||||||
picture: "Picture"
|
|
||||||
editing_profile: "Editando perfil"
|
|
||||||
albums: "Álbums"
|
|
||||||
you_dont_have_any_photos: "No tienes ninguna foto! ve a la pagina"
|
|
||||||
page_to_upload_some: "para subir algunas"
|
|
||||||
comments:
|
|
||||||
comment:
|
|
||||||
ago: "atras"
|
|
||||||
new_comment:
|
|
||||||
comment: "Commentario"
|
|
||||||
photos:
|
|
||||||
show:
|
|
||||||
prev: "prev"
|
|
||||||
full_size: "tamaño actual"
|
|
||||||
next: "prox"
|
|
||||||
edit_photo: "Editar Foto"
|
|
||||||
delete_photo: "Eliminar Foto"
|
|
||||||
are_you_sure: "Esta seguro?"
|
|
||||||
comments: "comentarios"
|
|
||||||
edit:
|
|
||||||
editing: "Editando"
|
|
||||||
are_you_sure: "Esta seguro?"
|
|
||||||
delete_photo: "Eliminar Foto"
|
|
||||||
photo:
|
|
||||||
show_comments: "mostrar comentarios"
|
|
||||||
posted_a_new_photo_to: "a puesto una nueva foto en"
|
|
||||||
new:
|
|
||||||
new_photo: "Nueva Foto"
|
|
||||||
back_to_list: "Devuelta a la lista"
|
|
||||||
post_it: "post it!"
|
|
||||||
create:
|
|
||||||
runtime_error: "Photo upload failed. Are you sure that your seatbelt is fastened?"
|
|
||||||
integrity_error: "Photo upload failed. Are you sure that was an image?"
|
|
||||||
type_error: "Photo upload failed. Are you sure an image was added?"
|
|
||||||
update:
|
|
||||||
notice: "Photo successfully updated."
|
|
||||||
error: "Failed to edit photo."
|
|
||||||
destroy:
|
|
||||||
notice: "Photo deleted."
|
|
||||||
registrations:
|
|
||||||
new:
|
|
||||||
sign_up: "Registrate"
|
|
||||||
create:
|
|
||||||
success: "Esta registrado en Diaspora!"
|
|
||||||
status_messages:
|
|
||||||
new_status_message:
|
|
||||||
tell_me_something_good: "dime algo bueno"
|
|
||||||
oh_yeah: "oh yeah!"
|
|
||||||
status_message:
|
|
||||||
show_comments: "mostrar comentarios"
|
|
||||||
delete: "Eliminar"
|
|
||||||
are_you_sure: "Esta seguro?"
|
|
||||||
show:
|
|
||||||
status_message: "Mensaje de status"
|
|
||||||
comments: "comentarios"
|
|
||||||
are_you_sure: "Esta seguro?"
|
|
||||||
destroy: "Destruir"
|
|
||||||
view_all: "Ver Todos"
|
|
||||||
message: "Mensaje"
|
|
||||||
owner: "Dueño"
|
|
||||||
helper:
|
|
||||||
no_message_to_display: "No hay mensajes que mostrar."
|
|
||||||
people:
|
|
||||||
person:
|
|
||||||
add_friend: "añadir amigo"
|
|
||||||
pending_request: "petición pendiente"
|
|
||||||
index:
|
|
||||||
add_friend: "añadir amigo"
|
|
||||||
real_name: "nombre real"
|
|
||||||
diaspora_handle: "usuario en diaspora"
|
|
||||||
thats_you: "ese eres tu!"
|
|
||||||
friend_request_pending: "friend request pending"
|
|
||||||
you_have_a_friend_request_from_this_person: "you have a friend request from this person"
|
|
||||||
show:
|
|
||||||
last_seen: "ultima vez visto: %{how_long_ago}"
|
|
||||||
friends_since: "amigos desde: %{how_long_ago}"
|
|
||||||
save: "guardar"
|
|
||||||
are_you_sure: "Esta seguro?"
|
|
||||||
remove_friend: "remover amigo"
|
|
||||||
requests:
|
|
||||||
new_request:
|
|
||||||
add_a_new_friend_to: "Añade un nuevo amigo a "
|
|
||||||
enter_a_diaspora_username: "Escribe el usuario de Diaspora:"
|
|
||||||
your_diaspora_username_is: "Tu usuario de Diaspora es: %{diaspora_handle}"
|
|
||||||
friends_username: "Usuario de amigo"
|
|
||||||
destroy:
|
|
||||||
success: "Ahora son amigos."
|
|
||||||
error: "Seleccione un aspecto!"
|
|
||||||
ignore: "Ignorar peticion de amistad"
|
|
||||||
create:
|
|
||||||
error: "No diaspora seed found with this email!"
|
|
||||||
already_friends: "Ya eres amigo de %{destination_url}!"
|
|
||||||
success: "Una peticion de amistad se envio a %{destination_url}."
|
|
||||||
horribly_wrong: "Algo horriblemente mal sucedio"
|
|
||||||
Loading…
Reference in a new issue